Skip to content

Instantly share code, notes, and snippets.

Linux (Ubuntu 18.04) development on Windows 10 (Home)

How to enable SSH connection to linux VM using VSCode remote development extension pack?

Using VSCode remote (ssh) development extension pack to connect to a remote Ubuntu (18.04) VM hosted in Windows virtualbox.

  • How to setup password-less ssh-key based ssh connection between windows and linux VM hosted in Virtualbox
  • In VSCode, install Remote Development extension pack
  • Configure VSCode to do remote linux development over SSH
@bradtraversy
bradtraversy / pipenv_cheat_sheet.md
Last active August 27, 2025 18:43
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell
@zkat
zkat / index.js
Last active April 30, 2025 21:38
npx is cool
#!/usr/bin/env node
console.log('yay gist')