Created
March 16, 2019 16:22
-
-
Save kemitchell/c3cfa3f85f3f5b86fde4f2fb045a3ee5 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
digraph { | |
ShouldWithhold[label="Withhold stuff\nfor money?"]; | |
Donations[label="Donations?"]; | |
SellAds[label="Sell ads or sponsorships?"]; | |
WithholdWhat[label="Withhold what?"]; | |
Development[label="Further\nDevelopment"]; | |
Security[label="Security\nInformation"]; | |
Assurances[label="Additional\nLegal\nAssurances"]; | |
BountySource[shape="rect",URL="https://bountysource.com"]; | |
CodeFund[shape="rect",URL="https://codefund.io"]; | |
CommunityBridge[shape="rect",URL="https://communitybridge.org"]; | |
GitCoin[shape="rect",URL="https://gitcoin.co"]; | |
GitStore[shape="rect",URL="https://gitstore.app"]; | |
ItchIO[shape="rect",URL="https://itch.io",label="itch.io"]; | |
LiberaPay[shape="rect",URL="https://liberapay.org"]; | |
LicenseZero[shape="rect",URL="https://licensezero.com",label="License Zero"]; | |
OpenCollective[shape="rect",URL="https://opencollective.com"]; | |
Patreon[shape="rect",URL="https://patreon.com"]; | |
Tidelift[shape="rect",URL="https://tidelift.com"]; | |
ShouldWithhold -> SellAds[label="No"]; | |
ShouldWithhold -> WithholdWhat[label="Yes"]; | |
SellAds -> {CodeFund, OpenCollective}[label="Yes"]; | |
SellAds -> Donations[label="No"]; | |
Donations -> {OpenCollective, CommunityBridge, LiberaPay, Patreon}[label="Yes"]; | |
WithholdWhat -> {License, Support, Development, Security, Assurances, Distribution}; | |
License -> {LicenseZero, ItchIO}; | |
Development -> {BountySource, GitCoin, Tidelift, GitStore}; | |
Security -> {Tidelift, GitStore}; | |
Support -> {Tidelift, GitStore}; | |
Assurances -> {Tidelift}; | |
Distribution -> {GitStore, ItchIO}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment