Skip to content

Instantly share code, notes, and snippets.

View nqa112's full-sized avatar

Nguyen Quoc Anh nqa112

  • Seoul
  • 00:06 (UTC +09:00)
View GitHub Profile

Setup VSCode SSH Remote ProxyJump

Need to connect to a server from a machine, but you are not physically in front of it? Here is how to do...

Machine Prerequisites:

  • Remote host: the server you want to connect to.
  • Jump host: a machine with network access to the remote host.
  • Local machine: your machine.

Software Requirements

  • VSCode.
@nqa112
nqa112 / vscode_tunnel_setup.md
Last active September 29, 2025 13:14
Set Up Multiple Tunnels for Multiple Accounts (GitHub, Microsoft)

Set Up Multiple Tunnels for Multiple Accounts (GitHub, Microsoft)

Alert: VSCode version on server and client must be the same for compatibility

Step 0: SSH into the server

Connect to your server via SSH.

Step 1: Check if any account is logged in

Run the following command to check if an account is already logged in:

@nqa112
nqa112 / nvidia_kernel_fix.md
Last active May 30, 2025 07:41
Quick NVIDIA driver fix after updating Linux kernel

Fix NVIDIA driver issues after a Linux kernel update on Ubuntu

The solution is originated from this post.

1. Purge all NVIDIA and CUDA drivers

sudo apt-get remove --purge '^nvidia-.*'
sudo apt-get remove --purge '^libnvidia-.*'
sudo apt-get remove --purge '^cuda-.*'