Guest User

Untitled

a guest
Oct 22nd, 2019
1,081
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. digraph {
  2. // dot -Tpng -Gdpi=150 monica.dot > monica.png && eom monica.png
  3. graph[fontname = "DejaVu Sans"];
  4. node [fontname = "DejaVu Sans"];
  5. edge [fontname = "DejaVu Sans" color=grey23];
  6. node [fillcolor=darkorange fontcolor=white style="rounded, filled" color=white shape=box];
  7.  
  8. start[label="Did Monica repeatedly\nviolate the CoC?"];
  9.  
  10.  
  11. start -> apologize[label="No", fontcolor=darkorange];
  12. start -> prove_it[label="Yes", fontcolor=darkorange];
  13. apologize -> reinstate_her;
  14. reinstate_her -> trust_back;
  15. prove_it -> trust_back;
  16.  
  17. prove_it[label="Prove it!"];
  18. apologize[label="Apologize publicly."];
  19. reinstate_her[label="Reinstate her."];
  20. trust_back[label="Begin regaining community's trust."];
  21. }
Add Comment
Please, Sign In to add comment