Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
set -e
# pj-append.bash is a timestamped log file for you, a human. Set up a cron job to launch it every
# hour to note what you were working on, or append lines from the terminal whenever you're chewing
# on a hard problem.
#
# Use the data to build a picture of what you worked on during the last week, or grep
# last quarter's log to find out why you decided to use library A instead of library B.
#
#!/usr/bin/env bash
set -e
# OVERVIEW
#
# This script is a sort of framework you can use to build a muscle-memory-friendly window
# switcher. It's designed so that the code in the Main section, which controls the apps you
# want to use and how, is easy to modify.
# HOW TO USE