Skip to content

Instantly share code, notes, and snippets.

# vim binding
c.ZMQTerminalInteractiveShell.editing_mode='vi'
@ajp619
ajp619 / markdown_boxes.md
Created April 30, 2020 03:45
Create colored boxes in Jupyter notebooks
@ajp619
ajp619 / command_line_template.sh
Created January 26, 2025 16:28
bash command line util template
#!/bin/bash
# create a place holder for positional args
POS_ARGS=""
while (( "$#" )); do #while there are still args to parse
# look at the first one
case "$1" in
# this is an example of a boolean flag.
-a|--my-boolean-flag)
# If present do something with MY_FLAG