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
yes | gawk 'NR % 2 == 1 {s = "badger badger " ; print s s s s s s} NR % 4 == 2 {print "mushroom mushroom mushroom"} NR % 4 == 0{print "Snake snake snake. Its a snake"}' | head -9999 | say |
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
require 'Neo4j' | |
require 'neo4j/extensions/graph_algo' | |
require 'neo4j/extensions/find_path' | |
Neo4j::Config[:storage_path] = './dbneotest' | |
Lucene::Config[:storage_path] = './dblucenetest' | |
class Dot | |
include Neo4j::NodeMixin | |
property :numid | |
has_n(:line_to) |