/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

javier.io
| | infinitedigits.co
9.8 parsecs away

Travel
| | A simple way to get MIDI and Golang work together using portmidi.
| | connorberry.com
10.0 parsecs away

Travel
| | Git with Vimdiff One time view: git difftool --tool=vimdiff --no-prompt Always: git config --global diff.tool vimdiff git config --global merge.tool vimdiff For Single Repository: git config diff.tool vimdiff git config merge.tool vimdiff To avoid having Git prompt when launching Vimdiff: git config --global difftool.prompt false
| | nickjanetakis.com
6.3 parsecs away

Travel
| | In just a few minutes you can have all of your Tmux related configs neatly tucked away outside of your root home directory.
| | jinyuz.dev
25.5 parsecs away

Travel
| Suppose that you have a full time job at Amazon, and you want to separate your git commit emails from Amazon and your personal projects. Setting up ~/.gitconfig $ touch ~/.gitconfig For our personal projects, we will use the ~/.gitconfig file with the following content: [user] name = James Banned email = james.banned@gmail.com [includeIf "gitdir:~/Work/"] path = ~/.gitconfig.work The includeIf basically means that include this config if I'm inside the ~/Work/ directory.