Skip to content

Instantly share code, notes, and snippets.

@rngadam
Created November 3, 2021 09:35
Show Gist options
  • Save rngadam/2d2eb24c84a40bb17cce2d24f660cabb to your computer and use it in GitHub Desktop.
Save rngadam/2d2eb24c84a40bb17cce2d24f660cabb to your computer and use it in GitHub Desktop.
attempt at creating graph
# Taken from:
# https://hbfs.wordpress.com/2014/09/30/a-quick-primer-on-graphviz/
digraph g {
layout=fdp # Specify used layout engine
bgcolor="#ffffff00"
overlap=scale
start=2
edge [penwidth=0.75,arrowsize=0.6]
edge [color=black, fontsize=8, forcelabels=true]
node [
shape=oval,
fixedsize=true,
width=2,
color="black",
fillcolor="white",
style="filled,solid",
fontsize=12,
];
jvtrudel [label="Jérémy"]
rngadam [label="Ricky"]
bmuvum [label="Benito"]
aobrien [label="Andrea"]
rb [label="Rachel"]
slymburner [label="Sophie"]
gtalbot [label="Gabriel"]
ideoscope [label="ideoscope.ca"]
boasolutions [label="boasolutions.ca"]
exonus [label="exonus.cd"]
coderbunker [label="coderbunker.ca"]
laconsole [label="laconsole.org"]
laquarium [label="laquarium.ca"]
linagora [label="linagora.ca"]
pipemind [label="pipemind.com"]
drave [label="drave.quebec"]
subgraph clusterG0 {
label="Québec" # union u+222a
bgcolor=white
jvtrudel -> coderbunker
rngadam -> linagora
bmuvum -> exonus
aobrien -> boasolutions
rb -> ideoscope
slymburner -> laquarium
gtalbot -> pipemind
pipemind -> laconsole [style=dashed,penwidth=1]
coderbunker -> laconsole [style=dashed,penwidth=1]
linagora -> laconsole [style=dashed,penwidth=1]
drave -> laconsole [style=dashed,penwidth=1]
rngadam -> coderbunker [style=dashed,penwidth=1]
linagora -> coderbunker [style=dashed,penwidth=1]
linagora -> laquarium [style=dashed,penwidth=1]
linagora -> laquarium [style=dashed,penwidth=1]
coderbunker -> exonus [style=dashed,penwidth=1]
ideoscope -> drave
boasolutions -> drave [style=dashed,penwidth=1]
boasolutions -> coderbunker [style=dashed,penwidth=1]
boasolutions -> linagora [style=dashed,penwidth=1]
boasolutions -> coderbunker [style=dashed,penwidth=1]
boasolutions -> laconsole [style=dashed,penwidth=1]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment