Explore >> Select a destination


You are here

mislav.net
| | bosker.wordpress.com
15.9 parsecs away

Travel
| | Calling all bash users. This is a public service announcement. Heres something you need to know if you want to write bash scripts that work reliably, but you probably dont. Recommendations For script authors: Every bash script that uses the cd command with a relative path needs to call unset CDPATH, or else it may
| | kevinjmurphy.com
8.0 parsecs away

Travel
| | Some dependencies, like nokogiri, ship with multiple libraries for different architectures. If you cache your gems, you may need to cache multiple platforms, because your development team is spread across various platforms or you deploy to a different platform. We discuss how to do that in this post.
| | akoutmos.com
14.7 parsecs away

Travel
| | Learn how to write a self-contained command line scripts using Elixir.
| | jinyuz.dev
86.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.