All posts
Fast translation with Google Translator
via https://medium.com/@mrdoro/fast-translation-with-google-translator-and-mac-osx-817e32233b7a
Enwrite featured in onethingwell.org!
via http://onethingwell.org/post/140035085825/enwrite
Spotlight: use-package, a declarative configuration tool - Mastering Emacs
via https://www.masteringemacs.org/article/spotlight-use-package-a-declarative-configuration-tool
Clicking on the MacBook Pro is entirely artificial
via http://sixcolors.com/post/2015/10/apple-magic-trackpad-2-review/
Using Multiple SSH Keys with Github
via http://www.freshblurbs.com/blog/2013/06/22/github-multiple-ssh-keys.html#tldr

Fixing Emacs problems with the fish shell
I started getting errors from the TRAMP Emacs package because I was using fish as my default shell, and it does not recognize certain standard syntax elements (such as &&
to separate commands), and Emacs runs subcommands under the default shell. I fixed this by:
- Changing my account's default shell back to `/bin/bash`
- Changing my Terminal.app preferences to run `/usr/local/bin/fish` when a shell opens, instead of the default login shell:

The log: The lifeblood of your data pipeline - O'Reilly Radar
via http://radar.oreilly.com/2015/04/the-log-the-lifeblood-of-your-data-pipeline.html
Whisky - Matt Gemmell
via http://mattgemmell.com/whisky/
Nice essay.But then, finally, with one last branch hacked from your way, you set eyes upon it, and stand there. Silent and still. Perhaps you raise a hand, feeling time-worn stone beneath your fingertips. A dream, finally made solid. You’ve come so far, and now, at last, you’re here.
Moving files between git repositories, preserving history
I needed to copy a directory between two git
repositories while preserving its history. I found some good instructions at http://gbayer.com/development/moving-files-from-one-git-repository-to-another-preserving-history/, which got me started, but I figured out a way to avoid having to move all the files into their directory again (lines 5-6 in Greg’s instructions) by reversing the filter to remove everything I don’t want instead of only including the directory I want. Here are the steps (the idea is the same as in Greg’s post, so please read that to get the explanation, I’m only listing the commands here for reference):