DEV Community

0xkoji
0xkoji

Posted on • Updated on

 

Install Visual Studio Code on Raspberry Pi

I have been using Visual Studio Code for long time, so sometimes I really want to use it on Pi when I use vim(Of course vim is super nice lol)

Install Visual Studio Code

Currently the latest version has an issue, so need to install stable verion of that.

updated 4/20/2019

$ wget -qO - https://packagecloud.io/headmelted/codebuilds/gpgkey | sudo apt-key add -
$ sudo apt-get install code-oss=1.29.0-1539702286
Enter fullscreen mode Exit fullscreen mode

Ref
https://github.com/headmelted/codebuilds/issues/67#issuecomment-466255567

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesnโ€™t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.