Skip to content

Instantly share code, notes, and snippets.

View LarsenClose's full-sized avatar

Larsen James Close LarsenClose

  • Denver, CO
View GitHub Profile
@LarsenClose
LarsenClose / gist:ac61bdf08d149542349debbc7bc605e9
Last active February 3, 2021 17:55 — forked from saetia/gist:1623487
Clean Install – OS X 10.11 El Capitan

OS X Preferences


most of these require logout/restart to take effect

# Enable character repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false

# Set a shorter Delay until key repeat

Oh my zsh.

Install with curl

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Enabling Plugins (zsh-autosuggestions & zsh-syntax-highlighting)

  • Download zsh-autosuggestions by
@LarsenClose
LarsenClose / web-servers.md
Created January 8, 2021 10:38 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000