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
// Paper ruleset | |
// | |
// Ruleset for printed maps, for example to make notes while surveying. | |
// Designed with rather rural areas in mind (may however be usable | |
// in cities as well) in high zoom (14+, on lower levels map | |
// not very much readable). | |
// | |
// Licence: Creative Commons Attribution-ShareAlike 3.0 | |
// http://creativecommons.org/licenses/by-sa/3.0/ |
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
h1 = { "a" => 100, "b" => 200 } | |
h2 = { "b" => 254, "c" => 300 } | |
h3 = h1.merge(h2) | |
h3 #=> {"a"=>100, "b"=>254, "c"=>300} | |
h1 #=> { "a" => 100, "b" => 200 } |
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
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
username = pksunkara | |
[init] | |
defaultBranch = master | |
[core] | |
editor = nvim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
pager = delta |