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
| jruby $(which gem) install bundler | |
| JRuby limited openssl loaded. http://jruby.org/openssl | |
| gem install jruby-openssl for full support. | |
| System.java:-2:in `arraycopy': java.lang.ArrayIndexOutOfBoundsException | |
| from DefaultResolver.java:111:in `makeTime' | |
| from DefaultResolver.java:277:in `create' | |
| from DefaultResolver.java:317:in `handleScalar' | |
| from DefaultResolver.java:435:in `orgHandler' | |
| from DefaultResolver.java:455:in `node_import' | |
| from org/yecht/ruby/DefaultResolver$s_method_1_0$RUBYINVOKER$node_import.gen:65535:in `call' |
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
| irb(main):205:0> a | |
| {{1 => 5} => 2} | |
| irb(main):206:0> a.put ( Hamster.hash (3 => 3) , 3) | |
| SyntaxError: (irb):206: syntax error, unexpected tASSOC, expecting ')' | |
| a.put ( Hamster.hash (3 => 3) , 3) | |
| ^ | |
| from /usr/bin/irb:12:in `<main>' | |
| a.put { Hamster.hash (3 => 3) , 3} | |
| SyntaxError: (irb):207: syntax error, unexpected tASSOC, expecting ')' |
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
| echo 620680.98 4828301.47 | cs2cs -v +proj=utm +datum=NAD27 +zone=17 +to +proj=latlong +datum=WGS84 -f "%.6f" |
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
| ;;rules examples | |
| [[(findname ?person ?search) [(fulltext $ :person/firstname ?search) [[?person ?name]]]] | |
| [(findname ?person ?search) [(fulltext $ :person/lastname ?search) [[?person ?name]]]]] | |
| ;;attempt at making some rule for searching for geohashs... | |
| [[(findgeohash ?place ?search) | |
| [(fulltext $ :coordinate/gehoash ?search) | |
| [[?place ?name]]]]] | |
| (defn pythagorean [a b c] (= (+ (* a a) (* b b)) (* c c))) |
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
| FacilityDisplayName stats | |
| 1 Farm Display | |
| 2 Skateboard Park | |
| 3 Curling Rink | |
| 4 Gallery | |
| 4 Stadium | |
| 5 Amphitheatre | |
| 6 Coat Check Room | |
| 6 Games Room |
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
| http://plnkr.co/edit/fvD0FZBr81dtq3bjY15o?s=MJhcYoHefpn9524Z |
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
| http://plnkr.co/edit/BrzHQHvk4sA9cUGzWrlA?p=preview |
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
| http://plnkr.co/edit/Rx2ifzPucXLEnRE7IoKp?p=streamer&s=qw15iMFWL7Io64UA |
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
| http://plnkr.co/edit/b:[email protected]+starter-angularjs?p=streamer&s=jzJCeGCDiB40mX4h |
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
| Application.Controllers | |
| .controller('display' | |
| , ['_' | |
| ,'$scope' | |
| ,'places' | |
| , function(_,$scope,places){ | |
| $scope.model = { | |
| places:places, | |
| places_by_type:_.groupBy(places,'type') |