Skip to content

Instantly share code, notes, and snippets.

@DeusFigendi
Created May 4, 2019 15:12
Show Gist options
  • Save DeusFigendi/9d8b97658186be3a569987f25fd10a7b to your computer and use it in GitHub Desktop.
Save DeusFigendi/9d8b97658186be3a569987f25fd10a7b to your computer and use it in GitHub Desktop.
Selects three random projects from the-federation.info
import random
list_of_projects = ["Mastodon","Pleroma","PeerTube","Matrix (Synapse)","diaspora*","Write Freely","Friendica","Hubzilla","PixelFed","Misskey","WordPress","ActivityRelay","Funkwhale","Plume","GNU social","Osada","unknown","Socialhome","zap","Prismo","microblogpub","GangGo","redmatrix","Seattle relay","read.as","booth","matrix|construct","rustodon","reel2bits","p3k","red_platform","red","Juick","speechmore","Social Relay","smilodon","koype","pubgate"]
print(random.choice(list_of_projects))
print(random.choice(list_of_projects))
print(random.choice(list_of_projects))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment