onionr/src/onionrcommands/daemonlaunch/quotes.py

26 lines
943 B
Python
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

from random import shuffle
QUOTES = [
("Were all living in each others paranoia",
"Elliot Alderson"),
("Privacy - like eating and breathing - is one of life's basic requirements",
"Katherine Neville"),
("Hack the Planet",
""),
("Live long and prosper",
"Spock"),
("A revolution without dancing is a revolution not worth having",
"V for Vendetta"),
("There can be no justice so long as laws are absolute. Even life itself is an exercise in exceptions",
"Picard"),
("Openness and participation are antidotes to surveillance and control",
"Howard Rheingol"),
("Like a black hole, NSA pulls in every signal that comes near, but no electron is ever allowed to escape",
"James Bamford"),
("Freedom of the press is guaranteed only to those who own one",
"A. J. Liebling"),
("We kill people based on metadata",
"Authoritarians")
]
shuffle(QUOTES)
QUOTE = QUOTES[0]