|
You are here |
jamesmead.org | ||
| | | | |
ankane.org
|
|
| | | | | Hybrid cryptography allows certain servers to encrypt data without the ability to decrypt it. This can greatly limit damage in the event of a... | |
| | | | |
alexgaynor.net
|
|
| | | | | ||
| | | | |
fzakaria.com
|
|
| | | | | The Nix wiki is pretty great for a lot of technical content however it sometimes fails to gently walk users through how something works. I've been doing some Ruby work as part of my day-to-day job and wanted to better understand Nix's approach to Ruby. | |
| | | | |
wittchen.io
|
|
| | | When you fork GitHub repository, you usually want to have your fork up to date with the original repository. You can update your fork in a few easy steps. Just look at the following example of the Git commands: Add the remote, call it upstream: git remote add upstream https://github.com/whoever/whatever.git Fetch all the branches of that remote into remote-tracking branches, such as upstream/master: git fetch upstream Make sure that you're on your master branch: | ||