Skip to content

Instantly share code, notes, and snippets.

View chaimleich's full-sized avatar

Chaim Leichman chaimleich

View GitHub Profile
@ronaldsuwandi
ronaldsuwandi / docker-compose.yml
Last active June 24, 2024 23:04
Docker Compose for Jupyter Lab/Notebook (no token/password required)
version: "3.9"
services:
jupyter:
image: quay.io/jupyter/scipy-notebook
ports:
- "8888:8888"
volumes:
- ./notebooks:/home/jovyan/
environment:
@lsauer
lsauer / putty_config_export.bat
Created August 22, 2013 08:13
Windows .bat Batchfile to export PuTTY session/configuration data
ECHO off
REM PuTTY is an SSH and telnet client, developed originally by Simon Tatham
REM setup
SET defaultpath="C:\putty_config.reg"
ECHO "USAGE: %0 <filepath for .reg|default=%defaultpath%>"
IF %1.==. (
ECHO Missing path argument; using %defaultpath%
) else (