Skip to content

Instantly share code, notes, and snippets.

View derailed-dash's full-sized avatar

Dazbo derailed-dash

View GitHub Profile
@derailed-dash
derailed-dash / .bashrc
Created May 17, 2025 17:32
bashrc for oh-my-bash, with random curated prompts, and aliases for tf and package management
# Enable the subsequent settings only in interactive sessions
case $- in
*i*) ;;
*) return;;
esac
# Path to your oh-my-bash installation.
export OSH='/home/darren/.oh-my-bash'
# Set name of the theme to load. Optionally, if you set this to "random"
@derailed-dash
derailed-dash / docker-compose-scipy-lab.yml
Created October 22, 2023 16:23
Docker compose file for lauching a Jupyter SciPy lab environment
version: '3.9'
services:
jupyter:
environment:
JUPYTER_ENABLE_LAB: yes
CHOWN_HOME: yes # Next three env vars are needed to fix permission issues on WSL
CHOWN_HOME_OPTS: '-R'
JUPYTER_ALLOW_INSECURE_WRITES: true
image: jupyter/scipy-notebook
container_name: scipy-lab