Skip to content

Instantly share code, notes, and snippets.

@CloudMarc
CloudMarc / gist:5719481
Last active December 18, 2015 03:38
Crowd-sourced PAC to clean up corruption one congressperson at a time.
while corruption.exist?(congress) do
congress_person = select_most_corrupt_congress_person()
while congress_person.still_in_office?
dirt = dig_up_dirt_on(congress_person)
if dirt.verify?
publicize(dirt)
end
end
end