├── .gitignore ├── Clusters.py ├── Graphics.py ├── Influencer.py ├── Influencer.pyc ├── LICENSE ├── Person.py ├── Person.pyc ├── README.md ├── Twitter.py ├── World.py ├── anim-graph.py ├── cluster.c ├── cluster.h ├── description.lyx ├── description.lyx~ ├── description.pdf ├── genFollowerGraph.py ├── getConnections.py ├── getTweeters.py ├── linus-test.svg ├── linus.dot ├── linus.gml ├── linus_output.png ├── phase-plane-gould.py ├── test_all_out.txt ├── test_disciples.json ├── test_disciples.txt ├── test_followers.json ├── test_tweeters.json └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | tokens.json 2 | -------------------------------------------------------------------------------- /Clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/Clusters.py -------------------------------------------------------------------------------- /Graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/Graphics.py -------------------------------------------------------------------------------- /Influencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/Influencer.py -------------------------------------------------------------------------------- /Influencer.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/Influencer.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/LICENSE -------------------------------------------------------------------------------- /Person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/Person.py -------------------------------------------------------------------------------- /Person.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/Person.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/README.md -------------------------------------------------------------------------------- /Twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/Twitter.py -------------------------------------------------------------------------------- /World.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/World.py -------------------------------------------------------------------------------- /anim-graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/anim-graph.py -------------------------------------------------------------------------------- /cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/cluster.c -------------------------------------------------------------------------------- /cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/cluster.h -------------------------------------------------------------------------------- /description.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/description.lyx -------------------------------------------------------------------------------- /description.lyx~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/description.lyx~ -------------------------------------------------------------------------------- /description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/description.pdf -------------------------------------------------------------------------------- /genFollowerGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/genFollowerGraph.py -------------------------------------------------------------------------------- /getConnections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/getConnections.py -------------------------------------------------------------------------------- /getTweeters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/getTweeters.py -------------------------------------------------------------------------------- /linus-test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/linus-test.svg -------------------------------------------------------------------------------- /linus.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/linus.dot -------------------------------------------------------------------------------- /linus.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/linus.gml -------------------------------------------------------------------------------- /linus_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/linus_output.png -------------------------------------------------------------------------------- /phase-plane-gould.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/phase-plane-gould.py -------------------------------------------------------------------------------- /test_all_out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/test_all_out.txt -------------------------------------------------------------------------------- /test_disciples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/test_disciples.json -------------------------------------------------------------------------------- /test_disciples.txt: -------------------------------------------------------------------------------- 1 | {"max": 0} -------------------------------------------------------------------------------- /test_followers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/test_followers.json -------------------------------------------------------------------------------- /test_tweeters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/test_tweeters.json -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mac389/snappy/HEAD/utils.py --------------------------------------------------------------------------------