- http://stackoverflow.com/questions/804115 (
rebasevsmerge). - https://www.atlassian.com/git/tutorials/merging-vs-rebasing (
rebasevsmerge) - https://www.atlassian.com/git/tutorials/undoing-changes/ (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/2221658 (HEAD^ vs HEAD~) (See
git rev-parse) - http://stackoverflow.com/questions/292357 (
pullvsfetch) - http://stackoverflow.com/questions/39651 (
stashvsbranch) - http://stackoverflow.com/questions/8358035 (
resetvscheckoutvsrevert) - http://stackoverflow.com/questions/5798930 (
git resetvsgit rm --cached)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| service { | |
| dhcp-server { | |
| disabled false | |
| dynamic-dns-update { | |
| enable true | |
| } | |
| global-parameters "key rndc-key { algorithm HMAC-MD5; secret paste_your_ddns_secret_here; };" | |
| global-parameters "zone home.local. { primary 10.1.2.2; key rndc-key; }" | |
| global-parameters "ddns-domainname "home.local.";" | |
| global-parameters "ddns-rev-domainname "in-addr.arpa.";" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "math/bits" | |
| "sort" | |
| ) | |
| type Limb byte |