Skip to content

Instantly share code, notes, and snippets.

View jmeyers314's full-sized avatar

Josh Meyers jmeyers314

View GitHub Profile
@yymao
yymao / nbserver.py
Last active April 11, 2023 22:26
Start a Jupyter server on a remote server and tunnel to localhost
#!/usr/bin/env python
from __future__ import print_function
import subprocess
import argparse
from contextlib import closing
import socket
import random
__author__ = 'Yao-Yuan Mao'