Onionr/src/onionrcommands/daemonlaunch/quotes.py

25 lines
1.0 KiB
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",
""),
("Study after study has show that human behavior changes when we know were being watched.\nUnder observation, we act less free, which means we effectively *are* less free.",
"Edward Snowdwen"),
("Privacy is a fundamental right", ""),
("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"),
("\"Probably better than nothing\"",
"")
]
shuffle(QUOTES)
QUOTE = QUOTES[0]