DEV Community

hub
hub

Posted on

 

methods: Is it possible to connect vscode (on a local machine) with Google Colab (the free service) runtime?

Yes, it is very possible. Just managed it today.

What you need to do is create an ssh connection with the google collab Write this on a google collab jupyter Notebook:

import random, string
password = ''.join(random.choice(string.ascii_letters + string.digits) for i in range(20))

#Download ngrok
! wget -q -c -nc

Top comments (0)

Timeless DEV post...

Git Concepts I Wish I Knew Years Ago

The most used technology by developers is not Javascript.

It's not Python or HTML.

It hardly even gets mentioned in interviews or listed as a pre-requisite for jobs.

I'm talking about Git and version control of course.

One does not simply learn git