2020-02-12 06:58:15 +00:00
|
|
|
|
from random import shuffle
|
|
|
|
|
QUOTES = [
|
|
|
|
|
("We’re all living in each other’s 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",
|
2020-02-17 12:13:57 +00:00
|
|
|
|
"A. J. Liebling"),
|
|
|
|
|
("We kill people based on metadata",
|
|
|
|
|
"Authoritarians")
|
2020-02-12 06:58:15 +00:00
|
|
|
|
]
|
|
|
|
|
shuffle(QUOTES)
|
|
|
|
|
QUOTE = QUOTES[0]
|