Skip to content

Instantly share code, notes, and snippets.

@jamesmacfie
jamesmacfie / README.md
Created October 22, 2019 02:53
iTerm 2 - script to change theme depending on Mac OS dark mode

How to use

In iTerm2, in the menu bar go to Scripts > Manage > New Python Script

Select Basic. Select Long-Running Daemon

Give the script a decent name (I chose auto_dark_mode.py)

Save and open the script in your editor of choice.

@MattPD
MattPD / analysis.draft.md
Last active October 7, 2025 17:07
Program Analysis Resources (WIP draft)
@heiswayi
heiswayi / repo-reset.md
Created February 5, 2017 01:32
GitHub - Delete commits history with git commands

First Method

Deleting the .git folder may cause problems in our git repository. If we want to delete all of our commits history, but keep the code in its current state, try this:

# Check out to a temporary branch:
git checkout --orphan TEMP_BRANCH

# Add all the files:
git add -A
@danidiaz
danidiaz / _FP reading lists.md
Last active August 12, 2025 12:57
assorted reading lists

A series of reading lists mostly related to functional programming.