The Albers equal-area conic projection is available as d3.geo.albers. See also the interactive version.
This file contains 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
module Rubinius | |
class CompiledCode | |
def _dump(depth) | |
Marshal.dump([@scope, Rubinius::ToolSets::Runtime::CompiledFile::Marshal.new.marshal(self)]) | |
end | |
def self._load(string) | |
scope, dump = Marshal.load(string) | |
cm = Rubinius::ToolSets::Runtime::CompiledFile::Marshal.new.unmarshal(dump) | |
cm.scope = scope |
This file contains 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
exec tcpclient irc.freenode.net 6667 sh <<EOF | |
echo "NICK topicsed" >&7 | |
echo "USER topicsed +iw swtopic :topicsed" >&7 | |
echo "JOIN #swhack" >&7 | |
cat <&6 | sed -n '/TOPIC #swhack :.*/ s/.*:\(.*\).*/\1/p' | |
EOF |