Onionr/src/onionrcommands/daemonlaunch/quotes.py

26 lines
943 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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]