Create an empty git repo or reinitialize an existing one
git init| #!/usr/bin/env python | |
| # requires Python 2 | |
| # (Python 3 version: https://gist.github.com/glowinthedark/174df43f469c7ef05f6358f53afe05c6) | |
| # Recursively generate index.html files for | |
| # all subdirectories in a directory tree | |
| ########################################################################## | |
| ## ❗️❗️❗️ WARNING: This version is outdated and unmaintained! |
| export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin" | |
| export PATH="/usr/local/opt/python/bin:$PATH" | |
| export GPG_TTY=$(tty) | |
| # export START="$HOME/a" | |
| # if [[ $PWD == $HOME ]]; then | |
| # cd $START | |
| # fi | |
| # alias ls='ls -F --color --show-control-chars' |
Create an empty git repo or reinitialize an existing one
git init( Conversation started here, with @murtaugh and @zeldman. )
Ah man, I got Opinions™ on this. I ususally go with something like:
<aside>
<h1>Optional Heading</h1>
<blockquote>
<p>It is the unofficial force—the Baker Street irregulars.</p>
</blockquote>
| %!TEX TS-program = xelatex | |
| \documentclass[12pt]{scrartcl} | |
| % The declaration of the document class: | |
| % The second line here, i.e. | |
| % \documentclass[12pt]{scrartcl} | |
| % is a standard LaTeX document class declaration: | |
| % we say what kind of document we are making in curly brackets, | |
| % and specify any options in square brackets. |
| #!/usr/bin/osascript | |
| # keyflip.sh | |
| # a quick applescript to toggle doublecommand alt/option swapping when using/not using a external MS | |
| # keyboard | |
| tell application "System Preferences" | |
| activate | |
| set current pane to pane "DoubleCommand" | |
| end tell |