/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

nickjanetakis.com
| | tobiasahlin.com
19.3 parsecs away

Travel
| | A list of 10 graphs (bar chart, pie, line, etc.) with data set up to render charts that you can copy and paste into your projects
| | www-gem.codeberg.page
10.5 parsecs away

Travel
| | Simplify your dotfiles management and sharing
| | newcome.wordpress.com
16.8 parsecs away

Travel
| | I'm a little slow on the uptake with version management of language runtimes and environments. For a long time I just followed the Linux distribution convention of global versions of dependencies and compiler versions for my system. This changed during my years doing NodeJS development where the language and tools were changing daily it seemed....
| | jinyuz.dev
29.1 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.