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 " ,
" " ) ,
2020-06-27 23:05:53 +00:00
( " Study after study has show that human behavior changes when we know we’ re being watched. Under observation, we act less free, which means we effectively *are* less free. " ,
" Edward Snodwen " ) ,
2020-02-12 06:58:15 +00:00
( " 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 " ) ,
2020-02-19 07:57:56 +00:00
( " \" Probably better than nothing \" " ,
2020-02-18 11:32:17 +00:00
" " )
2020-02-12 06:58:15 +00:00
]
shuffle ( QUOTES )
QUOTE = QUOTES [ 0 ]