Last active
August 29, 2015 14:13
-
-
Save shello/ae4f28ca059a71d2fc9a to your computer and use it in GitHub Desktop.
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
/* | |
DOT-format Graph visualization of @wnd_* twitter accounts. | |
Choose Your Own Adventure by @edent. | |
Graph by @shello. | |
PNG render: http://imgur.com/O6hMqqb | |
Note: I'm a noob at graphviz/DOT. Excuse some obvious derp. | |
*/ | |
strict digraph { | |
graph [label="@wnd_*" labelloc=t fontname="SourceCodePro-Regular"] | |
node [fontname="SourceCodePro-Regular"] | |
// Edges | |
go -> { run hide } | |
run -> { why soon } | |
why -> { pain hide } | |
hide -> { hope fear } | |
fear -> { time no } | |
time -> { dark flesh } | |
flesh -> { help cry } | |
cry -> { help weep } | |
weep -> { flesh hell } | |
hell -> oh | |
oh -> { life soon } | |
life -> { punch judy } | |
judy -> { blood loss } | |
blood -> "@rerednaw_eht" | |
loss -> { kill punch } | |
no -> { weep hell } | |
// Nodes | |
go [URL="https://twitter.com/wnd_go" shape=diamond] | |
run [URL="https://twitter.com/wnd_run"] | |
why [URL="https://twitter.com/wnd_why"] | |
hide [URL="https://twitter.com/wnd_hide"] | |
fear [URL="https://twitter.com/wnd_fear"] | |
time [URL="https://twitter.com/wnd_time"] | |
flesh [URL="https://twitter.com/wnd_flesh"] | |
cry [URL="https://twitter.com/wnd_cry"] | |
weep [URL="https://twitter.com/wnd_weep"] | |
hell [URL="https://twitter.com/wnd_hell"] | |
oh [URL="https://twitter.com/wnd_oh"] | |
life [URL="https://twitter.com/wnd_life"] | |
judy [URL="https://twitter.com/wnd_judy"] | |
blood [URL="https://twitter.com/wnd_blood"] | |
loss [URL="https://twitter.com/wnd_loss"] | |
no [URL="https://twitter.com/wnd_no"] | |
// END | |
pain [URL="https://twitter.com/wnd_pain" shape=box style=filled fillcolor=black fontcolor=white] | |
soon [URL="https://twitter.com/wnd_soon" shape=box style=filled fillcolor=black fontcolor=white] | |
hope [URL="https://twitter.com/wnd_hope" shape=box style=filled fillcolor=black fontcolor=white] | |
dark [URL="https://twitter.com/wnd_dark" shape=box style=filled fillcolor=black fontcolor=white] | |
help [URL="https://twitter.com/wnd_help" shape=box style=filled fillcolor=black fontcolor=white] | |
punch [URL="https://twitter.com/wnd_punch" shape=box style=filled fillcolor=black fontcolor=white] | |
kill [URL="https://twitter.com/wnd_kill" shape=box style=filled fillcolor=black fontcolor=white] | |
"@rerednaw_eht" [URL="https://twitter.com/rerednaw_eht" style=filled fillcolor=deepskyblue fontcolor=blue4] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment