Problem 1


In [1]:
from Tkinter import *     #Import Radiobutton package
from __future__ import division #Import division that makes sense. This took far too long to solve

# Initialize counters
games = [0]
wins = [0]
losses = [0]
ties = [0]
r = 0
p = 0
s = 0
#Dictionary for comp_move to convert to points
comp_convert = {"rock": 1 , "paper": 2 ,"scissors": 3}
num_convert = {1:"rock",2:"paper",3:"scissors",4:"quit"}

In [2]:
#Update counts for computer prediction and record keeping
def printstatus():
    """This function prints the counts for all user moves and wins,ties and losses when called"""
    
    print "Games: " + str(games[0]) 
    print "Wins: " + str(wins[0])
    print "Losses: " + str(losses[0])
    print "Ties: " + str(ties[0])
    print "Rocks: " + str(r)
    print "Paper: " + str(p)
    print "Scissors: " + str(s)

In [3]:
#Computer makes random first move, and uses intelligence after first move
    def computer_moves(i):
        """Computer determines move using past user moves"""
        import random
        x = random.random() 
        if i == 1:  
            if x <= (1/3): 
                comp_move = "rock"
            elif (1/3) < x <= (2/3):
                comp_move = "paper"
            else:
                comp_move = "scissors"
                
        else:
            intel= [r,p,s]
            moves=["rock","paper","scissors"]
            countermove=["paper","scissors","rock"]
            
            if (intel[0] == intel[1] > intel[2]):
                temp = random.randint(0,1)             #2 way tie
                temp2 = countermove[temp]
                comp_move = temp2                      #2 way tie 
                #print "0=1"           
            elif (intel[0] == intel[2] > intel[1]):
                temp = random.randint(0,1)*2
                temp2 = countermove[temp]
                comp_move = temp2
                #print "0=2"                              #2 way tie
            elif (intel[1] == intel[2] > intel[0]):
                temp = random.randint(1,2)
                temp2 = countermove[temp]
                comp_move = temp2
                #print "1=2"
            elif (intel[1] == intel[2] == intel[0]):     #3-way tie
                comp_move = countermove[random.randint(0,2)]
                #print "3way"
            else:
                temp = max(intel[:])                   #no tie, pick randomly
                temp2 = intel.index(temp)
                comp_move = countermove[temp2]
                #print "max used"
            
        return comp_convert[comp_move]

In [4]:
#Initialize radio button    
    def initialize_rb():
        """Initialize radio button and prompt user for answer, onclick() event call sel() to return value"""
       
        #Collect user's move, defined before move because command calls the sel() fx
        def sel():
            """Called after a radio button is selected"""
            #selection =  "You selected the option " + str(rps.get()) #Debugging aid, not functional really
            #print selection
            user_move = rps.get()   #Determine the user's radio button selection to
            if user_move == 4:
                print "Games played: " + str(games[0]) + "; User Wins: " + str(wins[0])
                printstatus()
            elif user_move == 1:
                global r 
                r+= 1
            elif user_move == 2:
                global p 
                p+=1
            elif user_move == 3:
                global s 
                s+=1
            root.destroy()
            return user_move
        
        root = Tk()          #Root is the form object, and parent of the radio buttons
        root.title("What would you like to do?")
        rps = IntVar()
        Label(root, 
            text='Rock, Paper, Scissors OR Quit:',
            justify = LEFT,
            padx = 20).pack()

        R1 = Radiobutton(root, text="Rock", variable=rps, value=1, command=sel)   #command calls select on user input(click)
        R1.pack(anchor=W)
        R2 = Radiobutton(root, text="Paper", variable=rps, value=2, command=sel)
        R2.pack(anchor=W)
        R3 = Radiobutton(root, text="Scissors", variable=rps, value=3, command=sel)
        R3.pack(anchor=W)
        R4 = Radiobutton(root, text="Quit", variable=rps, value=4, command=sel)
        R4.pack(anchor=W)
        root.mainloop()
        return rps.get()

In [5]:
def winner(comp_move_number,user_move,play):
    """Takes user's move and decides who wins OR quits""" 
    if user_move == 4:
        play = "False"
    else:
        if comp_move_number - user_move in [-1,2]:
            wins[0] += 1
            print "You won!"
            #Update game counter        
            games[0] +=1
        elif comp_move_number - user_move == 0:
            ties[0] += 1
            print "You tied :/ "
            #Update game counter        
            games[0] +=1
        else:
            losses[0] +=1
            print "You lost silly"
            #Update game counter        
            games[0] +=1
        return play

In [6]:
i=1
play = "True"
while play == "True":
    #printstatus() #check status
    comp = computer_moves(i) #call computer move
    usr = initialize_rb() #get user move
    print "User: " + num_convert[usr]
    print "Computer: " + num_convert[comp]
    play = winner(comp,usr,play) #decide winner
    i+=1


User: paper
Computer: rock
You won!
User: paper
Computer: scissors
You lost silly
User: paper
Computer: scissors
You lost silly
User: paper
Computer: scissors
You lost silly
User: paper
Computer: scissors
You lost silly
User: paper
Computer: scissors
You lost silly
Games played: 6; User Wins: 1
Games: 6
Wins: 1
Losses: 5
Ties: 0
Rocks: 0
Paper: 6
Scissors: 0
User: quit
Computer: scissors

Problem 2 below


In [7]:
import sys
import re

# This function read the input information from the "FloridaVoters.html" file
# and print out all the countries' name with their number of democratic
# and publician that sorted by number of democratic voters

def extract_names(filename): # pass in the input file as parameter
    """This function imports a file, creates a list to record all countries, then reads the file into a list of strings.\
    Thenhen finds all <td> tags, and does some processing to isolate republican, democratic votes and put them into a tuple\
    It then sorts the votes by democratic votes"""
    
    names = [] # create a list to record all the countries' name
    f = open(filename, 'r') # open the input file 
    text = f.read() # read the input file into a list of string

    # find all table entries
    data = re.findall(r'<td>(.*)</td>', text)

    for i in range(len(data) // 6):
        repub = int(data[i * 6 + 1].replace(',','')) # the second string for every six string is the number of republician
        democ = int(data[i * 6 + 2].replace(',','')) # the third string for every six string is the number of democratic 
        single_entry = (data[i * 6], repub, democ) # put each each county's name, democratic, republician into a tuple
        voters_data.append(single_entry) # append the tuple into a list

voters_data = [] 
extract_names('FloridaVoters.html') # the file we used as input file is 'FloridaVoters.html'
voters_data = sorted(voters_data, key=lambda tup: tup[2]) # sorted the voters_data list by the number of democratic
# print each countries name with their number of democratic and republician
for entry in voters_data:
    print entry[0], str(entry[1]), str(entry[2])


LAFAYETTE 1373 2672
GLADES 2190 3110
LIBERTY 720 3372
UNION 2752 3579
GILCHRIST 5789 3652
FRANKLIN 2234 4319
HOLMES 5282 4434
GULF 4234 4521
HARDEE 4859 4702
HAMILTON 2154 4796
DIXIE 3314 4839
CALHOUN 2201 5324
WASHINGTON 7101 5687
JEFFERSON 2636 5802
BAKER 6963 5813
BRADFORD 6878 6533
TAYLOR 3950 6915
MADISON 2992 7158
DESOTO 4870 7181
OKEECHOBEE 7755 7756
HENDRY 5862 7999
WAKULLA 7374 8889
LEVY 11665 9509
WALTON 25609 10013
SUWANNEE 10745 11126
NASSAU 32958 14013
COLUMBIA 15790 14797
JACKSON 9626 15706
MONROE 20602 17614
HIGHLANDS 27100 19997
PUTNAM 17067 20606
GADSDEN 4372 22161
SUMTER 47158 22977
FLAGLER 30047 24734
OKALOOSA 75154 25172
SANTA ROSA 73627 26114
MARTIN 53800 27358
INDIAN RIVER 47794 28204
CITRUS 46373 30440
BAY 57456 30733
CLAY 76584 31285
CHARLOTTE 54421 35602
ST. JOHNS 88385 39531
HERNANDO 51254 42499
COLLIER 100167 45511
LAKE 93604 67237
MANATEE 96063 67926
ESCAMBIA 90265 70180
OSCEOLA 44594 75657
ST. LUCIE 59626 76163
MARION 97306 76268
ALACHUA 47329 77996
SARASOTA 125872 89711
SEMINOLE 107833 91686
LEON 54554 103140
PASCO 125305 104324
LEE 180718 114633
VOLUSIA 121402 124136
BREVARD 167129 127435
POLK 140619 143799
PINELLAS 223077 221968
DUVAL 210195 229501
ORANGE 206174 303458
HILLSBOROUGH 257436 314265
PALM BEACH 245452 367236
MIAMI-DADE 362161 539367
BROWARD 249762 566185
Total 4377713 4637026

Problem 3


In [8]:
fhand= open('quotes.txt')
quote = []
n = 0
for line in fhand: 
    line=line.rstrip()
    n+=1
    if n % 2 != 0: a = line
    else: quote.append(a + '-'+ line )

print quote[0] # test quote[0] result

fhand.close


How we spend our days is, of course, how we spend our lives.-Annie Dillard
Out[8]:
<function close>

3.b


In [9]:
import re

def quote2word(quote):
    """transfer a quote into words"""
    
    word=re.split('\W+', quote) # using regular expression '/W+' to choose non-number and non-letter charactors as splitpoint
    return [x.lower() for x in word]
    
    
print quote2word(quote[0]) # test quote[0] result


['how', 'we', 'spend', 'our', 'days', 'is', 'of', 'course', 'how', 'we', 'spend', 'our', 'lives', 'annie', 'dillard']

3.c


In [10]:
from collections import Counter

def postinglist(quotelist): 
    """get a dictionary whose keys are full quotes,and whoes value are themselves dictionaries,\
    with key being a word and value being the number of times the word appears in that full quote"""
    
    postlist = {}
    for quote in quotelist:
        word=quote2word(quote) # change each quote into words
        wordCount = dict(Counter(word)) #count the number of times a word appears in a quote
        postlist[quote]= wordCount
    return postlist

postlist=postinglist(quote)
print postlist  # test the result of postings-list


{'It is always thus, impelled by a state of mind which is destined not to last, that we make our irrevocable decisions.-Marcel Proust': {'we': 1, 'that': 1, 'thus': 1, 'is': 2, 'mind': 1, 'it': 1, 'marcel': 1, 'not': 1, 'destined': 1, 'proust': 1, 'impelled': 1, 'our': 1, 'decisions': 1, 'by': 1, 'a': 1, 'last': 1, 'always': 1, 'make': 1, 'to': 1, 'state': 1, 'irrevocable': 1, 'which': 1, 'of': 1}, 'All enterprises that are entered into with indiscreet zeal may be pursued with great vigor at first, but are sure to collapse in the end.-Tacitus': {'vigor': 1, 'be': 1, 'all': 1, 'sure': 1, 'indiscreet': 1, 'collapse': 1, 'that': 1, 'tacitus': 1, 'into': 1, 'but': 1, 'enterprises': 1, 'are': 2, 'in': 1, 'with': 2, 'the': 1, 'great': 1, 'end': 1, 'may': 1, 'zeal': 1, 'pursued': 1, 'to': 1, 'entered': 1, 'first': 1, 'at': 1}, 'I have never taken any exercise except sleeping and resting.-Mark Twain': {'and': 1, 'resting': 1, 'i': 1, 'never': 1, 'except': 1, 'sleeping': 1, 'twain': 1, 'have': 1, 'taken': 1, 'mark': 1, 'any': 1, 'exercise': 1}, 'Freedom is never voluntarily given by the oppressor; it must be demanded by the oppressed.-Martin Luther King Jr.': {'': 1, 'be': 1, 'luther': 1, 'is': 1, 'never': 1, 'oppressed': 1, 'it': 1, 'jr': 1, 'voluntarily': 1, 'must': 1, 'king': 1, 'given': 1, 'freedom': 1, 'demanded': 1, 'by': 2, 'martin': 1, 'oppressor': 1, 'the': 2}, 'Playwriting gets into your blood and you can`t stop it. At least, not until the producers or the public tell you to.-T.S. Eliot': {'and': 1, 'the': 2, 'into': 1, 'stop': 1, 'it': 1, 'producers': 1, 'tell': 1, 'at': 1, 'not': 1, 'playwriting': 1, 'eliot': 1, 'your': 1, 'or': 1, 'least': 1, 'public': 1, 'to': 1, 's': 1, 'can': 1, 't': 2, 'you': 2, 'gets': 1, 'until': 1, 'blood': 1}, 'An idea that is developed and put into action is more important than an idea that exists only as an idea.-Siddhartha Buddha': {'and': 1, 'exists': 1, 'that': 2, 'developed': 1, 'is': 2, 'idea': 3, 'an': 3, 'as': 1, 'important': 1, 'put': 1, 'siddhartha': 1, 'than': 1, 'only': 1, 'buddha': 1, 'action': 1, 'into': 1, 'more': 1}, 'The first principle is that you must not fool yourself - and you are the easiest person to fool.-Richard P. Feynman': {'fool': 2, 'and': 1, 'that': 1, 'is': 1, 'p': 1, 'yourself': 1, 'are': 1, 'not': 1, 'easiest': 1, 'must': 1, 'richard': 1, 'to': 1, 'the': 2, 'feynman': 1, 'person': 1, 'principle': 1, 'you': 2, 'first': 1}, 'Though force can protect in emergency, only justice, fairness, consideration and cooperation can finally lead men to the dawn of eternal peace.-Dwight Eisenhower': {'and': 1, 'men': 1, 'force': 1, 'emergency': 1, 'though': 1, 'fairness': 1, 'eternal': 1, 'in': 1, 'consideration': 1, 'dawn': 1, 'eisenhower': 1, 'protect': 1, 'lead': 1, 'justice': 1, 'of': 1, 'peace': 1, 'finally': 1, 'to': 1, 'only': 1, 'can': 2, 'cooperation': 1, 'the': 1, 'dwight': 1}, 'Sex without love is a meaningless experience, but as far as meaningless experiences go, it`s pretty damn good.-Woody Allen': {'good': 1, 'love': 1, 'far': 1, 'is': 1, 'meaningless': 2, 'but': 1, 'sex': 1, 'as': 2, 'experiences': 1, 'woody': 1, 'go': 1, 'allen': 1, 'a': 1, 'experience': 1, 's': 1, 'without': 1, 'damn': 1, 'pretty': 1, 'it': 1}, 'We`ve got to live. No matter how many skies have fallen.-D.H. Lawrence': {'we': 1, 've': 1, 'no': 1, 'many': 1, 'lawrence': 1, 'matter': 1, 'to': 1, 'live': 1, 'have': 1, 'h': 1, 'got': 1, 'how': 1, 'fallen': 1, 'skies': 1, 'd': 1}, 'Fear not those who argue but those who dodge.-Dale Carnegie': {'dodge': 1, 'dale': 1, 'who': 2, 'but': 1, 'carnegie': 1, 'not': 1, 'fear': 1, 'argue': 1, 'those': 2}, 'The covers of this book are too far apart.-Ambrose Bierce': {'ambrose': 1, 'this': 1, 'of': 1, 'covers': 1, 'far': 1, 'book': 1, 'bierce': 1, 'are': 1, 'too': 1, 'the': 1, 'apart': 1}, 'You are young, my son, and, as the years go by, time will change and even reverse many of your present opinions. Refrain therefore awhile from setting yourself up as a judge of the highest matters.-Plato': {'and': 2, 'opinions': 1, 'of': 2, 'yourself': 1, 'as': 2, 'are': 1, 'go': 1, 'awhile': 1, 'your': 1, 'even': 1, 'highest': 1, 'from': 1, 'young': 1, 'setting': 1, 'therefore': 1, 'you': 1, 'plato': 1, 'refrain': 1, 'matters': 1, 'judge': 1, 'son': 1, 'by': 1, 'change': 1, 'a': 1, 'reverse': 1, 'many': 1, 'up': 1, 'will': 1, 'present': 1, 'time': 1, 'the': 2, 'years': 1, 'my': 1}, 'I believe in Christianity as I believe that the sun has risen, not only because I see it, but because by it I see everything else.-C.S. Lewis': {'the': 1, 'because': 2, 'risen': 1, 'that': 1, 'lewis': 1, 'it': 2, 'but': 1, 'else': 1, 'see': 2, 'in': 1, 'not': 1, 'believe': 2, 'by': 1, 'c': 1, 'i': 4, 'sun': 1, 'as': 1, 'christianity': 1, 'everything': 1, 'only': 1, 's': 1, 'has': 1}, 'I cried because I had no shoes, `till I met a man who had no feet. So I said, `You got any shoes you`re not using`?-Steven Wright': {'because': 1, 'shoes': 2, 'cried': 1, 'who': 1, 'feet': 1, 'met': 1, 'steven': 1, 'not': 1, 'using': 1, 'any': 1, 'man': 1, 'a': 1, 'said': 1, 'no': 2, 'i': 4, 'had': 2, 'till': 1, 'so': 1, 'wright': 1, 'got': 1, 'you': 2, 're': 1}, 'Humility is no substitute for a good personality.-Fran Lebowitz': {'a': 1, 'good': 1, 'for': 1, 'no': 1, 'fran': 1, 'is': 1, 'substitute': 1, 'humility': 1, 'lebowitz': 1, 'personality': 1}, 'Happy, happy Christmas, that can win us back to the delusions of our childhood days, recall to the old man the pleasures of his youth, and transport the traveler back to his own fireside and quiet home!-Charles Dickens': {'and': 2, 'recall': 1, 'own': 1, 'old': 1, 'that': 1, 'win': 1, 'charles': 1, 'back': 2, 'fireside': 1, 'his': 2, 'our': 1, 'traveler': 1, 'transport': 1, 'man': 1, 'days': 1, 'home': 1, 'of': 2, 'quiet': 1, 'us': 1, 'childhood': 1, 'youth': 1, 'to': 3, 'delusions': 1, 'can': 1, 'dickens': 1, 'pleasures': 1, 'the': 4, 'christmas': 1, 'happy': 2}, 'An unjust punishment is never forgotten.-Penelope Fitzgerald': {'unjust': 1, 'is': 1, 'never': 1, 'fitzgerald': 1, 'an': 1, 'penelope': 1, 'forgotten': 1, 'punishment': 1}, 'I almost had a pyschic girlfriend, but she left me before we met.-Steven Wright': {'a': 1, 'me': 1, 'pyschic': 1, 'wright': 1, 'i': 1, 'had': 1, 'we': 1, 'but': 1, 'met': 1, 'she': 1, 'steven': 1, 'girlfriend': 1, 'left': 1, 'almost': 1, 'before': 1}, 'Don`t knock the weather; nine-tenths of the people couldn`t start a conversation if it didn`t change once in a while.-Kin Hubbard': {'people': 1, 'it': 1, 'weather': 1, 'kin': 1, 'in': 1, 'change': 1, 'if': 1, 'a': 2, 'knock': 1, 'hubbard': 1, 'don': 1, 'couldn': 1, 'conversation': 1, 'of': 1, 'didn': 1, 'start': 1, 'while': 1, 'nine': 1, 't': 3, 'the': 2, 'tenths': 1, 'once': 1}, 'Genius may have its limitations, but stupidity is not thus handicapped.-Elbert Hubbard': {'limitations': 1, 'hubbard': 1, 'genius': 1, 'elbert': 1, 'is': 1, 'thus': 1, 'but': 1, 'handicapped': 1, 'may': 1, 'stupidity': 1, 'have': 1, 'not': 1, 'its': 1}, 'No matter what they`re charging to get in, it`s worth more to get out.-Roger Ebert': {'get': 2, 'it': 1, 'they': 1, 'in': 1, 'matter': 1, 'what': 1, 're': 1, 'no': 1, 'ebert': 1, 'charging': 1, 'to': 2, 's': 1, 'roger': 1, 'out': 1, 'worth': 1, 'more': 1}, 'The intellect is not a serious thing, and never has been. It is an instrument on which one plays, that is all.-Oscar Wilde': {'and': 1, 'all': 1, 'that': 1, 'oscar': 1, 'is': 3, 'never': 1, 'it': 1, 'one': 1, 'wilde': 1, 'not': 1, 'an': 1, 'intellect': 1, 'a': 1, 'on': 1, 'plays': 1, 'thing': 1, 'been': 1, 'instrument': 1, 'which': 1, 'serious': 1, 'the': 1, 'has': 1}, 'My aim is to put down on paper what I see and what I feel in the best and simplest way.-Ernest Hemingway': {'and': 2, 'feel': 1, 'is': 1, 'down': 1, 'see': 1, 'paper': 1, 'in': 1, 'put': 1, 'best': 1, 'on': 1, 'what': 2, 'i': 2, 'aim': 1, 'to': 1, 'way': 1, 'simplest': 1, 'ernest': 1, 'the': 1, 'my': 1, 'hemingway': 1}, 'Marriage is the alliance of two people, one of whom never remembers birthdays and the other who never forgets.-Ogden Nash': {'and': 1, 'alliance': 1, 'people': 1, 'is': 1, 'never': 2, 'one': 1, 'the': 2, 'of': 2, 'ogden': 1, 'birthdays': 1, 'two': 1, 'who': 1, 'remembers': 1, 'whom': 1, 'other': 1, 'marriage': 1, 'nash': 1, 'forgets': 1}, 'No one can make you feel inferior without your consent.-Eleanor Roosevelt': {'no': 1, 'feel': 1, 'consent': 1, 'make': 1, 'roosevelt': 1, 'one': 1, 'eleanor': 1, 'without': 1, 'can': 1, 'you': 1, 'your': 1, 'inferior': 1}, 'Truth sits upon the lips of dying men.-Matthew Arnold': {'dying': 1, 'of': 1, 'men': 1, 'upon': 1, 'arnold': 1, 'matthew': 1, 'lips': 1, 'truth': 1, 'the': 1, 'sits': 1}, 'He therefore is the truest friend to the liberty of this country who tries most to promote its virtue, and who, so far as his power and influence extend, will not suffer a man to be chosen into any office of power and trust who is not a wise and virtuous man.-Samuel Adams': {'and': 4, 'who': 3, 'office': 1, 'be': 1, 'is': 2, 'influence': 1, 'as': 1, 'truest': 1, 'suffer': 1, 'its': 1, 'trust': 1, 'power': 2, 'chosen': 1, 'liberty': 1, 'any': 1, 'to': 3, 'therefore': 1, 'he': 1, 'into': 1, 'friend': 1, 'virtuous': 1, 'his': 1, 'extend': 1, 'far': 1, 'samuel': 1, 'most': 1, 'tries': 1, 'virtue': 1, 'not': 2, 'promote': 1, 'man': 2, 'a': 2, 'wise': 1, 'adams': 1, 'this': 1, 'of': 2, 'will': 1, 'so': 1, 'country': 1, 'the': 2}, 'From the prodigious hilltops of New Hampshire, let freedom ring. From the mighty mountains of New York, let freedom ring. From the heightening Alleghenies of Pennsylvania, let freedom ring. But not only that: Let freedom ring from every hill and molehill of Mississippi.-Martin Luther King Jr.': {'and': 1, 'hilltops': 1, '': 1, 'mountains': 1, 'freedom': 4, 'luther': 1, 'jr': 1, 'mighty': 1, 'but': 1, 'prodigious': 1, 'not': 1, 'every': 1, 'ring': 4, 'let': 4, 'heightening': 1, 'molehill': 1, 'king': 1, 'mississippi': 1, 'from': 4, 'pennsylvania': 1, 'of': 4, 'that': 1, 'hampshire': 1, 'only': 1, 'hill': 1, 'martin': 1, 'new': 2, 'the': 3, 'alleghenies': 1, 'york': 1}, 'Love yourself first and everything else falls into line. You really have to love yourself to get anything done in this world.-Lucille Ball': {'and': 1, 'ball': 1, 'love': 2, 'get': 1, 'lucille': 1, 'into': 1, 'falls': 1, 'done': 1, 'have': 1, 'in': 1, 'world': 1, 'line': 1, 'else': 1, 'really': 1, 'yourself': 2, 'anything': 1, 'everything': 1, 'this': 1, 'to': 2, 'you': 1, 'first': 1}, 'Though I am not naturally honest, I am sometimes by chance.-William Shakespeare': {'though': 1, 'i': 2, 'sometimes': 1, 'am': 2, 'honest': 1, 'william': 1, 'chance': 1, 'shakespeare': 1, 'not': 1, 'by': 1, 'naturally': 1}, 'Goldie and I did have a car stolen right out of our yard. It took us three days to notice.-Kurt Russell': {'and': 1, 'notice': 1, 'right': 1, 'days': 1, 'it': 1, 'took': 1, 'goldie': 1, 'have': 1, 'our': 1, 'out': 1, 'a': 1, 'stolen': 1, 'yard': 1, 'russell': 1, 'i': 1, 'car': 1, 'three': 1, 'us': 1, 'to': 1, 'of': 1, 'did': 1, 'kurt': 1}, 'It is most unwise for people in love to marry.-George Bernard Shaw': {'most': 1, 'love': 1, 'bernard': 1, 'for': 1, 'people': 1, 'is': 1, 'unwise': 1, 'it': 1, 'to': 1, 'marry': 1, 'in': 1, 'george': 1, 'shaw': 1}, 'Everyone is in awe of the lion tamer in a cage with half a dozen lions -- everyone but a school bus driver.-Laurence Peter': {'everyone': 2, 'cage': 1, 'bus': 1, 'is': 1, 'in': 2, 'driver': 1, 'but': 1, 'lion': 1, 'half': 1, 'awe': 1, 'peter': 1, 'with': 1, 'dozen': 1, 'a': 3, 'school': 1, 'of': 1, 'laurence': 1, 'lions': 1, 'tamer': 1, 'the': 1}, 'In politics, an organized minority is a political majority.-Jesse Jackson': {'a': 1, 'jackson': 1, 'minority': 1, 'organized': 1, 'is': 1, 'political': 1, 'an': 1, 'majority': 1, 'in': 1, 'politics': 1, 'jesse': 1}, 'Never judge a philosophy by its abuse.-Saint Augustine': {'a': 1, 'never': 1, 'augustine': 1, 'philosophy': 1, 'by': 1, 'abuse': 1, 'saint': 1, 'judge': 1, 'its': 1}, 'Errors of haste are seldom committed singly. The first time a man always does too much. And precisely on that account he commits a second error, and then he does too little.-Friedrich Nietzsche': {'and': 2, 'then': 1, 'that': 1, 'commits': 1, 'time': 1, 'account': 1, 'singly': 1, 'second': 1, 'are': 1, 'a': 2, 'committed': 1, 'precisely': 1, 'the': 1, 'man': 1, 'nietzsche': 1, 'on': 1, 'little': 1, 'errors': 1, 'always': 1, 'seldom': 1, 'friedrich': 1, 'much': 1, 'haste': 1, 'too': 2, 'error': 1, 'of': 1, 'he': 2, 'does': 2, 'first': 1}, 'Anger is never without an argument, but seldom with a good one.-George Savile': {'a': 1, 'good': 1, 'with': 1, 'is': 1, 'never': 1, 'argument': 1, 'but': 1, 'an': 1, 'without': 1, 'seldom': 1, 'anger': 1, 'one': 1, 'savile': 1, 'george': 1}, 'If your kid makes one of those little homemade guitars out of a cigar box and rubber bands, don`t let him just play it once or twice and then throw it away. Make him practice on it, every day, for about three hours a day. Later, he`ll thank you.-Jack Handey': {'and': 2, 'just': 1, 'it': 3, 'him': 2, 'one': 1, 'a': 2, 'your': 1, 'out': 1, 'little': 1, 'thank': 1, 'for': 1, 'away': 1, 'three': 1, 'day': 2, 'rubber': 1, 'handey': 1, 'homemade': 1, 'you': 1, 'if': 1, 'then': 1, 'play': 1, 'cigar': 1, 'bands': 1, 'practice': 1, 'hours': 1, 'let': 1, 'jack': 1, 'kid': 1, 'throw': 1, 'those': 1, 'he': 1, 'box': 1, 'on': 1, 'about': 1, 'don': 1, 'of': 2, 'later': 1, 'or': 1, 'twice': 1, 'll': 1, 't': 1, 'guitars': 1, 'every': 1, 'makes': 1, 'make': 1, 'once': 1}, 'You can`t build a reputation on what you are going to do.-Henry Ford': {'a': 1, 'on': 1, 'what': 1, 'do': 1, 'can': 1, 'ford': 1, 'to': 1, 'going': 1, 't': 1, 'henry': 1, 'build': 1, 'you': 2, 'are': 1, 'reputation': 1}, 'Humor is mankind`s greatest blessing.-Mark Twain': {'humor': 1, 'is': 1, 'blessing': 1, 'mark': 1, 'twain': 1, 's': 1, 'mankind': 1, 'greatest': 1}, 'I have one yardstick by which I test every major problem-and that yardstick is: Is it good for America?-Dwight Eisenhower': {'and': 1, 'major': 1, 'good': 1, 'that': 1, 'is': 2, 'it': 1, 'one': 1, 'every': 1, 'have': 1, 'america': 1, 'by': 1, 'for': 1, 'i': 2, 'eisenhower': 1, 'which': 1, 'test': 1, 'yardstick': 2, 'problem': 1, 'dwight': 1}, 'It`s not how old you are, it`s how hard you work at it.-Jonah Barrington': {'barrington': 1, 'hard': 1, 'old': 1, 'work': 1, 'it': 3, 'jonah': 1, 'how': 2, 's': 2, 'are': 1, 'not': 1, 'you': 2, 'at': 1}, 'The cost of freedom is always high, but Americans have always paid it. And one path we shall never choose, and that is the path of surrender, or submission.-John F. Kennedy': {'and': 2, 'we': 1, 'that': 1, 'is': 2, 'never': 1, 'it': 1, 'but': 1, 'one': 1, 'high': 1, 'cost': 1, 'americans': 1, 'paid': 1, 'have': 1, 'path': 2, 'surrender': 1, 'the': 2, 'freedom': 1, 'submission': 1, 'f': 1, 'of': 2, 'shall': 1, 'choose': 1, 'always': 2, 'kennedy': 1, 'john': 1, 'or': 1}, 'Nothing so dates a man as to decry the younger generation.-Adlai Stevenson': {'a': 1, 'younger': 1, 'generation': 1, 'stevenson': 1, 'dates': 1, 'to': 1, 'decry': 1, 'so': 1, 'adlai': 1, 'nothing': 1, 'the': 1, 'as': 1, 'man': 1}, 'Don`t ask God to change the laws of nature for you.-Nachman of Bratslav': {'don': 1, 'for': 1, 'nature': 1, 'god': 1, 'bratslav': 1, 'to': 1, 't': 1, 'of': 2, 'ask': 1, 'the': 1, 'laws': 1, 'you': 1, 'change': 1, 'nachman': 1}, 'What we are today comes from our thoughts of yesterday and our present thoughts build our life tomorrow. Our life is the creation of our mind.-Siddhartha Buddha': {'and': 1, 'life': 2, 'is': 1, 'creation': 1, 'mind': 1, 'we': 1, 'yesterday': 1, 'are': 1, 'our': 5, 'siddhartha': 1, 'tomorrow': 1, 'present': 1, 'what': 1, 'from': 1, 'of': 2, 'comes': 1, 'buddha': 1, 'build': 1, 'thoughts': 2, 'the': 1, 'today': 1}, 'It must be remembered that there is nothing more difficult to plan, more doubtful of success nor more dangerous to manage than the creation of a new system. For the initiator has the enmity of all who profit by the preservation of the old institution and merely lukewarm defenders in those who would gain by the new one.-Nicolo Machiavelli': {'and': 1, 'all': 1, 'old': 1, 'defenders': 1, 'is': 1, 'manage': 1, 'it': 1, 'preservation': 1, 'doubtful': 1, 'nicolo': 1, 'in': 1, 'would': 1, 'profit': 1, 'there': 1, 'system': 1, 'institution': 1, 'to': 2, 'nor': 1, 'new': 2, 'has': 1, 'merely': 1, 'difficult': 1, 'be': 1, 'creation': 1, 'than': 1, 'that': 1, 'remembered': 1, 'who': 2, 'lukewarm': 1, 'plan': 1, 'nothing': 1, 'one': 1, 'by': 2, 'those': 1, 'must': 1, 'a': 1, 'initiator': 1, 'for': 1, 'success': 1, 'enmity': 1, 'of': 4, 'machiavelli': 1, 'dangerous': 1, 'the': 6, 'more': 3, 'gain': 1}, 'Women need a reason to have sex -- men just need a place.-Billy Crystal': {'a': 2, 'to': 1, 'just': 1, 'billy': 1, 'men': 1, 'sex': 1, 'crystal': 1, 'reason': 1, 'place': 1, 'have': 1, 'need': 2, 'women': 1}, 'Success is going from failure to failure without losing enthusiasm.-Winston Churchill': {'going': 1, 'churchill': 1, 'from': 1, 'success': 1, 'failure': 2, 'is': 1, 'winston': 1, 'to': 1, 'without': 1, 'losing': 1, 'enthusiasm': 1}, 'You should do your own car repairs. It`s an easy way to save money and possibly maim yourself for life.-Dave Barry': {'and': 1, 'do': 1, 'life': 1, 'own': 1, 'easy': 1, 'money': 1, 'it': 1, 'yourself': 1, 'possibly': 1, 'dave': 1, 'an': 1, 'your': 1, 'repairs': 1, 'for': 1, 'barry': 1, 'should': 1, 'to': 1, 's': 1, 'way': 1, 'car': 1, 'maim': 1, 'you': 1, 'save': 1}, 'There is no question that there is an unseen world. The problem is, how far is it from midtown and how late is it open?-Woody Allen': {'and': 1, 'that': 1, 'far': 1, 'is': 5, 'it': 2, 'an': 1, 'unseen': 1, 'woody': 1, 'allen': 1, 'open': 1, 'problem': 1, 'midtown': 1, 'from': 1, 'world': 1, 'no': 1, 'there': 2, 'question': 1, 'late': 1, 'how': 2, 'the': 1}, 'People sleep peaceably in their beds at night only because rough men stand ready to do violence on their behalf.-George Orwell': {'do': 1, 'because': 1, 'people': 1, 'men': 1, 'sleep': 1, 'at': 1, 'in': 1, 'ready': 1, 'rough': 1, 'george': 1, 'behalf': 1, 'on': 1, 'their': 2, 'violence': 1, 'beds': 1, 'to': 1, 'only': 1, 'stand': 1, 'night': 1, 'orwell': 1, 'peaceably': 1}, 'Science is not about building a body of known `facts`. It is a method for asking awkward questions and subjecting them to a reality-check, thus avoiding the human tendency to believe whatever makes us feel good.-Terry Pratchett': {'and': 1, 'questions': 1, 'feel': 1, 'is': 2, 'thus': 1, 'it': 1, 'whatever': 1, 'known': 1, 'pratchett': 1, 'human': 1, 'facts': 1, 'check': 1, 'tendency': 1, 'for': 1, 'reality': 1, 'to': 2, 'asking': 1, 'method': 1, 'body': 1, 'building': 1, 'them': 1, 'good': 1, 'subjecting': 1, 'of': 1, 'terry': 1, 'not': 1, 'believe': 1, 'a': 3, 'about': 1, 'awkward': 1, 'avoiding': 1, 'us': 1, 'science': 1, 'the': 1, 'makes': 1}, 'Some folks look at me and see a certain swagger, which in Texas is called `walking.`-George W. Bush': {'and': 1, 'a': 1, 'walking': 1, 'which': 1, 'certain': 1, 'is': 1, 'some': 1, 'see': 1, 'at': 1, 'in': 1, 'george': 1, 'me': 1, 'look': 1, 'bush': 1, 'w': 1, 'folks': 1, 'swagger': 1, 'called': 1, 'texas': 1}, 'A free society is one where it is safe to be unpopular.-Adlai Stevenson': {'a': 1, 'be': 1, 'unpopular': 1, 'society': 1, 'stevenson': 1, 'safe': 1, 'it': 1, 'free': 1, 'one': 1, 'to': 1, 'adlai': 1, 'where': 1, 'is': 2}, 'This does not mean that the enemy is to be allowed to escape. The object is to make him believe that there is a road to safety, and thus prevent his fighting with the courage of despair. After that, you may crush him.-Sun Tzu': {'and': 1, 'prevent': 1, 'tzu': 1, 'is': 3, 'escape': 1, 'thus': 1, 'allowed': 1, 'sun': 1, 'make': 1, 'there': 1, 'crush': 1, 'to': 4, 'does': 1, 'safety': 1, 'you': 1, 'be': 1, 'his': 1, 'that': 3, 'may': 1, 'object': 1, 'courage': 1, 'not': 1, 'believe': 1, 'with': 1, 'him': 2, 'after': 1, 'a': 1, 'enemy': 1, 'this': 1, 'of': 1, 'fighting': 1, 'despair': 1, 'the': 3, 'road': 1, 'mean': 1}, 'Every exit is an entry somewhere.-Tom Stoppard': {'entry': 1, 'stoppard': 1, 'somewhere': 1, 'is': 1, 'an': 1, 'every': 1, 'tom': 1, 'exit': 1}, 'The mind of the thoroughly well-informed man is a dreadful thing. It is like a bric-\xe0-brac shop, all monsters and dust, with everything priced above its proper value.-Oscar Wilde': {'and': 1, 'shop': 1, 'all': 1, 'dust': 1, 'oscar': 1, 'is': 2, 'mind': 1, 'it': 1, 'priced': 1, 'bric': 1, 'wilde': 1, 'proper': 1, 'with': 1, 'its': 1, 'man': 1, 'a': 2, 'dreadful': 1, 'like': 1, 'thing': 1, 'thoroughly': 1, 'informed': 1, 'value': 1, 'brac': 1, 'everything': 1, 'above': 1, 'of': 1, 'well': 1, 'the': 2, 'monsters': 1}, 'We need not just a new generation of leadership but a new gender of leadership.-Bill Clinton': {'a': 2, 'we': 1, 'clinton': 1, 'just': 1, 'generation': 1, 'of': 2, 'bill': 1, 'but': 1, 'need': 1, 'leadership': 2, 'gender': 1, 'not': 1, 'new': 2}, 'To me, it`s always a good idea to always carry two sacks of something when you walk around. That way, if anybody says, `Hey, can you give me a hand?,` you can say, `Sorry, got these sacks.`-Jack Handey': {'says': 1, 'give': 1, 'it': 1, 'walk': 1, 'say': 1, 'something': 1, 'carry': 1, 'if': 1, 'when': 1, 'hey': 1, 'to': 2, 'handey': 1, 'way': 1, 'got': 1, 'you': 3, 'me': 2, 'good': 1, 'around': 1, 'that': 1, 'idea': 1, 'two': 1, 'hand': 1, 'sorry': 1, 'a': 2, 'sacks': 2, 'always': 2, 'anybody': 1, 'these': 1, 's': 1, 'can': 2, 'of': 1, 'jack': 1}, 'The health of a democratic society may be measured by the quality of functions performed by private citizens.-Alexis de Tocqueville': {'tocqueville': 1, 'be': 1, 'may': 1, 'de': 1, 'private': 1, 'society': 1, 'performed': 1, 'quality': 1, 'by': 2, 'a': 1, 'functions': 1, 'of': 2, 'citizens': 1, 'measured': 1, 'alexis': 1, 'health': 1, 'the': 2, 'democratic': 1}, 'If music be the food of love, play on.-William Shakespeare': {'be': 1, 'play': 1, 'love': 1, 'on': 1, 'food': 1, 'of': 1, 'william': 1, 'music': 1, 'shakespeare': 1, 'the': 1, 'if': 1}, 'Mothers all want their sons to grow up to be president, but they don`t want them to become politicians in the process.-John F. Kennedy': {'be': 1, 'all': 1, 'to': 3, 'process': 1, 'them': 1, 'but': 1, 'sons': 1, 'want': 2, 'in': 1, 'president': 1, 'mothers': 1, 'grow': 1, 'don': 1, 'kennedy': 1, 'f': 1, 'they': 1, 'up': 1, 'their': 1, 'politicians': 1, 't': 1, 'become': 1, 'the': 1, 'john': 1}, 'The act of policing is, in order to punish less often, to punish more severely.-Napoleon Bonaparte': {'severely': 1, 'policing': 1, 'often': 1, 'less': 1, 'of': 1, 'is': 1, 'in': 1, 'punish': 2, 'to': 2, 'act': 1, 'bonaparte': 1, 'the': 1, 'order': 1, 'napoleon': 1, 'more': 1}, 'Parting is all we know of heaven and all we need to know of hell.-Emily Dickinson': {'and': 1, 'we': 2, 'heaven': 1, 'of': 2, 'is': 1, 'all': 2, 'to': 1, 'know': 2, 'dickinson': 1, 'need': 1, 'hell': 1, 'parting': 1, 'emily': 1}, 'You find out more about God from the Moral Law than from the univerise in general just as you find out more about a man by listening to his conversation than by looking at a house he has built.-C.S. Lewis': {'just': 1, 'house': 1, 'general': 1, 'as': 1, 'moral': 1, 'at': 1, 'in': 1, 'find': 2, 'out': 2, 'from': 2, 'built': 1, 'god': 1, 'than': 2, 'looking': 1, 'to': 1, 'lewis': 1, 'you': 2, 'man': 1, 'more': 2, 'his': 1, 'about': 2, 'listening': 1, 'univerise': 1, 'law': 1, 'by': 2, 'he': 1, 'a': 2, 'c': 1, 'has': 1, 'conversation': 1, 's': 1, 'the': 2}, 'Trust the people. This is the one irrefutable lesson of the entire postwar period contradicting the notion that rigid government controls are essential to economic development.-Ronald Reagan': {'development': 1, 'people': 1, 'is': 1, 'reagan': 1, 'period': 1, 'one': 1, 'ronald': 1, 'economic': 1, 'rigid': 1, 'are': 1, 'lesson': 1, 'trust': 1, 'irrefutable': 1, 'contradicting': 1, 'entire': 1, 'this': 1, 'of': 1, 'postwar': 1, 'government': 1, 'controls': 1, 'notion': 1, 'to': 1, 'that': 1, 'the': 4, 'essential': 1}, 'Don`t worry about the world coming to an end today. It`s already tomorrow in Australia.-Charles Schulz': {'australia': 1, 'coming': 1, 'charles': 1, 'it': 1, 'an': 1, 'already': 1, 'in': 1, 'end': 1, 'tomorrow': 1, 'worry': 1, 'about': 1, 'don': 1, 'world': 1, 'to': 1, 's': 1, 't': 1, 'schulz': 1, 'the': 1, 'today': 1}, 'It is always more difficult to fight against faith than against knowledge.-Adolf Hitler': {'faith': 1, 'knowledge': 1, 'always': 1, 'is': 1, 'it': 1, 'against': 2, 'fight': 1, 'to': 1, 'difficult': 1, 'more': 1, 'than': 1, 'hitler': 1, 'adolf': 1}, 'I love deadlines. I especially like the whooshing sound they make as they go flying by.-Douglas Adams': {'love': 1, 'like': 1, 'as': 1, 'douglas': 1, 'they': 2, 'go': 1, 'by': 1, 'adams': 1, 'sound': 1, 'especially': 1, 'i': 2, 'make': 1, 'flying': 1, 'deadlines': 1, 'whooshing': 1, 'the': 1}, 'On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does.-Will Rogers': {'and': 1, 'we': 1, 'run': 1, 'people': 1, 'being': 1, 'government': 1, 'it': 1, 'years': 1, 'four': 1, 'are': 1, 'in': 1, 'account': 1, 'world': 1, 'nation': 1, 'by': 1, 'matter': 1, 'a': 2, 'on': 1, 'what': 1, 'rogers': 1, 'democracy': 1, 'no': 1, 'of': 1, 'that': 1, 'keep': 1, 'will': 1, 'to': 1, 'only': 1, 'does': 1, 'the': 3, 'has': 1}, 'Money never made a man happy yet, nor will it. There is nothing in its nature to produce happiness. The more a man has, the more he wants. Instead of its filling a vacuum, it makes one. If it satisfies one want, it doubles and trebles that want another way. That was a true proverb of the wise man, rely upon it; ``Better is little with the fear of the Lord, than great treasure, and trouble therewith.-Benjamin Franklin': {'and': 2, 'wants': 1, 'there': 1, 'want': 2, 'money': 1, 'is': 2, 'vacuum': 1, 'it': 5, 'one': 2, 'another': 1, 'in': 1, 'satisfies': 1, 'its': 2, 'happiness': 1, 'if': 1, 'rely': 1, 'true': 1, 'treasure': 1, 'filling': 1, 'yet': 1, 'better': 1, 'to': 1, 'way': 1, 'lord': 1, 'has': 1, 'was': 1, 'more': 2, 'benjamin': 1, 'that': 2, 'never': 1, 'upon': 1, 'little': 1, 'produce': 1, 'instead': 1, 'nothing': 1, 'proverb': 1, 'trouble': 1, 'with': 1, 'than': 1, 'nor': 1, 'he': 1, 'a': 4, 'great': 1, 'made': 1, 'wise': 1, 'trebles': 1, 'of': 3, 'therewith': 1, 'will': 1, 'fear': 1, 'franklin': 1, 'man': 3, 'doubles': 1, 'the': 5, 'happy': 1, 'makes': 1, 'nature': 1}, 'I don`t always know what I`m talking about but I know I`m right.-Muhammad Ali': {'what': 1, 'right': 1, 'don': 1, 'ali': 1, 'i': 4, 'always': 1, 'm': 2, 'about': 1, 'but': 1, 'talking': 1, 'muhammad': 1, 't': 1, 'know': 2}, 'Love is the triumph of imagination over intelligence.-Henry Mencken': {'love': 1, 'mencken': 1, 'of': 1, 'is': 1, 'imagination': 1, 'henry': 1, 'intelligence': 1, 'the': 1, 'over': 1, 'triumph': 1}, 'Christ died for men precisely because men are not worth dying for; to make them worth it.-C.S. Lewis': {'them': 1, 'because': 1, 'lewis': 1, 'men': 2, 'it': 1, 'are': 1, 'not': 1, 'precisely': 1, 'died': 1, 'c': 1, 'christ': 1, 'for': 2, 'make': 1, 'to': 1, 's': 1, 'dying': 1, 'worth': 2}, 'The practice of art isn`t to make a living. It`s to make your soul grow.-Kurt Vonnegut': {'the': 1, 'art': 1, 'practice': 1, 'it': 1, 'grow': 1, 'a': 1, 'living': 1, 'of': 1, 'make': 2, 'soul': 1, 'your': 1, 'to': 2, 's': 1, 'isn': 1, 'vonnegut': 1, 'kurt': 1, 't': 1}, 'The thing we all have to understand to put these last two years in focus, is that liberals in this country care more about whether European leaders like us than they do about whether terrorists are killing us.-Rush Limbaugh': {'this': 1, 'all': 1, 'leaders': 1, 'terrorists': 1, 'is': 1, 'focus': 1, 'years': 1, 'are': 1, 'have': 1, 'in': 2, 'these': 1, 'two': 1, 'to': 2, 'liberals': 1, 'more': 1, 'do': 1, 'we': 1, 'that': 1, 'about': 2, 'killing': 1, 'understand': 1, 'they': 1, 'put': 1, 'than': 1, 'care': 1, 'rush': 1, 'last': 1, 'like': 1, 'whether': 2, 'country': 1, 'limbaugh': 1, 'us': 2, 'thing': 1, 'the': 1, 'european': 1}, 'Philosophy is to the real world as masturbation is to sex.-Karl Marx': {'real': 1, 'is': 2, 'philosophy': 1, 'sex': 1, 'to': 2, 'as': 1, 'world': 1, 'the': 1, 'marx': 1, 'karl': 1, 'masturbation': 1}, 'No human relation gives one possession in another...every two souls are absolutely different. In friendship and in love, the two side by side raise hands together to find what one cannot reach alone.-Kahlil Gibran': {'and': 1, 'possession': 1, 'love': 1, 'another': 1, 'what': 1, 'absolutely': 1, 'hands': 1, 'reach': 1, 'souls': 1, 'one': 2, 'cannot': 1, 'relation': 1, 'are': 1, 'human': 1, 'in': 3, 'alone': 1, 'gibran': 1, 'find': 1, 'different': 1, 'raise': 1, 'no': 1, 'two': 2, 'together': 1, 'by': 1, 'to': 1, 'kahlil': 1, 'every': 1, 'the': 1, 'friendship': 1, 'side': 2, 'gives': 1}, 'The illegal we do immediately. The unconstitutional takes a little longer.-Henry Kissinger': {'a': 1, 'do': 1, 'we': 1, 'takes': 1, 'kissinger': 1, 'illegal': 1, 'unconstitutional': 1, 'little': 1, 'henry': 1, 'immediately': 1, 'the': 2, 'longer': 1}, 'I`d rather hear an old truth than a new lie.-Chris Bowyer': {'a': 1, 'lie': 1, 'bowyer': 1, 'old': 1, 'd': 1, 'i': 1, 'an': 1, 'rather': 1, 'hear': 1, 'truth': 1, 'chris': 1, 'new': 1, 'than': 1}, 'Dying is the most embarrassing thing that can ever happen to you, because someone`s got to take care of all your details.-Andy Warhol': {'the': 1, 'all': 1, 'because': 1, 'embarrassing': 1, 'that': 1, 'is': 1, 'most': 1, 'someone': 1, 'happen': 1, 'your': 1, 'care': 1, 'warhol': 1, 'dying': 1, 'thing': 1, 'of': 1, 'can': 1, 'to': 2, 's': 1, 'andy': 1, 'details': 1, 'got': 1, 'you': 1, 'ever': 1, 'take': 1}, 'Some of your countrymen were unable to distinguish between their native dislike for war and the stainless patriotism of those who suffered its scars. But there has been a rethinking and now we can say to you, and say as a nation, thank you for your courage.-Ronald Reagan': {'and': 3, 'rethinking': 1, 'patriotism': 1, 'some': 1, 'say': 2, 'dislike': 1, 'countrymen': 1, 'its': 1, 'native': 1, 'thank': 1, 'for': 2, 'their': 1, 'stainless': 1, 'there': 1, 'been': 1, 'your': 2, 'to': 2, 'unable': 1, 'between': 1, 'suffered': 1, 'has': 1, 'war': 1, 'we': 1, 'reagan': 1, 'who': 1, 'but': 1, 'nation': 1, 'ronald': 1, 'courage': 1, 'distinguish': 1, 'now': 1, 'you': 2, 'those': 1, 'a': 2, 'of': 2, 'scars': 1, 'as': 1, 'can': 1, 'were': 1, 'the': 1}, 'What sunshine is to flowers, smiles are to humanity. These are but trifles, to be sure; but scattered along life`s pathway, the good they do is inconceivable.-Joseph Addison': {'be': 1, 'life': 1, 'good': 1, 'trifles': 1, 'addison': 1, 'do': 1, 'is': 2, 'sunshine': 1, 'scattered': 1, 'but': 2, 'sure': 1, 'are': 2, 'they': 1, 'along': 1, 'inconceivable': 1, 'what': 1, 'flowers': 1, 'these': 1, 'humanity': 1, 'to': 3, 's': 1, 'joseph': 1, 'smiles': 1, 'the': 1, 'pathway': 1}, 'Obstacles do not exist to be surrendered to, but only to be broken.-Adolf Hitler': {'do': 1, 'adolf': 1, 'be': 2, 'obstacles': 1, 'but': 1, 'to': 3, 'only': 1, 'exist': 1, 'surrendered': 1, 'not': 1, 'broken': 1, 'hitler': 1}, 'Genius is one per cent inspiration, ninety-nine per cent perspiration.-Thomas Edison': {'thomas': 1, 'is': 1, 'edison': 1, 'cent': 2, 'one': 1, 'perspiration': 1, 'genius': 1, 'ninety': 1, 'nine': 1, 'per': 2, 'inspiration': 1}, 'The right to swing my fist ends where the other man`s nose begins.-Oliver Wendell Holmes': {'holmes': 1, 'ends': 1, 'right': 1, 'wendell': 1, 'fist': 1, 'man': 1, 'begins': 1, 'oliver': 1, 'my': 1, 'to': 1, 's': 1, 'other': 1, 'nose': 1, 'swing': 1, 'the': 2, 'where': 1}, 'The world is full of suffering. It is also full of overcoming it.-Helen Keller': {'full': 2, 'of': 2, 'is': 2, 'helen': 1, 'it': 2, 'overcoming': 1, 'also': 1, 'suffering': 1, 'keller': 1, 'world': 1, 'the': 1}, 'It is better to keep your mouth closed and let people think you are a fool than to open it and remove all doubt.-Mark Twain': {'and': 2, 'fool': 1, 'all': 1, 'than': 1, 'people': 1, 'is': 1, 'it': 2, 'mouth': 1, 'are': 1, 'keep': 1, 'open': 1, 'your': 1, 'a': 1, 'better': 1, 'remove': 1, 'mark': 1, 'twain': 1, 'to': 2, 'doubt': 1, 'closed': 1, 'let': 1, 'you': 1, 'think': 1}, 'To be awake is to be alive.-Henry Thoreau': {'be': 2, 'awake': 1, 'thoreau': 1, 'to': 2, 'is': 1, 'henry': 1, 'alive': 1}, 'Success, the real success, does not depend upon the position you hold but upon how you carry yourself in that position.-Theodore Roosevelt': {'real': 1, 'that': 1, 'theodore': 1, 'upon': 2, 'but': 1, 'yourself': 1, 'carry': 1, 'in': 1, 'not': 1, 'hold': 1, 'you': 2, 'depend': 1, 'success': 2, 'roosevelt': 1, 'how': 1, 'does': 1, 'position': 2, 'the': 2}, 'No matter how much cats fight, there always seem to be plenty of kittens.-Abraham Lincoln': {'be': 1, 'kittens': 1, 'no': 1, 'plenty': 1, 'seem': 1, 'matter': 1, 'lincoln': 1, 'how': 1, 'always': 1, 'there': 1, 'fight': 1, 'to': 1, 'much': 1, 'of': 1, 'cats': 1, 'abraham': 1}, 'Everything that irritates us about others can lead us to an understanding of ourselves.-Carl Jung': {'about': 1, 'lead': 1, 'that': 1, 'irritates': 1, 'of': 1, 'jung': 1, 'an': 1, 'to': 1, 'us': 2, 'carl': 1, 'others': 1, 'everything': 1, 'understanding': 1, 'ourselves': 1, 'can': 1}, 'The most exciting phrase to hear in science, the one that heralds new discoveries, is not `Eureka!` (I found it!) but `That`s funny...`-Isaac Asimov': {'that': 2, 'is': 1, 'it': 1, 'but': 1, 'one': 1, 'most': 1, 'hear': 1, 'heralds': 1, 'in': 1, 'not': 1, 'phrase': 1, 'exciting': 1, 'funny': 1, 'found': 1, 'asimov': 1, 'i': 1, 'science': 1, 'eureka': 1, 'to': 1, 's': 1, 'isaac': 1, 'new': 1, 'the': 2, 'discoveries': 1}, 'God help the man who won`t marry until he finds a perfect woman, and God help him still more if he finds her.-Benjamin Tillet': {'and': 1, 'benjamin': 1, 'woman': 1, 'help': 2, 'who': 1, 'a': 1, 'still': 1, 'tillet': 1, 'him': 1, 'if': 1, 'perfect': 1, 'he': 2, 'her': 1, 'god': 2, 'marry': 1, 'finds': 2, 'won': 1, 't': 1, 'the': 1, 'man': 1, 'until': 1, 'more': 1}, 'I believe one of the reasons so many do not get a higher education is the fear of their parents that they will lose more morally than they will receive mentally.-William Jennings Bryan': {'do': 1, 'that': 1, 'reasons': 1, 'is': 1, 'lose': 1, 'jennings': 1, 'one': 1, 'william': 1, 'morally': 1, 'they': 2, 'not': 1, 'fear': 1, 'education': 1, 'than': 1, 'mentally': 1, 'a': 1, 'bryan': 1, 'believe': 1, 'i': 1, 'many': 1, 'get': 1, 'will': 2, 'their': 1, 'parents': 1, 'of': 2, 'so': 1, 'the': 2, 'more': 1, 'receive': 1, 'higher': 1}, 'I believe this government cannot endure permanently half slave and half free.-Abraham Lincoln': {'and': 1, 'lincoln': 1, 'believe': 1, 'slave': 1, 'government': 1, 'i': 1, 'free': 1, 'this': 1, 'cannot': 1, 'permanently': 1, 'endure': 1, 'half': 2, 'abraham': 1}, 'I have come to the conclusion that my subjective account of my motivation is largely mythical on almost all occasions. I don`t know why I do things.-J.B.S. Haldane': {'do': 1, 'motivation': 1, 'that': 1, 'almost': 1, 'is': 1, 'of': 1, 'all': 1, 'subjective': 1, 'know': 1, 'have': 1, 'come': 1, 'why': 1, 'on': 1, 'account': 1, 'b': 1, 'don': 1, 'mythical': 1, 'largely': 1, 'i': 3, 'things': 1, 'haldane': 1, 'j': 1, 'to': 1, 's': 1, 't': 1, 'occasions': 1, 'the': 1, 'my': 2, 'conclusion': 1}, 'Unless the religious claims of the Bible are again acknowledged, its literary claims will, I think, be given only `mouth honour` and that decreasingly.-C.S. Lewis': {'and': 1, 'be': 1, 'unless': 1, 'that': 1, 'lewis': 1, 'c': 1, 'will': 1, 'mouth': 1, 'are': 1, 'religious': 1, 'its': 1, 'again': 1, 'given': 1, 'bible': 1, 'decreasingly': 1, 'i': 1, 'of': 1, 'acknowledged': 1, 's': 1, 'literary': 1, 'only': 1, 'honour': 1, 'claims': 2, 'the': 2, 'think': 1}, 'Alexander, Caesar, Charlemagne, and myself founded empires; but what foundation did we rest the creations of our genius? Upon force. Jesus Christ founded an empire upon love; and at this hour millions of men would die for Him.-Napoleon Bonaparte': {'and': 2, 'force': 1, 'rest': 1, 'jesus': 1, 'founded': 2, 'at': 1, 'our': 1, 'empire': 1, 'millions': 1, 'empires': 1, 'what': 1, 'christ': 1, 'would': 1, 'bonaparte': 1, 'genius': 1, 'caesar': 1, 'foundation': 1, 'we': 1, 'love': 1, 'men': 1, 'upon': 2, 'but': 1, 'creations': 1, 'an': 1, 'him': 1, 'napoleon': 1, 'alexander': 1, 'myself': 1, 'for': 1, 'hour': 1, 'did': 1, 'of': 2, 'this': 1, 'charlemagne': 1, 'die': 1, 'the': 1}, 'There is hardly a political question in the United States which does not sooner or later turn into a judicial one.-Alexis de Tocqueville': {'tocqueville': 1, 'later': 1, 'question': 1, 'into': 1, 'de': 1, 'sooner': 1, 'one': 1, 'states': 1, 'in': 1, 'not': 1, 'a': 2, 'united': 1, 'judicial': 1, 'there': 1, 'political': 1, 'alexis': 1, 'or': 1, 'turn': 1, 'does': 1, 'which': 1, 'the': 1, 'hardly': 1, 'is': 1}, 'Those who forget good and evil and seek only to know the facts are more likely to achieve good than those who view the world through the distorting medium of their own desires.-Bertrand Russell': {'and': 2, 'own': 1, 'forget': 1, 'desires': 1, 'who': 2, 'evil': 1, 'likely': 1, 'medium': 1, 'through': 1, 'are': 1, 'facts': 1, 'world': 1, 'seek': 1, 'than': 1, 'those': 2, 'distorting': 1, 'russell': 1, 'to': 2, 'bertrand': 1, 'of': 1, 'know': 1, 'good': 2, 'their': 1, 'only': 1, 'the': 3, 'view': 1, 'achieve': 1, 'more': 1}, 'You know what the fellow said: In Italy for thirty years under the Borgias they had warfare, terror, murder, and bloodshed, but they produced Michaelangelo, Leonardo Da Vinci, and the Renaissance. In Switzerland, they had brotherly love--they had five hundred years of democracy and peace, and what did they produce? The cuckoo clock.-Orson Welles': {'and': 4, 'love': 1, 'brotherly': 1, 'fellow': 1, 'produced': 1, 'in': 2, 'what': 2, 'said': 1, 'italy': 1, 'for': 1, 'clock': 1, 'peace': 1, 'had': 3, 'borgias': 1, 'under': 1, 'terror': 1, 'you': 1, 'hundred': 1, 'bloodshed': 1, 'thirty': 1, 'murder': 1, 'vinci': 1, 'welles': 1, 'but': 1, 'da': 1, 'renaissance': 1, 'produce': 1, 'five': 1, 'know': 1, 'they': 5, 'orson': 1, 'years': 2, 'michaelangelo': 1, 'warfare': 1, 'democracy': 1, 'cuckoo': 1, 'did': 1, 'of': 1, 'switzerland': 1, 'the': 4, 'leonardo': 1}, 'Forgive, O Lord, my little jokes on Thee, and I`ll forgive Thy great big joke on me.-Robert Frost': {'and': 1, 'big': 1, 'thee': 1, 'frost': 1, 'great': 1, 'forgive': 2, 'me': 1, 'on': 2, 'little': 1, 'thy': 1, 'i': 1, 'joke': 1, 'robert': 1, 'o': 1, 'jokes': 1, 'lord': 1, 'my': 1, 'll': 1}, 'Of all bad men religious bad men are the worst.-C.S. Lewis': {'all': 1, 'bad': 2, 'of': 1, 'men': 2, 'c': 1, 's': 1, 'worst': 1, 'are': 1, 'lewis': 1, 'the': 1, 'religious': 1}, 'I am Envy. I cannot read and therefore wish all books burned.-Christopher Marlowe': {'and': 1, 'marlowe': 1, 'envy': 1, 'i': 2, 'wish': 1, 'am': 1, 'all': 1, 'read': 1, 'cannot': 1, 'books': 1, 'therefore': 1, 'christopher': 1, 'burned': 1}, 'If you`re in a boxing match, try not to let the other guy`s glove touch your lips, because you don`t know where that glove has been.-Jack Handey': {'the': 1, 'because': 1, 'that': 1, 'not': 1, 'lips': 1, 'let': 1, 'know': 1, 'in': 1, 'touch': 1, 'your': 1, 'if': 1, 'a': 1, 'don': 1, 'glove': 2, 'to': 1, 'boxing': 1, 'been': 1, 'try': 1, 're': 1, 's': 1, 'other': 1, 'guy': 1, 't': 1, 'you': 2, 'has': 1, 'where': 1, 'handey': 1, 'match': 1, 'jack': 1}, 'It still remains true that no justification of virtue will enable a man to be virtuous.-C.S. Lewis': {'be': 1, 'justification': 1, 'virtuous': 1, 'lewis': 1, 'it': 1, 'enable': 1, 'virtue': 1, 'still': 1, 'true': 1, 'man': 1, 'a': 1, 'c': 1, 'no': 1, 'remains': 1, 'of': 1, 'that': 1, 'will': 1, 'to': 1, 's': 1}, 'Not only does God play dice, but he sometimes throws them where they cannot be seen.-Stephen Hawking': {'be': 1, 'play': 1, 'them': 1, 'but': 1, 'cannot': 1, 'they': 1, 'not': 1, 'seen': 1, 'he': 1, 'dice': 1, 'god': 1, 'sometimes': 1, 'only': 1, 'does': 1, 'hawking': 1, 'stephen': 1, 'where': 1, 'throws': 1}, 'Guard with jealous attention the public liberty. Suspect everyone who approaches that jewel.-Patrick Henry': {'everyone': 1, 'that': 1, 'patrick': 1, 'who': 1, 'jewel': 1, 'guard': 1, 'liberty': 1, 'approaches': 1, 'suspect': 1, 'attention': 1, 'henry': 1, 'jealous': 1, 'the': 1, 'with': 1, 'public': 1}, 'If a man is proud of his wealth, he should not be praised until it is known how he employs it.-Socrates': {'be': 1, 'his': 1, 'is': 2, 'it': 2, 'not': 1, 'employs': 1, 'known': 1, 'he': 2, 'a': 1, 'wealth': 1, 'of': 1, 'proud': 1, 'should': 1, 'how': 1, 'socrates': 1, 'praised': 1, 'man': 1, 'if': 1, 'until': 1}, 'The customs and fashions of men change like leaves on the bough, some of which go and others come.-Dante Alighieri': {'and': 2, 'alighieri': 1, 'men': 1, 'some': 1, 'customs': 1, 'others': 1, 'go': 1, 'come': 1, 'change': 1, 'on': 1, 'like': 1, 'of': 2, 'leaves': 1, 'dante': 1, 'which': 1, 'fashions': 1, 'the': 2, 'bough': 1}, 'My role in society, or any artist`s or poet`s role, is to try and express what we all feel. Not to tell people how to feel. Not as a preacher, not as a leader, but as a reflection of us all.-John Lennon': {'and': 1, 'all': 2, 'people': 1, 'feel': 2, 'is': 1, 'preacher': 1, 'society': 1, 'as': 3, 'in': 1, 'any': 1, 'what': 1, 'to': 3, 'how': 1, 'role': 2, 'poet': 1, 'lennon': 1, 'john': 1, 'tell': 1, 'we': 1, 'express': 1, 'but': 1, 'not': 3, 'a': 3, 'reflection': 1, 'artist': 1, 'of': 1, 'us': 1, 'leader': 1, 'try': 1, 's': 2, 'my': 1, 'or': 2}, 'A truly great book should be read in youth, again in maturity and once more in old age, as a fine building should be seen by morning light, at noon and by moonlight.-Robertson Davies': {'and': 2, 'be': 2, 'old': 1, 'read': 1, 'truly': 1, 'as': 1, 'at': 1, 'a': 2, 'in': 3, 'seen': 1, 'morning': 1, 'fine': 1, 'by': 2, 'building': 1, 'again': 1, 'great': 1, 'light': 1, 'noon': 1, 'should': 2, 'moonlight': 1, 'maturity': 1, 'book': 1, 'davies': 1, 'robertson': 1, 'youth': 1, 'once': 1, 'age': 1, 'more': 1}, 'When in doubt, do it.-Oliver Wendell Holmes': {'holmes': 1, 'do': 1, 'oliver': 1, 'wendell': 1, 'when': 1, 'it': 1, 'doubt': 1, 'in': 1}, 'Advice to young writers who want to get ahead without annoying delays: don\x92t write about Man, write about `a` man.-E.B. White': {'get': 1, 'advice': 1, 'who': 1, 'writers': 1, 'want': 1, 'e': 1, 'annoying': 1, 'man': 2, 'a': 1, 'about': 2, 'b': 1, 'don': 1, 'ahead': 1, 'delays': 1, 'young': 1, 'write': 2, 'to': 2, 'without': 1, 't': 1, 'white': 1}, 'I may be drunk, Miss, but in the morning I will be sober and you will still be ugly.-Winston Churchill': {'and': 1, 'be': 3, 'churchill': 1, 'drunk': 1, 'may': 1, 'winston': 1, 'but': 1, 'in': 1, 'sober': 1, 'still': 1, 'miss': 1, 'you': 1, 'i': 2, 'morning': 1, 'will': 2, 'ugly': 1, 'the': 1}, 'There is a great deal of difference between an eager man who wants to read a book and the tired man who wants a book to read.-GK Chesterton': {'wants': 2, 'and': 1, 'deal': 1, 'tired': 1, 'read': 2, 'is': 1, 'who': 2, 'an': 1, 'difference': 1, 'gk': 1, 'man': 2, 'a': 3, 'great': 1, 'eager': 1, 'of': 1, 'there': 1, 'to': 2, 'book': 2, 'between': 1, 'the': 1, 'chesterton': 1}, 'Andy Warhol made fame more famous.-Fran Lebowitz': {'warhol': 1, 'made': 1, 'fran': 1, 'famous': 1, 'andy': 1, 'fame': 1, 'lebowitz': 1, 'more': 1}, 'To me, clowns aren`t funny. In fact, they`re kinda scary. I`ve wondered where this started, and I think it goes back to the time I went to the circus and a clown killed my dad.-Jack Handey': {'and': 2, 'the': 2, 've': 1, 'circus': 1, 'it': 1, 'in': 1, 'kinda': 1, 'funny': 1, 'wondered': 1, 're': 1, 'aren': 1, 'to': 3, 'handey': 1, 'goes': 1, 'dad': 1, 'me': 1, 'started': 1, 'back': 1, 'jack': 1, 'they': 1, 'killed': 1, 'a': 1, 'scary': 1, 'i': 3, 'where': 1, 'clown': 1, 'this': 1, 'clowns': 1, 't': 1, 'time': 1, 'went': 1, 'my': 1, 'think': 1, 'fact': 1}, 'We live in an age when unnecessary things are our only necessities.-Oscar Wilde': {'necessities': 1, 'we': 1, 'things': 1, 'age': 1, 'live': 1, 'when': 1, 'unnecessary': 1, 'an': 1, 'only': 1, 'wilde': 1, 'are': 1, 'in': 1, 'our': 1, 'oscar': 1}, 'Surely what a man does when he is caught off his guard is the best evidence as to what sort of man he is.-C.S. Lewis': {'sort': 1, 'his': 1, 'lewis': 1, 'is': 3, 'c': 1, 'evidence': 1, 'as': 1, 'surely': 1, 'best': 1, 'man': 2, 'a': 1, 'what': 2, 'off': 1, 'of': 1, 'caught': 1, 'when': 1, 'guard': 1, 'to': 1, 's': 1, 'does': 1, 'the': 1, 'he': 2}, 'Our attitude towards others determines their attitude towards us.-Earl Nightingale': {'earl': 1, 'towards': 2, 'determines': 1, 'our': 1, 'us': 1, 'their': 1, 'attitude': 2, 'others': 1, 'nightingale': 1}, 'Nothing that you have not given away will ever be really yours.-C.S. Lewis': {'be': 1, 'given': 1, 'that': 1, 'lewis': 1, 'away': 1, 'c': 1, 'will': 1, 'nothing': 1, 's': 1, 'have': 1, 'not': 1, 'you': 1, 'ever': 1, 'yours': 1, 'really': 1}, 'Anyone who has never made a mistake has never tried anything new.-Albert Einstein': {'a': 1, 'who': 1, 'tried': 1, 'anything': 1, 'never': 2, 'albert': 1, 'anyone': 1, 'made': 1, 'einstein': 1, 'new': 1, 'has': 2, 'mistake': 1}, 'There are a thousand hacking at the branches of evil to one who is striking at the root.-Henry Thoreau': {'striking': 1, 'thousand': 1, 'who': 1, 'evil': 1, 'one': 1, 'thoreau': 1, 'the': 2, 'a': 1, 'branches': 1, 'of': 1, 'there': 1, 'to': 1, 'henry': 1, 'at': 2, 'hacking': 1, 'root': 1, 'is': 1, 'are': 1}, 'The eyes of the world are upon you. The hopes and prayers of liberty-loving people everywhere march with you.-Dwight Eisenhower': {'and': 1, 'eyes': 1, 'march': 1, 'prayers': 1, 'upon': 1, 'everywhere': 1, 'are': 1, 'hopes': 1, 'world': 1, 'with': 1, 'you': 2, 'of': 2, 'people': 1, 'liberty': 1, 'eisenhower': 1, 'the': 3, 'dwight': 1, 'loving': 1}, 'We should take care not to make the intellect our god; it has, of course, powerful muscles, but no personality.-Albert Einstein': {'we': 1, 'muscles': 1, 'albert': 1, 'powerful': 1, 'it': 1, 'but': 1, 'course': 1, 'einstein': 1, 'not': 1, 'our': 1, 'intellect': 1, 'care': 1, 'no': 1, 'god': 1, 'make': 1, 'should': 1, 'to': 1, 'take': 1, 'of': 1, 'the': 1, 'has': 1, 'personality': 1}, 'Most modern freedom is at root fear. It is not so much that we are too bold to endure rules; it is rather that we are too timid to endure responsibilities.-GK Chesterton': {'we': 2, 'bold': 1, 'that': 2, 'rules': 1, 'is': 3, 'modern': 1, 'it': 2, 'most': 1, 'at': 1, 'endure': 2, 'not': 1, 'fear': 1, 'gk': 1, 'are': 2, 'rather': 1, 'timid': 1, 'to': 2, 'responsibilities': 1, 'much': 1, 'so': 1, 'too': 2, 'freedom': 1, 'root': 1, 'chesterton': 1}, 'We are what we repeatedly do. Excellence, therefore, is not an act, but a habit.-Aristotle': {'a': 1, 'do': 1, 'we': 2, 'habit': 1, 'is': 1, 'repeatedly': 1, 'what': 1, 'but': 1, 'an': 1, 'excellence': 1, 'therefore': 1, 'aristotle': 1, 'act': 1, 'not': 1, 'are': 1}, 'Money can help you to get medicines but not health. Money can help you to get soft pillows, but not sound sleep. Money can help you to get material comforts, but not eternal bliss. Money can help you to get ornaments, but not beauty. Money will help you to get an electric earphone, but not natural hearing. Attain the supreme wealth, wisdom, and you will have everything.-Benjamin Franklin': {'and': 1, 'supreme': 1, 'earphone': 1, 'help': 5, 'money': 5, 'an': 1, 'sleep': 1, 'attain': 1, 'ornaments': 1, 'pillows': 1, 'wealth': 1, 'to': 5, 'everything': 1, 'health': 1, 'bliss': 1, 'you': 6, 'can': 4, 'benjamin': 1, 'electric': 1, 'beauty': 1, 'get': 5, 'material': 1, 'eternal': 1, 'but': 5, 'wisdom': 1, 'not': 5, 'hearing': 1, 'sound': 1, 'natural': 1, 'medicines': 1, 'will': 2, 'franklin': 1, 'have': 1, 'the': 1, 'soft': 1, 'comforts': 1}, 'Even if there is only one possible unified theory, it is just a set of rules and equations. What is it that breathes fire into the equations and makes a universe for them to describe?-Stephen Hawking': {'and': 2, 'unified': 1, 'them': 1, 'set': 1, 'theory': 1, 'just': 1, 'that': 1, 'fire': 1, 'is': 3, 'describe': 1, 'it': 2, 'one': 1, 'a': 2, 'equations': 2, 'if': 1, 'even': 1, 'what': 1, 'for': 1, 'rules': 1, 'of': 1, 'there': 1, 'breathes': 1, 'to': 1, 'only': 1, 'hawking': 1, 'universe': 1, 'stephen': 1, 'the': 1, 'makes': 1, 'into': 1, 'possible': 1}, 'The fruit that can fall without shaking, indeed is too mellow for me.-Lady Mary Wortley Montagu': {'that': 1, 'indeed': 1, 'is': 1, 'wortley': 1, 'fruit': 1, 'fall': 1, 'mellow': 1, 'lady': 1, 'me': 1, 'for': 1, 'without': 1, 'can': 1, 'montagu': 1, 'the': 1, 'shaking': 1, 'mary': 1, 'too': 1}, 'The object of war is not to die for your country but to make the other bastard die for his.-George Patton': {'his': 1, 'is': 1, 'object': 1, 'but': 1, 'not': 1, 'george': 1, 'bastard': 1, 'for': 2, 'of': 1, 'make': 1, 'patton': 1, 'your': 1, 'to': 2, 'other': 1, 'die': 2, 'the': 2, 'country': 1, 'war': 1}, 'We must repsect the other fellow`s religion, but only in the sense and to the extent that we respect his theory that his wife is beautiful and his children are smart.-Henry Mencken': {'and': 2, 'beautiful': 1, 'we': 2, 'his': 3, 'theory': 1, 'that': 2, 'is': 1, 'sense': 1, 'but': 1, 'fellow': 1, 'are': 1, 'extent': 1, 'in': 1, 'respect': 1, 'repsect': 1, 'children': 1, 'must': 1, 'to': 1, 'mencken': 1, 'wife': 1, 's': 1, 'religion': 1, 'only': 1, 'other': 1, 'henry': 1, 'the': 3, 'smart': 1}, 'Without music, life would be a mistake.-Friedrich Nietzsche': {'a': 1, 'be': 1, 'life': 1, 'would': 1, 'friedrich': 1, 'without': 1, 'music': 1, 'nietzsche': 1, 'mistake': 1}, 'Time is a great teacher, but unfortunately it kills all its pupils.-Louis Hector Berlioz': {'a': 1, 'great': 1, 'unfortunately': 1, 'kills': 1, 'louis': 1, 'is': 1, 'all': 1, 'but': 1, 'it': 1, 'hector': 1, 'teacher': 1, 'time': 1, 'berlioz': 1, 'its': 1, 'pupils': 1}, 'If you can`t convince them, confuse them.-Harry Truman': {'them': 2, 'can': 1, 'confuse': 1, 'convince': 1, 't': 1, 'harry': 1, 'you': 1, 'truman': 1, 'if': 1}, 'I`m a middle age white guy, which means I`m constantly reminded that my particular group is responsible for the oppression of every known minority PLUS most wars PLUS government corruption PLUS pollution of the environment, not to mention that it was middle-age white guys who killed Bambi`s mom.-Dave Barry': {'the': 2, 'responsible': 1, 'is': 1, 'it': 1, 'middle': 2, 'group': 1, 'for': 1, 'barry': 1, 'constantly': 1, 'reminded': 1, 'bambi': 1, 'environment': 1, 'to': 1, 'which': 1, 'white': 2, 'was': 1, 'corruption': 1, 'a': 1, 'minority': 1, 'that': 2, 'oppression': 1, 'who': 1, 'wars': 1, 'most': 1, 'dave': 1, 'every': 1, 'mom': 1, 'particular': 1, 'not': 1, 'guys': 1, 'killed': 1, 'known': 1, 'government': 1, 'mention': 1, 'i': 2, 'of': 2, 'means': 1, 'm': 2, 's': 1, 'plus': 3, 'guy': 1, 'my': 1, 'age': 2, 'pollution': 1}, 'Everything that used to be a sin is now a disease.-Bill Maher': {'a': 2, 'be': 1, 'used': 1, 'that': 1, 'is': 1, 'bill': 1, 'disease': 1, 'to': 1, 'maher': 1, 'everything': 1, 'now': 1, 'sin': 1}, 'For a time, at least, I was the most famous person in the entire world.-Jesse Owens': {'famous': 1, 'at': 1, 'in': 1, 'world': 1, 'owens': 1, 'jesse': 1, 'a': 1, 'entire': 1, 'for': 1, 'most': 1, 'i': 1, 'least': 1, 'person': 1, 'time': 1, 'the': 2, 'was': 1}, 'It is by the goodness of God that, in this country, we have three benefits: freedom of speech, freedom of thought, and the wisdom never to use either.-Mark Twain': {'and': 1, 'we': 1, 'freedom': 2, 'have': 1, 'that': 1, 'is': 1, 'never': 1, 'it': 1, 'wisdom': 1, 'goodness': 1, 'in': 1, 'by': 1, 'thought': 1, 'use': 1, 'benefits': 1, 'this': 1, 'god': 1, 'three': 1, 'mark': 1, 'twain': 1, 'to': 1, 'speech': 1, 'either': 1, 'of': 3, 'the': 2, 'country': 1}, 'Film lovers are sick people.-Francois Truffaut': {'lovers': 1, 'are': 1, 'sick': 1, 'people': 1, 'truffaut': 1, 'francois': 1, 'film': 1}, 'The United States stands at the pinnacle of world power. This is a solemn moment for the American democracy. For with primacy in power is joined an awe-inspiring accountability for the future.-Winston Churchill': {'churchill': 1, 'power': 2, 'is': 2, 'winston': 1, 'for': 3, 'an': 1, 'states': 1, 'moment': 1, 'at': 1, 'in': 1, 'world': 1, 'awe': 1, 'with': 1, 'a': 1, 'inspiring': 1, 'united': 1, 'pinnacle': 1, 'stands': 1, 'democracy': 1, 'solemn': 1, 'of': 1, 'joined': 1, 'accountability': 1, 'this': 1, 'american': 1, 'future': 1, 'the': 4, 'primacy': 1}, 'Bashfulness is an ornament to youth, but a reproach to old age.-Aristotle': {'a': 1, 'old': 1, 'is': 1, 'ornament': 1, 'but': 1, 'an': 1, 'youth': 1, 'to': 2, 'aristotle': 1, 'bashfulness': 1, 'reproach': 1, 'age': 1}, 'Were it possible for us to wait for ourselves to come into the room, not many of us would find our hearts breaking into flower as we heard the door handle turn.-Rebecca West': {'we': 1, 'door': 1, 'into': 2, 'of': 1, 'it': 1, 'possible': 1, 'heard': 1, 'as': 1, 'not': 1, 'our': 1, 'turn': 1, 'rebecca': 1, 'find': 1, 'wait': 1, 'handle': 1, 'flower': 1, 'for': 2, 'would': 1, 'room': 1, 'west': 1, 'breaking': 1, 'us': 2, 'ourselves': 1, 'to': 2, 'come': 1, 'were': 1, 'hearts': 1, 'the': 2, 'many': 1}, 'To think is to differ.-Clarence Darrow': {'to': 2, 'differ': 1, 'clarence': 1, 'darrow': 1, 'is': 1, 'think': 1}, 'The reason we hold truth in such respect is because we have so little opportunity to get familiar with it.-Mark Twain': {'we': 2, 'because': 1, 'get': 1, 'familiar': 1, 'is': 1, 'respect': 1, 'it': 1, 'reason': 1, 'have': 1, 'in': 1, 'such': 1, 'hold': 1, 'with': 1, 'little': 1, 'opportunity': 1, 'mark': 1, 'twain': 1, 'to': 1, 'so': 1, 'truth': 1, 'the': 1}, 'If Al Gore invented the Internet, I invented spell check.-Dan Quayle': {'quayle': 1, 'i': 1, 'dan': 1, 'spell': 1, 'al': 1, 'gore': 1, 'internet': 1, 'the': 1, 'invented': 2, 'check': 1, 'if': 1}, 'Deliberation and debate is the way you stir the soul of our democracy.-Jesse Jackson': {'and': 1, 'jackson': 1, 'deliberation': 1, 'democracy': 1, 'of': 1, 'is': 1, 'soul': 1, 'debate': 1, 'way': 1, 'our': 1, 'you': 1, 'stir': 1, 'the': 2, 'jesse': 1}, 'It is one of the blessings of old friends that you can afford to be stupid with them.-Ralph Waldo Emerson': {'be': 1, 'them': 1, 'old': 1, 'that': 1, 'afford': 1, 'is': 1, 'friends': 1, 'it': 1, 'one': 1, 'with': 1, 'you': 1, 'waldo': 1, 'of': 2, 'ralph': 1, 'to': 1, 'emerson': 1, 'stupid': 1, 'can': 1, 'blessings': 1, 'the': 1}, 'I love Thanksgiving. It`s the only time in Los Angeles that you see natural breasts.-Arnold Schwarzenegger': {'love': 1, 'schwarzenegger': 1, 'that': 1, 's': 1, 'breasts': 1, 'it': 1, 'see': 1, 'in': 1, 'you': 1, 'natural': 1, 'i': 1, 'thanksgiving': 1, 'arnold': 1, 'angeles': 1, 'los': 1, 'only': 1, 'time': 1, 'the': 1}, 'An optimist is a person who starts a new diet on Thanksgiving Day.-Irv Kupcinet': {'a': 2, 'on': 1, 'starts': 1, 'is': 1, 'who': 1, 'thanksgiving': 1, 'diet': 1, 'an': 1, 'person': 1, 'irv': 1, 'optimist': 1, 'new': 1, 'kupcinet': 1, 'day': 1}, 'May God have mercy upon my enemies, because I won`t.-George Patton': {'mercy': 1, 'because': 1, 'may': 1, 'god': 1, 'upon': 1, 'i': 1, 'won': 1, 't': 1, 'have': 1, 'patton': 1, 'my': 1, 'george': 1, 'enemies': 1}, 'I don`t care what is written about me, so long as it isn`t true.-Dorothy Parker': {'parker': 1, 'is': 1, 'about': 1, 'it': 1, 'as': 1, 'dorothy': 1, 'true': 1, 'care': 1, 'me': 1, 'what': 1, 'don': 1, 'i': 1, 'long': 1, 'written': 1, 'so': 1, 'isn': 1, 't': 2}, 'I think a good gift for the president would be a chocolate revolver. And since he`s so busy, you`d probably have to run up to him and hand it to him.-Jack Handey': {'and': 2, 'be': 1, 'good': 1, 'run': 1, 'up': 1, 'it': 1, 'chocolate': 1, 'd': 1, 'jack': 1, 'have': 1, 'president': 1, 'hand': 1, 'gift': 1, 'him': 2, 'he': 1, 'a': 2, 'busy': 1, 'for': 1, 'would': 1, 'i': 1, 'since': 1, 'revolver': 1, 'the': 1, 'to': 3, 's': 1, 'handey': 1, 'so': 1, 'probably': 1, 'you': 1, 'think': 1}, 'I`ve got more trophies than Wayne Gretzky & The Pope combined!-Homer Simpson': {'homer': 1, 've': 1, 'pope': 1, 'i': 1, 'trophies': 1, 'wayne': 1, 'combined': 1, 'got': 1, 'the': 1, 'more': 1, 'than': 1, 'simpson': 1, 'gretzky': 1}, 'Worry is interest paid on trouble before it falls due.-W. R. Inge': {'on': 1, 'interest': 1, 'inge': 1, 'is': 1, 'it': 1, 'paid': 1, 'falls': 1, 'r': 1, 'due': 1, 'w': 1, 'trouble': 1, 'worry': 1, 'before': 1}, 'When an American says that he loves his country, he means not only that he loves the New England hills, the prairies glistening in the sun, the wide and rising plains, the great mountains, and the sea. He means that he loves an inner air, an inner light in which freedom lives and in which a man can draw the breath of self-respect.-Adlai Stevenson': {'and': 3, 'says': 1, 'an': 3, 'rising': 1, 'sea': 1, 'in': 3, 'england': 1, 'light': 1, 'glistening': 1, 'hills': 1, 'sun': 1, 'self': 1, 'means': 2, 'when': 1, 'american': 1, 'breath': 1, 'plains': 1, 'only': 1, 'inner': 2, 'which': 2, 'new': 1, 'he': 5, 'mountains': 1, 'draw': 1, 'his': 1, 'prairies': 1, 'lives': 1, 'not': 1, 'respect': 1, 'man': 1, 'a': 1, 'wide': 1, 'great': 1, 'that': 3, 'of': 1, 'stevenson': 1, 'air': 1, 'adlai': 1, 'can': 1, 'loves': 3, 'freedom': 1, 'the': 7, 'country': 1}, 'New knowledge is the most valuable commodity on earth. The more truth we have to work with, the richer we become.-Kurt Vonnegut': {'we': 2, 'truth': 1, 'is': 1, 'valuable': 1, 'most': 1, 'have': 1, 'new': 1, 'earth': 1, 'with': 1, 'kurt': 1, 'on': 1, 'knowledge': 1, 'commodity': 1, 'work': 1, 'richer': 1, 'to': 1, 'vonnegut': 1, 'become': 1, 'the': 3, 'more': 1}, 'The puritanism of Christianity has played havoc with the moderation that an enlightened and tolerant critical spirit would have produced. I`ve noticed that in whatever country, county, town, or other region there is a regulation enjoining temperance, the population seems to be entirely composed of teetotallers and drunkards. There`s a Bible on that shelf there. But I keep it next to Voltaire - poison and antidote.-Bertrand Russell': {'and': 3, 'composed': 1, 'temperance': 1, 've': 1, 'played': 1, 'seems': 1, 'is': 1, 'it': 1, 'whatever': 1, 'an': 1, 'produced': 1, 'havoc': 1, 'have': 1, 'in': 1, 'noticed': 1, 'the': 3, 'enlightened': 1, 'tolerant': 1, 'russell': 1, 'would': 1, 'bertrand': 1, 'drunkards': 1, 'there': 3, 'voltaire': 1, 'poison': 1, 'christianity': 1, 'to': 2, 'regulation': 1, 'other': 1, 'has': 1, 'antidote': 1, 'be': 1, 'that': 3, 'shelf': 1, 'town': 1, 'but': 1, 'next': 1, 'moderation': 1, 'enjoining': 1, 'puritanism': 1, 'with': 1, 'spirit': 1, 'population': 1, 'a': 2, 'on': 1, 'bible': 1, 'i': 2, 'of': 2, 'region': 1, 'county': 1, 'keep': 1, 'teetotallers': 1, 's': 1, 'critical': 1, 'country': 1, 'entirely': 1, 'or': 1}, 'Enthusiasm is the great hill-climber.-Elbert Hubbard': {'great': 1, 'hubbard': 1, 'elbert': 1, 'is': 1, 'hill': 1, 'enthusiasm': 1, 'the': 1, 'climber': 1}, 'I never knew what real happiness was until I got married, and by then it was too late.-Max Kaufman': {'real': 1, 'and': 1, 'never': 1, 'then': 1, 'max': 1, 'knew': 1, 'it': 1, 'kaufman': 1, 'by': 1, 'happiness': 1, 'what': 1, 'i': 2, 'married': 1, 'late': 1, 'too': 1, 'got': 1, 'was': 2, 'until': 1}, 'Most football teams are temperamental. That`s 90% temper and 10% mental.-Doug Plank': {'and': 1, '10': 1, 'mental': 1, 'that': 1, 'football': 1, 'teams': 1, 'most': 1, 's': 1, 'temper': 1, 'are': 1, 'doug': 1, '90': 1, 'plank': 1, 'temperamental': 1}, 'Life does not cease to be funny when people die any more than it ceases to be serious when people laugh.-George Bernard Shaw': {'be': 2, 'life': 1, 'ceases': 1, 'people': 2, 'any': 1, 'it': 1, 'cease': 1, 'laugh': 1, 'not': 1, 'george': 1, 'funny': 1, 'shaw': 1, 'to': 2, 'die': 1, 'when': 2, 'than': 1, 'bernard': 1, 'does': 1, 'serious': 1, 'more': 1}, 'Opera is when a guy gets stabbed in the back and, instead of bleeding, he sings.-Ed Gardner': {'and': 1, 'bleeding': 1, 'ed': 1, 'is': 1, 'back': 1, 'gardner': 1, 'in': 1, 'stabbed': 1, 'guy': 1, 'he': 1, 'a': 1, 'sings': 1, 'opera': 1, 'of': 1, 'when': 1, 'instead': 1, 'the': 1, 'gets': 1}, 'As Mankind becomes more liberal, they will be more apt to allow that all those who conduct themselves as worthy members of the community are equally entitled to the protections of civil government. I hope ever to see America among the foremost nations of justice and liberality.-George Washington': {'and': 1, 'among': 1, 'all': 1, 'liberal': 1, 'they': 1, 'civil': 1, 'washington': 1, 'equally': 1, 'community': 1, 'as': 2, 'are': 1, 'george': 1, 'america': 1, 'justice': 1, 'that': 1, 'to': 3, 'protections': 1, 'conduct': 1, 'themselves': 1, 'ever': 1, 'hope': 1, 'more': 2, 'be': 1, 'government': 1, 'becomes': 1, 'who': 1, 'liberality': 1, 'apt': 1, 'members': 1, 'worthy': 1, 'foremost': 1, 'those': 1, 'i': 1, 'of': 3, 'see': 1, 'nations': 1, 'will': 1, 'allow': 1, 'the': 3, 'entitled': 1, 'mankind': 1}, 'The writer\x92s job is not to judge, but to seek to understand.-Ernest Hemingway': {'not': 1, 'is': 1, 'writer': 1, 'job': 1, 'but': 1, 'to': 3, 's': 1, 'understand': 1, 'judge': 1, 'ernest': 1, 'the': 1, 'seek': 1, 'hemingway': 1}, 'There are three ingredients in the good life: learning, earning and yearning.-Christopher Morley': {'and': 1, 'life': 1, 'good': 1, 'morley': 1, 'ingredients': 1, 'there': 1, 'three': 1, 'yearning': 1, 'christopher': 1, 'are': 1, 'learning': 1, 'in': 1, 'the': 1, 'earning': 1}, 'It is impossible to experience one`s death objectively and still carry a tune.-Woody Allen': {'and': 1, 'is': 1, 'impossible': 1, 'it': 1, 'one': 1, 'objectively': 1, 'woody': 1, 'carry': 1, 'allen': 1, 'still': 1, 'tune': 1, 'a': 1, 'death': 1, 'experience': 1, 'to': 1, 's': 1}, 'Every woman knows all about everything.-Rudyard Kipling': {'about': 1, 'woman': 1, 'knows': 1, 'rudyard': 1, 'all': 1, 'everything': 1, 'kipling': 1, 'every': 1}, 'If tyranny and oppression come to this land, it will be in the guise of fighting a foreign enemy.-James Madison': {'and': 1, 'be': 1, 'madison': 1, 'oppression': 1, 'it': 1, 'a': 1, 'in': 1, 'come': 1, 'if': 1, 'tyranny': 1, 'enemy': 1, 'land': 1, 'this': 1, 'james': 1, 'fighting': 1, 'foreign': 1, 'will': 1, 'to': 1, 'of': 1, 'guise': 1, 'the': 1}, 'Ignorance more frequently begets confidence than does knowledge.-Charles Darwin': {'confidence': 1, 'knowledge': 1, 'charles': 1, 'ignorance': 1, 'does': 1, 'frequently': 1, 'darwin': 1, 'than': 1, 'begets': 1, 'more': 1}, 'The greatest monarch on the proudest throne is obliged to sit upon his own arse.-Benjamin Franklin': {'benjamin': 1, 'his': 1, 'proudest': 1, 'arse': 1, 'obliged': 1, 'is': 1, 'upon': 1, 'own': 1, 'throne': 1, 'on': 1, 'sit': 1, 'to': 1, 'greatest': 1, 'monarch': 1, 'the': 2, 'franklin': 1}, 'Be thankful we`re not getting all the government we`re paying for.-Will Rogers': {'paying': 1, 'be': 1, 'we': 2, 'for': 1, 'rogers': 1, 'getting': 1, 'government': 1, 'all': 1, 'will': 1, 're': 2, 'not': 1, 'the': 1, 'thankful': 1}, 'Nothing is wrong with Southern California that a rise in the ocean level wouldn`t cure.-Kenneth Millar': {'wouldn': 1, 'millar': 1, 'kenneth': 1, 'that': 1, 'is': 1, 'rise': 1, 'southern': 1, 'wrong': 1, 'cure': 1, 'california': 1, 'in': 1, 'nothing': 1, 'with': 1, 'a': 1, 'level': 1, 'ocean': 1, 't': 1, 'the': 1}, 'I love argument, I love debate. I don`t expect anyone just to sit there and agree with me, that`s not their job.-Margaret Thatcher': {'and': 1, 'love': 2, 'to': 1, 'just': 1, 'that': 1, 'argument': 1, 'thatcher': 1, 'margaret': 1, 'job': 1, 'expect': 1, 'not': 1, 'with': 1, 'debate': 1, 'me': 1, 'don': 1, 'sit': 1, 'i': 3, 'there': 1, 'anyone': 1, 'their': 1, 's': 1, 't': 1, 'agree': 1}, 'What I don`t like about office Christmas parties is looking for a job the next day.-Phyllis Diller': {'office': 1, 'is': 1, 'what': 1, 'job': 1, 'parties': 1, 'phyllis': 1, 'day': 1, 'a': 1, 'christmas': 1, 'about': 1, 'don': 1, 'like': 1, 'for': 1, 'i': 1, 'next': 1, 'looking': 1, 't': 1, 'the': 1, 'diller': 1}, 'Heroism is not only in the man, but in the occasion.-Calvin Coolidge': {'coolidge': 1, 'is': 1, 'calvin': 1, 'but': 1, 'only': 1, 'heroism': 1, 'in': 2, 'not': 1, 'occasion': 1, 'the': 2, 'man': 1}, 'No easy problem ever comes to the President of the United States. If they are easy to solve, somebody else has solved them.-John F. Kennedy': {'them': 1, 'somebody': 1, 'solved': 1, 'kennedy': 1, 'else': 1, 'states': 1, 'are': 1, 'they': 1, 'president': 1, 'problem': 1, 'if': 1, 'has': 1, 'united': 1, 'no': 1, 'of': 1, 'f': 1, 'to': 2, 'solve': 1, 'easy': 2, 'the': 2, 'john': 1, 'ever': 1, 'comes': 1}, 'Success does not consist in never making mistakes but in never making the same one a second time.-George Bernard Shaw': {'never': 2, 'but': 1, 'one': 1, 'second': 1, 'mistakes': 1, 'in': 2, 'not': 1, 'george': 1, 'shaw': 1, 'a': 1, 'consist': 1, 'success': 1, 'same': 1, 'bernard': 1, 'does': 1, 'time': 1, 'making': 2, 'the': 1}, 'The president cannot escape from his office.-Dwight Eisenhower': {'his': 1, 'from': 1, 'office': 1, 'dwight': 1, 'cannot': 1, 'escape': 1, 'president': 1, 'the': 1, 'eisenhower': 1}, 'Children are innocent and love justice, while most adults are wicked and prefer mercy.-GK Chesterton': {'and': 2, 'mercy': 1, 'love': 1, 'adults': 1, 'justice': 1, 'prefer': 1, 'most': 1, 'while': 1, 'are': 2, 'innocent': 1, 'wicked': 1, 'gk': 1, 'children': 1, 'chesterton': 1}, 'Two roads diverged in a wood, and I...I took the one less traveled by, and that has made all the difference.-Robert Frost': {'and': 2, 'all': 1, 'less': 1, 'frost': 1, 'took': 1, 'one': 1, 'diverged': 1, 'in': 1, 'roads': 1, 'difference': 1, 'by': 1, 'a': 1, 'made': 1, 'i': 2, 'robert': 1, 'that': 1, 'two': 1, 'wood': 1, 'the': 2, 'has': 1, 'traveled': 1}, 'Speeches are for the younger men who are going places. And I`m not going anyplace except six feet under the floor of that little chapel adjoining the museum and library at Abilene.-Dwight Eisenhower': {'and': 2, 'who': 1, 'that': 1, 'speeches': 1, 'men': 1, 'younger': 1, 'library': 1, 'feet': 1, 'adjoining': 1, 'are': 2, 'not': 1, 'eisenhower': 1, 'anyplace': 1, 'little': 1, 'places': 1, 'for': 1, 'floor': 1, 'i': 1, 'of': 1, 'museum': 1, 'six': 1, 'm': 1, 'except': 1, 'going': 2, 'abilene': 1, 'under': 1, 'the': 3, 'chapel': 1, 'dwight': 1, 'at': 1}, 'If you wanna be free, you`ve gotta accept everything.-Jason Mechalek': {'be': 1, 'jason': 1, 've': 1, 'wanna': 1, 'gotta': 1, 'free': 1, 'everything': 1, 'accept': 1, 'you': 2, 'mechalek': 1, 'if': 1}, 'We have it in our power to begin the world over again.-Thomas Paine': {'thomas': 1, 'again': 1, 'begin': 1, 'power': 1, 'our': 1, 'over': 1, 'we': 1, 'it': 1, 'to': 1, 'have': 1, 'in': 1, 'world': 1, 'the': 1, 'paine': 1}, 'The last thing one discovers in composing a work is what to put first.-Blaise Pascal': {'is': 1, 'blaise': 1, 'one': 1, 'pascal': 1, 'in': 1, 'put': 1, 'a': 1, 'what': 1, 'last': 1, 'thing': 1, 'work': 1, 'composing': 1, 'to': 1, 'discovers': 1, 'the': 1, 'first': 1}, 'To me there has never been a higher source of earthly honor or distinction than that connected with advances in science.-Isaac Newton': {'me': 1, 'never': 1, 'that': 1, 'advances': 1, 'newton': 1, 'connected': 1, 'earthly': 1, 'in': 1, 'with': 1, 'than': 1, 'a': 1, 'source': 1, 'of': 1, 'there': 1, 'been': 1, 'or': 1, 'to': 1, 'science': 1, 'isaac': 1, 'distinction': 1, 'has': 1, 'honor': 1, 'higher': 1}, 'Cast your cares on God; that anchor holds.-Frank Moore Colby': {'on': 1, 'your': 1, 'moore': 1, 'that': 1, 'god': 1, 'holds': 1, 'cast': 1, 'cares': 1, 'colby': 1, 'frank': 1, 'anchor': 1}, 'Man is the only animal that blushes - or needs to.-Mark Twain': {'needs': 1, 'that': 1, 'blushes': 1, 'is': 1, 'mark': 1, 'twain': 1, 'to': 1, 'only': 1, 'animal': 1, 'the': 1, 'or': 1, 'man': 1}, 'Of course I don`t believe in it. But I understand that it brings you luck whether you believe in it or not.-Niels Bohr': {'that': 1, 'brings': 1, 'it': 3, 'but': 1, 'course': 1, 'understand': 1, 'in': 2, 'not': 1, 'believe': 2, 'don': 1, 'i': 2, 'of': 1, 'niels': 1, 'bohr': 1, 'whether': 1, 't': 1, 'you': 2, 'or': 1, 'luck': 1}, 'One definition of an economist is somebody who sees something happen in practice and wonders if it will work in theory.-Ronald Reagan': {'and': 1, 'practice': 1, 'sees': 1, 'theory': 1, 'is': 1, 'who': 1, 'reagan': 1, 'it': 1, 'an': 1, 'ronald': 1, 'something': 1, 'in': 2, 'somebody': 1, 'happen': 1, 'one': 1, 'economist': 1, 'if': 1, 'definition': 1, 'of': 1, 'work': 1, 'will': 1, 'wonders': 1}, 'Some succeed by what they know; some by what they do; and a few by what they are.-Elbert Hubbard': {'and': 1, 'do': 1, 'what': 3, 'hubbard': 1, 'elbert': 1, 'some': 2, 'few': 1, 'succeed': 1, 'a': 1, 'they': 3, 'by': 3, 'are': 1, 'know': 1}, 'You can discover more about a person in an hour of play than in a year of conversation.-Plato': {'play': 1, 'plato': 1, 'discover': 1, 'an': 1, 'year': 1, 'than': 1, 'a': 2, 'about': 1, 'in': 2, 'hour': 1, 'person': 1, 'of': 2, 'conversation': 1, 'can': 1, 'you': 1, 'more': 1}, 'A powerful idea communicates some of its strength to him who challenges it.-Marcel Proust': {'a': 1, 'strength': 1, 'some': 1, 'communicates': 1, 'who': 1, 'powerful': 1, 'idea': 1, 'marcel': 1, 'it': 1, 'challenges': 1, 'to': 1, 'of': 1, 'proust': 1, 'its': 1, 'him': 1}, 'As I would not be a slave, so I would not be a master. This expresses my idea of democracy. Whatever differs from this, to the extent of the difference, is no democracy.-Abraham Lincoln': {'be': 2, 'slave': 1, 'is': 1, 'idea': 1, 'whatever': 1, 'not': 2, 'as': 1, 'extent': 1, 'differs': 1, 'difference': 1, 'a': 2, 'lincoln': 1, 'from': 1, 'would': 2, 'democracy': 2, 'no': 1, 'i': 2, 'of': 2, 'this': 2, 'so': 1, 'to': 1, 'master': 1, 'expresses': 1, 'the': 2, 'abraham': 1, 'my': 1}, 'It is error alone which needs the support of government. Truth can stand by itself.-Thomas Jefferson': {'thomas': 1, 'which': 1, 'government': 1, 'is': 1, 'it': 1, 'itself': 1, 'alone': 1, 'by': 1, 'needs': 1, 'of': 1, 'support': 1, 'jefferson': 1, 'can': 1, 'truth': 1, 'error': 1, 'the': 1, 'stand': 1}, 'Sex at age ninety is like trying to shoot pool with a rope.-George Burns': {'shoot': 1, 'a': 1, 'trying': 1, 'like': 1, 'pool': 1, 'age': 1, 'sex': 1, 'rope': 1, 'to': 1, 'ninety': 1, 'at': 1, 'burns': 1, 'with': 1, 'george': 1, 'is': 1}, 'When you have the facts on your side, argue the facts. When you have the law on your side, argue the law. When you have neither, holler.-Al Gore': {'on': 2, 'argue': 2, 'the': 4, 'when': 3, 'al': 1, 'you': 3, 'holler': 1, 'gore': 1, 'have': 3, 'facts': 2, 'neither': 1, 'law': 2, 'your': 2, 'side': 2}, 'Show me your hands. Do they have scars from giving? Show me your feet. Are they wounded in service? Show me your heart. Have you left a place for divine love?-Fulton J. Sheen': {'heart': 1, 'scars': 1, 'love': 1, 'they': 2, 'do': 1, 'show': 3, 'hands': 1, 'feet': 1, 'me': 3, 'are': 1, 'have': 2, 'in': 1, 'divine': 1, 'your': 3, 'a': 1, 'from': 1, 'service': 1, 'for': 1, 'giving': 1, 'j': 1, 'place': 1, 'fulton': 1, 'wounded': 1, 'you': 1, 'sheen': 1, 'left': 1}, 'Those who make peaceful revolution impossible will make violent revolution inevitable.-John F. Kennedy': {'revolution': 2, 'f': 1, 'make': 2, 'who': 1, 'will': 1, 'violent': 1, 'kennedy': 1, 'peaceful': 1, 'impossible': 1, 'john': 1, 'inevitable': 1, 'those': 1}, 'You know you`re getting old when the candles cost more than the cake.-Bob Hope': {'the': 2, 'old': 1, 'getting': 1, 'candles': 1, 'when': 1, 'you': 2, 're': 1, 'cost': 1, 'know': 1, 'cake': 1, 'bob': 1, 'than': 1, 'hope': 1, 'more': 1}, 'Chicago sounds rough to the maker of verse. One comfort we have: Cincinnati sounds worse.-Oliver Wendell Holmes': {'holmes': 1, 'we': 1, 'cincinnati': 1, 'worse': 1, 'wendell': 1, 'one': 1, 'have': 1, 'rough': 1, 'sounds': 2, 'oliver': 1, 'chicago': 1, 'of': 1, 'comfort': 1, 'to': 1, 'verse': 1, 'the': 1, 'maker': 1}, 'If you start to think about your physical or moral condition, you usually find that you are sick.-Johann Wolfgang von Goethe': {'think': 1, 'goethe': 1, 'that': 1, 'wolfgang': 1, 'von': 1, 'johann': 1, 'moral': 1, 'are': 1, 'find': 1, 'condition': 1, 'physical': 1, 'about': 1, 'start': 1, 'your': 1, 'to': 1, 'sick': 1, 'usually': 1, 'you': 3, 'if': 1, 'or': 1}, 'Why are people`s ``deepest desires`` always so shallow?-Author Unknown': {'shallow': 1, 'desires': 1, 'author': 1, 'always': 1, 'people': 1, 's': 1, 'so': 1, 'deepest': 1, 'unknown': 1, 'why': 1, 'are': 1}, '.I had to face the horrible truth: The antitobacco people are lying. Smoking really is cool. And I`m less cool for not doing it.-Tucker Carlson': {'': 1, 'and': 1, 'people': 1, 'doing': 1, 'carlson': 1, 'is': 1, 'it': 1, 'tucker': 1, 'm': 1, 'are': 1, 'not': 1, 'smoking': 1, 'the': 2, 'really': 1, 'for': 1, 'i': 2, 'less': 1, 'had': 1, 'face': 1, 'to': 1, 'truth': 1, 'horrible': 1, 'antitobacco': 1, 'cool': 2, 'lying': 1}, 'If you will not fight for the right when you can easily win without bloodshed; if you will not fight when your victory will be sure and not too costly; you may come to the moment when you will have to fight with all the odds against you and only a small chance of survival. There may even be a worse case: you may have to fight when there is no hope of victory, because it is better to perish than to live as slaves.-Winston Churchill': {'and': 2, 'all': 1, 'right': 1, 'costly': 1, 'can': 1, 'win': 1, 'is': 2, 'winston': 1, 'it': 1, 'as': 1, 'because': 1, 'have': 2, 'your': 1, 'if': 2, 'even': 1, 'for': 1, 'no': 1, 'churchill': 1, 'come': 1, 'there': 2, 'when': 4, 'only': 1, 'fight': 4, 'better': 1, 'to': 5, 'live': 1, 'too': 1, 'you': 7, 'hope': 1, 'bloodshed': 1, 'be': 2, 'sure': 1, 'worse': 1, 'may': 3, 'survival': 1, 'moment': 1, 'a': 2, 'not': 3, 'with': 1, 'than': 1, 'case': 1, 'easily': 1, 'of': 2, 'odds': 1, 'chance': 1, 'against': 1, 'will': 4, 'perish': 1, 'without': 1, 'victory': 2, 'slaves': 1, 'small': 1, 'the': 3}, 'There is no strength in unbelief. Even the unbelief of what is false is no source of might. It is the truth shining from behind that gives the strength to disbelieve.-George MacDonald': {'false': 1, 'to': 1, 'that': 1, 'is': 4, 'it': 1, 'disbelieve': 1, 'in': 1, 'george': 1, 'shining': 1, 'even': 1, 'what': 1, 'strength': 2, 'from': 1, 'no': 2, 'of': 2, 'unbelief': 2, 'there': 1, 'macdonald': 1, 'source': 1, 'behind': 1, 'truth': 1, 'the': 3, 'might': 1, 'gives': 1}, 'He that cannot obey, cannot command.-Benjamin Franklin': {'benjamin': 1, 'cannot': 2, 'command': 1, 'obey': 1, 'that': 1, 'he': 1, 'franklin': 1}, 'Having a male gynecologist is like going to an auto mechanic who doesn`t own a car.-Carrie Snow': {'own': 1, 'carrie': 1, 'auto': 1, 'is': 1, 'who': 1, 'doesn': 1, 'an': 1, 'a': 2, 'like': 1, 'car': 1, 'snow': 1, 'to': 1, 'going': 1, 't': 1, 'mechanic': 1, 'gynecologist': 1, 'male': 1, 'having': 1}, 'The last thing a political party gives up is its vocabulary.-Alexis de Tocqueville': {'a': 1, 'tocqueville': 1, 'last': 1, 'vocabulary': 1, 'is': 1, 'de': 1, 'political': 1, 'up': 1, 'alexis': 1, 'thing': 1, 'party': 1, 'the': 1, 'its': 1, 'gives': 1}, 'If society fits you comfortably enough, you call it freedom.-Robert Frost': {'freedom': 1, 'robert': 1, 'frost': 1, 'it': 1, 'society': 1, 'enough': 1, 'comfortably': 1, 'call': 1, 'fits': 1, 'you': 2, 'if': 1}, 'Middle age is when you`ve met so many people that every new person you meet reminds you of someone else.-Ogden Nash': {'someone': 1, 've': 1, 'people': 1, 'is': 1, 'else': 1, 'met': 1, 'every': 1, 'meet': 1, 'you': 3, 'middle': 1, 'many': 1, 'ogden': 1, 'that': 1, 'when': 1, 'person': 1, 'so': 1, 'of': 1, 'new': 1, 'nash': 1, 'age': 1, 'reminds': 1}, 'It is the dissimilarities and inequalities among men which give rise to the notion of honor; as such differences become less, it grows feeble; and when they disappear, it will vanish too.-Alexis de Tocqueville': {'and': 2, 'among': 1, 'men': 1, 'give': 1, 'is': 1, 'differences': 1, 'it': 3, 'dissimilarities': 1, 'tocqueville': 1, 'as': 1, 'rise': 1, 'they': 1, 'such': 1, 'vanish': 1, 'feeble': 1, 'disappear': 1, 'inequalities': 1, 'of': 1, 'less': 1, 'when': 1, 'alexis': 1, 'notion': 1, 'will': 1, 'to': 1, 'de': 1, 'honor': 1, 'too': 1, 'which': 1, 'become': 1, 'the': 2, 'grows': 1}, 'The thought of being president frightens me. I do not think I want the job.-Ronald Reagan': {'me': 1, 'do': 1, 'being': 1, 'of': 1, 'reagan': 1, 'thought': 1, 'i': 2, 'job': 1, 'ronald': 1, 'want': 1, 'frightens': 1, 'not': 1, 'president': 1, 'the': 2, 'think': 1}, 'No sooner do we depart from sense and instinct to follow reason but we are insensibly drawn into uncouth paradoxes, difficulties, and inconsistencies, which multiply and grow upon us as we advance in speculation; till at length, having wandered through many intricate mazes, we find ourselves just where we were, or, which is worse, sit down in a forlorn scepticism.-George Berkeley': {'and': 3, 'mazes': 1, 'depart': 1, 'just': 1, 'into': 1, 'sense': 1, 'we': 5, 'down': 1, 'instinct': 1, 'as': 1, 'through': 1, 'are': 1, 'in': 2, 'intricate': 1, 'follow': 1, 'find': 1, 'paradoxes': 1, 'worse': 1, 'from': 1, 'no': 1, 'forlorn': 1, 'uncouth': 1, 'ourselves': 1, 'wandered': 1, 'till': 1, 'difficulties': 1, 'which': 2, 'inconsistencies': 1, 'drawn': 1, 'is': 1, 'do': 1, 'scepticism': 1, 'george': 1, 'to': 1, 'upon': 1, 'sooner': 1, 'reason': 1, 'but': 1, 'berkeley': 1, 'multiply': 1, 'grow': 1, 'a': 1, 'advance': 1, 'insensibly': 1, 'many': 1, 'sit': 1, 'us': 1, 'having': 1, 'length': 1, 'were': 1, 'speculation': 1, 'where': 1, 'or': 1, 'at': 1}, 'Time makes more converts than reason.-Thomas Paine': {'paine': 1, 'thomas': 1, 'reason': 1, 'converts': 1, 'time': 1, 'makes': 1, 'than': 1, 'more': 1}, 'If a man is called to be a streetsweeper, he should sweep streets even as Michelangelo painted, or Beethoven composed music, or Shakespeare wrote poetry. He should sweep streets so well that all the host of heaven and earth will pause to say, here lived a great streetsweeper who did his job well.-Martin Luther King Jr.': {'composed': 1, 'and': 1, 'all': 1, 'beethoven': 1, '': 1, 'is': 1, 'streets': 2, 'sweep': 2, 'as': 1, 'lived': 1, 'earth': 1, 'if': 1, 'even': 1, 'pause': 1, 'poetry': 1, 'should': 2, 'to': 2, 'music': 1, 'shakespeare': 1, 'he': 2, 'be': 1, 'michelangelo': 1, 'his': 1, 'that': 1, 'painted': 1, 'who': 1, 'great': 1, 'here': 1, 'job': 1, 'jr': 1, 'streetsweeper': 2, 'man': 1, 'a': 3, 'king': 1, 'luther': 1, 'heaven': 1, 'did': 1, 'of': 1, 'well': 2, 'host': 1, 'or': 2, 'will': 1, 'so': 1, 'wrote': 1, 'martin': 1, 'the': 1, 'called': 1, 'say': 1}, 'The sleeping fox catches no poultry.-Benjamin Franklin': {'poultry': 1, 'benjamin': 1, 'catches': 1, 'no': 1, 'fox': 1, 'sleeping': 1, 'franklin': 1, 'the': 1}, 'The difference between genius and stupidity is that genius has its limits.-Albert Einstein': {'and': 1, 'difference': 1, 'limits': 1, 'that': 1, 'is': 1, 'between': 1, 'albert': 1, 'genius': 2, 'stupidity': 1, 'einstein': 1, 'the': 1, 'has': 1, 'its': 1}, 'Men are born ignorant, not stupid; they are made stupid by education.-Bertrand Russell': {'made': 1, 'russell': 1, 'bertrand': 1, 'men': 1, 'born': 1, 'stupid': 2, 'ignorant': 1, 'are': 2, 'they': 1, 'not': 1, 'education': 1, 'by': 1}, 'Painting is just another way of keeping a diary.-Pablo Picasso': {'a': 1, 'keeping': 1, 'way': 1, 'just': 1, 'of': 1, 'is': 1, 'diary': 1, 'another': 1, 'pablo': 1, 'picasso': 1, 'painting': 1}, 'The public is wonderfully tolerant. It forgives everything except genius.-Oscar Wilde': {'forgives': 1, 'everything': 1, 'oscar': 1, 'is': 1, 'it': 1, 'tolerant': 1, 'genius': 1, 'public': 1, 'wonderfully': 1, 'wilde': 1, 'the': 1, 'except': 1}, 'We are all worms, but I do believe I am a glow-worm.-Winston Churchill': {'a': 1, 'do': 1, 'we': 1, 'churchill': 1, 'i': 2, 'winston': 1, 'am': 1, 'all': 1, 'but': 1, 'worms': 1, 'are': 1, 'worm': 1, 'believe': 1, 'glow': 1}, 'He who learns but does not think, is lost! He who thinks but does not learn is in great danger.-Confucius': {'great': 1, 'learns': 1, 'lost': 1, 'danger': 1, 'is': 2, 'who': 2, 'think': 1, 'but': 2, 'thinks': 1, 'does': 2, 'learn': 1, 'in': 1, 'not': 2, 'confucius': 1, 'he': 2}, 'Beauty is all very well at first sight; but whoever looks at it when it has been in the house three days?-George Bernard Shaw': {'all': 1, 'beauty': 1, 'whoever': 1, 'very': 1, 'house': 1, 'is': 1, 'looks': 1, 'it': 2, 'but': 1, 'days': 1, 'at': 2, 'sight': 1, 'in': 1, 'george': 1, 'well': 1, 'shaw': 1, 'when': 1, 'three': 1, 'been': 1, 'bernard': 1, 'the': 1, 'has': 1, 'first': 1}, 'Knowledge rests not upon truth alone, but upon error also.-Carl Jung': {'knowledge': 1, 'rests': 1, 'upon': 2, 'truth': 1, 'but': 1, 'also': 1, 'not': 1, 'jung': 1, 'carl': 1, 'error': 1, 'alone': 1}, 'I am a strong believer in luck and I find the harder I work the more I have of it.-Benjamin Franklin': {'and': 1, 'benjamin': 1, 'am': 1, 'it': 1, 'have': 1, 'in': 1, 'strong': 1, 'find': 1, 'a': 1, 'i': 4, 'of': 1, 'work': 1, 'harder': 1, 'believer': 1, 'franklin': 1, 'the': 2, 'luck': 1, 'more': 1}, 'Few people think more than two or three times a year. I have made an international reputation for myself by thinking once or twice a week.-George Bernard Shaw': {'week': 1, 'than': 1, 'people': 1, 'twice': 1, 'an': 1, 'have': 1, 'year': 1, 'times': 1, 'george': 1, 'a': 2, 'myself': 1, 'made': 1, 'shaw': 1, 'for': 1, 'few': 1, 'thinking': 1, 'i': 1, 'or': 2, 'two': 1, 'by': 1, 'bernard': 1, 'reputation': 1, 'three': 1, 'international': 1, 'once': 1, 'think': 1, 'more': 1}, 'I love writing. I love the swirl and swing of words as they tangle with human emotions.-James Michener': {'and': 1, 'love': 2, 'human': 1, 'swing': 1, 'as': 1, 'they': 1, 'michener': 1, 'with': 1, 'tangle': 1, 'i': 2, 'james': 1, 'emotions': 1, 'writing': 1, 'of': 1, 'swirl': 1, 'the': 1, 'words': 1}, 'Education is the ability to listen to almost anything without losing your temper or your self-confidence.-Robert Frost': {'ability': 1, 'almost': 1, 'is': 1, 'frost': 1, 'self': 1, 'losing': 1, 'education': 1, 'your': 2, 'confidence': 1, 'anything': 1, 'robert': 1, 'temper': 1, 'to': 2, 'without': 1, 'the': 1, 'or': 1, 'listen': 1}, 'Egalitarians create the most dangerous inequality of all -- inequality of power. Allowing politicians to determine what all other human beings will be allowed to earn is one of the most reckless gambles imaginable. Like the income tax, it may start off being applied only to the rich but it will inevitably reach us all.-Thomas Sowell': {'all': 3, 'human': 1, 'be': 1, 'being': 1, 'is': 1, 'tax': 1, 'it': 2, 'one': 1, 'beings': 1, 'determine': 1, 'allowed': 1, 'what': 1, 'earn': 1, 'to': 3, 'create': 1, 'politicians': 1, 'start': 1, 'only': 1, 'other': 1, 'rich': 1, 'income': 1, 'reckless': 1, 'inevitably': 1, 'power': 1, 'may': 1, 'sowell': 1, 'reach': 1, 'imaginable': 1, 'but': 1, 'most': 2, 'allowing': 1, 'egalitarians': 1, 'gambles': 1, 'applied': 1, 'thomas': 1, 'off': 1, 'like': 1, 'dangerous': 1, 'us': 1, 'will': 2, 'inequality': 2, 'of': 3, 'the': 4}, 'You know, there`s a million fine looking women in the world, dude. But they don`t all bring you lasagna at work. Most of `em just cheat on you.-Kevin Smith': {'em': 1, 'all': 1, 'work': 1, 'just': 1, 'cheat': 1, 'dude': 1, 'million': 1, 'but': 1, 'bring': 1, 'at': 1, 'they': 1, 'in': 1, 'world': 1, 'fine': 1, 'the': 1, 'kevin': 1, 'women': 1, 'a': 1, 'on': 1, 'don': 1, 'most': 1, 'of': 1, 'there': 1, 'smith': 1, 'looking': 1, 's': 1, 'lasagna': 1, 't': 1, 'you': 3, 'know': 1}, 'I planted some bird seed. A bird came up. Now I don`t know what to feed it.-Steven Wright': {'feed': 1, 'some': 1, 'it': 1, 'seed': 1, 'know': 1, 'steven': 1, 'now': 1, 'a': 1, 'what': 1, 'don': 1, 'to': 1, 'i': 2, 'up': 1, 'wright': 1, 'planted': 1, 't': 1, 'bird': 2, 'came': 1}, 'Poetry is the art of creating imaginary gardens with real toads.-Marianne Moore': {'real': 1, 'art': 1, 'creating': 1, 'marianne': 1, 'imaginary': 1, 'of': 1, 'is': 1, 'poetry': 1, 'toads': 1, 'the': 1, 'with': 1, 'gardens': 1, 'moore': 1}, 'Games lubricate the body and the mind.-Benjamin Franklin': {'body': 1, 'and': 1, 'mind': 1, 'lubricate': 1, 'games': 1, 'franklin': 1, 'the': 2, 'benjamin': 1}, 'When this girl at the museum asked me who I liked better, Monet or Manet, I said, `I like mayonnaise.` She just stared at me, so I said it again, louder. Then she left. I guess she went to try to find some mayonnaise for me.-Jack Handey': {'liked': 1, 'monet': 1, 'just': 1, 'some': 1, 'it': 1, 'louder': 1, 'at': 2, 'girl': 1, 'find': 1, 'again': 1, 'guess': 1, 'said': 2, 'for': 1, 'museum': 1, 'when': 1, 'better': 1, 'to': 2, 'handey': 1, 'mayonnaise': 2, 'then': 1, 'who': 1, 'stared': 1, 'jack': 1, 'the': 1, 'me': 3, 'manet': 1, 'like': 1, 'this': 1, 'or': 1, 'try': 1, 'i': 5, 'so': 1, 'she': 3, 'went': 1, 'asked': 1, 'left': 1}, 'Imitation is the sincerest of flattery.-Charles Caleb Colton': {'sincerest': 1, 'colton': 1, 'of': 1, 'is': 1, 'charles': 1, 'caleb': 1, 'imitation': 1, 'the': 1, 'flattery': 1}, 'There is nothing funny about Halloween. This sarcastic festival reflects, rather, an infernal demand for revenge by children on the adult world.-Jean Baudrillard': {'baudrillard': 1, 'on': 1, 'the': 1, 'is': 1, 'halloween': 1, 'revenge': 1, 'sarcastic': 1, 'an': 1, 'festival': 1, 'adult': 1, 'demand': 1, 'nothing': 1, 'world': 1, 'children': 1, 'funny': 1, 'about': 1, 'for': 1, 'rather': 1, 'there': 1, 'by': 1, 'this': 1, 'jean': 1, 'infernal': 1, 'reflects': 1}, 'He wrapped himself in quotations--as a beggar would enfold himself in the purple of Emperors.-Rudyard Kipling': {'himself': 2, 'beggar': 1, 'emperors': 1, 'as': 1, 'in': 2, 'he': 1, 'a': 1, 'enfold': 1, 'would': 1, 'purple': 1, 'of': 1, 'rudyard': 1, 'kipling': 1, 'wrapped': 1, 'the': 1, 'quotations': 1}, 'We make a living by what we get, but we make a life by what we give.-Winston Churchill': {'a': 2, 'living': 1, 'we': 4, 'churchill': 1, 'give': 1, 'get': 1, 'make': 2, 'winston': 1, 'life': 1, 'but': 1, 'what': 2, 'by': 2}, 'Christmas can be celebrated in the school room with pine trees, tinsel and reindeers, but there must be no mention of the man whose birthday is being celebrated. One wonders how a teacher would answer if a student asked why it was called Christmas.-Ronald Reagan': {'and': 1, 'there': 1, 'being': 1, 'is': 1, 'reagan': 1, 'it': 1, 'one': 1, 'in': 1, 'if': 1, 'whose': 1, 'tinsel': 1, 'would': 1, 'no': 1, 'celebrated': 2, 'pine': 1, 'teacher': 1, 'how': 1, 'answer': 1, 'man': 1, 'was': 1, 'christmas': 2, 'be': 2, 'but': 1, 'ronald': 1, 'mention': 1, 'birthday': 1, 'reindeers': 1, 'trees': 1, 'student': 1, 'with': 1, 'why': 1, 'must': 1, 'a': 2, 'school': 1, 'room': 1, 'of': 1, 'asked': 1, 'can': 1, 'the': 2, 'called': 1, 'wonders': 1}, 'You don`t have to stay up nights to succeed; you have to stay awake days.-Author Unknown': {'nights': 1, 'don': 1, 'author': 1, 'unknown': 1, 'days': 1, 'up': 1, 'to': 3, 'succeed': 1, 'awake': 1, 't': 1, 'have': 2, 'you': 2, 'stay': 2}, 'Through pride we are ever deceiving ourselves. But deep down below the surface of the average conscience a still, small voice says to us, something is out of tune.-Carl Jung': {'a': 1, 'we': 1, 'says': 1, 'carl': 1, 'is': 1, 'deep': 1, 'down': 1, 'through': 1, 'are': 1, 'surface': 1, 'still': 1, 'ourselves': 1, 'tune': 1, 'out': 1, 'conscience': 1, 'voice': 1, 'but': 1, 'deceiving': 1, 'jung': 1, 'of': 2, 'average': 1, 'us': 1, 'to': 1, 'below': 1, 'small': 1, 'the': 2, 'pride': 1, 'ever': 1, 'something': 1}, 'It is hard to believe that a man is telling the truth when you know that you would lie if you were in his place.-Henry Mencken': {'his': 1, 'that': 2, 'henry': 1, 'is': 2, 'hard': 1, 'it': 1, 'know': 1, 'in': 1, 'telling': 1, 'believe': 1, 'the': 1, 'if': 1, 'a': 1, 'lie': 1, 'would': 1, 'mencken': 1, 'when': 1, 'to': 1, 'place': 1, 'truth': 1, 'were': 1, 'you': 3, 'man': 1}, 'Always leave something to wish for; otherwise you will be miserable from your very happiness.-Baltasar Gracian': {'be': 1, 'very': 1, 'something': 1, 'miserable': 1, 'your': 1, 'happiness': 1, 'leave': 1, 'from': 1, 'for': 1, 'baltasar': 1, 'always': 1, 'will': 1, 'to': 1, 'wish': 1, 'you': 1, 'gracian': 1, 'otherwise': 1}, 'I am a writer of books in retrospect. I talk in order to understand; I teach in order to learn.-Robert Frost': {'retrospect': 1, 'frost': 1, 'am': 1, 'books': 1, 'understand': 1, 'in': 3, 'teach': 1, 'a': 1, 'i': 3, 'of': 1, 'robert': 1, 'writer': 1, 'to': 2, 'learn': 1, 'order': 2, 'talk': 1}, 'In politics, if you want anything said, ask a man; if you want anything done, ask a woman.-Margaret Thatcher': {'a': 2, 'said': 1, 'anything': 2, 'thatcher': 1, 'margaret': 1, 'woman': 1, 'done': 1, 'want': 2, 'in': 1, 'ask': 2, 'politics': 1, 'you': 2, 'if': 2, 'man': 1}, 'An oppressive government is more to be feared than a tiger.-Confucius': {'a': 1, 'be': 1, 'oppressive': 1, 'government': 1, 'than': 1, 'is': 1, 'an': 1, 'tiger': 1, 'to': 1, 'more': 1, 'confucius': 1, 'feared': 1}, 'It is hard to fail, but it is worse never to have tried to succeed.-Theodore Roosevelt': {'hard': 1, 'worse': 1, 'theodore': 1, 'is': 2, 'never': 1, 'it': 2, 'but': 1, 'to': 3, 'succeed': 1, 'roosevelt': 1, 'have': 1, 'fail': 1, 'tried': 1}, 'Experience proves this, or that, or nothing, according to the preconceptions we bring to it.-C.S. Lewis': {'we': 1, 'that': 1, 'lewis': 1, 'it': 1, 'bring': 1, 'proves': 1, 'nothing': 1, 'c': 1, 'this': 1, 'according': 1, 'experience': 1, 'to': 2, 's': 1, 'preconceptions': 1, 'the': 1, 'or': 2}, 'Accept good advice gracefully--as long as it doesn`t interfere with what you intended to do in the first place.-Gene Brown': {'brown': 1, 'good': 1, 'intended': 1, 'do': 1, 'gracefully': 1, 'advice': 1, 'it': 1, 'doesn': 1, 'interfere': 1, 'as': 2, 'accept': 1, 'in': 1, 'with': 1, 'the': 1, 'what': 1, 'long': 1, 'to': 1, 'place': 1, 't': 1, 'you': 1, 'gene': 1, 'first': 1}, 'Of course the people dont want war...that is understood. But voice or no voice, the people can always be brought to the bidding of the leaders. That is easy. All you have to do is tell them they are being attacked, and denounce the pacifists for lack of patriotism and exposing the country to danger. It works the same in any country.-Hermann Goering': {'and': 2, 'all': 1, 'patriotism': 1, 'leaders': 1, 'people': 2, 'being': 1, 'is': 3, 'lack': 1, 'it': 1, 'brought': 1, 'course': 1, 'are': 1, 'want': 1, 'in': 1, 'goering': 1, 'any': 1, 'dont': 1, 'for': 1, 'no': 1, 'always': 1, 'danger': 1, 'same': 1, 'to': 3, 'pacifists': 1, 'easy': 1, 'hermann': 1, 'you': 1, 'war': 1, 'be': 1, 'them': 1, 'bidding': 1, 'do': 1, 'attacked': 1, 'denounce': 1, 'but': 1, 'they': 1, 'exposing': 1, 'voice': 2, 'that': 2, 'understood': 1, 'country': 2, 'tell': 1, 'can': 1, 'have': 1, 'of': 3, 'the': 7, 'works': 1, 'or': 1}, 'Being a leader is like being a lady, if you have to go around telling people you are one, you aren`t.-Margaret Thatcher': {'around': 1, 'people': 1, 'being': 2, 'is': 1, 'one': 1, 'margaret': 1, 'are': 1, 'have': 1, 'telling': 1, 'thatcher': 1, 'lady': 1, 'go': 1, 'if': 1, 'a': 2, 'like': 1, 'aren': 1, 'to': 1, 't': 1, 'you': 3, 'leader': 1}, 'I know God will not give me anything I can`t handle. I just wish that He didn`t trust me so much.-Mother Teresa': {'handle': 1, 'just': 1, 'give': 1, 'mother': 1, 'teresa': 1, 'know': 1, 'not': 1, 'trust': 1, 'he': 1, 'me': 2, 'anything': 1, 'i': 3, 'god': 1, 'didn': 1, 'will': 1, 'that': 1, 'much': 1, 'so': 1, 't': 2, 'wish': 1, 'can': 1}, 'I thought it completely absurd to mention my name in the same breath as the Presidency.-Dwight Eisenhower': {'it': 1, 'mention': 1, 'completely': 1, 'in': 1, 'eisenhower': 1, 'thought': 1, 'name': 1, 'presidency': 1, 'i': 1, 'as': 1, 'same': 1, 'breath': 1, 'to': 1, 'absurd': 1, 'the': 2, 'my': 1, 'dwight': 1}, 'Ten people who speak make more noise than ten thousand who are silent.-Napoleon Bonaparte': {'noise': 1, 'silent': 1, 'ten': 2, 'bonaparte': 1, 'make': 1, 'people': 1, 'who': 2, 'than': 1, 'are': 1, 'speak': 1, 'thousand': 1, 'napoleon': 1, 'more': 1}, 'Just because I look sexy on the cover of Rolling Stone doesn`t mean I`m naughty.-Britney Spears': {'because': 1, 'just': 1, 'm': 1, 'doesn': 1, 'naughty': 1, 'rolling': 1, 'sexy': 1, 'on': 1, 'stone': 1, 'look': 1, 'britney': 1, 'i': 2, 'of': 1, 'cover': 1, 't': 1, 'the': 1, 'spears': 1, 'mean': 1}, 'Intoxicated with unbroken success, we have become too self-sufficient to feel the necessity of redeeming and preserving grace, too proud to pray to the God that made us.-Abraham Lincoln': {'and': 1, 'we': 1, 'necessity': 1, 'that': 1, 'feel': 1, 'sufficient': 1, 'preserving': 1, 'have': 1, 'with': 1, 'redeeming': 1, 'lincoln': 1, 'made': 1, 'success': 1, 'intoxicated': 1, 'pray': 1, 'god': 1, 'self': 1, 'proud': 1, 'us': 1, 'grace': 1, 'to': 3, 'too': 2, 'of': 1, 'become': 1, 'the': 2, 'abraham': 1, 'unbroken': 1}, 'It is only our bad temper that we put down to being tired or worried or hungry; we put our good temper down to ourselves.-C.S. Lewis': {'we': 2, 'good': 1, 'bad': 1, 'that': 1, 'being': 1, 'lewis': 1, 'is': 1, 'it': 1, 'down': 2, 'put': 2, 'our': 2, 'ourselves': 1, 'c': 1, 'temper': 2, 'tired': 1, 'hungry': 1, 'worried': 1, 'to': 2, 'only': 1, 's': 1, 'or': 2}, 'Never confuse the size of your paycheck with the size of your talent.-Marlon Brando': {'paycheck': 1, 'talent': 1, 'of': 2, 'never': 1, 'confuse': 1, 'marlon': 1, 'brando': 1, 'the': 2, 'with': 1, 'your': 2, 'size': 2}, 'Cowards die many times before their deaths. The valiant never taste of death but once.-William Shakespeare': {'deaths': 1, 'taste': 1, 'never': 1, 'but': 1, 'william': 1, 'valiant': 1, 'before': 1, 'death': 1, 'die': 1, 'times': 1, 'cowards': 1, 'their': 1, 'shakespeare': 1, 'of': 1, 'the': 1, 'many': 1, 'once': 1}, 'Without computers, the government would be unable to function at the level of effectiveness and efficiency that we have come to expect.  This is because the primary function of the government is -- and here I am quoting directly from the U.S. Constitution -- `to spew out paper.`-Dave Barry': {'and': 2, 'because': 1, 'have': 1, 'is': 2, 'am': 1, 'primary': 1, 'paper': 1, 'at': 1, 'directly': 1, 'out': 1, 'from': 1, 'constitution': 1, 'would': 1, 'spew': 1, 'government': 2, 'to': 3, 'unable': 1, 'effectiveness': 1, 'function': 2, 'be': 1, 'we': 1, 'that': 1, 'here': 1, 'efficiency': 1, 'dave': 1, 'come': 1, 'level': 1, 'this': 1, 'of': 2, 'quoting': 1, 'computers': 1, 'i': 1, 's': 1, 'without': 1, 'u': 1, 'barry': 1, 'the': 5, 'expect': 1}, 'He that fights and runs away, may turn and fight another day; but he that is in battle slain, will never rise to fight again.-Tacitus': {'and': 2, 'rise': 1, 'may': 1, 'that': 2, 'tacitus': 1, 'is': 1, 'fights': 1, 'but': 1, 'slain': 1, 'another': 1, 'in': 1, 'battle': 1, 'day': 1, 'never': 1, 'again': 1, 'runs': 1, 'turn': 1, 'away': 1, 'fight': 2, 'will': 1, 'to': 1, 'he': 2}, 'Good manners will open doors that the best education cannot.-Clarence Thomas': {'thomas': 1, 'good': 1, 'clarence': 1, 'that': 1, 'manners': 1, 'will': 1, 'cannot': 1, 'doors': 1, 'the': 1, 'education': 1, 'open': 1, 'best': 1}, 'You got to be very careful if you don`t know where you`re going, because you might not get there.-Yogi Berra': {'be': 1, 'because': 1, 'get': 1, 'very': 1, 'know': 1, 'not': 1, 'careful': 1, 'if': 1, 'don': 1, 'to': 1, 'where': 1, 'there': 1, 'yogi': 1, 'berra': 1, 're': 1, 'going': 1, 't': 1, 'got': 1, 'you': 4, 'might': 1}, 'Observe constantly that all things take place by change, and accustom thyself to consider that the nature of the Universe love nothing so much as to change. The Universe is change.-Marcus Aurelius': {'and': 1, 'all': 1, 'love': 1, 'consider': 1, 'that': 2, 'of': 1, 'is': 1, 'universe': 2, 'as': 1, 'observe': 1, 'aurelius': 1, 'nothing': 1, 'thyself': 1, 'by': 1, 'change': 3, 'accustom': 1, 'things': 1, 'constantly': 1, 'to': 2, 'much': 1, 'so': 1, 'take': 1, 'marcus': 1, 'place': 1, 'the': 3, 'nature': 1}, 'It does not require a majority to prevail, but rather an irate, tireless minority keen to set brush fires in people`s minds.-Samuel Adams': {'set': 1, 'minority': 1, 'people': 1, 'samuel': 1, 'it': 1, 'but': 1, 'an': 1, 'fires': 1, 'minds': 1, 'in': 1, 'not': 1, 'keen': 1, 'prevail': 1, 'a': 1, 'adams': 1, 'to': 2, 'rather': 1, 'require': 1, 'irate': 1, 'majority': 1, 's': 1, 'does': 1, 'tireless': 1, 'brush': 1}, 'Television is a medium of entertainment which permits millions of people to listen to the same joke at the same time, and yet remain lonesome.-T.S. Eliot': {'and': 1, 'medium': 1, 'people': 1, 'is': 1, 'time': 1, 'at': 1, 'eliot': 1, 'yet': 1, 'millions': 1, 'a': 1, 'television': 1, 'entertainment': 1, 'joke': 1, 'permits': 1, 'remain': 1, 'same': 2, 'to': 2, 's': 1, 't': 1, 'which': 1, 'of': 2, 'lonesome': 1, 'the': 2, 'listen': 1}, 'Even peace may be purchased at too high a price.-Benjamin Franklin': {'even': 1, 'be': 1, 'too': 1, 'purchased': 1, 'may': 1, 'price': 1, 'peace': 1, 'high': 1, 'franklin': 1, 'a': 1, 'benjamin': 1, 'at': 1}, 'Forever is composed of nows.-Emily Dickinson': {'composed': 1, 'forever': 1, 'dickinson': 1, 'of': 1, 'is': 1, 'emily': 1, 'nows': 1}, 'A great deal of intelligence can be invested in ignorance when the need for illusion is deep.-Saul Bellow': {'be': 1, 'bellow': 1, 'deal': 1, 'intelligence': 1, 'is': 1, 'ignorance': 1, 'deep': 1, 'invested': 1, 'in': 1, 'need': 1, 'a': 1, 'great': 1, 'for': 1, 'of': 1, 'when': 1, 'can': 1, 'the': 1, 'illusion': 1, 'saul': 1}, 'This country was built on rape, slavery, murder, degradation and affiliation with crime.-Mike Tyson': {'and': 1, 'on': 1, 'mike': 1, 'murder': 1, 'built': 1, 'was': 1, 'this': 1, 'country': 1, 'slavery': 1, 'degradation': 1, 'affiliation': 1, 'tyson': 1, 'crime': 1, 'with': 1, 'rape': 1}, 'He that would make his own liberty secure, must guard even his enemy from opposition; for if he violates this duty he establishes a precedent that will reach himself.-Thomas Paine': {'duty': 1, 'paine': 1, 'thomas': 1, 'own': 1, 'secure': 1, 'that': 2, 'his': 2, 'reach': 1, 'guard': 1, 'himself': 1, 'a': 1, 'opposition': 1, 'violates': 1, 'if': 1, 'even': 1, 'enemy': 1, 'from': 1, 'for': 1, 'would': 1, 'this': 1, 'make': 1, 'liberty': 1, 'will': 1, 'must': 1, 'establishes': 1, 'he': 3, 'precedent': 1}, 'Returning violence for violence multiplies violence, adding deeper darkness to a night already devoid of stars.-Martin Luther King Jr.': {'': 1, 'already': 1, 'deeper': 1, 'returning': 1, 'martin': 1, 'jr': 1, 'devoid': 1, 'multiplies': 1, 'a': 1, 'adding': 1, 'luther': 1, 'darkness': 1, 'for': 1, 'of': 1, 'violence': 3, 'to': 1, 'stars': 1, 'night': 1, 'king': 1}, '`Tis the business of little minds to shrink, but he whose heart is firm, and whose conscience approves his conduct, will pursue his principles unto death.-Thomas Paine': {'': 1, 'and': 1, 'thomas': 1, 'his': 2, 'business': 1, 'heart': 1, 'is': 1, 'principles': 1, 'but': 1, 'approves': 1, 'will': 1, 'unto': 1, 'paine': 1, 'conscience': 1, 'whose': 2, 'little': 1, 'death': 1, 'pursue': 1, 'of': 1, 'minds': 1, 'tis': 1, 'firm': 1, 'to': 1, 'conduct': 1, 'the': 1, 'he': 1, 'shrink': 1}, 'Question with boldness even the existence of a God; because, if there be one, he must more approve of the homage of reason, than that of blind-folded fear.-Thomas Jefferson': {'blind': 1, 'be': 1, 'thomas': 1, 'because': 1, 'boldness': 1, 'that': 1, 'question': 1, 'one': 1, 'reason': 1, 'a': 1, 'existence': 1, 'fear': 1, 'with': 1, 'than': 1, 'if': 1, 'even': 1, 'homage': 1, 'god': 1, 'there': 1, 'folded': 1, 'must': 1, 'jefferson': 1, 'of': 4, 'the': 2, 'he': 1, 'approve': 1, 'more': 1}, 'You give me a credit to which I have no claim in calling me `the writer of the Constitution of the United States.` This was not, like the fabled Goddess of Wisdom, the offspring of a single brain. It ought to be regarded as the work of many heads and many hands.-James Madison': {'and': 1, 'claim': 1, 'madison': 1, 'give': 1, 'it': 1, 'states': 1, 'brain': 1, 'single': 1, 'have': 1, 'in': 1, 'offspring': 1, 'united': 1, 'heads': 1, 'constitution': 1, 'no': 1, 'regarded': 1, 'writer': 1, 'to': 2, 'which': 1, 'you': 1, 'many': 2, 'was': 1, 'ought': 1, 'be': 1, 'wisdom': 1, 'me': 2, 'fabled': 1, 'hands': 1, 'not': 1, 'a': 2, 'goddess': 1, 'like': 1, 'i': 1, 'james': 1, 'work': 1, 'this': 1, 'as': 1, 'calling': 1, 'credit': 1, 'of': 5, 'the': 6}, 'I`m never going to be famous. My name will never be writ large on the roster of Those Who Do Things. I don`t do any thing. Not one single thing. I used to bite my nails, but I don`t even do that any more.-Dorothy Parker': {'parker': 1, 'be': 2, 'one': 1, 'single': 1, 'dorothy': 1, 'any': 2, 'even': 1, 'large': 1, 'things': 1, 'bite': 1, 'roster': 1, 'who': 1, 'to': 2, 'going': 1, 'more': 1, 'do': 3, 'used': 1, 'that': 1, 'nails': 1, 'never': 2, 'but': 1, 'famous': 1, 'not': 1, 'those': 1, 'on': 1, 'don': 2, 'name': 1, 'i': 4, 'of': 1, 'm': 1, 'will': 1, 'thing': 2, 'writ': 1, 't': 2, 'the': 1, 'my': 2}, 'If there is any principle of the Constitution that more imperatively calls for attachment than any other it is the principle of free thought, not free thought for those who agree with us but freedom for the thought that we hate.-Oliver Wendell Holmes': {'holmes': 1, 'is': 2, 'it': 1, 'hate': 1, 'any': 2, 'if': 1, 'oliver': 1, 'constitution': 1, 'for': 3, 'there': 1, 'other': 1, 'attachment': 1, 'more': 1, 'imperatively': 1, 'we': 1, 'that': 2, 'wendell': 1, 'who': 1, 'free': 2, 'but': 1, 'not': 1, 'with': 1, 'than': 1, 'those': 1, 'calls': 1, 'freedom': 1, 'us': 1, 'thought': 3, 'principle': 2, 'of': 2, 'the': 3, 'agree': 1}, 'One swallow does not make a summer.-Aristotle': {'a': 1, 'summer': 1, 'make': 1, 'one': 1, 'does': 1, 'aristotle': 1, 'not': 1, 'swallow': 1}, 'History does not long entrust the care of freedom to the weak or the timid.-Dwight Eisenhower': {'the': 3, 'of': 1, 'weak': 1, 'long': 1, 'or': 1, 'to': 1, 'does': 1, 'freedom': 1, 'not': 1, 'entrust': 1, 'history': 1, 'timid': 1, 'dwight': 1, 'eisenhower': 1, 'care': 1}, 'To find out a girl`s faults, praise her to her girl friends.-Benjamin Franklin': {'a': 1, 'benjamin': 1, 'her': 2, 'to': 2, 'faults': 1, 's': 1, 'franklin': 1, 'praise': 1, 'girl': 2, 'friends': 1, 'find': 1, 'out': 1}, 'Remember, if you smoke after sex you`re doing it too fast.-Woody Allen': {'remember': 1, 'doing': 1, 'after': 1, 'it': 1, 'fast': 1, 'sex': 1, 're': 1, 'too': 1, 'smoke': 1, 'woody': 1, 'allen': 1, 'you': 2, 'if': 1}, 'The movie`s director is the pilot. It`s his vision. For an actor, the time to worry about flying is when you`re on the ground. If you don`t want to fly with the director, don`t get on the plane.-Denzel Washington': {'is': 2, 'washington': 1, 'it': 1, 'an': 1, 'want': 1, 'worry': 1, 'ground': 1, 'for': 1, 're': 1, 'movie': 1, 'flying': 1, 'when': 1, 'actor': 1, 'to': 2, 'you': 2, 'if': 1, 'his': 1, 'get': 1, 'director': 2, 'plane': 1, 'with': 1, 'pilot': 1, 'fly': 1, 'on': 2, 'about': 1, 'don': 2, 's': 2, 'denzel': 1, 't': 2, 'time': 1, 'the': 6, 'vision': 1}, 'What is it that makes a complete stranger dive into an icy river to save a solid-gold baby? Maybe we`ll never know.-Jack Handey': {'dive': 1, 'we': 1, 'complete': 1, 'gold': 1, 'that': 1, 'is': 1, 'never': 1, 'it': 1, 'an': 1, 'know': 1, 'baby': 1, 'a': 2, 'what': 1, 'river': 1, 'stranger': 1, 'solid': 1, 'maybe': 1, 'll': 1, 'to': 1, 'icy': 1, 'handey': 1, 'save': 1, 'makes': 1, 'into': 1, 'jack': 1}, 'We all want progress, but if you`re on the wrong road, progress means doing an about-turn and walking back to the right road; in that case, the man who turns back soonest is the most progressive.-C.S. Lewis': {'and': 1, 'walking': 1, 'right': 1, 'doing': 1, 'lewis': 1, 'is': 1, 'back': 2, 'an': 1, 'want': 1, 'in': 1, 'turn': 1, 'if': 1, 're': 1, 'means': 1, 'to': 1, 'progress': 2, 'you': 1, 'all': 1, 'that': 1, 'who': 1, 'about': 1, 'but': 1, 'most': 1, 'wrong': 1, 'man': 1, 'case': 1, 'on': 1, 'c': 1, 'progressive': 1, 'we': 1, 'turns': 1, 'soonest': 1, 's': 1, 'the': 4, 'road': 2}, 'That men do not learn very much from the lessons of history is the most important of all the lessons of history.-Aldous Huxley': {'do': 1, 'all': 1, 'that': 1, 'very': 1, 'is': 1, 'men': 1, 'aldous': 1, 'most': 1, 'important': 1, 'not': 1, 'huxley': 1, 'lessons': 2, 'from': 1, 'of': 3, 'much': 1, 'learn': 1, 'the': 3, 'history': 2}, 'Science is facts; just as houses are made of stones, so is science made of facts; but a pile of stones is not a house and a collection of facts is not necessarily science.-Henri Poincare': {'stones': 2, 'and': 1, 'just': 1, 'house': 1, 'is': 4, 'but': 1, 'facts': 3, 'houses': 1, 'as': 1, 'necessarily': 1, 'collection': 1, 'not': 2, 'poincare': 1, 'a': 3, 'made': 2, 'henri': 1, 'science': 3, 'so': 1, 'of': 4, 'pile': 1, 'are': 1}, 'How did it get so late so soon? It`s night before it`s afternoon. December is here before it`s June. My goodness how the time has flewn. How did it get so late so soon?-Theodor Seuss Geisel': {'get': 2, 'december': 1, 'is': 1, 'time': 1, 'june': 1, 'it': 5, 'here': 1, 'geisel': 1, 'goodness': 1, 'soon': 2, 'before': 2, 'theodor': 1, 'seuss': 1, 'did': 2, 'late': 2, 'how': 3, 's': 3, 'so': 4, 'flewn': 1, 'night': 1, 'the': 1, 'has': 1, 'my': 1, 'afternoon': 1}, 'Religion operates not only on the vertical plane but also on the horizontal. It seeks not only to integrate men with God but to integrate men with men and each man with himself.-Martin Luther King Jr.': {'and': 1, '': 1, 'himself': 1, 'vertical': 1, 'on': 2, 'men': 3, 'it': 1, 'but': 2, 'operates': 1, 'each': 1, 'plane': 1, 'jr': 1, 'not': 2, 'horizontal': 1, 'with': 3, 'man': 1, 'king': 1, 'luther': 1, 'to': 2, 'god': 1, 'also': 1, 'only': 2, 'martin': 1, 'integrate': 2, 'religion': 1, 'the': 2, 'seeks': 1}, 'As every divided kingdom falls, so every mind divided between many studies confounds and saps itself.-Leonardo da Vinci': {'kingdom': 1, 'and': 1, 'vinci': 1, 'mind': 1, 'falls': 1, 'as': 1, 'itself': 1, 'every': 2, 'studies': 1, 'da': 1, 'many': 1, 'divided': 2, 'confounds': 1, 'so': 1, 'between': 1, 'leonardo': 1, 'saps': 1}, 'God does not give heed to the ambitiousness of our prayers, because he is always ready to give to us his light, not a visible light but an intellectual and spiritual one; but we are not always ready to receive it when we turn aside and down to other things out of a desire for temporal things.-Saint Augustine': {'and': 2, 'spiritual': 1, 'because': 1, 'augustine': 1, 'give': 2, 'of': 2, 'is': 1, 'it': 1, 'intellectual': 1, 'an': 1, 'down': 1, 'visible': 1, 'are': 1, 'ready': 2, 'our': 1, 'out': 1, 'for': 1, 'things': 2, 'temporal': 1, 'prayers': 1, 'when': 1, 'aside': 1, 'to': 5, 'does': 1, 'saint': 1, 'a': 2, 'we': 2, 'his': 1, 'ambitiousness': 1, 'but': 2, 'not': 3, 'one': 1, 'he': 1, 'desire': 1, 'always': 2, 'receive': 1, 'light': 2, 'us': 1, 'turn': 1, 'heed': 1, 'god': 1, 'the': 1, 'other': 1}, 'I think, at a child`s birth, if a mother could ask a fairy godmother to endow it with the most useful gift, that gift should be curiosity.-Eleanor Roosevelt': {'be': 1, 'useful': 1, 'birth': 1, 'that': 1, 'godmother': 1, 'it': 1, 'most': 1, 'at': 1, 'curiosity': 1, 'child': 1, 'ask': 1, 'with': 1, 'the': 1, 'if': 1, 'a': 3, 'gift': 2, 'eleanor': 1, 'i': 1, 'could': 1, 'roosevelt': 1, 'should': 1, 'to': 1, 's': 1, 'mother': 1, 'fairy': 1, 'endow': 1, 'think': 1}, 'Freedom is nothing else but a chance to be better.-Albert Camus': {'a': 1, 'be': 1, 'camus': 1, 'freedom': 1, 'is': 1, 'albert': 1, 'but': 1, 'else': 1, 'better': 1, 'to': 1, 'chance': 1, 'nothing': 1}, 'There is only one rule for being a good talker - learn to listen.-Christopher Morley': {'a': 1, 'good': 1, 'for': 1, 'morley': 1, 'being': 1, 'is': 1, 'there': 1, 'rule': 1, 'one': 1, 'to': 1, 'only': 1, 'christopher': 1, 'talker': 1, 'learn': 1, 'listen': 1}, 'Patriotism is not short, frenzied outbursts of emotion, but the tranquil and steady dedication of a lifetime.-Adlai Stevenson': {'emotion': 1, 'and': 1, 'patriotism': 1, 'frenzied': 1, 'is': 1, 'but': 1, 'not': 1, 'outbursts': 1, 'lifetime': 1, 'tranquil': 1, 'a': 1, 'short': 1, 'of': 2, 'stevenson': 1, 'steady': 1, 'adlai': 1, 'the': 1, 'dedication': 1}, 'Wedding: a ceremony at which two persons undertake to become one, one undertakes to become nothing, and nothing undertakes to become supportable.-Ambrose Bierce': {'and': 1, 'ceremony': 1, 'one': 2, 'persons': 1, 'at': 1, 'undertake': 1, 'wedding': 1, 'nothing': 2, 'a': 1, 'ambrose': 1, 'undertakes': 2, 'two': 1, 'to': 3, 'bierce': 1, 'which': 1, 'become': 3, 'supportable': 1}, 'It takes a lot of courage to show your dreams to someone else.-Erna Bombeck': {'a': 1, 'someone': 1, 'takes': 1, 'show': 1, 'bombeck': 1, 'of': 1, 'it': 1, 'erna': 1, 'else': 1, 'to': 2, 'courage': 1, 'lot': 1, 'your': 1, 'dreams': 1}, 'There is nothing more exhilarating than to be shot at without result.-Winston Churchill': {'be': 1, 'churchill': 1, 'shot': 1, 'there': 1, 'is': 1, 'winston': 1, 'to': 1, 'without': 1, 'nothing': 1, 'result': 1, 'exhilarating': 1, 'more': 1, 'than': 1, 'at': 1}, 'We have the Bill of Rights. What we need is a Bill of Responsibilities.-Bill Maher': {'a': 1, 'we': 2, 'have': 1, 'rights': 1, 'of': 2, 'is': 1, 'bill': 3, 'what': 1, 'responsibilities': 1, 'maher': 1, 'need': 1, 'the': 1}, 'Every difference of opinion is not a difference of principle. We have called by different names brethren of the same principle.-Thomas Jefferson': {'brethren': 1, 'we': 1, 'is': 1, 'thomas': 1, 'every': 1, 'names': 1, 'have': 1, 'not': 1, 'difference': 2, 'by': 1, 'a': 1, 'different': 1, 'of': 3, 'same': 1, 'jefferson': 1, 'principle': 2, 'opinion': 1, 'the': 1, 'called': 1}, 'Ever notice that `what the hell` is always the right decision?-Marilyn Monroe': {'notice': 1, 'right': 1, 'that': 1, 'always': 1, 'is': 1, 'what': 1, 'hell': 1, 'the': 2, 'ever': 1, 'marilyn': 1, 'monroe': 1, 'decision': 1}, 'This is the second most exciting indoor sport, and the other one shouldn`t have spectators.-Dick Vertleib': {'and': 1, 'spectators': 1, 'is': 1, 'indoor': 1, 'one': 1, 'most': 1, 'shouldn': 1, 'have': 1, 'vertleib': 1, 'sport': 1, 'exciting': 1, 'this': 1, 'dick': 1, 'second': 1, 'other': 1, 't': 1, 'the': 2}, 'Thus far, the reputed idiot Bush has graduated from Yale and Harvard, made a stack of cash in the oil industry, become the first consecutive-term governor of Texas, defeated a dual-term VP for the presidency, and led his party to [November 5th`s] extraordinary triumphs. Let his opponents keep calling him stupid; if they do, within five years Bush will be King of England, the Pope, and world Formula One motor racing champion.-Tim Blair': {'pope': 1, 'within': 1, 'years': 1, 'motor': 1, 'opponents': 1, 'from': 1, '5th': 1, 'to': 1, 'bush': 2, 'has': 1, 'texas': 1, 'do': 1, 'his': 2, 'champion': 1, 'far': 1, 'five': 1, 'they': 1, 'consecutive': 1, 'world': 1, 'one': 1, 'him': 1, 'king': 1, 'term': 2, 'made': 1, 'presidency': 1, 'cash': 1, 'governor': 1, 'calling': 1, 'will': 1, 'stupid': 1, 'yale': 1, 'become': 1, 'and': 3, 'england': 1, 'thus': 1, 'defeated': 1, 'vp': 1, 'dual': 1, 'in': 1, 'reputed': 1, 'if': 1, 'party': 1, 'for': 1, 'idiot': 1, 'tim': 1, 'formula': 1, 'racing': 1, 'be': 1, 'oil': 1, 'led': 1, 'blair': 1, 'triumphs': 1, 'extraordinary': 1, 'harvard': 1, 'let': 1, 'graduated': 1, 'november': 1, 'stack': 1, 'a': 2, 'of': 3, 'industry': 1, 'keep': 1, 's': 1, 'the': 5, 'first': 1}, 'Instead of a trap door, what about a trap window? The guy looks out it, and if he leans too far, he falls out. Wait. I guess that`s like a regular window.-Jack Handey': {'and': 1, 'door': 1, 'that': 1, 'far': 1, 'trap': 2, 'it': 1, 'leans': 1, 'falls': 1, 'regular': 1, 'looks': 1, 'he': 2, 'guess': 1, 'the': 1, 'if': 1, 'a': 3, 'what': 1, 'like': 1, 'i': 1, 'of': 1, 's': 1, 'about': 1, 'window': 2, 'handey': 1, 'too': 1, 'instead': 1, 'guy': 1, 'wait': 1, 'out': 2, 'jack': 1}, 'Would you live with ease? Do what you ought, not what you please.-Benjamin Franklin': {'benjamin': 1, 'do': 1, 'what': 2, 'would': 1, 'ease': 1, 'please': 1, 'live': 1, 'franklin': 1, 'not': 1, 'you': 3, 'with': 1, 'ought': 1}, 'Remember not only to say the right thing in the right place, but far more difficult still, to leave unsaid the wrong thing at the tempting moment.-Benjamin Franklin': {'benjamin': 1, 'right': 2, 'far': 1, 'but': 1, 'moment': 1, 'say': 1, 'at': 1, 'in': 1, 'not': 1, 'still': 1, 'unsaid': 1, 'remember': 1, 'thing': 2, 'wrong': 1, 'leave': 1, 'to': 2, 'only': 1, 'place': 1, 'franklin': 1, 'tempting': 1, 'the': 4, 'more': 1, 'difficult': 1}, 'To be wise and love exceeds man`s might.-William Shakespeare': {'and': 1, 'be': 1, 'wise': 1, 'william': 1, 'to': 1, 's': 1, 'shakespeare': 1, 'exceeds': 1, 'love': 1, 'might': 1, 'man': 1}, 'Four-fifths of all our troubles would disappear, if we would only sit down and keep still.-Calvin Coolidge': {'and': 1, 'all': 1, 'we': 1, 'down': 1, 'our': 1, 'coolidge': 1, 'still': 1, 'disappear': 1, 'if': 1, 'four': 1, 'fifths': 1, 'would': 2, 'sit': 1, 'of': 1, 'troubles': 1, 'calvin': 1, 'keep': 1, 'only': 1}, 'Politics is perhaps the only profession for which no preparation is thought necessary.-Robert Louis Stevenson': {'preparation': 1, 'necessary': 1, 'for': 1, 'no': 1, 'perhaps': 1, 'louis': 1, 'stevenson': 1, 'profession': 1, 'robert': 1, 'thought': 1, 'only': 1, 'which': 1, 'politics': 1, 'the': 1, 'is': 2}, 'There`s no present. There`s only the immediate future and the recent past.-George Carlin': {'and': 1, 'no': 1, 'there': 2, 's': 2, 'immediate': 1, 'past': 1, 'only': 1, 'future': 1, 'carlin': 1, 'the': 2, 'george': 1, 'present': 1, 'recent': 1}, 'Being born is like being kidnapped. And then sold into slavery.-Andy Warhol': {'and': 1, 'then': 1, 'like': 1, 'warhol': 1, 'being': 2, 'is': 1, 'slavery': 1, 'kidnapped': 1, 'born': 1, 'andy': 1, 'sold': 1, 'into': 1}, 'All art is but imitation of nature.-Lucius Annaeus Seneca': {'seneca': 1, 'all': 1, 'art': 1, 'nature': 1, 'annaeus': 1, 'of': 1, 'is': 1, 'but': 1, 'lucius': 1, 'imitation': 1}, 'Don`t take life too seriously; you`ll never get out of it alive.-Elbert Hubbard': {'life': 1, 'get': 1, 'never': 1, 'it': 1, 'alive': 1, 'out': 1, 'hubbard': 1, 'don': 1, 'elbert': 1, 'of': 1, 'll': 1, 't': 1, 'seriously': 1, 'too': 1, 'you': 1, 'take': 1}, 'The MPAA rates this PG-13. It is too vulgar for anyone under 13, and too dumb for anyone over 13.-Roger Ebert': {'and': 1, 'is': 1, 'it': 1, 'dumb': 1, '13': 3, 'for': 2, 'this': 1, 'mpaa': 1, 'vulgar': 1, 'ebert': 1, 'anyone': 2, 'roger': 1, 'pg': 1, 'under': 1, 'rates': 1, 'the': 1, 'over': 1, 'too': 2}, 'Mothers are fonder than fathers of their children because they are more certain they are their own.-Aristotle': {'because': 1, 'they': 2, 'mothers': 1, 'of': 1, 'fathers': 1, 'fonder': 1, 'than': 1, 'their': 2, 'own': 1, 'are': 3, 'aristotle': 1, 'certain': 1, 'children': 1, 'more': 1}, 'To know what is impenetrable to us really exists, manifesting itself as the highest wisdom and the most radiant beauty...this knowledge, this feeling is at the center of true religiousness.-Albert Einstein': {'and': 1, 'manifesting': 1, 'exists': 1, 'beauty': 1, 'is': 2, 'center': 1, 'albert': 1, 'wisdom': 1, 'most': 1, 'as': 1, 'itself': 1, 'at': 1, 'einstein': 1, 'highest': 1, 'true': 1, 'really': 1, 'what': 1, 'knowledge': 1, 'impenetrable': 1, 'this': 2, 'of': 1, 'radiant': 1, 'religiousness': 1, 'us': 1, 'to': 2, 'the': 3, 'feeling': 1, 'know': 1}, 'A government which robs Peter to pay Paul can always depend on the support of Paul.-George Bernard Shaw': {'government': 1, 'paul': 2, 'peter': 1, 'george': 1, 'a': 1, 'on': 1, 'depend': 1, 'shaw': 1, 'to': 1, 'always': 1, 'pay': 1, 'support': 1, 'robs': 1, 'bernard': 1, 'can': 1, 'which': 1, 'of': 1, 'the': 1}, 'If variety is the spice of life, marriage is the big can of leftover Spam.-Johnny Carson': {'life': 1, 'johnny': 1, 'variety': 1, 'of': 2, 'is': 2, 'spam': 1, 'carson': 1, 'marriage': 1, 'can': 1, 'big': 1, 'leftover': 1, 'the': 2, 'spice': 1, 'if': 1}, 'To be pleased with one`s limits is a wretched state.-Johann Wolfgang von Goethe': {'a': 1, 'be': 1, 'wretched': 1, 'limits': 1, 'goethe': 1, 'wolfgang': 1, 'is': 1, 's': 1, 'one': 1, 'to': 1, 'state': 1, 'johann': 1, 'with': 1, 'pleased': 1, 'von': 1}, 'My most brilliant achievement was my ability to be able to persuade my wife to marry me.-Winston Churchill': {'me': 1, 'be': 1, 'most': 1, 'churchill': 1, 'ability': 1, 'wife': 1, 'brilliant': 1, 'my': 3, 'marry': 1, 'winston': 1, 'able': 1, 'to': 3, 'persuade': 1, 'was': 1, 'achievement': 1}, 'Being is desirable because it is identical with Beauty, and Beauty is loved because it is Being. We ourselves possess Beauty when we are true to our own being; ugliness is in going over to another order; knowing ourselves, we are beautiful; in self-ignorance, we are ugly.-Ambrose Bierce': {'and': 1, 'beautiful': 1, 'because': 2, 'being': 3, 'is': 5, 'desirable': 1, 'it': 2, 'own': 1, 'are': 3, 'another': 1, 'in': 2, 'our': 1, 'ourselves': 2, 'true': 1, 'self': 1, 'when': 1, 'to': 2, 'going': 1, 'ugliness': 1, 'over': 1, 'knowing': 1, 'we': 4, 'beauty': 3, 'ignorance': 1, 'with': 1, 'possess': 1, 'loved': 1, 'ambrose': 1, 'ugly': 1, 'bierce': 1, 'identical': 1, 'order': 1}, 'The leading cause of death among fashion models is falling through street grates.-Dave Barry': {'among': 1, 'grates': 1, 'death': 1, 'models': 1, 'barry': 1, 'is': 1, 'of': 1, 'dave': 1, 'street': 1, 'through': 1, 'leading': 1, 'the': 1, 'fashion': 1, 'falling': 1, 'cause': 1}, 'The object of teaching a child is to enable him to get along without a teacher.-Elbert Hubbard': {'enable': 1, 'get': 1, 'is': 1, 'object': 1, 'child': 1, 'along': 1, 'teacher': 1, 'a': 2, 'hubbard': 1, 'elbert': 1, 'of': 1, 'him': 1, 'to': 2, 'without': 1, 'teaching': 1, 'the': 1}, 'And what\x92s romance? Usually, a nice little tale where you have everything As You Like It, where rain never wets your jacket and gnats never bite your nose and it\x92s always daisy-time.-D.H. Lawrence': {'and': 3, 'lawrence': 1, 'never': 2, 'jacket': 1, 'it': 2, 'rain': 1, 'daisy': 1, 'as': 1, 'have': 1, 'gnats': 1, 'little': 1, 'your': 2, 'like': 1, 'a': 1, 'romance': 1, 'what': 1, 'd': 1, 'always': 1, 'bite': 1, 'wets': 1, 'tale': 1, 'everything': 1, 's': 2, 'nose': 1, 'time': 1, 'usually': 1, 'you': 2, 'h': 1, 'where': 2, 'nice': 1}, 'Many a man`s reputation would not know his character if they met on the street.-Elbert Hubbard': {'his': 1, 'met': 1, 'street': 1, 'know': 1, 'they': 1, 'not': 1, 'if': 1, 'a': 1, 'on': 1, 'hubbard': 1, 'would': 1, 'elbert': 1, 'many': 1, 'character': 1, 's': 1, 'reputation': 1, 'the': 1, 'man': 1}, 'Love is the master key which opens the gates of happiness.-Oliver Wendell Holmes': {'holmes': 1, 'gates': 1, 'oliver': 1, 'love': 1, 'key': 1, 'wendell': 1, 'of': 1, 'is': 1, 'master': 1, 'opens': 1, 'which': 1, 'the': 2, 'happiness': 1}, 'The statistics on sanity are that one out of every four Americans are suffering from some form of mental illness. Think of your three best friends. If they`re okay, then it`s you.-Rita Mae Brown': {'illness': 1, 'mental': 1, 'then': 1, 'some': 1, 'it': 1, 'one': 1, 'four': 1, 'americans': 1, 'are': 2, 'your': 1, 'best': 1, 'out': 1, 'statistics': 1, 'from': 1, 'three': 1, 're': 1, 'you': 1, 'if': 1, 'rita': 1, 'brown': 1, 'okay': 1, 'form': 1, 'that': 1, 'suffering': 1, 'every': 1, 'they': 1, 'friends': 1, 'on': 1, 'of': 3, 'sanity': 1, 's': 1, 'mae': 1, 'the': 1, 'think': 1}, 'A man can`t be too careful in the choice of his enemies.-Oscar Wilde': {'a': 1, 'be': 1, 'too': 1, 'his': 1, 'of': 1, 'choice': 1, 'wilde': 1, 'can': 1, 'man': 1, 'in': 1, 'the': 1, 'careful': 1, 'enemies': 1, 'oscar': 1, 't': 1}, 'A single death is a tragedy; a million deaths is a statistic.-Joseph Stalin': {'a': 4, 'death': 1, 'deaths': 1, 'is': 2, 'million': 1, 'stalin': 1, 'single': 1, 'joseph': 1, 'statistic': 1, 'tragedy': 1}, 'There is no joy in life like the joy of sharing.-Billy Graham': {'life': 1, 'sharing': 1, 'in': 1, 'like': 1, 'no': 1, 'joy': 2, 'is': 1, 'there': 1, 'billy': 1, 'of': 1, 'the': 1, 'graham': 1}, 'America is not like a blanket: one piece of unbroken cloth, the same color, the same texture, the same size. America is more like a quilt: many patches, many pieces, many colors, many sizes, all woven and held together by a common thread.-Jesse Jackson': {'and': 1, 'all': 1, 'quilt': 1, 'color': 1, 'is': 2, 'one': 1, 'held': 1, 'colors': 1, 'pieces': 1, 'same': 3, 'size': 1, 'jackson': 1, 'patches': 1, 'texture': 1, 'jesse': 1, 'unbroken': 1, 'more': 1, 'blanket': 1, 'cloth': 1, 'not': 1, 'america': 2, 'by': 1, 'a': 3, 'like': 2, 'thread': 1, 'sizes': 1, 'of': 1, 'together': 1, 'common': 1, 'many': 4, 'the': 3, 'piece': 1, 'woven': 1}, 'I paid too much for it, but it`s worth it.-Samuel Goldwyn': {'for': 1, 'i': 1, 'samuel': 1, 'it': 3, 'but': 1, 's': 1, 'much': 1, 'paid': 1, 'goldwyn': 1, 'worth': 1, 'too': 1}, 'I like television. I still believe that television is the most powerful form of communication on Earth -- I just hate what is being done with it.-Alton Brown': {'brown': 1, 'just': 1, 'alton': 1, 'being': 1, 'communication': 1, 'is': 2, 'powerful': 1, 'it': 1, 'most': 1, 'done': 1, 'earth': 1, 'still': 1, 'hate': 1, 'television': 2, 'like': 1, 'on': 1, 'what': 1, 'believe': 1, 'form': 1, 'i': 3, 'with': 1, 'that': 1, 'of': 1, 'the': 1}, 'The Bible is not my book, and Christianity is not my religion. I could never give assent to the long, complicated statements of Christian dogma.-Abraham Lincoln': {'and': 1, 'statements': 1, 'give': 1, 'is': 2, 'never': 1, 'assent': 1, 'dogma': 1, 'complicated': 1, 'not': 2, 'christian': 1, 'lincoln': 1, 'bible': 1, 'to': 1, 'i': 1, 'of': 1, 'could': 1, 'long': 1, 'christianity': 1, 'religion': 1, 'book': 1, 'the': 2, 'abraham': 1, 'my': 2}, 'Once you have flown, you will walk the earth with your eyes turned skywards, for there you have been, and there you long to return.-Leonardo da Vinci': {'and': 1, 'the': 1, 'eyes': 1, 'return': 1, 'vinci': 1, 'turned': 1, 'walk': 1, 'skywards': 1, 'flown': 1, 'been': 1, 'have': 2, 'earth': 1, 'da': 1, 'with': 1, 'your': 1, 'for': 1, 'there': 2, 'long': 1, 'will': 1, 'to': 1, 'you': 4, 'leonardo': 1, 'once': 1}, 'The most incomprehensible thing about the world is that it is at all comprehensible.-Albert Einstein': {'about': 1, 'that': 1, 'is': 2, 'albert': 1, 'it': 1, 'thing': 1, 'at': 1, 'all': 1, 'einstein': 1, 'comprehensible': 1, 'world': 1, 'the': 2, 'incomprehensible': 1, 'most': 1}, 'The means of defense against foreign danger historically have become the instruments of tyranny at home.-James Madison': {'madison': 1, 'means': 1, 'instruments': 1, 'defense': 1, 'at': 1, 'have': 1, 'home': 1, 'tyranny': 1, 'james': 1, 'danger': 1, 'against': 1, 'foreign': 1, 'of': 2, 'become': 1, 'the': 2, 'historically': 1}, 'There is a theory which states that if ever anyone discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable. There is another theory which states that this has already happened.-Douglas Adams': {'and': 3, 'already': 1, 'is': 4, 'it': 2, 'inexplicable': 1, 'states': 2, 'something': 1, 'another': 1, 'bizarre': 1, 'disappear': 1, 'if': 1, 'even': 1, 'what': 1, 'for': 1, 'there': 2, 'douglas': 1, 'why': 1, 'anyone': 1, 'discovers': 1, 'which': 2, 'has': 1, 'ever': 1, 'happened': 1, 'be': 1, 'theory': 2, 'that': 2, 'exactly': 1, 'here': 1, 'by': 1, 'a': 1, 'adams': 1, 'this': 1, 'universe': 1, 'will': 1, 'more': 1, 'replaced': 1, 'the': 1, 'instantly': 1}, 'Nothing noble is done without risk.-Andr\xe9 Gide': {'noble': 1, 'risk': 1, 'is': 1, 'gide': 1, 'without': 1, 'done': 1, 'nothing': 1, 'andr': 1}, 'As a woman, I find it very embarrassing to be in a meeting and realize I`m the only one in the room with balls.-Rita Mae Brown': {'and': 1, 'brown': 1, 'woman': 1, 'embarrassing': 1, 'be': 1, 'very': 1, 'it': 1, 'one': 1, 'as': 1, 'mae': 1, 'in': 2, 'with': 1, 'find': 1, 'a': 2, 'balls': 1, 'room': 1, 'i': 2, 'm': 1, 'realize': 1, 'to': 1, 'only': 1, 'the': 2, 'meeting': 1, 'rita': 1}, 'If you`re afraid to ask the question, it`s probably because you already know the answer.-Miriam M. Wynn': {'because': 1, 'wynn': 1, 'question': 1, 'it': 1, 'miriam': 1, 'already': 1, 'know': 1, 'ask': 1, 'the': 2, 'if': 1, 'afraid': 1, 're': 1, 'm': 1, 'to': 1, 's': 1, 'answer': 1, 'probably': 1, 'you': 2}, 'Talent alone won`t make you a success. Neither will being in the right place at the right time, unless you are ready. The most important question is: `Are you ready?`-Johnny Carson': {'the': 3, 'right': 2, 'unless': 1, 'johnny': 1, 'being': 1, 'is': 1, 'most': 1, 'important': 1, 'are': 2, 'in': 1, 'ready': 2, 'alone': 1, 'neither': 1, 'a': 1, 'will': 1, 'talent': 1, 'success': 1, 'make': 1, 'question': 1, 'carson': 1, 'won': 1, 'place': 1, 't': 1, 'time': 1, 'you': 3, 'at': 1}, 'I will honor Christmas in my heart, and try to keep it all the year.-Charles Dickens': {'and': 1, 'heart': 1, 'all': 1, 'charles': 1, 'it': 1, 'year': 1, 'will': 1, 'in': 1, 'i': 1, 'keep': 1, 'try': 1, 'to': 1, 'honor': 1, 'dickens': 1, 'the': 1, 'my': 1, 'christmas': 1}, 'There is time for everything.-Thomas Edison': {'everything': 1, 'thomas': 1, 'for': 1, 'time': 1, 'is': 1, 'there': 1, 'edison': 1}, 'For me, survival is the ability to cope with difficulties, with circumstances, and to overcome them.-Nelson Mandela': {'and': 1, 'them': 1, 'ability': 1, 'cope': 1, 'survival': 1, 'with': 2, 'circumstances': 1, 'me': 1, 'for': 1, 'to': 2, 'difficulties': 1, 'nelson': 1, 'the': 1, 'is': 1, 'overcome': 1, 'mandela': 1}, 'The only kind of seafood I trust is the fish stick, a totally featureless fish that doesn`t have eyeballs or fins.-Dave Barry': {'that': 1, 'fish': 2, 'doesn': 1, 'dave': 1, 'stick': 1, 'have': 1, 'trust': 1, 'totally': 1, 'is': 1, 'a': 1, 'kind': 1, 'featureless': 1, 'i': 1, 'barry': 1, 'seafood': 1, 'or': 1, 'only': 1, 't': 1, 'of': 1, 'the': 2, 'fins': 1, 'eyeballs': 1}, 'All children are artists. The problem is how to remain an artist once he grows up.-Pablo Picasso': {'all': 1, 'is': 1, 'artists': 1, 'an': 1, 'how': 1, 'are': 1, 'pablo': 1, 'picasso': 1, 'the': 1, 'he': 1, 'artist': 1, 'up': 1, 'children': 1, 'to': 1, 'remain': 1, 'problem': 1, 'grows': 1, 'once': 1}, 'Democratic nations must try to find ways to starve the terrorist and the hijacker of the oxygen of publicity on which they depend.-Margaret Thatcher': {'and': 1, 'starve': 1, 'publicity': 1, 'hijacker': 1, 'thatcher': 1, 'margaret': 1, 'they': 1, 'find': 1, 'must': 1, 'on': 1, 'terrorist': 1, 'depend': 1, 'oxygen': 1, 'ways': 1, 'of': 2, 'nations': 1, 'try': 1, 'to': 2, 'which': 1, 'the': 3, 'democratic': 1}, 'Washington is a city of Southern efficiency and Northern charm.-John F. Kennedy': {'a': 1, 'city': 1, 'and': 1, 'northern': 1, 'f': 1, 'southern': 1, 'is': 1, 'kennedy': 1, 'washington': 1, 'efficiency': 1, 'charm': 1, 'of': 1, 'john': 1}, 'Every decent man is ashamed of the government he lives under.-Henry Mencken': {'government': 1, 'mencken': 1, 'decent': 1, 'is': 1, 'under': 1, 'of': 1, 'every': 1, 'ashamed': 1, 'henry': 1, 'lives': 1, 'the': 1, 'man': 1, 'he': 1}, 'Freedom is the right to question and change the established way of doing things. It is the continuous revolution of the marketplace. It is the understanding that allows us to recognize shortcomings and seek solutions.-Ronald Reagan': {'and': 2, 'marketplace': 1, 'right': 1, 'that': 1, 'doing': 1, 'recognize': 1, 'is': 3, 'continuous': 1, 'reagan': 1, 'it': 2, 'understanding': 1, 'ronald': 1, 'revolution': 1, 'solutions': 1, 'seek': 1, 'change': 1, 'established': 1, 'shortcomings': 1, 'things': 1, 'question': 1, 'us': 1, 'to': 2, 'of': 2, 'allows': 1, 'way': 1, 'freedom': 1, 'the': 5}, 'We are never deceived; we deceive ourselves.-Johann Wolfgang von Goethe': {'we': 2, 'goethe': 1, 'wolfgang': 1, 'von': 1, 'never': 1, 'johann': 1, 'are': 1, 'deceive': 1, 'ourselves': 1, 'deceived': 1}, 'Those whom the gods love grow young.-Oscar Wilde': {'love': 1, 'gods': 1, 'young': 1, 'whom': 1, 'wilde': 1, 'oscar': 1, 'the': 1, 'grow': 1, 'those': 1}, 'My dream is of a place and a time where America will once again be seen as the last best hope of earth.-Abraham Lincoln': {'and': 1, 'be': 1, 'is': 1, 'as': 1, 'earth': 1, 'seen': 1, 'america': 1, 'best': 1, 'a': 2, 'again': 1, 'lincoln': 1, 'last': 1, 'of': 2, 'will': 1, 'where': 1, 'place': 1, 'my': 1, 'time': 1, 'the': 1, 'abraham': 1, 'dream': 1, 'hope': 1, 'once': 1}, 'When you stop giving and offering something to the rest of the world, it`s time to turn out the lights.-George Burns': {'and': 1, 'the': 3, 'offering': 1, 'lights': 1, 'stop': 1, 'it': 1, 'rest': 1, 'something': 1, 'world': 1, 'burns': 1, 'george': 1, 'out': 1, 'to': 2, 'giving': 1, 'of': 1, 'when': 1, 'turn': 1, 's': 1, 'time': 1, 'you': 1}, 'The best of life is conversation, and the greatest success is confidence, or perfect understanding between two people.-Ralph Waldo Emerson': {'and': 1, 'life': 1, 'people': 1, 'is': 2, 'understanding': 1, 'best': 1, 'perfect': 1, 'confidence': 1, 'success': 1, 'waldo': 1, 'of': 1, 'ralph': 1, 'two': 1, 'conversation': 1, 'emerson': 1, 'greatest': 1, 'between': 1, 'the': 2, 'or': 1}, 'Perhaps one of the most important accomplishments of my administration has been minding my own business.-Calvin Coolidge': {'own': 1, 'business': 1, 'one': 1, 'most': 1, 'important': 1, 'minding': 1, 'coolidge': 1, 'perhaps': 1, 'of': 2, 'administration': 1, 'calvin': 1, 'been': 1, 'accomplishments': 1, 'the': 1, 'has': 1, 'my': 2}, 'The greatest pleasure of life is love.-William Temple': {'life': 1, 'love': 1, 'of': 1, 'is': 1, 'william': 1, 'greatest': 1, 'pleasure': 1, 'the': 1, 'temple': 1}, 'Live as if you were to die tomorrow. Learn as if you were to live forever.-Mahatma Gandhi': {'forever': 1, 'die': 1, 'were': 2, 'live': 2, 'to': 2, 'as': 2, 'mahatma': 1, 'gandhi': 1, 'learn': 1, 'you': 2, 'tomorrow': 1, 'if': 2}, 'Every author should weigh his work and ask, `Will humanity gain any benefit from it?`-Nachman of Bratslav': {'and': 1, 'his': 1, 'it': 1, 'every': 1, 'gain': 1, 'ask': 1, 'work': 1, 'any': 1, 'from': 1, 'author': 1, 'of': 1, 'bratslav': 1, 'should': 1, 'will': 1, 'benefit': 1, 'nachman': 1, 'weigh': 1, 'humanity': 1}, 'They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.-Benjamin Franklin': {'benjamin': 1, 'temporary': 1, 'give': 1, 'obtain': 1, 'they': 1, 'nor': 1, 'a': 1, 'little': 1, 'deserve': 1, 'that': 1, 'up': 1, 'liberty': 2, 'to': 1, 'safety': 2, 'can': 1, 'neither': 1, 'essential': 1, 'franklin': 1}, 'He has all the virtues I dislike and none of the vices I admire.-Winston Churchill': {'and': 1, 'all': 1, 'churchill': 1, 'i': 2, 'of': 1, 'winston': 1, 'he': 1, 'virtues': 1, 'admire': 1, 'none': 1, 'the': 2, 'has': 1, 'dislike': 1, 'vices': 1}, 'We do survive every moment, after all, except the last one.-John Updike': {'one': 1, 'do': 1, 'we': 1, 'last': 1, 'after': 1, 'all': 1, 'except': 1, 'moment': 1, 'updike': 1, 'survive': 1, 'every': 1, 'the': 1, 'john': 1}, 'I`ve had a wonderful time, but this wasn`t it.-Groucho Marx': {'a': 1, 've': 1, 'i': 1, 'time': 1, 'had': 1, 'it': 1, 'but': 1, 'this': 1, 'groucho': 1, 'wonderful': 1, 't': 1, 'wasn': 1, 'marx': 1}, 'Self-denial is the shining sore on the leprous body of Christianity.-Oscar Wilde': {'body': 1, 'on': 1, 'denial': 1, 'leprous': 1, 'self': 1, 'christianity': 1, 'sore': 1, 'wilde': 1, 'of': 1, 'the': 2, 'is': 1, 'oscar': 1, 'shining': 1}, 'It is better to be bold than too circumspect, because fortune is of a sex which likes not a tardy wooer and repulses all who are not ardent.-Nicolo Machiavelli': {'and': 1, 'be': 1, 'all': 1, 'because': 1, 'bold': 1, 'is': 2, 'who': 1, 'it': 1, 'sex': 1, 'not': 2, 'nicolo': 1, 'likes': 1, 'circumspect': 1, 'ardent': 1, 'than': 1, 'are': 1, 'a': 2, 'fortune': 1, 'of': 1, 'better': 1, 'to': 1, 'machiavelli': 1, 'too': 1, 'which': 1, 'repulses': 1, 'tardy': 1, 'wooer': 1}, 'Americans are so enamored of equality, they would rather be equal in slavery than unequal in freedom.-Alexis de Tocqueville': {'tocqueville': 1, 'be': 1, 'de': 1, 'slavery': 1, 'americans': 1, 'are': 1, 'they': 1, 'in': 2, 'equality': 1, 'than': 1, 'unequal': 1, 'would': 1, 'rather': 1, 'freedom': 1, 'enamored': 1, 'equal': 1, 'alexis': 1, 'so': 1, 'of': 1}, 'There are three rules for writing a novel. Unfortunately, no one knows what they are.-W. Somerset Maugham': {'knows': 1, 'rules': 1, 'one': 1, 'are': 2, 'they': 1, 'a': 1, 'what': 1, 'novel': 1, 'unfortunately': 1, 'for': 1, 'no': 1, 'there': 1, 'three': 1, 'writing': 1, 'w': 1, 'somerset': 1, 'maugham': 1}, 'The heart has its reasons, of which the mind knows nothing.-Blaise Pascal': {'heart': 1, 'knows': 1, 'reasons': 1, 'of': 1, 'mind': 1, 'blaise': 1, 'pascal': 1, 'which': 1, 'nothing': 1, 'the': 2, 'has': 1, 'its': 1}, 'Call on God, but row away from the rocks.-Hunter S. Thompson': {'on': 1, 'from': 1, 'god': 1, 'away': 1, 'hunter': 1, 'but': 1, 'rocks': 1, 's': 1, 'call': 1, 'thompson': 1, 'the': 1, 'row': 1}, 'Old age is fifteen years older than I am.-Oliver Wendell Holmes': {'holmes': 1, 'oliver': 1, 'old': 1, 'older': 1, 'i': 1, 'age': 1, 'am': 1, 'years': 1, 'wendell': 1, 'fifteen': 1, 'than': 1, 'is': 1}, 'You can`t teach an old dogma new tricks.-Dorothy Parker': {'parker': 1, 'old': 1, 'tricks': 1, 'an': 1, 'dogma': 1, 'can': 1, 'dorothy': 1, 'new': 1, 'teach': 1, 'you': 1, 't': 1}, 'To explain the unknown by the known is a logical procedure; to explain the known by the unknown is a form of theological lunacy.-David Brooks': {'form': 1, 'is': 2, 'logical': 1, 'brooks': 1, 'known': 2, 'lunacy': 1, 'by': 2, 'a': 2, 'unknown': 2, 'explain': 2, 'david': 1, 'to': 2, 'theological': 1, 'of': 1, 'the': 4, 'procedure': 1}, 'Our nettlesome task is to discover how to organize our strength into compelling power.-Martin Luther King Jr.': {'': 1, 'organize': 1, 'nettlesome': 1, 'power': 1, 'is': 1, 'discover': 1, 'jr': 1, 'strength': 1, 'our': 2, 'king': 1, 'luther': 1, 'task': 1, 'to': 2, 'how': 1, 'compelling': 1, 'martin': 1, 'into': 1}, 'If all our misfortunes were laid in one common heap, whence everyone must take an equal portion, most people would be content to take their own and depart.-Socrates': {'misfortunes': 1, 'and': 1, 'all': 1, 'everyone': 1, 'depart': 1, 'people': 1, 'were': 1, 'an': 1, 'most': 1, 'own': 1, 'heap': 1, 'in': 1, 'our': 1, 'be': 1, 'one': 1, 'if': 1, 'portion': 1, 'would': 1, 'to': 1, 'whence': 1, 'content': 1, 'their': 1, 'socrates': 1, 'equal': 1, 'take': 2, 'laid': 1, 'must': 1, 'common': 1}, 'An actor is at most a poet and at least an entertainer.-Marlon Brando': {'a': 1, 'and': 1, 'brando': 1, 'marlon': 1, 'is': 1, 'least': 1, 'an': 2, 'most': 1, 'actor': 1, 'poet': 1, 'entertainer': 1, 'at': 2}, 'Associate yourself with men of good quality if you esteem your own reputation; for `tis better to be alone than in bad company.-George Washington': {'be': 1, 'own': 1, 'george': 1, 'than': 1, 'associate': 1, 'company': 1, 'men': 1, 'washington': 1, 'yourself': 1, 'good': 1, 'esteem': 1, 'in': 1, 'alone': 1, 'quality': 1, 'your': 1, 'if': 1, 'for': 1, 'with': 1, 'tis': 1, 'better': 1, 'to': 1, 'bad': 1, 'reputation': 1, 'of': 1, 'you': 1}, 'There are painters who transform the sun to a yellow spot, but there are others who with the help of their art and their intelligence, transform a yellow spot into the sun.-Pablo Picasso': {'and': 1, 'art': 1, 'help': 1, 'intelligence': 1, 'into': 1, 'who': 2, 'spot': 2, 'yellow': 2, 'are': 2, 'pablo': 1, 'picasso': 1, 'with': 1, 'a': 2, 'but': 1, 'their': 2, 'sun': 2, 'there': 2, 'transform': 2, 'painters': 1, 'to': 1, 'of': 1, 'the': 3, 'others': 1}, 'Take time to deliberate, but when the time for action has arrived, stop thinking and go in.-Napoleon Bonaparte': {'and': 1, 'stop': 1, 'but': 1, 'arrived': 1, 'in': 1, 'go': 1, 'napoleon': 1, 'for': 1, 'bonaparte': 1, 'thinking': 1, 'deliberate': 1, 'when': 1, 'to': 1, 'take': 1, 'time': 2, 'action': 1, 'the': 1, 'has': 1}, 'A word is dead when it is said, some say. I say it just begins to live that day.-Emily Dickinson': {'begins': 1, 'just': 1, 'that': 1, 'is': 2, 'some': 1, 'it': 2, 'dead': 1, 'say': 2, 'day': 1, 'emily': 1, 'a': 1, 'said': 1, 'word': 1, 'i': 1, 'when': 1, 'to': 1, 'live': 1, 'dickinson': 1}, 'Everything except God has some natural superior; everything except unformed matter has some natural inferior.-C.S. Lewis': {'unformed': 1, 'superior': 1, 'c': 1, 'natural': 2, 'everything': 2, 'god': 1, 'some': 2, 'except': 2, 'matter': 1, 's': 1, 'lewis': 1, 'has': 2, 'inferior': 1}, 'Who does not thank for little will not thank for much.-Author Unknown': {'little': 1, 'thank': 2, 'for': 2, 'author': 1, 'unknown': 1, 'who': 1, 'will': 1, 'much': 1, 'does': 1, 'not': 2}, 'Blood is the ink of our life`s story.-Jason Mechalek': {'life': 1, 'jason': 1, 'of': 1, 'is': 1, 'story': 1, 's': 1, 'blood': 1, 'ink': 1, 'our': 1, 'the': 1, 'mechalek': 1}, 'There are very few monsters who warrant the fear we have of them.-Andr\xe9 Gide': {'we': 1, 'there': 1, 'few': 1, 'very': 1, 'of': 1, 'who': 1, 'them': 1, 'monsters': 1, 'gide': 1, 'are': 1, 'have': 1, 'fear': 1, 'warrant': 1, 'the': 1, 'andr': 1}, 'When the human race has once acquired a supersitition nothing short of death is ever likely to remove it.-Mark Twain': {'acquired': 1, 'is': 1, 'it': 1, 'supersitition': 1, 'likely': 1, 'death': 1, 'human': 1, 'nothing': 1, 'a': 1, 'short': 1, 'of': 1, 'when': 1, 'remove': 1, 'mark': 1, 'twain': 1, 'to': 1, 'race': 1, 'the': 1, 'has': 1, 'ever': 1, 'once': 1}, 'No passion so effectually robs the mind of all its powers of acting and reasoning as fear.-Edmund Burke': {'and': 1, 'all': 1, 'mind': 1, 'as': 1, 'fear': 1, 'reasoning': 1, 'effectually': 1, 'no': 1, 'of': 2, 'robs': 1, 'its': 1, 'acting': 1, 'so': 1, 'edmund': 1, 'passion': 1, 'the': 1, 'powers': 1, 'burke': 1}, 'Sacred cows make the best hamburger.-Mark Twain': {'hamburger': 1, 'make': 1, 'mark': 1, 'twain': 1, 'sacred': 1, 'cows': 1, 'the': 1, 'best': 1}, 'Liberty exists in proportion to wholesome restraint.-Daniel Webster': {'wholesome': 1, 'exists': 1, 'restraint': 1, 'proportion': 1, 'liberty': 1, 'to': 1, 'daniel': 1, 'in': 1, 'webster': 1}, 'To be what we are, and to become what we are capable of becoming, is the only end of life.-Robert Louis Stevenson': {'and': 1, 'be': 1, 'life': 1, 'becoming': 1, 'we': 2, 'are': 2, 'is': 1, 'what': 2, 'end': 1, 'capable': 1, 'of': 2, 'stevenson': 1, 'to': 2, 'only': 1, 'louis': 1, 'become': 1, 'the': 1, 'robert': 1}, 'Man [has] always assumed that he was more intelligent than dolphins because he had achieved so much-the wheel, New York, wars and so on-while all the dolphins had ever done was muck about in the water having a good time. But conversely, the dolphins had always believed that they were far more intelligent than man-for precisely the same reason.-Douglas Adams': {'and': 1, 'all': 1, 'because': 1, 'achieved': 1, 'dolphins': 3, 'done': 1, 'same': 1, 'in': 1, 'precisely': 1, 'conversely': 1, 'for': 1, 'assumed': 1, 'had': 3, 'douglas': 1, 'muck': 1, 'much': 1, 'new': 1, 'man': 2, 'ever': 1, 'more': 2, 'wheel': 1, 'good': 1, 'that': 2, 'far': 1, 'time': 1, 'wars': 1, 'but': 1, 'water': 1, 'reason': 1, 'york': 1, 'they': 1, 'intelligent': 2, 'than': 2, 'he': 2, 'a': 1, 'on': 1, 'about': 1, 'has': 1, 'adams': 1, 'always': 2, 'was': 2, 'while': 1, 'so': 2, 'were': 1, 'believed': 1, 'the': 5, 'having': 1}, 'The worst thing that could happen to anybody, would be to not be used for anything by anybody.-Kurt Vonnegut': {'be': 2, 'used': 1, 'that': 1, 'worst': 1, 'not': 1, 'happen': 1, 'anything': 1, 'by': 1, 'for': 1, 'would': 1, 'thing': 1, 'could': 1, 'anybody': 2, 'the': 1, 'to': 2, 'vonnegut': 1, 'kurt': 1}, 'Every year, back comes Spring, with nasty little birds yapping their fool heads off and the ground all mucked up with plants.-Dorothy Parker': {'and': 1, 'fool': 1, 'all': 1, 'parker': 1, 'spring': 1, 'back': 1, 'yapping': 1, 'every': 1, 'year': 1, 'dorothy': 1, 'off': 1, 'nasty': 1, 'with': 2, 'birds': 1, 'ground': 1, 'plants': 1, 'little': 1, 'heads': 1, 'up': 1, 'their': 1, 'mucked': 1, 'the': 1, 'comes': 1}, 'If everything seems under control, you`re just not going fast enough.-Mario Andretti': {'control': 1, 'andretti': 1, 'just': 1, 're': 1, 'seems': 1, 'fast': 1, 'mario': 1, 'enough': 1, 'going': 1, 'under': 1, 'not': 1, 'everything': 1, 'you': 1, 'if': 1}, 'Serious sport has nothing to do with fair play. It is bound up with hatred, jealousy, boastfulness, disregard of all rules and sadistic pleasure in witnessing violence. In other words: it is war minus the shooting.-George Orwell': {'and': 1, 'all': 1, 'fair': 1, 'is': 2, 'it': 2, 'in': 2, 'sport': 1, 'george': 1, 'shooting': 1, 'boastfulness': 1, 'jealousy': 1, 'to': 1, 'other': 1, 'witnessing': 1, 'has': 1, 'war': 1, 'do': 1, 'play': 1, 'rules': 1, 'bound': 1, 'disregard': 1, 'words': 1, 'serious': 1, 'nothing': 1, 'with': 2, 'hatred': 1, 'of': 1, 'violence': 1, 'up': 1, 'minus': 1, 'sadistic': 1, 'pleasure': 1, 'the': 1, 'orwell': 1}, 'If you judge people, you have no time to love them.-Mother Teresa': {'them': 1, 'love': 1, 'people': 1, 'no': 1, 'teresa': 1, 'to': 1, 'have': 1, 'time': 1, 'judge': 1, 'you': 2, 'mother': 1, 'if': 1}, 'Washington is a Hollywood for ugly people. Hollywood is a Washington for the simpleminded.-John McCain': {'a': 2, 'for': 2, 'people': 1, 'is': 2, 'washington': 2, 'mccain': 1, 'ugly': 1, 'simpleminded': 1, 'hollywood': 2, 'john': 1, 'the': 1}, 'Not everybody trusts paintings, but people believe photographs.-Ansel Adams': {'everybody': 1, 'photographs': 1, 'ansel': 1, 'adams': 1, 'paintings': 1, 'people': 1, 'but': 1, 'trusts': 1, 'not': 1, 'believe': 1}, 'More than kisses, letters mingle souls.-John Donne': {'letters': 1, 'kisses': 1, 'souls': 1, 'donne': 1, 'mingle': 1, 'john': 1, 'than': 1, 'more': 1}, 'Education is an admirable thing, but it is well to remember from time to time that nothing that is worth knowing can be taught.-Oscar Wilde': {'knowing': 1, 'be': 1, 'that': 2, 'oscar': 1, 'is': 3, 'it': 1, 'but': 1, 'an': 1, 'taught': 1, 'wilde': 1, 'nothing': 1, 'education': 1, 'from': 1, 'remember': 1, 'thing': 1, 'well': 1, 'to': 2, 'can': 1, 'time': 2, 'admirable': 1, 'worth': 1}, 'Death is psychologically as important as birth. Shrinking away from it is something unhealthy and abnormal which robs the second half of life of its purpose.-Carl Jung': {'and': 1, 'life': 1, 'unhealthy': 1, 'psychologically': 1, 'is': 2, 'abnormal': 1, 'it': 1, 'jung': 1, 'second': 1, 'important': 1, 'something': 1, 'birth': 1, 'half': 1, 'shrinking': 1, 'its': 1, 'death': 1, 'from': 1, 'of': 2, 'away': 1, 'robs': 1, 'as': 2, 'carl': 1, 'which': 1, 'the': 1, 'purpose': 1}, 'A few hours of mountain climbing turn a villain and a saint into two rather equal creature. Exhaustion is the shortest way to equality and fraternity, and liberty is added eventually by sleep.-Friedrich Nietzsche': {'and': 3, 'eventually': 1, 'added': 1, 'saint': 1, 'into': 1, 'equal': 1, 'hours': 1, 'villain': 1, 'sleep': 1, 'a': 3, 'climbing': 1, 'turn': 1, 'by': 1, 'shortest': 1, 'nietzsche': 1, 'mountain': 1, 'equality': 1, 'to': 1, 'rather': 1, 'of': 1, 'two': 1, 'liberty': 1, 'fraternity': 1, 'few': 1, 'friedrich': 1, 'way': 1, 'the': 1, 'is': 2, 'exhaustion': 1, 'creature': 1}, 'Let the river roll which way it will, cities will rise on its banks.-Ralph Waldo Emerson': {'way': 1, 'rise': 1, 'it': 1, 'let': 1, 'cities': 1, 'its': 1, 'on': 1, 'waldo': 1, 'ralph': 1, 'will': 2, 'emerson': 1, 'which': 1, 'banks': 1, 'the': 1, 'river': 1, 'roll': 1}, 'Ask not what your country can do for you - ask what you can do for your country.-John F. Kennedy': {'do': 2, 'what': 2, 'for': 2, 'f': 1, 'country': 2, 'kennedy': 1, 'ask': 2, 'can': 2, 'not': 1, 'you': 2, 'john': 1, 'your': 2}, 'The only way to keep your health is to eat what you don`t want, drink what you don`t like, and do what you`d rather not.-Mark Twain': {'and': 1, 'do': 1, 'the': 1, 'is': 1, 'drink': 1, 'want': 1, 'not': 1, 'keep': 1, 'your': 1, 'd': 1, 'what': 3, 'don': 2, 'like': 1, 'eat': 1, 'rather': 1, 'mark': 1, 'twain': 1, 'to': 2, 'only': 1, 'health': 1, 't': 2, 'way': 1, 'you': 3}, 'The greatest happiness of life is the conviction that we are loved, loved for ourselves, or rather, loved in spite of ourselves.-Victor Hugo': {'life': 1, 'that': 1, 'is': 1, 'we': 1, 'are': 1, 'in': 1, 'spite': 1, 'ourselves': 2, 'happiness': 1, 'victor': 1, 'loved': 3, 'conviction': 1, 'for': 1, 'rather': 1, 'of': 2, 'hugo': 1, 'greatest': 1, 'the': 2, 'or': 1}, 'Reason is experimental intelligence, conceived after the pattern of science, and used in the creation of social arts; it has something to do. It liberates man from the bondage of the past, due to ignorance and accident hardened into custom. It projects a better future and assists man in its realization.-John Dewey': {'and': 3, 'intelligence': 1, 'is': 1, 'creation': 1, 'it': 3, 'past': 1, 'something': 1, 'in': 2, 'its': 1, 'arts': 1, 'from': 1, 'liberates': 1, 'pattern': 1, 'due': 1, 'custom': 1, 'better': 1, 'to': 2, 'projects': 1, 'realization': 1, 'hardened': 1, 'john': 1, 'into': 1, 'do': 1, 'used': 1, 'accident': 1, 'conceived': 1, 'ignorance': 1, 'reason': 1, 'assists': 1, 'after': 1, 'dewey': 1, 'a': 1, 'has': 1, 'bondage': 1, 'science': 1, 'future': 1, 'man': 2, 'of': 3, 'the': 4, 'experimental': 1, 'social': 1}, 'Knowledge that is paid for will be longer remembered.-Nachman of Bratslav': {'be': 1, 'knowledge': 1, 'for': 1, 'that': 1, 'remembered': 1, 'of': 1, 'is': 1, 'bratslav': 1, 'paid': 1, 'will': 1, 'nachman': 1, 'longer': 1}, 'Many of life`s failures are people who did not realize how close they were to success when they gave up.-Thomas Edison': {'thomas': 1, 'people': 1, 'who': 1, 'life': 1, 'were': 1, 'are': 1, 'they': 2, 'not': 1, 'close': 1, 'realize': 1, 'edison': 1, 'success': 1, 'to': 1, 'did': 1, 'of': 1, 'when': 1, 'up': 1, 'how': 1, 's': 1, 'many': 1, 'failures': 1, 'gave': 1}, 'Back in the old days, most families were close-knit. Grown children and their parents continued to live together, under the same roof, sometimes in the same small, crowded room, year in and year out, until they died, frequently by strangulation.-Dave Barry': {'and': 2, 'old': 1, 'in': 3, 'back': 1, 'continued': 1, 'roof': 1, 'year': 2, 'close': 1, 'children': 1, 'out': 1, 'grown': 1, 'strangulation': 1, 'to': 1, 'barry': 1, 'same': 2, 'their': 1, 'live': 1, 'parents': 1, 'under': 1, 'until': 1, 'families': 1, 'most': 1, 'dave': 1, 'they': 1, 'frequently': 1, 'knit': 1, 'by': 1, 'died': 1, 'room': 1, 'crowded': 1, 'sometimes': 1, 'days': 1, 'together': 1, 'were': 1, 'small': 1, 'the': 3}, 'The things that will destroy America are prosperity at any price, peace at any price, safety first instead of duty first, the love of soft living and the get rich quick theory of life.-Theodore Roosevelt': {'duty': 1, 'and': 1, 'life': 1, 'love': 1, 'theory': 1, 'living': 1, 'theodore': 1, 'price': 2, 'are': 1, 'instead': 1, 'america': 1, 'any': 2, 'prosperity': 1, 'things': 1, 'peace': 1, 'roosevelt': 1, 'the': 3, 'will': 1, 'that': 1, 'safety': 1, 'rich': 1, 'of': 3, 'quick': 1, 'destroy': 1, 'get': 1, 'first': 2, 'soft': 1, 'at': 2}, 'Journalism is literature in a hurry.-Matthew Arnold': {'a': 1, 'literature': 1, 'is': 1, 'journalism': 1, 'arnold': 1, 'matthew': 1, 'in': 1, 'hurry': 1}, 'Indeed, man wishes to be happy even when he so lives as to make happiness impossible.-Saint Augustine': {'be': 1, 'augustine': 1, 'indeed': 1, 'as': 1, 'wishes': 1, 'lives': 1, 'impossible': 1, 'happiness': 1, 'he': 1, 'even': 1, 'make': 1, 'when': 1, 'to': 2, 'so': 1, 'saint': 1, 'man': 1, 'happy': 1}, 'Art is man`s expression of his joy in labor.-Henry Kissinger': {'his': 1, 'art': 1, 'kissinger': 1, 'of': 1, 'is': 1, 'in': 1, 'labor': 1, 's': 1, 'henry': 1, 'joy': 1, 'expression': 1, 'man': 1}, 'Information is not knowledge.-Albert Einstein': {'information': 1, 'knowledge': 1, 'einstein': 1, 'not': 1, 'is': 1, 'albert': 1}, 'Have children while your parents are still young enough to take care of them.-Rita Rudner': {'them': 1, 'while': 1, 'rudner': 1, 'are': 1, 'have': 1, 'still': 1, 'your': 1, 'care': 1, 'of': 1, 'young': 1, 'children': 1, 'to': 1, 'enough': 1, 'parents': 1, 'take': 1, 'rita': 1}, 'Maturity is a bitter disappointment for which no remedy exists, unless laughter can be said to remedy anything.-Kurt Vonnegut': {'be': 1, 'unless': 1, 'vonnegut': 1, 'exists': 1, 'is': 1, 'remedy': 2, 'to': 1, 'a': 1, 'said': 1, 'anything': 1, 'for': 1, 'no': 1, 'bitter': 1, 'maturity': 1, 'disappointment': 1, 'which': 1, 'kurt': 1, 'laughter': 1, 'can': 1}, 'Skepticism is a virtue in history as well as in philosophy.-Napoleon Bonaparte': {'a': 1, 'bonaparte': 1, 'is': 1, 'philosophy': 1, 'well': 1, 'as': 2, 'virtue': 1, 'in': 2, 'skepticism': 1, 'napoleon': 1, 'history': 1}, 'God`s colors all are fast.-John Greenleaf Whittier': {'all': 1, 'god': 1, 's': 1, 'fast': 1, 'colors': 1, 'greenleaf': 1, 'are': 1, 'john': 1, 'whittier': 1}, 'What the country needs is dirtier fingernails and cleaner minds.-Will Rogers': {'and': 1, 'cleaner': 1, 'what': 1, 'rogers': 1, 'country': 1, 'is': 1, 'needs': 1, 'minds': 1, 'will': 1, 'fingernails': 1, 'dirtier': 1, 'the': 1}, 'This moment contains all moments.-C.S. Lewis': {'all': 1, 'this': 1, 'lewis': 1, 'contains': 1, 'c': 1, 'moment': 1, 'moments': 1, 's': 1}, 'My friends are my estate.-Emily Dickinson': {'are': 1, 'estate': 1, 'dickinson': 1, 'friends': 1, 'my': 2, 'emily': 1}, 'To be prepared for war is one of the most effectual means of preserving peace.-George Washington': {'be': 1, 'means': 1, 'is': 1, 'preserving': 1, 'washington': 1, 'prepared': 1, 'most': 1, 'one': 1, 'george': 1, 'for': 1, 'of': 2, 'peace': 1, 'to': 1, 'effectual': 1, 'the': 1, 'war': 1}, 'Plato was a bore.-Friedrich Nietzsche': {'a': 1, 'nietzsche': 1, 'friedrich': 1, 'bore': 1, 'plato': 1, 'was': 1}, 'The great nations have always acted like gangsters, and the small nations like prostitutes.-Stanley Kubrick': {'and': 1, 'great': 1, 'like': 2, 'prostitutes': 1, 'always': 1, 'acted': 1, 'nations': 2, 'gangsters': 1, 'have': 1, 'small': 1, 'stanley': 1, 'the': 2, 'kubrick': 1}, 'Prediction is very difficult, especially about the future.-Niels Bohr': {'about': 1, 'especially': 1, 'very': 1, 'is': 1, 'prediction': 1, 'niels': 1, 'bohr': 1, 'future': 1, 'the': 1, 'difficult': 1}, 'Remember when safe sex meant not getting caught?-Author Unknown': {'meant': 1, 'remember': 1, 'getting': 1, 'unknown': 1, 'caught': 1, 'safe': 1, 'when': 1, 'sex': 1, 'author': 1, 'not': 1}, 'Idealism is fine, but as it approaches reality, the costs become prohibitive.-William F. Buckley': {'idealism': 1, 'f': 1, 'is': 1, 'it': 1, 'but': 1, 'reality': 1, 'william': 1, 'as': 1, 'costs': 1, 'prohibitive': 1, 'approaches': 1, 'become': 1, 'the': 1, 'fine': 1, 'buckley': 1}, 'There are several good protections against temptation, but the surest is cowardice.-Mark Twain': {'surest': 1, 'cowardice': 1, 'good': 1, 'temptation': 1, 'is': 1, 'there': 1, 'but': 1, 'mark': 1, 'twain': 1, 'protections': 1, 'against': 1, 'the': 1, 'several': 1, 'are': 1}, 'Ocean: A body of water occupying 2/3 of a world made for man...who has no gills.-Ambrose Bierce': {'body': 1, 'who': 1, 'water': 1, 'world': 1, 'man': 1, 'a': 2, 'ambrose': 1, 'made': 1, 'for': 1, 'no': 1, 'of': 2, 'ocean': 1, 'occupying': 1, '3': 1, '2': 1, 'bierce': 1, 'gills': 1, 'has': 1}, 'The surest way of spoiling a pleasure is to start examining your satisfaction.-C.S. Lewis': {'surest': 1, 'examining': 1, 'lewis': 1, 'is': 1, 'satisfaction': 1, 'your': 1, 'a': 1, 'c': 1, 'to': 1, 'of': 1, 'start': 1, 's': 1, 'spoiling': 1, 'way': 1, 'pleasure': 1, 'the': 1}, 'It is unbecoming for young men to utter maxims.-Aristotle': {'unbecoming': 1, 'for': 1, 'is': 1, 'men': 1, 'young': 1, 'it': 1, 'to': 1, 'aristotle': 1, 'utter': 1, 'maxims': 1}, 'Without question, the greatest invention in the history of mankind is beer. Oh, I grant you that the wheel was also a fine invention, but the wheel does not go nearly as well with pizza.-Dave Barry': {'is': 1, 'as': 1, 'invention': 2, 'in': 1, 'go': 1, 'fine': 1, 'grant': 1, 'barry': 1, 'question': 1, 'also': 1, 'beer': 1, 'does': 1, 'you': 1, 'was': 1, 'pizza': 1, 'wheel': 2, 'that': 1, 'but': 1, 'dave': 1, 'mankind': 1, 'not': 1, 'with': 1, 'a': 1, 'oh': 1, 'i': 1, 'of': 1, 'well': 1, 'without': 1, 'greatest': 1, 'the': 4, 'history': 1, 'nearly': 1}, 'I believe the highest aspiration of man should be individual freedom and the development of the individual.-Ronald Reagan': {'and': 1, 'be': 1, 'believe': 1, 'i': 1, 'of': 2, 'aspiration': 1, 'reagan': 1, 'should': 1, 'ronald': 1, 'individual': 2, 'development': 1, 'freedom': 1, 'the': 3, 'highest': 1, 'man': 1}, 'A man is never more truthful than when he acknowledges himself a liar.-Mark Twain': {'a': 2, 'himself': 1, 'liar': 1, 'is': 1, 'never': 1, 'when': 1, 'mark': 1, 'twain': 1, 'more': 1, 'man': 1, 'acknowledges': 1, 'truthful': 1, 'than': 1, 'he': 1}, 'One of the striking differences between a cat and a lie is that a cat has only nine lives.-Mark Twain': {'and': 1, 'that': 1, 'is': 1, 'differences': 1, 'one': 1, 'lives': 1, 'cat': 2, 'a': 3, 'lie': 1, 'of': 1, 'striking': 1, 'mark': 1, 'twain': 1, 'only': 1, 'nine': 1, 'between': 1, 'the': 1, 'has': 1}, 'You can`t depend on your eyes when your imagination is out of focus.-Mark Twain': {'on': 1, 'eyes': 1, 'depend': 1, 'of': 1, 'is': 1, 'when': 1, 'focus': 1, 'mark': 1, 'twain': 1, 'imagination': 1, 'can': 1, 't': 1, 'you': 1, 'your': 2, 'out': 1}, 'Immature love says: `I love you because I need you.` Mature love says: `I need you because I love you.`-Erich Fromm': {'because': 2, 'says': 2, 'erich': 1, 'i': 4, 'fromm': 1, 'mature': 1, 'need': 2, 'love': 4, 'immature': 1, 'you': 4}, 'A `geek` by definition is someone who eats live animals....I`ve never eaten live animals.-Crispin Glover': {'someone': 1, 've': 1, 'is': 1, 'who': 1, 'geek': 1, 'never': 1, 'by': 1, 'a': 1, 'definition': 1, 'animals': 2, 'i': 1, 'eats': 1, 'live': 2, 'glover': 1, 'crispin': 1, 'eaten': 1}, 'Facts do not cease to exist because they are ignored.-Aldous Huxley': {'do': 1, 'because': 1, 'facts': 1, 'ignored': 1, 'aldous': 1, 'to': 1, 'exist': 1, 'are': 1, 'they': 1, 'not': 1, 'cease': 1, 'huxley': 1}, 'When you work seven days a week, fourteen hours a day, you get lucky.-Armand Hammer': {'a': 2, 'week': 1, 'seven': 1, 'get': 1, 'hammer': 1, 'work': 1, 'when': 1, 'days': 1, 'lucky': 1, 'hours': 1, 'you': 2, 'fourteen': 1, 'day': 1, 'armand': 1}, 'The nice thing about being a celebrity is that, if you bore people, they think it`s their fault.-Henry Kissinger': {'that': 1, 'being': 1, 'is': 1, 'it': 1, 'they': 1, 'bore': 1, 'the': 1, 'if': 1, 'a': 1, 'about': 1, 'kissinger': 1, 'thing': 1, 'fault': 1, 'celebrity': 1, 'people': 1, 'their': 1, 's': 1, 'henry': 1, 'you': 1, 'think': 1, 'nice': 1}, 'All men are timid on entering any fight. Whether it is the first or the last fight, all of us are timid. Cowards are those who let their timidity get the better of their manhood.-George Patton': {'all': 2, 'who': 1, 'george': 1, 'get': 1, 'is': 1, 'men': 1, 'it': 1, 'let': 1, 'are': 3, 'entering': 1, 'manhood': 1, 'on': 1, 'timid': 2, 'any': 1, 'those': 1, 'cowards': 1, 'last': 1, 'whether': 1, 'of': 2, 'timidity': 1, 'patton': 1, 'us': 1, 'fight': 2, 'better': 1, 'their': 2, 'the': 3, 'or': 1, 'first': 1}, 'I like to say that I`m bisexual...when I want sex, I buy it.-Boy George': {'boy': 1, 'buy': 1, 'like': 1, 'that': 1, 'i': 4, 'bisexual': 1, 'when': 1, 'm': 1, 'it': 1, 'to': 1, 'say': 1, 'want': 1, 'sex': 1, 'george': 1}, 'The mystic chords of memory, stretching from every battlefield and patriot grave to every living heart and hearthstone all over this broad land, will yet swell the chorus of the Union, when again touched, as surely they will be, by the better angels of our nature.-Abraham Lincoln': {'and': 2, 'battlefield': 1, 'all': 1, 'heart': 1, 'mystic': 1, 'over': 1, 'will': 2, 'as': 1, 'our': 1, 'yet': 1, 'living': 1, 'from': 1, 'union': 1, 'broad': 1, 'when': 1, 'better': 1, 'to': 1, 'touched': 1, 'memory': 1, 'angels': 1, 'be': 1, 'nature': 1, 'swell': 1, 'patriot': 1, 'every': 2, 'they': 1, 'hearthstone': 1, 'by': 1, 'grave': 1, 'again': 1, 'lincoln': 1, 'land': 1, 'chords': 1, 'this': 1, 'of': 3, 'stretching': 1, 'chorus': 1, 'surely': 1, 'the': 4, 'abraham': 1}, 'A mathematician is a blind man in a dark room looking for a black cat which isn`t there.-Charles Robert': {'blind': 1, 'is': 1, 'charles': 1, 'dark': 1, 'in': 1, 'man': 1, 'a': 4, 'room': 1, 'for': 1, 'mathematician': 1, 'robert': 1, 'there': 1, 'cat': 1, 'looking': 1, 'black': 1, 'isn': 1, 'which': 1, 't': 1}, 'It is necessary for the welfare of society that genius should be privileged to utter sedition, to blaspheme, to outrage good taste, to corrupt the youthful mind, and generally to scandalize one`s uncles.-George Bernard Shaw': {'and': 1, 'taste': 1, 'is': 1, 'mind': 1, 'it': 1, 'one': 1, 'scandalize': 1, 'society': 1, 'blaspheme': 1, 'welfare': 1, 'corrupt': 1, 'utter': 1, 'george': 1, 'shaw': 1, 'for': 1, 'to': 5, 'generally': 1, 'should': 1, 'genius': 1, 'outrage': 1, 'privileged': 1, 'be': 1, 'good': 1, 'uncles': 1, 'that': 1, 'sedition': 1, 'necessary': 1, 'of': 1, 'bernard': 1, 's': 1, 'the': 2, 'youthful': 1}, 'The function of RAM is to give us guys a way of deciding whose computer has the biggest, studliest, most tumescent MEMORY. This is important, because with today`s complex software, the more memory a computer has, the faster it can produce error messages. So the bottom line is, if you`re a guy, you cannot have enough RAM.-Dave Barry': {'deciding': 1, 'because': 1, 'give': 1, 'is': 3, 'ram': 2, 'it': 1, 'produce': 1, 'computer': 2, 'studliest': 1, 'have': 1, 'guys': 1, 'if': 1, 'whose': 1, 'bottom': 1, 'barry': 1, 'to': 1, 'enough': 1, 'complex': 1, 'way': 1, 'memory': 2, 'biggest': 1, 'you': 2, 'has': 2, 'today': 1, 'more': 1, 'function': 1, 'most': 1, 'dave': 1, 'cannot': 1, 'tumescent': 1, 'line': 1, 'with': 1, 'the': 5, 'a': 3, 'faster': 1, 'this': 1, 'of': 2, 'messages': 1, 'us': 1, 's': 1, 'important': 1, 'so': 1, 'can': 1, 'error': 1, 'guy': 1, 're': 1, 'software': 1}, 'Knowledge comes, but wisdom lingers.-Calvin Coolidge': {'comes': 1, 'coolidge': 1, 'knowledge': 1, 'lingers': 1, 'calvin': 1, 'but': 1, 'wisdom': 1}, 'Those who bring sunshine to the lives of others, cannot keep it from themselves.-James Matthew Barrie': {'sunshine': 1, 'who': 1, 'it': 1, 'bring': 1, 'cannot': 1, 'lives': 1, 'barrie': 1, 'themselves': 1, 'those': 1, 'from': 1, 'matthew': 1, 'of': 1, 'keep': 1, 'to': 1, 'james': 1, 'the': 1, 'others': 1}, 'Don`t ever take a fence down until you know why it was put up.-Robert Frost': {'fence': 1, 'frost': 1, 'it': 1, 'down': 1, 'know': 1, 'put': 1, 'why': 1, 'a': 1, 'don': 1, 'ever': 1, 'robert': 1, 'up': 1, 't': 1, 'you': 1, 'was': 1, 'until': 1, 'take': 1}, 'When we`re unemployed, we`re called lazy; when the whites are unemployed it`s called a depression.-Jesse Jackson': {'a': 1, 'lazy': 1, 'jackson': 1, 'whites': 1, 'unemployed': 2, 'when': 2, 'we': 2, 'it': 1, 're': 2, 's': 1, 'are': 1, 'the': 1, 'called': 2, 'depression': 1, 'jesse': 1}, 'Death and life have their determined appointments; riches and honors depend upon heaven.-Confucius': {'and': 2, 'life': 1, 'death': 1, 'depend': 1, 'riches': 1, 'confucius': 1, 'upon': 1, 'their': 1, 'appointments': 1, 'determined': 1, 'have': 1, 'heaven': 1, 'honors': 1}, 'Inspiration exists, but it has to find you working.-Pablo Picasso': {'exists': 1, 'working': 1, 'it': 1, 'but': 1, 'to': 1, 'pablo': 1, 'picasso': 1, 'you': 1, 'has': 1, 'find': 1, 'inspiration': 1}, 'All I want out of life, is that when I walk down the street folks will say, `There goes the greatest hitter that ever lived.`-Ted Williams': {'all': 1, 'lived': 1, 'that': 2, 'is': 1, 'ted': 1, 'life': 1, 'walk': 1, 'down': 1, 'say': 1, 'street': 1, 'want': 1, 'out': 1, 'hitter': 1, 'i': 2, 'of': 1, 'there': 1, 'when': 1, 'will': 1, 'greatest': 1, 'goes': 1, 'folks': 1, 'the': 2, 'ever': 1, 'williams': 1}, 'I honestly think it is better to be a failure at something you love than to be a success at something you hate.-George Burns': {'be': 2, 'love': 1, 'is': 1, 'it': 1, 'failure': 1, 'at': 2, 'burns': 1, 'hate': 1, 'than': 1, 'a': 2, 'success': 1, 'i': 1, 'george': 1, 'better': 1, 'to': 2, 'honestly': 1, 'you': 2, 'think': 1, 'something': 2}, 'Your faith is what you believe, not what you know.-Mark Twain': {'faith': 1, 'what': 2, 'is': 1, 'mark': 1, 'twain': 1, 'know': 1, 'not': 1, 'you': 2, 'believe': 1, 'your': 1}, 'You may delay, but time will not.-Benjamin Franklin': {'benjamin': 1, 'delay': 1, 'may': 1, 'but': 1, 'will': 1, 'franklin': 1, 'time': 1, 'not': 1, 'you': 1}, 'Anybody can become angry - that is easy, but to be angry with the right person and to the right degree and at the right time and for the right purpose, and in the right way - that is not within everybody`s power and is not easy.-Aristotle': {'and': 5, 'be': 1, 'right': 5, 'easy': 2, 'power': 1, 'that': 2, 'is': 3, 'within': 1, 'but': 1, 'at': 1, 'aristotle': 1, 'in': 1, 'not': 2, 'with': 1, 'everybody': 1, 'degree': 1, 'for': 1, 'person': 1, 'angry': 2, 'anybody': 1, 'to': 2, 's': 1, 'can': 1, 'way': 1, 'time': 1, 'become': 1, 'the': 5, 'purpose': 1}, 'War - an act of violence whose object is to constrain the enemy, to accomplish our will.-George Washington': {'the': 1, 'enemy': 1, 'is': 1, 'object': 1, 'washington': 1, 'an': 1, 'our': 1, 'george': 1, 'whose': 1, 'accomplish': 1, 'of': 1, 'violence': 1, 'will': 1, 'to': 2, 'act': 1, 'constrain': 1, 'war': 1}, 'There are fathers who do not love their children; there is no grandfather who does not adore his grandson.-Victor Hugo': {'do': 1, 'his': 1, 'love': 1, 'fathers': 1, 'who': 2, 'are': 1, 'not': 2, 'hugo': 1, 'victor': 1, 'grandson': 1, 'no': 1, 'there': 2, 'children': 1, 'grandfather': 1, 'their': 1, 'does': 1, 'adore': 1, 'is': 1}, 'True wisdom comes to each of us when we realize how little we understand about life, ourselves, and the world around us.-Socrates': {'and': 1, 'we': 2, 'around': 1, 'life': 1, 'wisdom': 1, 'understand': 1, 'world': 1, 'true': 1, 'ourselves': 1, 'little': 1, 'to': 1, 'of': 1, 'when': 1, 'us': 2, 'realize': 1, 'how': 1, 'socrates': 1, 'each': 1, 'about': 1, 'the': 1, 'comes': 1}, 'When we got into office, the thing that surprised me the most was that things were as bad as we`d been saying they were.-John F. Kennedy': {'saying': 1, 'we': 2, 'office': 1, 'that': 2, 'into': 1, 'most': 1, 'as': 2, 'they': 1, 'me': 1, 'd': 1, 'f': 1, 'things': 1, 'kennedy': 1, 'when': 1, 'been': 1, 'thing': 1, 'bad': 1, 'were': 2, 'got': 1, 'the': 2, 'john': 1, 'was': 1, 'surprised': 1}, 'Life`s most persistent and urgent question is, `What are you doing for others?`-Martin Luther King Jr.': {'and': 1, '': 1, 'life': 1, 'doing': 1, 'is': 1, 'what': 1, 'jr': 1, 'urgent': 1, 'are': 1, 'others': 1, 'king': 1, 'luther': 1, 'for': 1, 'most': 1, 'question': 1, 'persistent': 1, 's': 1, 'martin': 1, 'you': 1}, 'The only reason for time is so that everything doesn`t happen at once.-Albert Einstein': {'that': 1, 'is': 1, 'albert': 1, 'doesn': 1, 'reason': 1, 'at': 1, 'einstein': 1, 'happen': 1, 'for': 1, 'everything': 1, 'only': 1, 'so': 1, 't': 1, 'time': 1, 'the': 1, 'once': 1}, 'A good novel tells us the truth about its hero; but a bad novel tells us the truth about its author.-GK Chesterton': {'a': 2, 'about': 2, 'good': 1, 'hero': 1, 'author': 1, 'us': 2, 'tells': 2, 'bad': 1, 'novel': 2, 'but': 1, 'truth': 2, 'the': 2, 'gk': 1, 'its': 2, 'chesterton': 1}, 'Against criticism a man can neither protest nor defend himself; he must act in spite of it, and then it will gradually yield to him.-Johann Wolfgang von Goethe': {'criticism': 1, 'and': 1, 'himself': 1, 'goethe': 1, 'then': 1, 'wolfgang': 1, 'von': 1, 'it': 2, 'protest': 1, 'against': 1, 'in': 1, 'him': 1, 'nor': 1, 'he': 1, 'a': 1, 'gradually': 1, 'spite': 1, 'of': 1, 'defend': 1, 'johann': 1, 'yield': 1, 'will': 1, 'to': 1, 'can': 1, 'man': 1, 'act': 1, 'neither': 1, 'must': 1}, 'One can resist the invasion of an army but one cannot resist the invasion of ideas.-Victor Hugo': {'army': 1, 'of': 2, 'hugo': 1, 'ideas': 1, 'but': 1, 'one': 2, 'resist': 2, 'cannot': 1, 'can': 1, 'invasion': 2, 'the': 2, 'an': 1, 'victor': 1}, 'I hate war as only a soldier who has lived it can, only as one who has seen its brutality, its futility, its stupidity.-Dwight Eisenhower': {'lived': 1, 'who': 2, 'it': 1, 'war': 1, 'one': 1, 'as': 2, 'seen': 1, 'hate': 1, 'its': 3, 'a': 1, 'brutality': 1, 'i': 1, 'futility': 1, 'stupidity': 1, 'eisenhower': 1, 'soldier': 1, 'only': 2, 'can': 1, 'has': 2, 'dwight': 1}, 'The aging process has you firmly in its grasp if you never get the urge to throw a snowball.-Doug Larson': {'urge': 1, 'larson': 1, 'process': 1, 'never': 1, 'you': 2, 'snowball': 1, 'doug': 1, 'its': 1, 'if': 1, 'a': 1, 'aging': 1, 'in': 1, 'get': 1, 'throw': 1, 'to': 1, 'firmly': 1, 'grasp': 1, 'the': 2, 'has': 1}, 'Just as your hand, held before the eye, can hide the tallest mountain, so this small earthly life keeps us from seeing the vast radiance that fills the core of the universe.-Nachman of Bratslav': {'seeing': 1, 'life': 1, 'radiance': 1, 'just': 1, 'core': 1, 'keeps': 1, 'hand': 1, 'held': 1, 'as': 1, 'from': 1, 'earthly': 1, 'hide': 1, 'your': 1, 'vast': 1, 'before': 1, 'mountain': 1, 'eye': 1, 'fills': 1, 'this': 1, 'universe': 1, 'bratslav': 1, 'us': 1, 'that': 1, 'so': 1, 'nachman': 1, 'of': 2, 'small': 1, 'the': 5, 'tallest': 1, 'can': 1}, 'Let him who desires peace prepare for war.-Vegetius': {'who': 1, 'prepare': 1, 'desires': 1, 'peace': 1, 'him': 1, 'for': 1, 'vegetius': 1, 'let': 1, 'war': 1}, 'To be a leader means to be able to move masses.-Adolf Hitler': {'a': 1, 'be': 2, 'adolf': 1, 'means': 1, 'masses': 1, 'move': 1, 'able': 1, 'to': 3, 'leader': 1, 'hitler': 1}, 'Science without religion is lame, religion without science is blind.-Albert Einstein': {'blind': 1, 'lame': 1, 'science': 2, 'is': 2, 'albert': 1, 'religion': 2, 'without': 2, 'einstein': 1}, 'If you have an apple and I have an apple and we exchange these apples then you and I will still each have one apple. But if you have an idea and I have an idea and we exchange these ideas, then each of us will have two ideas.-George Bernard Shaw': {'and': 5, 'then': 2, 'we': 2, 'an': 4, 'apple': 3, 'exchange': 2, 'idea': 2, 'but': 1, 'one': 1, 'two': 1, 'have': 6, 'still': 1, 'george': 1, 'if': 2, 'these': 2, 'shaw': 1, 'i': 3, 'of': 1, 'ideas': 2, 'us': 1, 'will': 2, 'bernard': 1, 'apples': 1, 'each': 2, 'you': 3}, 'The greatest lesson in life is to know that even fools are right sometimes.-Winston Churchill': {'life': 1, 'right': 1, 'that': 1, 'is': 1, 'winston': 1, 'churchill': 1, 'are': 1, 'in': 1, 'lesson': 1, 'the': 1, 'even': 1, 'sometimes': 1, 'to': 1, 'greatest': 1, 'fools': 1, 'know': 1}, 'Never discourage anyone who continually makes progress, no matter how slow.-Plato': {'discourage': 1, 'never': 1, 'no': 1, 'who': 1, 'continually': 1, 'anyone': 1, 'matter': 1, 'plato': 1, 'slow': 1, 'how': 1, 'progress': 1, 'makes': 1}, 'All men desire to know.-Aristotle': {'desire': 1, 'to': 1, 'all': 1, 'know': 1, 'aristotle': 1, 'men': 1}, 'Fatherhood is pretending the present you love most is soap on-a-rope.-Bill Cosby': {'a': 1, 'on': 1, 'love': 1, 'pretending': 1, 'is': 2, 'bill': 1, 'you': 1, 'rope': 1, 'most': 1, 'fatherhood': 1, 'the': 1, 'soap': 1, 'present': 1, 'cosby': 1}, 'Government is not a solution to our problem, government is the problem.-Ronald Reagan': {'a': 1, 'government': 2, 'is': 2, 'reagan': 1, 'solution': 1, 'ronald': 1, 'to': 1, 'not': 1, 'our': 1, 'problem': 2, 'the': 1}, 'I wake each morning torn between the desire to improve the world and the desire to enjoy it. It makes it hard to plan the day.-E.B. White': {'and': 1, 'enjoy': 1, 'the': 4, 'hard': 1, 'it': 3, 'wake': 1, 'plan': 1, 'world': 1, 'between': 1, 'improve': 1, 'desire': 2, 'b': 1, 'e': 1, 'i': 1, 'torn': 1, 'morning': 1, 'to': 3, 'each': 1, 'white': 1, 'makes': 1, 'day': 1}, 'When they call the roll in the Senate, the Senators do not know whether to answer `Present` or `Not guilty.`-Theodore Roosevelt': {'senators': 1, 'do': 1, 'theodore': 1, 'when': 1, 'know': 1, 'they': 1, 'in': 1, 'not': 2, 'present': 1, 'whether': 1, 'senate': 1, 'guilty': 1, 'roosevelt': 1, 'roll': 1, 'to': 1, 'call': 1, 'answer': 1, 'the': 3, 'or': 1}, 'A journey of a thousand miles begins with a single step.-Confucius': {'a': 3, 'begins': 1, 'of': 1, 'thousand': 1, 'single': 1, 'step': 1, 'miles': 1, 'with': 1, 'confucius': 1, 'journey': 1}, 'The commonest thing is delightful if only one hides it.-Oscar Wilde': {'commonest': 1, 'oscar': 1, 'is': 1, 'delightful': 1, 'one': 1, 'thing': 1, 'only': 1, 'wilde': 1, 'hides': 1, 'it': 1, 'the': 1, 'if': 1}, 'How did it happen that their lips came together? How does it happen that birds sing, that snow melts, that the rose unfolds, that the dawn whitens behind the stark shapes of trees on the quivering summit of the hill? A kiss, and all was said.-Victor Hugo': {'and': 1, 'all': 1, 'unfolds': 1, 'quivering': 1, 'melts': 1, 'it': 2, 'lips': 1, 'dawn': 1, 'happen': 2, 'victor': 1, 'said': 1, 'their': 1, 'rose': 1, 'hugo': 1, 'snow': 1, 'stark': 1, 'birds': 1, 'how': 2, 'behind': 1, 'does': 1, 'hill': 1, 'was': 1, 'that': 5, 'trees': 1, 'whitens': 1, 'kiss': 1, 'sing': 1, 'a': 1, 'on': 1, 'did': 1, 'of': 2, 'together': 1, 'shapes': 1, 'summit': 1, 'the': 5, 'came': 1}, 'Learning carries within itself certain dangers because out of necessity one has to learn from one`s enemies.-Leon Trotsky': {'because': 1, 'learning': 1, 'certain': 1, 'within': 1, 'leon': 1, 'one': 2, 'itself': 1, 'necessity': 1, 'trotsky': 1, 'enemies': 1, 'dangers': 1, 'from': 1, 'of': 1, 'carries': 1, 'to': 1, 's': 1, 'learn': 1, 'has': 1, 'out': 1}, 'Don`t marry a man to reform him - that`s what reform schools are for.-Mae West': {'that': 1, 'mae': 1, 'are': 1, 'schools': 1, 'him': 1, 'man': 1, 'a': 1, 'what': 1, 'don': 1, 'for': 1, 'reform': 2, 'west': 1, 'marry': 1, 'to': 1, 's': 1, 't': 1}, 'The whole life of an American is passed like a game of chance, a revolutionary crisis, or a battle.-Alexis de Tocqueville': {'tocqueville': 1, 'revolutionary': 1, 'life': 1, 'is': 1, 'de': 1, 'an': 1, 'chance': 1, 'battle': 1, 'crisis': 1, 'a': 3, 'like': 1, 'of': 2, 'game': 1, 'alexis': 1, 'american': 1, 'passed': 1, 'the': 1, 'whole': 1, 'or': 1}, 'All men are frauds. The only difference between them is that some admit it. I myself deny it.-Henry Mencken': {'all': 1, 'that': 1, 'is': 1, 'men': 1, 'some': 1, 'them': 1, 'it': 2, 'are': 1, 'difference': 1, 'between': 1, 'deny': 1, 'i': 1, 'frauds': 1, 'only': 1, 'mencken': 1, 'admit': 1, 'henry': 1, 'the': 1, 'myself': 1}, 'As scarce as truth is, the supply has always been in excess of the demand.-Josh Billings': {'in': 1, 'supply': 1, 'always': 1, 'is': 1, 'excess': 1, 'josh': 1, 'been': 1, 'as': 2, 'of': 1, 'truth': 1, 'demand': 1, 'billings': 1, 'scarce': 1, 'the': 2, 'has': 1}, 'No doubt those who really founded modern science were usually those whose love of truth exceeded their love of power.-C.S. Lewis': {'who': 1, 'love': 2, 'power': 1, 'lewis': 1, 'modern': 1, 'founded': 1, 'exceeded': 1, 'those': 2, 'really': 1, 'whose': 1, 'c': 1, 'no': 1, 'science': 1, 'their': 1, 's': 1, 'doubt': 1, 'truth': 1, 'were': 1, 'usually': 1, 'of': 2}, 'If my children wake up on Christmas morning and have someone to thank for putting candy in their stocking, have I no one to thank for putting two feet in mine?-GK Chesterton': {'and': 1, 'someone': 1, 'to': 2, 'up': 1, 'mine': 1, 'one': 1, 'feet': 1, 'wake': 1, 'have': 2, 'in': 2, 'gk': 1, 'children': 1, 'stocking': 1, 'if': 1, 'on': 1, 'thank': 2, 'for': 2, 'no': 1, 'i': 1, 'two': 1, 'candy': 1, 'morning': 1, 'their': 1, 'putting': 2, 'my': 1, 'christmas': 1, 'chesterton': 1}, 'The recipe for perpetual ignorance is: be satisfied with your opinions and content with your knowledge.-Elbert Hubbard': {'and': 1, 'be': 1, 'opinions': 1, 'is': 1, 'recipe': 1, 'ignorance': 1, 'satisfied': 1, 'with': 2, 'your': 2, 'hubbard': 1, 'knowledge': 1, 'for': 1, 'elbert': 1, 'perpetual': 1, 'content': 1, 'the': 1}, 'It is very easy to tell the difference between man-made and God-made objects. The more you magnify man-made objects, the cruder they look, but the more you magnify God-made objects, the more precise and intricate they appear.-Luther Sutherland': {'and': 2, 'precise': 1, 'cruder': 1, 'magnify': 2, 'look': 1, 'very': 1, 'is': 1, 'it': 1, 'but': 1, 'objects': 3, 'they': 2, 'intricate': 1, 'difference': 1, 'sutherland': 1, 'the': 5, 'man': 2, 'luther': 1, 'made': 4, 'appear': 1, 'god': 2, 'to': 1, 'easy': 1, 'between': 1, 'you': 2, 'tell': 1, 'more': 3}, 'The least of things with a meaning is worth more in life than the greatest of things without it.-Carl Jung': {'life': 1, 'is': 1, 'it': 1, 'jung': 1, 'meaning': 1, 'carl': 1, 'in': 1, 'with': 1, 'than': 1, 'a': 1, 'of': 2, 'least': 1, 'without': 1, 'greatest': 1, 'things': 2, 'the': 2, 'worth': 1, 'more': 1}, 'In the councils of government, we must guard against the acquisition of unwarranted influence, whether sought or unsought, by the military-industrial complex.-Dwight Eisenhower': {'unwarranted': 1, 'we': 1, 'industrial': 1, 'government': 1, 'councils': 1, 'influence': 1, 'guard': 1, 'unsought': 1, 'in': 1, 'sought': 1, 'eisenhower': 1, 'must': 1, 'dwight': 1, 'whether': 1, 'of': 2, 'against': 1, 'by': 1, 'complex': 1, 'military': 1, 'the': 3, 'or': 1, 'acquisition': 1}, 'I would not join any club that would have someone like me for a member.-Groucho Marx': {'a': 1, 'someone': 1, 'that': 1, 'club': 1, 'groucho': 1, 'have': 1, 'not': 1, 'any': 1, 'me': 1, 'join': 1, 'like': 1, 'would': 2, 'i': 1, 'for': 1, 'member': 1, 'marx': 1}, 'If eighty percent of your sales come from twenty percent of all of your items, just carry those twenty percent.-Henry Kissinger': {'all': 1, 'just': 1, 'eighty': 1, 'sales': 1, 'carry': 1, 'items': 1, 'come': 1, 'your': 2, 'those': 1, 'if': 1, 'from': 1, 'kissinger': 1, 'of': 3, 'percent': 3, 'twenty': 2, 'henry': 1}, 'Children always understand. They have open minds. They have built-in shit detectors.-Madonna Ciccone': {'have': 2, 'always': 1, 'detectors': 1, 'minds': 1, 'understand': 1, 'ciccone': 1, 'they': 2, 'in': 1, 'madonna': 1, 'open': 1, 'children': 1, 'shit': 1, 'built': 1}, 'Certain thoughts are prayers. There are moments when, whatever be the attitude of the body, the soul is on its knees.-Victor Hugo': {'body': 1, 'be': 1, 'there': 1, 'prayers': 1, 'moments': 1, 'certain': 1, 'is': 1, 'whatever': 1, 'attitude': 1, 'are': 2, 'on': 1, 'its': 1, 'thoughts': 1, 'victor': 1, 'knees': 1, 'of': 1, 'hugo': 1, 'when': 1, 'soul': 1, 'the': 3}, 'A nickel isn`t worth a dime today.-Yogi Berra': {'a': 2, 'nickel': 1, 'dime': 1, 'yogi': 1, 'berra': 1, 'isn': 1, 'worth': 1, 'today': 1, 't': 1}, 'The significant problems we face cannot be solved at the same level of thinking we were at when we created them.-Albert Einstein': {'be': 1, 'we': 3, 'albert': 1, 'problems': 1, 'them': 1, 'cannot': 1, 'at': 2, 'significant': 1, 'einstein': 1, 'level': 1, 'thinking': 1, 'of': 1, 'created': 1, 'when': 1, 'same': 1, 'face': 1, 'solved': 1, 'were': 1, 'the': 2}, 'Nothing before had ever made me thoroughly realise, though I had read various scientific books, that science consists in grouping facts so that general laws or conclusions may be drawn from them.-Charles Darwin': {'charles': 1, 'general': 1, 'facts': 1, 'books': 1, 'in': 1, 'consists': 1, 'before': 1, 'from': 1, 'conclusions': 1, 'thoroughly': 1, 'though': 1, 'had': 2, 'read': 1, 'various': 1, 'drawn': 1, 'darwin': 1, 'ever': 1, 'be': 1, 'them': 1, 'scientific': 1, 'that': 2, 'may': 1, 'nothing': 1, 'me': 1, 'made': 1, 'i': 1, 'science': 1, 'so': 1, 'realise': 1, 'grouping': 1, 'or': 1, 'laws': 1}, 'Life is no brief candle to me. It is a sort of splendid torch which I have got a hold of for the moment, and I want to make it burn as brightly as possible before handing it onto future generations.-George Bernard Shaw': {'and': 1, 'brightly': 1, 'have': 1, 'is': 2, 'torch': 1, 'it': 3, 'as': 2, 'want': 1, 'candle': 1, 'george': 1, 'before': 1, 'shaw': 1, 'for': 1, 'no': 1, 'make': 1, 'brief': 1, 'bernard': 1, 'which': 1, 'got': 1, 'sort': 1, 'me': 1, 'handing': 1, 'to': 2, 'burn': 1, 'possible': 1, 'moment': 1, 'hold': 1, 'a': 2, 'splendid': 1, 'i': 2, 'of': 2, 'life': 1, 'future': 1, 'the': 1, 'onto': 1, 'generations': 1}, 'People can misinterpret almost anything so that it coincides with views they already hold. They take from art what they already believe.-Stanley Kubrick': {'from': 1, 'already': 2, 'art': 1, 'people': 1, 'almost': 1, 'it': 1, 'they': 3, 'stanley': 1, 'believe': 1, 'with': 1, 'what': 1, 'hold': 1, 'misinterpret': 1, 'anything': 1, 'views': 1, 'coincides': 1, 'that': 1, 'so': 1, 'can': 1, 'kubrick': 1, 'take': 1}, 'To one who has faith, no explanation is necessary. To one without faith, no explanation is possible.-Thomas Aquinas': {'faith': 2, 'thomas': 1, 'necessary': 1, 'no': 2, 'explanation': 2, 'who': 1, 'possible': 1, 'one': 2, 'to': 2, 'without': 1, 'aquinas': 1, 'has': 1, 'is': 2}, 'After silence, that which comes nearest to expressing the inexpressible is Music.-Aldous Huxley': {'nearest': 1, 'which': 1, 'that': 1, 'is': 1, 'after': 1, 'inexpressible': 1, 'to': 1, 'comes': 1, 'music': 1, 'aldous': 1, 'expressing': 1, 'the': 1, 'huxley': 1, 'silence': 1}, 'When I took office, only high energy physicists had ever heard of what is called the Worldwide Web....now even my cat has its own page.-Bill Clinton': {'worldwide': 1, 'own': 1, 'clinton': 1, 'office': 1, 'had': 1, 'energy': 1, 'took': 1, 'high': 1, 'heard': 1, 'my': 1, 'now': 1, 'its': 1, 'is': 1, 'even': 1, 'web': 1, 'what': 1, 'called': 1, 'i': 1, 'of': 1, 'bill': 1, 'when': 1, 'cat': 1, 'only': 1, 'physicists': 1, 'the': 1, 'has': 1, 'ever': 1, 'page': 1}, 'I feel impelled to speak today in a language that in a sense is new-one which I, who have spent so much of my life in the military profession, would have preferred never to use. That new language is the language of atomic warfare.-Dwight Eisenhower': {'feel': 1, 'is': 2, 'sense': 1, 'profession': 1, 'one': 1, 'atomic': 1, 'have': 2, 'in': 3, 'impelled': 1, 'speak': 1, 'use': 1, 'would': 1, 'to': 2, 'much': 1, 'which': 1, 'new': 2, 'today': 1, 'life': 1, 'who': 1, 'that': 2, 'never': 1, 'preferred': 1, 'eisenhower': 1, 'a': 2, 'warfare': 1, 'language': 3, 'i': 2, 'of': 2, 'spent': 1, 'so': 1, 'military': 1, 'the': 2, 'my': 1, 'dwight': 1}, 'When we die, our bodies are buried. When we live, our souls are buried.-Jason Mechalek': {'we': 2, 'jason': 1, 'die': 1, 'when': 2, 'souls': 1, 'live': 1, 'are': 2, 'our': 2, 'mechalek': 1, 'bodies': 1, 'buried': 2}, 'Happiness is so hard to define and foolish to define. Am I acting? That`s the worst thing you can ask yourself. You can be happy suddenly. It can spring on you, not when you reach a plateau. You can be happy going backward or going down. You can be happy at the loss of something.-Steve Martin': {'and': 1, 'suddenly': 1, 'spring': 1, 'is': 1, 'hard': 1, 'am': 1, 'it': 1, 'yourself': 1, 'down': 1, 'ask': 1, 'at': 1, 'happiness': 1, 'foolish': 1, 'when': 1, 'to': 2, 'acting': 1, 'going': 2, 'plateau': 1, 'you': 6, 'happy': 3, 'be': 3, 'that': 1, 'reach': 1, 'worst': 1, 'loss': 1, 'not': 1, 'on': 1, 'a': 1, 'steve': 1, 'backward': 1, 'i': 1, 'of': 1, 'thing': 1, 's': 1, 'so': 1, 'can': 5, 'martin': 1, 'the': 2, 'define': 2, 'or': 1, 'something': 1}, 'That the innocent, though they may have some connexion or dependency upon the guilty (which, perhaps, they themselves cannot help), should not, upon that account, suffer or be punished for the guilty, is one of the plainest and most obvious rules of justice.-Adam Smith': {'and': 1, 'help': 1, 'is': 1, 'some': 1, 'one': 1, 'have': 1, 'suffer': 1, 'connexion': 1, 'for': 1, 'dependency': 1, 'perhaps': 1, 'though': 1, 'smith': 1, 'should': 1, 'may': 1, 'punished': 1, 'innocent': 1, 'themselves': 1, 'be': 1, 'which': 1, 'that': 2, 'rules': 1, 'plainest': 1, 'upon': 2, 'most': 1, 'cannot': 1, 'they': 2, 'not': 1, 'account': 1, 'of': 2, 'guilty': 2, 'justice': 1, 'obvious': 1, 'adam': 1, 'the': 4, 'or': 2}, 'I just want to do God`s will.-Martin Luther King Jr.': {'': 1, 'do': 1, 'luther': 1, 'just': 1, 'king': 1, 'i': 1, 'god': 1, 'jr': 1, 'will': 1, 'to': 1, 's': 1, 'want': 1, 'martin': 1}, 'It has been said that man is a rational animal. All my life I have been searching for evidence which could support this.-Bertrand Russell': {'searching': 1, 'this': 1, 'all': 1, 'which': 1, 'that': 1, 'is': 1, 'it': 1, 'evidence': 1, 'have': 1, 'man': 1, 'a': 1, 'said': 1, 'russell': 1, 'for': 1, 'bertrand': 1, 'support': 1, 'life': 1, 'been': 2, 'rational': 1, 'i': 1, 'animal': 1, 'has': 1, 'my': 1, 'could': 1}, 'One of the great attractions of patriotism -- it fulfills our worst wishes. In the person of our nation we are able, vicariously, to bully and cheat. Bully and cheat, what`s more, with a feeling that we are profoundly virtuous.-Aldous Huxley': {'and': 2, 'fulfills': 1, 'patriotism': 1, 'cheat': 2, 'attractions': 1, 'it': 1, 'aldous': 1, 'one': 1, 'profoundly': 1, 'are': 2, 'in': 1, 'our': 2, 'what': 1, 'able': 1, 'to': 1, 'more': 1, 'virtuous': 1, 'we': 2, 'bully': 2, 'that': 1, 'nation': 1, 'wishes': 1, 'worst': 1, 'with': 1, 'huxley': 1, 'a': 1, 'vicariously': 1, 'great': 1, 'of': 3, 'person': 1, 's': 1, 'the': 2, 'feeling': 1}, 'Black holes are where God divided by zero.-Steven Wright': {'god': 1, 'divided': 1, 'holes': 1, 'wright': 1, 'zero': 1, 'black': 1, 'are': 1, 'steven': 1, 'where': 1, 'by': 1}, 'I think computer viruses should count as life. I think it says something about human nature that the only form of life we have created so far is purely destructive. We`ve created life in our own image.-Stephen Hawking': {'own': 1, 'says': 1, 'human': 1, 'is': 1, 'life': 3, 'purely': 1, 'as': 1, 'computer': 1, 'viruses': 1, 'something': 1, 'have': 1, 'in': 1, 'our': 1, 've': 1, 'nature': 1, 'should': 1, 'only': 1, 'hawking': 1, 'stephen': 1, 'image': 1, 'we': 2, 'form': 1, 'that': 1, 'far': 1, 'it': 1, 'destructive': 1, 'count': 1, 'about': 1, 'created': 2, 'i': 2, 'of': 1, 'so': 1, 'the': 1, 'think': 2}, 'I mistrust the judgment of every man in a case in which his own wishes are concerned.-Daniel Webster': {'case': 1, 'his': 1, 'wishes': 1, 'every': 1, 'are': 1, 'in': 2, 'own': 1, 'judgment': 1, 'man': 1, 'a': 1, 'i': 1, 'of': 1, 'concerned': 1, 'mistrust': 1, 'daniel': 1, 'which': 1, 'webster': 1, 'the': 1}, 'Of all the animals, man is the only one that lies.-Mark Twain': {'all': 1, 'animals': 1, 'that': 1, 'of': 1, 'is': 1, 'one': 1, 'twain': 1, 'lies': 1, 'only': 1, 'the': 2, 'mark': 1, 'man': 1}, 'If you could kick the person in the pants responsible for most of your trouble, you wouldn`t sit for a month.-Theodore Roosevelt': {'wouldn': 1, 'theodore': 1, 'month': 1, 'most': 1, 'in': 1, 'trouble': 1, 'your': 1, 'if': 1, 'a': 1, 'for': 2, 'sit': 1, 'of': 1, 'could': 1, 'responsible': 1, 'roosevelt': 1, 'person': 1, 't': 1, 'you': 2, 'the': 2, 'kick': 1, 'pants': 1}, 'A diplomat is a man who always remembers a woman`s birthday but never remembers her age.-Robert Frost': {'woman': 1, 'is': 1, 'frost': 1, 'but': 1, 'birthday': 1, 'never': 1, 'man': 1, 'a': 3, 'diplomat': 1, 'her': 1, 'always': 1, 'robert': 1, 'who': 1, 'remembers': 2, 's': 1, 'age': 1}, 'Thinking is the hardest work there is, which is the probable reason why so few engage in it.-Henry Ford': {'there': 1, 'is': 3, 'it': 1, 'ford': 1, 'reason': 1, 'in': 1, 'why': 1, 'engage': 1, 'probable': 1, 'thinking': 1, 'work': 1, 'few': 1, 'hardest': 1, 'so': 1, 'which': 1, 'henry': 1, 'the': 2}, 'The ACLU is always yakking about the Constitution, and most of us are getting mighty tired of it. I mean, if the Constitution is so great, how come it was amended so many times? Huh?-Dave Barry': {'and': 1, 'amended': 1, 'tired': 1, 'is': 2, 'of': 2, 'huh': 1, 'it': 2, 'always': 1, 'most': 1, 'dave': 1, 'mighty': 1, 'are': 1, 'come': 1, 'if': 1, 'great': 1, 'constitution': 2, 'getting': 1, 'i': 1, 'barry': 1, 'us': 1, 'times': 1, 'how': 1, 'yakking': 1, 'so': 2, 'aclu': 1, 'many': 1, 'about': 1, 'the': 3, 'was': 1, 'mean': 1}, 'There is no glory in battle worth the blood it costs.-Dwight Eisenhower': {'glory': 1, 'no': 1, 'is': 1, 'there': 1, 'it': 1, 'worth': 1, 'costs': 1, 'blood': 1, 'in': 1, 'battle': 1, 'the': 1, 'dwight': 1, 'eisenhower': 1}, 'Ah, yes, divorce...from the Latin word meaning to rip out a man`s genitals through his wallet.-Robin Williams': {'latin': 1, 'ah': 1, 'rip': 1, 'meaning': 1, 'his': 1, 'through': 1, 'word': 1, 'yes': 1, 'man': 1, 'a': 1, 'genitals': 1, 'from': 1, 'to': 1, 'divorce': 1, 'wallet': 1, 's': 1, 'the': 1, 'out': 1, 'robin': 1, 'williams': 1}, 'I think the best possible social program is a job.-Ronald Reagan': {'a': 1, 'i': 1, 'is': 1, 'reagan': 1, 'possible': 1, 'ronald': 1, 'job': 1, 'program': 1, 'social': 1, 'the': 1, 'think': 1, 'best': 1}, 'Don`t go around saying the world owes you a living. The world owes you nothing. It was here first.-Mark Twain': {'saying': 1, 'around': 1, 'it': 1, 'here': 1, 'go': 1, 'owes': 2, 'nothing': 1, 'world': 2, 'you': 2, 'a': 1, 'living': 1, 'don': 1, 'mark': 1, 'twain': 1, 't': 1, 'the': 2, 'was': 1, 'first': 1}, 'Slang is the language which takes off its coat, spits on its hands - and goes to work.-Carl Sandburg': {'and': 1, 'goes': 1, 'is': 1, 'carl': 1, 'hands': 1, 'its': 2, 'slang': 1, 'on': 1, 'off': 1, 'takes': 1, 'language': 1, 'sandburg': 1, 'coat': 1, 'work': 1, 'spits': 1, 'to': 1, 'which': 1, 'the': 1}, 'I think it`s the duty of the comedian to find out where the line is drawn and cross it deliberately.-George Carlin': {'duty': 1, 'and': 1, 'is': 1, 'it': 2, 'comedian': 1, 'line': 1, 'george': 1, 'out': 1, 'i': 1, 'of': 1, 'cross': 1, 'find': 1, 'to': 1, 's': 1, 'deliberately': 1, 'carlin': 1, 'drawn': 1, 'the': 3, 'where': 1, 'think': 1}, 'Love is repaid by love alone!-Mother Teresa': {'love': 2, 'repaid': 1, 'alone': 1, 'is': 1, 'mother': 1, 'teresa': 1, 'by': 1}, 'Where there`s marriage without love, there will be love without marriage.-Benjamin Franklin': {'benjamin': 1, 'be': 1, 'love': 2, 'there': 2, 'will': 1, 's': 1, 'without': 2, 'marriage': 2, 'franklin': 1, 'where': 1}, 'Having someone wonder where you are when you don`t come home at night is a very old human need.-Margaret Mead': {'someone': 1, 'old': 1, 'very': 1, 'is': 1, 'mead': 1, 'margaret': 1, 'are': 1, 'human': 1, 'need': 1, 'home': 1, 'come': 1, 'wonder': 1, 'a': 1, 'don': 1, 'when': 1, 't': 1, 'night': 1, 'you': 2, 'where': 1, 'having': 1, 'at': 1}, 'Not only is there no God, but try finding a plumber on Sunday.-Woody Allen': {'a': 1, 'on': 1, 'plumber': 1, 'no': 1, 'god': 1, 'is': 1, 'there': 1, 'only': 1, 'but': 1, 'try': 1, 'not': 1, 'sunday': 1, 'woody': 1, 'finding': 1, 'allen': 1}, 'The worst moment for the athieist is when he feels thankful and has no one to thank.-Dante Gabriel Rossetti': {'and': 1, 'is': 1, 'one': 1, 'moment': 1, 'thankful': 1, 'feels': 1, 'worst': 1, 'rossetti': 1, 'athieist': 1, 'he': 1, 'thank': 1, 'for': 1, 'no': 1, 'gabriel': 1, 'when': 1, 'dante': 1, 'to': 1, 'the': 2, 'has': 1}, 'Love anything and your heart will be wrung and possibly broken. If you want to make sure of keeping it intact you must give it to no one, not even an animal. Wrap it carefully round with hobbies and little luxuries; avoid all entanglements. Lock it up safe in the casket or coffin of your selfishness. But in that casket, safe, dark, motionless, airless, it will change. It will not be broken; it will become unbreakable, impenetrable, irredeemable. To love is to be vulnerable.-C.S. Lewis': {'and': 3, 'heart': 1, 'all': 1, 'love': 2, 'unbreakable': 1, 'give': 1, 'lock': 1, 'is': 1, 'hobbies': 1, 'it': 7, 'one': 1, 'wrap': 1, 'irredeemable': 1, 'want': 1, 'in': 2, 'selfishness': 1, 'intact': 1, 'your': 2, 'vulnerable': 1, 'if': 1, 'even': 1, 'little': 1, 'casket': 2, 'no': 1, 'make': 1, 'to': 4, 'animal': 1, 'lewis': 1, 'you': 2, 'luxuries': 1, 'round': 1, 'be': 3, 'carefully': 1, 'sure': 1, 'that': 1, 'safe': 2, 'keeping': 1, 'but': 1, 'dark': 1, 'possibly': 1, 'not': 2, 'an': 1, 'with': 1, 'change': 1, 'must': 1, 'c': 1, 'motionless': 1, 'airless': 1, 'anything': 1, 'impenetrable': 1, 'broken': 2, 'of': 2, 'entanglements': 1, 'up': 1, 'or': 1, 'will': 4, 's': 1, 'wrung': 1, 'coffin': 1, 'become': 1, 'the': 1, 'avoid': 1}, 'One thing they never tell you about child raising is that for the rest of your life, at the drop of a hat, you are expected to know your child`s name and how old he or she is.-Erna Bombeck': {'and': 1, 'old': 1, 'is': 2, 'rest': 1, 'one': 1, 'at': 1, 'your': 2, 'for': 1, 'to': 1, 'how': 1, 'expected': 1, 'you': 2, 'hat': 1, 'tell': 1, 'life': 1, 'that': 1, 'bombeck': 1, 'never': 1, 'erna': 1, 'know': 1, 'they': 1, 'child': 2, 'raising': 1, 'he': 1, 'a': 1, 'about': 1, 'name': 1, 'of': 2, 'drop': 1, 'thing': 1, 's': 1, 'she': 1, 'the': 2, 'or': 1, 'are': 1}, 'Probable impossibilities are to be preferred to improbable possibilities.-Aristotle': {'be': 1, 'impossibilities': 1, 'probable': 1, 'to': 2, 'preferred': 1, 'possibilities': 1, 'improbable': 1, 'are': 1, 'aristotle': 1}, 'Freedom is not something that anybody can be given; freedom is something people take and people are as free as they want to be.-James Baldwin': {'and': 1, 'be': 2, 'they': 1, 'that': 1, 'is': 2, 'free': 1, 'as': 2, 'something': 2, 'want': 1, 'not': 1, 'baldwin': 1, 'given': 1, 'freedom': 2, 'people': 2, 'anybody': 1, 'can': 1, 'to': 1, 'take': 1, 'james': 1, 'are': 1}, 'I`m the type who`d be happy not going anywhere as long as I was sure I knew exactly what was happening at the places I wasn`t going to. I`m the type who`d like to sit home and watch every party that I`m invited to on a monitor in my bedroom.-Andy Warhol': {'and': 1, 'wasn': 1, 'd': 2, 'as': 2, 'at': 1, 'in': 1, 'bedroom': 1, 'home': 1, 'what': 1, 'monitor': 1, 'sit': 1, 'exactly': 1, 'long': 1, 'to': 3, 'going': 2, 'andy': 1, 'party': 1, 'was': 2, 'happy': 1, 'be': 1, 'sure': 1, 'that': 1, 'knew': 1, 'who': 2, 'watch': 1, 'every': 1, 'not': 1, 'on': 1, 'happening': 1, 'a': 1, 'warhol': 1, 'like': 1, 'places': 1, 'i': 6, 'type': 2, 'invited': 1, 'm': 3, 'anywhere': 1, 't': 1, 'the': 3, 'my': 1}, 'Take everything you like seriously, except yourselves.-Rudyard Kipling': {'like': 1, 'rudyard': 1, 'except': 1, 'everything': 1, 'seriously': 1, 'kipling': 1, 'take': 1, 'yourselves': 1, 'you': 1}, 'Those who are preoccupied with `making a statement` usually don`t have any statements worth making.-Thomas Sowell': {'thomas': 1, 'statements': 1, 'who': 1, 'sowell': 1, 'are': 1, 'have': 1, 'don': 1, 'with': 1, 'any': 1, 'those': 1, 'a': 1, 'preoccupied': 1, 't': 1, 'statement': 1, 'usually': 1, 'making': 2, 'worth': 1}, 'That is the true season of love, when we believe that we alone can love, that no one could ever have loved so before us, and that no one will love in the same way after us.-Johann Wolfgang von Goethe': {'and': 1, 'we': 2, 'love': 3, 'goethe': 1, 'that': 4, 'wolfgang': 1, 'is': 1, 'after': 1, 'one': 2, 'johann': 1, 'us': 2, 'have': 1, 'in': 1, 'alone': 1, 'believe': 1, 'true': 1, 'before': 1, 'loved': 1, 'no': 2, 'of': 1, 'could': 1, 'when': 1, 'same': 1, 'will': 1, 'so': 1, 'can': 1, 'way': 1, 'season': 1, 'the': 2, 'ever': 1, 'von': 1}, 'Those who expect to reap the blessings of freedom must, like men, undergo the fatigue of supporting it.-Thomas Paine': {'supporting': 1, 'thomas': 1, 'who': 1, 'men': 1, 'it': 1, 'fatigue': 1, 'expect': 1, 'reap': 1, 'those': 1, 'must': 1, 'paine': 1, 'like': 1, 'of': 2, 'to': 1, 'blessings': 1, 'freedom': 1, 'the': 2, 'undergo': 1}, 'Remember that happiness is a way of travel, not a destination.-Roy Goodman': {'a': 2, 'remember': 1, 'that': 1, 'of': 1, 'is': 1, 'destination': 1, 'roy': 1, 'goodman': 1, 'way': 1, 'not': 1, 'travel': 1, 'happiness': 1}, 'I have been the artist with the longest career, and I am so proud and honoured to be chosen from heaven to be invincible.-Michael Jackson': {'and': 2, 'be': 2, 'chosen': 1, 'am': 1, 'longest': 1, 'have': 1, 'jackson': 1, 'with': 1, 'career': 1, 'heaven': 1, 'from': 1, 'artist': 1, 'i': 2, 'invincible': 1, 'proud': 1, 'michael': 1, 'been': 1, 'to': 2, 'so': 1, 'honoured': 1, 'the': 2}, 'To you taxpayers out there, let me say this: Make sure you file your tax return on time! And remember that, even though income taxes can be a \x93pain in the neck,\x94 the folks at the IRS are regular people just like you, except that they can destroy your life.-Dave Barry': {'and': 1, 'remember': 1, 'there': 1, 'just': 1, 'people': 1, 'tax': 1, 'say': 1, 'at': 1, 'file': 1, 'in': 1, 'return': 1, 'your': 2, 'out': 1, 'even': 1, 'barry': 1, 'make': 1, 'irs': 1, 'except': 1, 'to': 1, 'income': 1, 'folks': 1, 'destroy': 1, 'you': 3, 'be': 1, 'life': 1, 'sure': 1, 'pain': 1, 'that': 2, 'me': 1, 'dave': 1, 'regular': 1, 'let': 1, 'they': 1, 'neck': 1, 'a': 1, 'on': 1, 'like': 1, 'this': 1, 'taxes': 1, 'taxpayers': 1, 'can': 2, 'though': 1, 'time': 1, 'the': 3, 'are': 1}, 'The power of accurate observation is commonly called cynicism by those who have not got it.-George Bernard Shaw': {'power': 1, 'is': 1, 'who': 1, 'it': 1, 'have': 1, 'cynicism': 1, 'not': 1, 'by': 1, 'those': 1, 'shaw': 1, 'accurate': 1, 'observation': 1, 'of': 1, 'commonly': 1, 'george': 1, 'bernard': 1, 'got': 1, 'the': 1, 'called': 1}, 'Many who seem to be struggling with adversity are happy; many, amid great affluence, are utterly miserable.-Tacitus': {'be': 1, 'tacitus': 1, 'who': 1, 'are': 2, 'utterly': 1, 'miserable': 1, 'seem': 1, 'with': 1, 'great': 1, 'many': 2, 'to': 1, 'amid': 1, 'struggling': 1, 'affluence': 1, 'adversity': 1, 'happy': 1}, 'Never continue in a job you don`t enjoy. If you`re happy in what you`re doing, you`ll like yourself, you`ll have inner peace. And if you have that, along with physical health, you will have had more success than you could possibly have imagined.-Johnny Carson': {'enjoy': 1, 'and': 1, 'johnny': 1, 'doing': 1, 'yourself': 1, 'have': 4, 'in': 2, 'imagined': 1, 'if': 2, 'what': 1, 'll': 2, 'peace': 1, 'had': 1, 'carson': 1, 're': 2, 'health': 1, 'inner': 1, 'you': 8, 'physical': 1, 'happy': 1, 'that': 1, 'never': 1, 'possibly': 1, 'job': 1, 'along': 1, 'with': 1, 'than': 1, 'a': 1, 'don': 1, 'like': 1, 'success': 1, 'could': 1, 'will': 1, 'continue': 1, 't': 1, 'more': 1}, 'The greatest thing in this world is not so much where we are, but in what direction we are moving.-Oliver Wendell Holmes': {'holmes': 1, 'we': 2, 'wendell': 1, 'is': 1, 'direction': 1, 'but': 1, 'moving': 1, 'are': 2, 'in': 2, 'not': 1, 'world': 1, 'what': 1, 'oliver': 1, 'this': 1, 'thing': 1, 'much': 1, 'so': 1, 'greatest': 1, 'the': 1, 'where': 1}, 'I told my psychiatrist that everyone hates me. He said I was being ridiculous - everyone hasn`t met me yet.-Rodney Dangerfield': {'hasn': 1, 'everyone': 2, 'that': 1, 'being': 1, 'met': 1, 'ridiculous': 1, 'yet': 1, 'he': 1, 'me': 2, 'said': 1, 'i': 2, 'my': 1, 'psychiatrist': 1, 'dangerfield': 1, 't': 1, 'rodney': 1, 'was': 1, 'hates': 1, 'told': 1}, 'It is a grand mistake to think of being great without goodness and I pronounce it as certain that there was never a truly great man that was not at the same time truly virtuous.-Benjamin Franklin': {'and': 1, 'benjamin': 1, 'time': 1, 'virtuous': 1, 'being': 1, 'certain': 1, 'is': 1, 'never': 1, 'pronounce': 1, 'it': 2, 'truly': 2, 'as': 1, 'at': 1, 'goodness': 1, 'not': 1, 'man': 1, 'a': 2, 'great': 2, 'i': 1, 'of': 1, 'there': 1, 'same': 1, 'to': 1, 'that': 2, 'without': 1, 'franklin': 1, 'grand': 1, 'the': 1, 'was': 2, 'think': 1, 'mistake': 1}, 'My life is my message.-Mahatma Gandhi': {'life': 1, 'mahatma': 1, 'gandhi': 1, 'is': 1, 'my': 2, 'message': 1}, 'Imagination is a quality given a man to compensate him for what he is not, and a sense of humor was provided to console him for what he is.-Oscar Wilde': {'and': 1, 'oscar': 1, 'is': 3, 'what': 2, 'imagination': 1, 'wilde': 1, 'sense': 1, 'not': 1, 'console': 1, 'quality': 1, 'him': 2, 'man': 1, 'a': 3, 'provided': 1, 'given': 1, 'humor': 1, 'for': 2, 'of': 1, 'to': 2, 'compensate': 1, 'he': 2, 'was': 1}, 'There is no substitute for hard work.-Thomas Edison': {'thomas': 1, 'there': 1, 'for': 1, 'no': 1, 'is': 1, 'hard': 1, 'edison': 1, 'work': 1, 'substitute': 1}, 'A leader is a man who can adapt principles to circumstances.-George Patton': {'a': 2, 'is': 1, 'who': 1, 'patton': 1, 'principles': 1, 'leader': 1, 'to': 1, 'adapt': 1, 'man': 1, 'circumstances': 1, 'george': 1, 'can': 1}, 'I went out to the country so i could examine the simple things in life.-Henry Thoreau': {'things': 1, 'life': 1, 'i': 2, 'country': 1, 'could': 1, 'in': 1, 'to': 1, 'examine': 1, 'so': 1, 'thoreau': 1, 'henry': 1, 'went': 1, 'the': 2, 'simple': 1, 'out': 1}, 'Don`t join the book burners. Do not think you are going to conceal thoughts by concealing evidence that they ever existed.-Dwight Eisenhower': {'do': 1, 'think': 1, 'book': 1, 'that': 1, 'the': 1, 'burners': 1, 'evidence': 1, 'are': 1, 'they': 1, 'not': 1, 'join': 1, 'eisenhower': 1, 'thoughts': 1, 'existed': 1, 'don': 1, 'conceal': 1, 'concealing': 1, 'by': 1, 'to': 1, 'going': 1, 't': 1, 'you': 1, 'ever': 1, 'dwight': 1}, 'Why, you can take the most gallant sailor, the most intrepid airman or the most audacious soldier, put them at a table together - what do you get? The sum of their fears.-Winston Churchill': {'do': 1, 'them': 1, 'churchill': 1, 'get': 1, 'audacious': 1, 'winston': 1, 'most': 3, 'sailor': 1, 'at': 1, 'a': 1, 'put': 1, 'table': 1, 'why': 1, 'gallant': 1, 'what': 1, 'intrepid': 1, 'airman': 1, 'soldier': 1, 'of': 1, 'sum': 1, 'fears': 1, 'together': 1, 'the': 4, 'their': 1, 'take': 1, 'you': 2, 'or': 1, 'can': 1}, 'Whatever affects one directly, affects all indirectly. I can never be what I ought to be until you are what you ought to be. This is the interrelated structure of reality.-Martin Luther King Jr.': {'': 1, 'be': 3, 'all': 1, 'is': 1, 'never': 1, 'luther': 1, 'whatever': 1, 'one': 1, 'jr': 1, 'are': 1, 'directly': 1, 'the': 1, 'structure': 1, 'king': 1, 'what': 2, 'indirectly': 1, 'i': 2, 'affects': 2, 'martin': 1, 'this': 1, 'reality': 1, 'to': 2, 'interrelated': 1, 'can': 1, 'of': 1, 'you': 2, 'until': 1, 'ought': 2}, 'What is now proved was once only imagined.-William Blake': {'what': 1, 'proved': 1, 'was': 1, 'is': 1, 'blake': 1, 'william': 1, 'only': 1, 'now': 1, 'imagined': 1, 'once': 1}, 'Grief can take care of itself, but to get the full value of joy you must have somebody to divide it with.-Mark Twain': {'full': 1, 'somebody': 1, 'divide': 1, 'get': 1, 'joy': 1, 'it': 1, 'but': 1, 'grief': 1, 'itself': 1, 'have': 1, 'with': 1, 'the': 1, 'care': 1, 'of': 2, 'value': 1, 'mark': 1, 'twain': 1, 'to': 2, 'take': 1, 'you': 1, 'must': 1, 'can': 1}, 'A brain has to digest its food, too.-Jason Mechalek': {'a': 1, 'jason': 1, 'brain': 1, 'food': 1, 'to': 1, 'too': 1, 'has': 1, 'mechalek': 1, 'its': 1, 'digest': 1}, 'The philosophy of one century is the common sense of the next.-Henry Ward Beecher': {'beecher': 1, 'sense': 1, 'century': 1, 'of': 2, 'is': 1, 'philosophy': 1, 'one': 1, 'common': 1, 'henry': 1, 'the': 3, 'next': 1, 'ward': 1}, 'It takes a long time to turn a big country around.-Bill Clinton': {'a': 2, 'clinton': 1, 'takes': 1, 'to': 1, 'big': 1, 'bill': 1, 'it': 1, 'long': 1, 'turn': 1, 'time': 1, 'country': 1, 'around': 1}, 'I have never been hurt by what I have not said.-Calvin Coolidge': {'what': 1, 'said': 1, 'coolidge': 1, 'i': 2, 'never': 1, 'calvin': 1, 'been': 1, 'hurt': 1, 'have': 2, 'not': 1, 'by': 1}, 'The difference between sex and death is that with death you can do it alone and no one is going to make fun of you.-Woody Allen': {'and': 2, 'do': 1, 'that': 1, 'is': 2, 'it': 1, 'one': 1, 'woody': 1, 'alone': 1, 'allen': 1, 'difference': 1, 'with': 1, 'the': 1, 'death': 2, 'no': 1, 'of': 1, 'make': 1, 'sex': 1, 'to': 1, 'going': 1, 'can': 1, 'between': 1, 'fun': 1, 'you': 2}, 'It is the madness of folly, to expect mercy from those who have refused to do justice; and even mercy, where conquest is the object, is only a trick of war; the cunning of the fox is as murderous as the violence of the wolf.-Thomas Paine': {'and': 1, 'thomas': 1, 'folly': 1, 'madness': 1, 'do': 1, 'is': 4, 'it': 1, 'as': 2, 'expect': 1, 'have': 1, 'paine': 1, 'from': 1, 'justice': 1, 'fox': 1, 'to': 2, 'only': 1, 'conquest': 1, 'even': 1, 'who': 1, 'murderous': 1, 'object': 1, 'refused': 1, 'those': 1, 'cunning': 1, 'a': 1, 'mercy': 2, 'of': 4, 'violence': 1, 'war': 1, 'trick': 1, 'wolf': 1, 'the': 6, 'where': 1}, 'Don`t walk in front of me, I may not follow. Don`t walk behind me, I may not lead. Just walk beside me and be my friend.-Albert Camus': {'and': 1, 'be': 1, 'just': 1, 'may': 2, 'albert': 1, 'walk': 3, 'front': 1, 'in': 1, 'not': 2, 'follow': 1, 'me': 3, 'don': 2, 'lead': 1, 'i': 2, 'of': 1, 'beside': 1, 'camus': 1, 'behind': 1, 't': 2, 'my': 1, 'friend': 1}, 'Rings and jewels are not gifts but apologies for gifts. The only true gift is a portion of yourself.-Ralph Waldo Emerson': {'and': 1, 'only': 1, 'ralph': 1, 'is': 1, 'but': 1, 'yourself': 1, 'gifts': 2, 'not': 1, 'jewels': 1, 'apologies': 1, 'true': 1, 'a': 1, 'for': 1, 'gift': 1, 'of': 1, 'rings': 1, 'portion': 1, 'emerson': 1, 'the': 1, 'waldo': 1, 'are': 1}, 'The giving of love is an education in itself.-Eleanor Roosevelt': {'love': 1, 'giving': 1, 'of': 1, 'is': 1, 'roosevelt': 1, 'an': 1, 'eleanor': 1, 'itself': 1, 'in': 1, 'the': 1, 'education': 1}, 'There is only one force of history that can break the reign of hatred and resentment, and expose the pretensions of tyrants, and reward the hopes of the decent and tolerant, and that is the force of human freedom.-George W. Bush': {'and': 5, 'the': 5, 'force': 2, 'that': 2, 'is': 2, 'of': 5, 'reign': 1, 'one': 1, 'break': 1, 'human': 1, 'hopes': 1, 'tyrants': 1, 'resentment': 1, 'george': 1, 'pretensions': 1, 'decent': 1, 'there': 1, 'only': 1, 'tolerant': 1, 'bush': 1, 'can': 1, 'w': 1, 'freedom': 1, 'hatred': 1, 'reward': 1, 'expose': 1, 'history': 1}, 'Democracy means that anyone can grow up to be president, and anyone who doesn`t grow up can be vice president.-Johnny Carson': {'and': 1, 'be': 2, 'johnny': 1, 'that': 1, 'who': 1, 'doesn': 1, 'president': 2, 'grow': 2, 'carson': 1, 'democracy': 1, 'vice': 1, 'means': 1, 'up': 2, 'anyone': 2, 'to': 1, 'can': 2, 't': 1}, 'God enters by a private door into every individual.-Ralph Waldo Emerson': {'a': 1, 'enters': 1, 'door': 1, 'waldo': 1, 'god': 1, 'into': 1, 'ralph': 1, 'private': 1, 'emerson': 1, 'individual': 1, 'every': 1, 'by': 1}, 'My formula for success is rise early, work late, and strike oil.-Paul Getty': {'and': 1, 'early': 1, 'rise': 1, 'success': 1, 'for': 1, 'is': 1, 'work': 1, 'late': 1, 'oil': 1, 'getty': 1, 'strike': 1, 'formula': 1, 'paul': 1, 'my': 1}, 'The only paradise is paradise lost.-Marcel Proust': {'only': 1, 'lost': 1, 'paradise': 2, 'proust': 1, 'is': 1, 'the': 1, 'marcel': 1}, 'He that would live in peace and at ease must not speak all he knows or all he sees.-Benjamin Franklin': {'and': 1, 'benjamin': 1, 'all': 2, 'sees': 1, 'knows': 1, 'that': 1, 'at': 1, 'in': 1, 'not': 1, 'speak': 1, 'he': 3, 'would': 1, 'ease': 1, 'peace': 1, 'live': 1, 'franklin': 1, 'must': 1, 'or': 1}, 'In any moment of decision, the best thing you can do is the right thing. The worst thing you can do is nothing.-Theodore Roosevelt': {'do': 2, 'right': 1, 'theodore': 1, 'is': 2, 'moment': 1, 'worst': 1, 'in': 1, 'nothing': 1, 'the': 3, 'best': 1, 'of': 1, 'decision': 1, 'roosevelt': 1, 'any': 1, 'thing': 3, 'can': 2, 'you': 2}, 'A people that values its privileges above its principles soon loses both.-Dwight Eisenhower': {'a': 1, 'both': 1, 'that': 1, 'privileges': 1, 'people': 1, 'principles': 1, 'soon': 1, 'values': 1, 'above': 1, 'loses': 1, 'its': 2, 'dwight': 1, 'eisenhower': 1}, 'No nation keeps its word. A nation is a big, blind worm, following what? Fate perhaps. A nation has no honor, it has no word to keep.-Carl Jung': {'blind': 1, 'fate': 1, 'big': 1, 'is': 1, 'it': 1, 'jung': 1, 'nation': 3, 'carl': 1, 'its': 1, 'a': 3, 'what': 1, 'word': 2, 'no': 3, 'perhaps': 1, 'worm': 1, 'keep': 1, 'to': 1, 'keeps': 1, 'following': 1, 'has': 2, 'honor': 1}, 'Fanaticism consists of redoubling your efforts when you have forgotten your aim.-George Santayana': {'your': 2, 'efforts': 1, 'of': 1, 'redoubling': 1, 'when': 1, 'santayana': 1, 'aim': 1, 'have': 1, 'forgotten': 1, 'consists': 1, 'you': 1, 'george': 1, 'fanaticism': 1}, 'If I feel physically as if the top of my head were taken off, I know that is poetry.-Emily Dickinson': {'head': 1, 'that': 1, 'feel': 1, 'is': 1, 'were': 1, 'as': 1, 'know': 1, 'emily': 1, 'off': 1, 'i': 2, 'of': 1, 'top': 1, 'poetry': 1, 'physically': 1, 'dickinson': 1, 'taken': 1, 'the': 1, 'if': 2, 'my': 1}, 'Every gun that is made, every warship launched, every rocket fired, signifies in the final sense a theft from those who hunger and are not fed, those who are cold and are not clothed.-Dwight Eisenhower': {'and': 2, 'who': 2, 'fired': 1, 'rocket': 1, 'hunger': 1, 'is': 1, 'sense': 1, 'every': 3, 'are': 3, 'theft': 1, 'in': 1, 'not': 2, 'cold': 1, 'eisenhower': 1, 'those': 2, 'a': 1, 'fed': 1, 'made': 1, 'from': 1, 'warship': 1, 'clothed': 1, 'that': 1, 'gun': 1, 'signifies': 1, 'dwight': 1, 'the': 1, 'final': 1, 'launched': 1}, 'You are never too old to set another goal or to dream a new dream.-C.S. Lewis': {'set': 1, 'old': 1, 'lewis': 1, 'never': 1, 'are': 1, 'another': 1, 'a': 1, 'c': 1, 'goal': 1, 'to': 2, 's': 1, 'too': 1, 'new': 1, 'you': 1, 'dream': 2, 'or': 1}, 'Nobody expects to trust his body overmuch after the age of fifty.-Alexander Hamilton': {'body': 1, 'his': 1, 'overmuch': 1, 'age': 1, 'nobody': 1, 'expects': 1, 'fifty': 1, 'to': 1, 'hamilton': 1, 'of': 1, 'the': 1, 'trust': 1, 'after': 1, 'alexander': 1}, 'In all chaos there is a cosmos, in all disorder a secret order.-Carl Jung': {'a': 2, 'all': 2, 'is': 1, 'there': 1, 'chaos': 1, 'jung': 1, 'secret': 1, 'carl': 1, 'in': 2, 'cosmos': 1, 'disorder': 1, 'order': 1}, 'The man who disobeys his parents will have disobedient sons.-Nachman of Bratslav': {'disobedient': 1, 'his': 1, 'of': 1, 'bratslav': 1, 'who': 1, 'will': 1, 'sons': 1, 'parents': 1, 'nachman': 1, 'have': 1, 'the': 1, 'disobeys': 1, 'man': 1}, 'Nothing in the world is more dangerous than sincere ignorance and conscientious stupidity.-Martin Luther King Jr.': {'and': 1, '': 1, 'is': 1, 'in': 1, 'ignorance': 1, 'jr': 1, 'conscientious': 1, 'nothing': 1, 'world': 1, 'than': 1, 'king': 1, 'luther': 1, 'dangerous': 1, 'stupidity': 1, 'martin': 1, 'the': 1, 'sincere': 1, 'more': 1}, 'America is the only country ever founded on a creed.-GK Chesterton': {'a': 1, 'on': 1, 'country': 1, 'is': 1, 'founded': 1, 'only': 1, 'ever': 1, 'the': 1, 'america': 1, 'gk': 1, 'creed': 1, 'chesterton': 1}, 'A grandmother pretends she doesn`t know who you are on Halloween.-Erna Bombeck': {'a': 1, 'on': 1, 'bombeck': 1, 'she': 1, 'who': 1, 'halloween': 1, 'doesn': 1, 'grandmother': 1, 'know': 1, 'pretends': 1, 'you': 1, 'erna': 1, 'are': 1, 't': 1}, 'Like many intellectuals, he was incapable of saying a simple thing in a simple way.-Marcel Proust': {'a': 2, 'saying': 1, 'like': 1, 'incapable': 1, 'simple': 2, 'many': 1, 'of': 1, 'marcel': 1, 'thing': 1, 'way': 1, 'in': 1, 'intellectuals': 1, 'proust': 1, 'was': 1, 'he': 1}, 'Life is a fatal complaint, and an eminently contagious one.-Oliver Wendell Holmes': {'a': 1, 'and': 1, 'life': 1, 'oliver': 1, 'eminently': 1, 'contagious': 1, 'wendell': 1, 'is': 1, 'complaint': 1, 'holmes': 1, 'one': 1, 'fatal': 1, 'an': 1}, 'I once said cynically of a politician, `He`ll doublecross that bridge when he comes to it.`-Oscar Levant': {'bridge': 1, 'that': 1, 'oscar': 1, 'doublecross': 1, 'it': 1, 'he': 2, 'a': 1, 'said': 1, 'politician': 1, 'i': 1, 'of': 1, 'll': 1, 'when': 1, 'levant': 1, 'to': 1, 'cynically': 1, 'comes': 1, 'once': 1}, 'When you`re through changing, you`re through.-Bruce Barton': {'re': 2, 'through': 2, 'changing': 1, 'bruce': 1, 'when': 1, 'you': 2, 'barton': 1}, 'The mintage of wisdom is to know that rest is rust, and that real life is in love, laughter, and work.-Elbert Hubbard': {'and': 2, 'real': 1, 'life': 1, 'love': 1, 'that': 2, 'is': 3, 'rest': 1, 'wisdom': 1, 'know': 1, 'in': 1, 'hubbard': 1, 'elbert': 1, 'of': 1, 'work': 1, 'to': 1, 'mintage': 1, 'the': 1, 'laughter': 1, 'rust': 1}, 'Either write something worth reading or do something worth writing.-Benjamin Franklin': {'benjamin': 1, 'do': 1, 'or': 1, 'something': 2, 'writing': 1, 'write': 1, 'franklin': 1, 'reading': 1, 'worth': 2, 'either': 1}, '\x93Take a chance! All life is a chance. The man who goes farthest is generally the one who is willing to do and dare.-Dale Carnegie': {'': 1, 'dale': 1, 'life': 1, 'farthest': 1, 'do': 1, 'is': 3, 'who': 2, 'all': 1, 'carnegie': 1, 'one': 1, 'chance': 2, 'dare': 1, 'man': 1, 'a': 2, 'and': 1, 'generally': 1, 'to': 1, 'willing': 1, 'take': 1, 'goes': 1, 'the': 2}, 'Nature is trying very hard to make us succeed, but nature does not depend on us. We are not the only experiment.-Buckminster Fuller': {'we': 1, 'experiment': 1, 'nature': 2, 'very': 1, 'is': 1, 'hard': 1, 'but': 1, 'not': 2, 'succeed': 1, 'are': 1, 'buckminster': 1, 'fuller': 1, 'trying': 1, 'on': 1, 'depend': 1, 'make': 1, 'us': 2, 'to': 1, 'only': 1, 'does': 1, 'the': 1}, 'Man was made for action, and to promote by the exertion of his faculties such changes in the external circumstances both of himself and others, as may seem most favourable to the happiness of all.-Adam Smith': {'and': 2, 'exertion': 1, 'all': 1, 'his': 1, 'may': 1, 'others': 1, 'most': 1, 'as': 1, 'himself': 1, 'external': 1, 'in': 1, 'such': 1, 'seem': 1, 'promote': 1, 'by': 1, 'happiness': 1, 'man': 1, 'both': 1, 'changes': 1, 'made': 1, 'for': 1, 'favourable': 1, 'of': 3, 'smith': 1, 'to': 2, 'adam': 1, 'action': 1, 'the': 3, 'circumstances': 1, 'was': 1, 'faculties': 1}, 'The magic of first love is our ignorance that it can never end.-Benjamin Disraeli': {'benjamin': 1, 'magic': 1, 'love': 1, 'that': 1, 'our': 1, 'disraeli': 1, 'is': 1, 'never': 1, 'ignorance': 1, 'it': 1, 'can': 1, 'of': 1, 'end': 1, 'the': 1, 'first': 1}, 'Laughter is the sun that drives winter from the human face.-Victor Hugo': {'from': 1, 'winter': 1, 'that': 1, 'sun': 1, 'is': 1, 'hugo': 1, 'drives': 1, 'face': 1, 'human': 1, 'the': 2, 'laughter': 1, 'victor': 1}, 'What a man`s mind can create, man`s character can control.-Thomas Edison': {'a': 1, 'control': 1, 'what': 1, 'mind': 1, 'create': 1, 'character': 1, 'edison': 1, 's': 2, 'can': 2, 'thomas': 1, 'man': 2}, 'The supernatural is the natural not yet understood.-Elbert Hubbard': {'hubbard': 1, 'natural': 1, 'elbert': 1, 'is': 1, 'understood': 1, 'supernatural': 1, 'not': 1, 'the': 2, 'yet': 1}, 'Cocaine is God`s way of telling someone that they`re too rich.-Robin Williams': {'someone': 1, 'they': 1, 'that': 1, 'god': 1, 'is': 1, 're': 1, 's': 1, 'way': 1, 'too': 1, 'rich': 1, 'of': 1, 'telling': 1, 'cocaine': 1, 'robin': 1, 'williams': 1}, 'Let us now set forth one of the fundamental truths about marriage: the wife is in charge.-Bill Cosby': {'set': 1, 'is': 1, 'one': 1, 'let': 1, 'in': 1, 'now': 1, 'about': 1, 'wife': 1, 'of': 1, 'bill': 1, 'truths': 1, 'us': 1, 'charge': 1, 'marriage': 1, 'fundamental': 1, 'the': 2, 'forth': 1, 'cosby': 1}, 'The art of being happy lies in the power of extracting happiness from common things.-Henry Ward Beecher': {'art': 1, 'power': 1, 'being': 1, 'henry': 1, 'lies': 1, 'in': 1, 'ward': 1, 'happiness': 1, 'beecher': 1, 'from': 1, 'things': 1, 'common': 1, 'of': 2, 'the': 2, 'happy': 1, 'extracting': 1}, 'America did not invent human rights. In a very real sense...human rights invented America.-Jimmy Carter': {'a': 1, 'real': 1, 'jimmy': 1, 'carter': 1, 'rights': 2, 'did': 1, 'in': 1, 'invent': 1, 'very': 1, 'america': 2, 'human': 2, 'sense': 1, 'not': 1, 'invented': 1}, 'If we have no peace, it is because we have forgotten that we belong to each other.-Mother Teresa': {'we': 3, 'because': 1, 'that': 1, 'is': 1, 'mother': 1, 'teresa': 1, 'it': 1, 'have': 2, 'forgotten': 1, 'no': 1, 'peace': 1, 'to': 1, 'other': 1, 'each': 1, 'if': 1, 'belong': 1}, 'I made this letter longer than usual because I lack the time to make it short.-Blaise Pascal': {'this': 1, 'because': 1, 'lack': 1, 'it': 1, 'blaise': 1, 'pascal': 1, 'short': 1, 'letter': 1, 'than': 1, 'made': 1, 'longer': 1, 'i': 2, 'make': 1, 'to': 1, 'time': 1, 'the': 1, 'usual': 1}, 'PRESIDENCY, n. The greased pig in the field game of American politics.-Ambrose Bierce': {'ambrose': 1, 'presidency': 1, 'of': 1, 'greased': 1, 'game': 1, 'pig': 1, 'field': 1, 'american': 1, 'bierce': 1, 'in': 1, 'politics': 1, 'the': 2, 'n': 1}, 'Three grand essentials to happiness in this life are something to do, something to love, and something to hope for.-Joseph Addison': {'and': 1, 'do': 1, 'life': 1, 'love': 1, 'addison': 1, 'are': 1, 'in': 1, 'happiness': 1, 'essentials': 1, 'for': 1, 'this': 1, 'three': 1, 'to': 4, 'joseph': 1, 'grand': 1, 'hope': 1, 'something': 3}, 'There is one thing alone that stands the brunt of life throughout its course: a quiet conscience.-Euripides': {'conscience': 1, 'life': 1, 'that': 1, 'is': 1, 'one': 1, 'course': 1, 'alone': 1, 'throughout': 1, 'its': 1, 'euripides': 1, 'a': 1, 'stands': 1, 'of': 1, 'there': 1, 'quiet': 1, 'brunt': 1, 'thing': 1, 'the': 1}, 'Humanity is acquiring all the right technology for all the wrong reasons.-Buckminster Fuller': {'all': 2, 'right': 1, 'acquiring': 1, 'for': 1, 'reasons': 1, 'is': 1, 'wrong': 1, 'buckminster': 1, 'fuller': 1, 'the': 2, 'technology': 1, 'humanity': 1}, 'If Jack`s in love, he`s no judge of Jill`s beauty.-Benjamin Franklin': {'benjamin': 1, 'he': 1, 'love': 1, 'beauty': 1, 'no': 1, 'of': 1, 's': 3, 'jill': 1, 'franklin': 1, 'in': 1, 'judge': 1, 'if': 1, 'jack': 1}, 'I do not believe one can settle how much we ought to give. I am afraid the only safe rule is to give more than we can spare.-C.S. Lewis': {'do': 1, 'we': 2, 'settle': 1, 'give': 2, 'lewis': 1, 'is': 1, 'safe': 1, 'am': 1, 'one': 1, 'spare': 1, 'not': 1, 'believe': 1, 'than': 1, 'c': 1, 'afraid': 1, 'to': 2, 'i': 2, 's': 1, 'rule': 1, 'how': 1, 'only': 1, 'much': 1, 'can': 2, 'the': 1, 'ought': 1, 'more': 1}, 'If you see ten troubles coming down the road, you can be sure that nine will run into the ditch before they reach you.-Calvin Coolidge': {'be': 1, 'sure': 1, 'run': 1, 'ten': 1, 'that': 1, 'into': 1, 'reach': 1, 'down': 1, 'see': 1, 'they': 1, 'coming': 1, 'ditch': 1, 'the': 2, 'before': 1, 'coolidge': 1, 'troubles': 1, 'calvin': 1, 'will': 1, 'nine': 1, 'can': 1, 'you': 3, 'if': 1, 'road': 1}, 'Everybody can be great... because anybody can serve. You don`t have to have a college degree to serve. You don`t have to make your subject and verb agree to serve. You only need a heart full of grace. A soul generated by love.-Martin Luther King Jr.': {'and': 1, 'heart': 1, 'because': 1, 'love': 1, '': 1, 'anybody': 1, 'college': 1, 'have': 3, 'need': 1, 'your': 1, 'subject': 1, 'everybody': 1, 'make': 1, 'grace': 1, 'to': 4, 'only': 1, 'you': 3, 'can': 2, 'be': 1, 'full': 1, 'degree': 1, 'serve': 3, 'great': 1, 'jr': 1, 'generated': 1, 'verb': 1, 'by': 1, 'a': 3, 'king': 1, 'luther': 1, 'don': 2, 'of': 1, 'soul': 1, 't': 2, 'martin': 1, 'agree': 1}, 'In any fairly large and talkative community such as a university there is always the danger that those who think alike should gravitate together where they will henceforth encounter opposition only in the emasculated form of rumour that the outsiders say thus and thus. The absent are easily refuted, complacent dogmatism thrives, and differences of opinion are embittered by the group hostility. Each group hears not the best, but the worst, that the other group can say.-C.S. Lewis': {'and': 3, 'they': 1, 'hears': 1, 'danger': 1, 'lewis': 1, 'is': 1, 'thus': 2, 'community': 1, 'as': 1, 'alike': 1, 'a': 1, 'in': 2, 'talkative': 1, 'any': 1, 'best': 1, 'absent': 1, 'large': 1, 'group': 3, 'there': 1, 'embittered': 1, 'should': 1, 'henceforth': 1, 'only': 1, 'other': 1, 'those': 1, 'of': 2, 'outsiders': 1, 'refuted': 1, 'fairly': 1, 'who': 1, 'dogmatism': 1, 'form': 1, 'that': 3, 'gravitate': 1, 'differences': 1, 'but': 1, 'emasculated': 1, 'worst': 1, 'complacent': 1, 'opposition': 1, 'not': 1, 'such': 1, 'thrives': 1, 'by': 1, 'encounter': 1, 'rumour': 1, 'easily': 1, 'c': 1, 'always': 1, 'university': 1, 'say': 2, 'together': 1, 'will': 1, 's': 1, 'can': 1, 'each': 1, 'opinion': 1, 'the': 8, 'where': 1, 'think': 1, 'hostility': 1, 'are': 2}, 'Get mad, then get over it.-Colin Powell': {'then': 1, 'colin': 1, 'mad': 1, 'get': 2, 'over': 1, 'it': 1, 'powell': 1}, 'Forgiveness is not an occasional act: it is a permanent attitude.-Martin Luther King Jr.': {'a': 1, 'king': 1, 'luther': 1, '': 1, 'is': 2, 'act': 1, 'it': 1, 'jr': 1, 'an': 1, 'occasional': 1, 'attitude': 1, 'permanent': 1, 'martin': 1, 'not': 1, 'forgiveness': 1}, 'Love is the wisdom of the fool and the folly of the wise.-Samuel Johnson': {'fool': 1, 'and': 1, 'folly': 1, 'love': 1, 'johnson': 1, 'of': 2, 'is': 1, 'samuel': 1, 'wisdom': 1, 'wise': 1, 'the': 4}, 'Never give in--never, never, never, never, in nothing great or small, large or petty, never give in except to convictions of honour and good sense. Never yield to force; never yield to the apparently overwhelming might of the enemy.-Winston Churchill': {'and': 1, 'churchill': 1, 'force': 1, 'give': 2, 'honour': 1, 'sense': 1, 'good': 1, 'never': 8, 'in': 3, 'nothing': 1, 'overwhelming': 1, 'apparently': 1, 'winston': 1, 'enemy': 1, 'great': 1, 'petty': 1, 'convictions': 1, 'except': 1, 'yield': 2, 'large': 1, 'to': 3, 'of': 2, 'small': 1, 'the': 2, 'might': 1, 'or': 2}, 'Every man must decide whether he will walk in the light of creative altruism or in the darkness of destructive selfishness.-Martin Luther King Jr.': {'': 1, 'martin': 1, 'jr': 1, 'walk': 1, 'every': 1, 'decide': 1, 'in': 2, 'selfishness': 1, 'destructive': 1, 'he': 1, 'king': 1, 'luther': 1, 'altruism': 1, 'darkness': 1, 'whether': 1, 'of': 2, 'creative': 1, 'will': 1, 'man': 1, 'light': 1, 'the': 2, 'must': 1, 'or': 1}, 'All virtue is summed up in dealing justly.-Aristotle': {'justly': 1, 'all': 1, 'dealing': 1, 'is': 1, 'in': 1, 'up': 1, 'virtue': 1, 'aristotle': 1, 'summed': 1}, 'It is your mind that creates this world.-Siddhartha Buddha': {'that': 1, 'this': 1, 'is': 1, 'mind': 1, 'it': 1, 'creates': 1, 'buddha': 1, 'world': 1, 'siddhartha': 1, 'your': 1}, 'Do good by stealth, and blush to find it fame.-Alexander Pope': {'and': 1, 'do': 1, 'by': 1, 'good': 1, 'pope': 1, 'it': 1, 'fame': 1, 'to': 1, 'stealth': 1, 'blush': 1, 'find': 1, 'alexander': 1}, 'People have a way of becoming what you encourage them to be, not what you nag them to be.-Author Unknown': {'be': 2, 'them': 2, 'people': 1, 'becoming': 1, 'have': 1, 'not': 1, 'a': 1, 'what': 2, 'nag': 1, 'author': 1, 'of': 1, 'to': 2, 'encourage': 1, 'way': 1, 'unknown': 1, 'you': 2}, 'Providence protects children and idiots. I know because I have tested it.-Mark Twain': {'and': 1, 'because': 1, 'providence': 1, 'i': 2, 'it': 1, 'mark': 1, 'twain': 1, 'tested': 1, 'idiots': 1, 'protects': 1, 'know': 1, 'have': 1, 'children': 1}, 'Imagination will often carry us to worlds that never were. But without it, we go nowhere.-Carl Sagan': {'we': 1, 'often': 1, 'that': 1, 'never': 1, 'it': 1, 'but': 1, 'sagan': 1, 'imagination': 1, 'nowhere': 1, 'carl': 1, 'go': 1, 'carry': 1, 'worlds': 1, 'us': 1, 'will': 1, 'to': 1, 'without': 1, 'were': 1}, 'Well-timed silence hath more eloquence than speech.-Martin Farquhar Tupper': {'farquhar': 1, 'well': 1, 'eloquence': 1, 'hath': 1, 'speech': 1, 'tupper': 1, 'martin': 1, 'timed': 1, 'than': 1, 'silence': 1, 'more': 1}, 'Without courage, wisdom bears no fruit.-Baltasar Gracian': {'courage': 1, 'baltasar': 1, 'no': 1, 'bears': 1, 'without': 1, 'fruit': 1, 'wisdom': 1, 'gracian': 1}, 'The time which we have at our disposal every day is elastic; the passions we feel expand it, those that we inspire contract it, and habit fills up what remains.-Marcel Proust': {'and': 1, 'we': 3, 'inspire': 1, 'habit': 1, 'feel': 1, 'is': 1, 'time': 1, 'it': 2, 'marcel': 1, 'every': 1, 'at': 1, 'have': 1, 'proust': 1, 'our': 1, 'day': 1, 'expand': 1, 'passions': 1, 'elastic': 1, 'fills': 1, 'remains': 1, 'disposal': 1, 'that': 1, 'up': 1, 'contract': 1, 'those': 1, 'which': 1, 'what': 1, 'the': 2}, 'To have the reputation of possessing the most perfect social tact, talk to every woman as if you loved her, and to every man as if he bored you.-Oscar Wilde': {'and': 1, 'woman': 1, 'oscar': 1, 'possessing': 1, 'tact': 1, 'most': 1, 'as': 2, 'wilde': 1, 'have': 1, 'the': 2, 'if': 2, 'perfect': 1, 'loved': 1, 'he': 1, 'her': 1, 'of': 1, 'to': 3, 'reputation': 1, 'man': 1, 'social': 1, 'every': 2, 'you': 2, 'bored': 1, 'talk': 1}, 'No man but a blockhead ever wrote, except for money.-Samuel Johnson': {'a': 1, 'for': 1, 'johnson': 1, 'no': 1, 'money': 1, 'samuel': 1, 'blockhead': 1, 'except': 1, 'but': 1, 'ever': 1, 'wrote': 1, 'man': 1}, 'It ain`t what you don`t know that gets you into trouble. It`s what you know for sure that just ain`t so.-Mark Twain': {'sure': 1, 'just': 1, 'that': 2, 'into': 1, 'it': 2, 'know': 2, 'trouble': 1, 'what': 2, 'don': 1, 'for': 1, 'mark': 1, 'twain': 1, 's': 1, 'ain': 2, 'so': 1, 't': 3, 'you': 3, 'gets': 1}, 'Nobody can have the consolations of religion or philosophy unless he has first experienced their desolations.-Aldous Huxley': {'nobody': 1, 'unless': 1, 'philosophy': 1, 'aldous': 1, 'experienced': 1, 'have': 1, 'huxley': 1, 'he': 1, 'religion': 1, 'consolations': 1, 'of': 1, 'their': 1, 'can': 1, 'desolations': 1, 'the': 1, 'has': 1, 'or': 1, 'first': 1}, 'Rome remained free for four hundred years and Sparta eight hundred, although their citizens were armed all that time; but many other states that have been disarmed have lost their liberties in less than forty years.-Nicolo Machiavelli': {'and': 1, 'all': 1, 'remained': 1, 'years': 2, 'states': 1, 'nicolo': 1, 'have': 2, 'in': 1, 'armed': 1, 'for': 1, 'sparta': 1, 'less': 1, 'forty': 1, 'been': 1, 'disarmed': 1, 'their': 2, 'other': 1, 'hundred': 2, 'that': 2, 'time': 1, 'but': 1, 'liberties': 1, 'eight': 1, 'free': 1, 'although': 1, 'than': 1, 'four': 1, 'lost': 1, 'many': 1, 'citizens': 1, 'rome': 1, 'machiavelli': 1, 'were': 1}, 'We have to make America the best place in the world to do business.-Dick Cheney': {'do': 1, 'we': 1, 'business': 1, 'make': 1, 'dick': 1, 'cheney': 1, 'to': 2, 'place': 1, 'have': 1, 'in': 1, 'world': 1, 'the': 2, 'america': 1, 'best': 1}, 'Such is the delicacy of man alone, that no object is produced to his liking. He finds that in everything there is need for improvement. The whole industry of human life is employed not in procuring the supply of our three humble necessities, food, clothes and lodging, but in procuring the conveniences of it according to the nicety and delicacy of our tastes.-Adam Smith': {'and': 2, 'supply': 1, 'is': 4, 'in': 3, 'it': 1, 'produced': 1, 'alone': 1, 'tastes': 1, 'human': 1, 'lodging': 1, 'need': 1, 'our': 2, 'liking': 1, 'necessities': 1, 'for': 1, 'no': 1, 'there': 1, 'smith': 1, 'three': 1, 'improvement': 1, 'nicety': 1, 'everything': 1, 'employed': 1, 'he': 1, 'life': 1, 'his': 1, 'to': 2, 'that': 2, 'food': 1, 'object': 1, 'delicacy': 2, 'but': 1, 'conveniences': 1, 'not': 1, 'such': 1, 'procuring': 2, 'man': 1, 'of': 5, 'industry': 1, 'humble': 1, 'according': 1, 'adam': 1, 'the': 5, 'whole': 1, 'finds': 1, 'clothes': 1}, 'All glory is fleeting.-George Patton': {'all': 1, 'fleeting': 1, 'glory': 1, 'is': 1, 'patton': 1, 'george': 1}, 'Man`s best possession is a sympathetic wife.-Euripides': {'possession': 1, 'a': 1, 'euripides': 1, 'wife': 1, 'is': 1, 'sympathetic': 1, 's': 1, 'best': 1, 'man': 1}, 'Failure is success if we learn from it.-Malcolm Forbes': {'we': 1, 'from': 1, 'success': 1, 'is': 1, 'it': 1, 'failure': 1, 'forbes': 1, 'learn': 1, 'malcolm': 1, 'if': 1}, 'The hour of departure has arrived, and we go our ways - I to die, and you to live. Which is better God only knows.-Plato': {'and': 2, 'we': 1, 'knows': 1, 'is': 1, 'plato': 1, 'departure': 1, 'arrived': 1, 'die': 1, 'go': 1, 'our': 1, 'the': 1, 'i': 1, 'hour': 1, 'ways': 1, 'god': 1, 'only': 1, 'better': 1, 'to': 2, 'live': 1, 'which': 1, 'of': 1, 'you': 1, 'has': 1}, 'Theology is only thought applied to religion.-GK Chesterton': {'applied': 1, 'to': 1, 'is': 1, 'theology': 1, 'thought': 1, 'religion': 1, 'only': 1, 'gk': 1, 'chesterton': 1}, 'Everything is simpler than you think and at the same time more complex than you imagine.-Johann Wolfgang von Goethe': {'and': 1, 'goethe': 1, 'wolfgang': 1, 'is': 1, 'johann': 1, 'at': 1, 'imagine': 1, 'you': 2, 'von': 1, 'simpler': 1, 'same': 1, 'than': 2, 'everything': 1, 'complex': 1, 'time': 1, 'the': 1, 'think': 1, 'more': 1}, 'A successful marriage requires falling in love many times, always with the same person.-Germaine Greer': {'love': 1, 'successful': 1, 'in': 1, 'with': 1, 'the': 1, 'a': 1, 'greer': 1, 'always': 1, 'same': 1, 'times': 1, 'person': 1, 'germaine': 1, 'marriage': 1, 'many': 1, 'falling': 1, 'requires': 1}, 'From kindergarten to graduation, I went to public schools, and I know that they are a key to being sure that every child has a chance to succeed and to rise in the world.-Dick Cheney': {'and': 2, 'sure': 1, 'key': 1, 'that': 2, 'being': 1, 'rise': 1, 'chance': 1, 'succeed': 1, 'every': 1, 'are': 1, 'they': 1, 'in': 1, 'schools': 1, 'world': 1, 'went': 1, 'a': 2, 'child': 1, 'from': 1, 'i': 2, 'dick': 1, 'cheney': 1, 'graduation': 1, 'kindergarten': 1, 'to': 5, 'the': 1, 'has': 1, 'public': 1, 'know': 1}, 'Love means loving the unlovable - or it is no virtue at all.-GK Chesterton': {'unlovable': 1, 'all': 1, 'love': 1, 'means': 1, 'is': 1, 'no': 1, 'it': 1, 'loving': 1, 'virtue': 1, 'the': 1, 'chesterton': 1, 'gk': 1, 'or': 1, 'at': 1}, 'Children today know more about sex than I or my father did.-Bill Cosby': {'children': 1, 'about': 1, 'i': 1, 'bill': 1, 'father': 1, 'than': 1, 'did': 1, 'know': 1, 'more': 1, 'sex': 1, 'my': 1, 'or': 1, 'today': 1, 'cosby': 1}, 'The price of greatness is responsibility.-Winston Churchill': {'churchill': 1, 'of': 1, 'price': 1, 'winston': 1, 'responsibility': 1, 'greatness': 1, 'the': 1, 'is': 1}, 'Collecting more taxes than is absolutely necessary is legalized robbery.-Calvin Coolidge': {'collecting': 1, 'legalized': 1, 'necessary': 1, 'absolutely': 1, 'is': 2, 'calvin': 1, 'taxes': 1, 'robbery': 1, 'coolidge': 1, 'than': 1, 'more': 1}, 'Advertising is the life of trade.-Calvin Coolidge': {'life': 1, 'coolidge': 1, 'of': 1, 'is': 1, 'calvin': 1, 'trade': 1, 'advertising': 1, 'the': 1}, 'I didn`t attend the funeral, but I sent a nice letter saying I approved of it.-Mark Twain': {'saying': 1, 'attend': 1, 'funeral': 1, 'it': 1, 'but': 1, 'letter': 1, 'approved': 1, 'a': 1, 'i': 3, 'of': 1, 'didn': 1, 'mark': 1, 'twain': 1, 't': 1, 'the': 1, 'sent': 1, 'nice': 1}, 'Hanging is too good for a man who makes puns -- he should be drawn and quoted.-Fred Allen': {'and': 1, 'be': 1, 'good': 1, 'quoted': 1, 'is': 1, 'who': 1, 'fred': 1, 'hanging': 1, 'allen': 1, 'he': 1, 'a': 1, 'for': 1, 'should': 1, 'puns': 1, 'too': 1, 'drawn': 1, 'man': 1, 'makes': 1}, 'Fame is a fickle food upon a shifting plate.-Emily Dickinson': {'a': 2, 'plate': 1, 'food': 1, 'is': 1, 'upon': 1, 'fickle': 1, 'shifting': 1, 'dickinson': 1, 'fame': 1, 'emily': 1}, 'If men will not act for themselves, what will they do when the benefit of their effort is for all?-Elbert Hubbard': {'do': 1, 'all': 1, 'is': 1, 'men': 1, 'they': 1, 'not': 1, 'effort': 1, 'the': 1, 'if': 1, 'what': 1, 'hubbard': 1, 'for': 2, 'elbert': 1, 'of': 1, 'when': 1, 'will': 2, 'their': 1, 'benefit': 1, 'act': 1, 'themselves': 1}, 'Patience is the companion of wisdom.-Saint Augustine': {'augustine': 1, 'of': 1, 'is': 1, 'wisdom': 1, 'patience': 1, 'saint': 1, 'the': 1, 'companion': 1}, 'If God had wanted us to spend our time fretting about the problems of home ownership, He would never have invented beer.-Dave Barry': {'ownership': 1, 'never': 1, 'problems': 1, 'dave': 1, 'have': 1, 'home': 1, 'our': 1, 'invented': 1, 'if': 1, 'about': 1, 'wanted': 1, 'would': 1, 'god': 1, 'had': 1, 'us': 1, 'spend': 1, 'to': 1, 'beer': 1, 'of': 1, 'time': 1, 'barry': 1, 'the': 1, 'he': 1, 'fretting': 1}, 'In the long run, we shape our lives and we shape ourselves. The process never ends until we die, and the choices that we make are ultimately our responsibility.-Eleanor Roosevelt': {'and': 2, 'ends': 1, 'run': 1, 'that': 1, 'process': 1, 'never': 1, 'we': 4, 'shape': 2, 'lives': 1, 'are': 1, 'in': 1, 'our': 2, 'ourselves': 1, 'ultimately': 1, 'die': 1, 'make': 1, 'long': 1, 'choices': 1, 'eleanor': 1, 'responsibility': 1, 'roosevelt': 1, 'the': 3, 'until': 1}, 'What is happiness? The feeling that power is growing, that resistance is overcome.-Friedrich Nietzsche': {'nietzsche': 1, 'what': 1, 'power': 1, 'that': 2, 'is': 3, 'resistance': 1, 'friedrich': 1, 'happiness': 1, 'growing': 1, 'the': 1, 'feeling': 1, 'overcome': 1}, 'A star on a movie set is like a time bomb. That bomb has got to be defused so people can approach it without fear.-Jack Nicholson': {'be': 1, 'set': 1, 'bomb': 2, 'people': 1, 'is': 1, 'it': 1, 'defused': 1, 'jack': 1, 'star': 1, 'fear': 1, 'a': 3, 'on': 1, 'like': 1, 'movie': 1, 'that': 1, 'nicholson': 1, 'to': 1, 'without': 1, 'so': 1, 'can': 1, 'time': 1, 'got': 1, 'has': 1, 'approach': 1}, 'I don`t work according to nature, but infront and together with it. An artist must observe the nature, but never confuse it with the art.-Pablo Picasso': {'and': 1, 'art': 1, 'nature': 2, 'never': 1, 'confuse': 1, 'it': 2, 'but': 2, 'an': 1, 'observe': 1, 'infront': 1, 'pablo': 1, 'picasso': 1, 'with': 2, 'must': 1, 'don': 1, 'artist': 1, 'i': 1, 'work': 1, 'according': 1, 'together': 1, 'to': 1, 't': 1, 'the': 2}, 'The Nation which indulges toward another an habitual hatred or an habitual fondness is in some degree a slave. It is a slave to its animosity or to its affection, either of which is sufficient to lead it astray from its duty and its interest.-George Washington': {'duty': 1, 'and': 1, 'is': 3, 'indulges': 1, 'some': 1, 'it': 2, 'an': 2, 'another': 1, 'in': 1, 'its': 4, 'from': 1, 'lead': 1, 'astray': 1, 'george': 1, 'to': 3, 'which': 2, 'slave': 2, 'interest': 1, 'degree': 1, 'habitual': 2, 'sufficient': 1, 'nation': 1, 'animosity': 1, 'the': 1, 'fondness': 1, 'a': 2, 'washington': 1, 'of': 1, 'either': 1, 'hatred': 1, 'toward': 1, 'or': 2, 'affection': 1}, 'What you do speaks so loudly that I cannot hear what you say.-Ralph Waldo Emerson': {'do': 1, 'what': 2, 'waldo': 1, 'that': 1, 'i': 1, 'ralph': 1, 'say': 1, 'emerson': 1, 'loudly': 1, 'so': 1, 'cannot': 1, 'hear': 1, 'you': 2, 'speaks': 1}, 'I have never let my schooling interfere with my education.-Mark Twain': {'education': 1, 'i': 1, 'my': 2, 'never': 1, 'schooling': 1, 'interfere': 1, 'twain': 1, 'let': 1, 'have': 1, 'mark': 1, 'with': 1}, 'I`m not normally a religious man, but if you`re up there, save me, Superman!-Homer Simpson': {'me': 1, 'but': 1, 'if': 1, 'homer': 1, 'not': 1, 'religious': 1, 'superman': 1, 'a': 1, 'i': 1, 'there': 1, 'm': 1, 'up': 1, 're': 1, 'man': 1, 'you': 1, 'save': 1, 'normally': 1, 'simpson': 1}, 'Men show their characters in nothing more clearly than in what they think laughable.-Johann Wolfgang von Goethe': {'characters': 1, 'goethe': 1, 'show': 1, 'wolfgang': 1, 'von': 1, 'men': 1, 'johann': 1, 'they': 1, 'in': 2, 'nothing': 1, 'laughable': 1, 'than': 1, 'what': 1, 'clearly': 1, 'their': 1, 'think': 1, 'more': 1}, 'Of all lies, art is the least untrue.-Gustave Flaubert': {'flaubert': 1, 'all': 1, 'untrue': 1, 'art': 1, 'of': 1, 'is': 1, 'least': 1, 'lies': 1, 'gustave': 1, 'the': 1}, 'In every man`s heart there is a secret nerve that answers to the vibrations of beauty.-Christopher Morley': {'heart': 1, 'beauty': 1, 'that': 1, 'is': 1, 'answers': 1, 'every': 1, 'in': 1, 'nerve': 1, 'man': 1, 'a': 1, 'morley': 1, 'of': 1, 'there': 1, 's': 1, 'to': 1, 'secret': 1, 'vibrations': 1, 'christopher': 1, 'the': 1}, 'I realise that I`m making gender-based generalizations here, but my feeling is that if God did not want us to make gender-based generalizations, She would not have given us genders.-Dave Barry': {'want': 1, 'that': 2, 'is': 1, 'here': 1, 'did': 1, 'dave': 1, 'but': 1, 'have': 1, 'making': 1, 'not': 2, 'my': 1, 'if': 1, 'given': 1, 'based': 2, 'would': 1, 'i': 2, 'god': 1, 'make': 1, 'm': 1, 'us': 2, 'to': 1, 'she': 1, 'realise': 1, 'gender': 2, 'genders': 1, 'feeling': 1, 'generalizations': 2, 'barry': 1}, 'In Heaven all the interesting people are missing.-Friedrich Nietzsche': {'nietzsche': 1, 'all': 1, 'heaven': 1, 'people': 1, 'interesting': 1, 'missing': 1, 'friedrich': 1, 'are': 1, 'in': 1, 'the': 1}, 'To defend Western Europe we have to let the Pentagon buy all these tanks and guns and things, and the Pentagon is unable to buy any object that that costs less than a condominium in Vail. If the Pentagon needs, say, fruit, it will argue that it must have fruit that can withstand the rigors of combat conditions, and it will wind up purchasing the FX-700 Seedless Tactical Grape, which will cost $160,000 per bunch, and will have an 83 percent failure rate.-Dave Barry': {'and': 5, 'withstand': 1, 'all': 1, 'less': 1, 'vail': 1, 'is': 1, '700': 1, 'it': 3, 'an': 1, 'say': 1, 'cost': 1, 'purchasing': 1, 'have': 3, 'in': 1, '83': 1, 'pentagon': 3, 'any': 1, 'if': 1, 'needs': 1, 'grape': 1, 'rigors': 1, 'things': 1, 'defend': 1, 'percent': 1, 'per': 1, 'up': 1, 'to': 3, 'unable': 1, 'which': 1, 'bunch': 1, 'conditions': 1, 'guns': 1, 'seedless': 1, 'europe': 1, 'buy': 2, 'combat': 1, 'that': 4, 'fx': 1, 'object': 1, 'failure': 1, 'dave': 1, 'fruit': 2, 'let': 1, 'western': 1, 'tanks': 1, '160': 1, 'than': 1, 'must': 1, 'a': 1, 'argue': 1, 'we': 1, 'of': 1, 'rate': 1, 'costs': 1, 'will': 4, 'these': 1, '000': 1, 'can': 1, 'condominium': 1, 'barry': 1, 'the': 5, 'tactical': 1, 'wind': 1}, 'Politics has got so expensive that it takes lots of money to even get beat with.-Will Rogers': {'that': 1, 'beat': 1, 'money': 1, 'it': 1, 'politics': 1, 'with': 1, 'expensive': 1, 'even': 1, 'takes': 1, 'rogers': 1, 'lots': 1, 'of': 1, 'get': 1, 'will': 1, 'to': 1, 'so': 1, 'got': 1, 'has': 1}, 'I don`t make jokes. I just watch the government and report the facts.-Will Rogers': {'and': 1, 'don': 1, 'just': 1, 'rogers': 1, 'government': 1, 'i': 2, 'make': 1, 'watch': 1, 'will': 1, 'jokes': 1, 'report': 1, 't': 1, 'facts': 1, 'the': 2}, 'Moral indignation is jealousy with a halo.-H.G. Wells': {'a': 1, 'g': 1, 'h': 1, 'is': 1, 'jealousy': 1, 'wells': 1, 'moral': 1, 'with': 1, 'indignation': 1, 'halo': 1}, 'You do not lead by hitting people over the head \x97 that`s assault, not leadership.-Dwight Eisenhower': {'do': 1, 'head': 1, 'people': 1, 'over': 1, 'assault': 1, 'leadership': 1, 'not': 2, 'you': 1, 'lead': 1, 'that': 1, 'by': 1, 'hitting': 1, 's': 1, 'the': 1, 'dwight': 1, 'eisenhower': 1}, 'Satisfaction lies in the effort, not in the attainment. Full effort is full victory.-Mahatma Gandhi': {'full': 2, 'lies': 1, 'is': 1, 'satisfaction': 1, 'attainment': 1, 'mahatma': 1, 'victory': 1, 'in': 2, 'not': 1, 'the': 2, 'effort': 2, 'gandhi': 1}, 'There is wishful thinking in Hell as well as on Earth.-C.S. Lewis': {'on': 1, 'c': 1, 'in': 1, 'thinking': 1, 'wishful': 1, 'is': 1, 'there': 1, 'well': 1, 'as': 2, 's': 1, 'lewis': 1, 'hell': 1, 'earth': 1}, 'The best way to win an argument is to begin by being right.-Jill Ruckleshaus': {'begin': 1, 'right': 1, 'being': 1, 'win': 1, 'is': 1, 'argument': 1, 'an': 1, 'by': 1, 'to': 2, 'jill': 1, 'way': 1, 'the': 1, 'ruckleshaus': 1, 'best': 1}, 'How we spend our days is, of course, how we spend our lives.-Annie Dillard': {'we': 2, 'how': 2, 'of': 1, 'is': 1, 'dillard': 1, 'days': 1, 'course': 1, 'lives': 1, 'annie': 1, 'our': 2, 'spend': 2}, 'It behooves every man to remember that the work of the critic is of altogether secondary importance, and that, in the end, progress is accomplished by the man who does things.-Theodore Roosevelt': {'and': 1, 'that': 2, 'theodore': 1, 'is': 2, 'who': 1, 'it': 1, 'critic': 1, 'every': 1, 'in': 1, 'altogether': 1, 'behooves': 1, 'importance': 1, 'by': 1, 'man': 2, 'end': 1, 'remember': 1, 'things': 1, 'work': 1, 'roosevelt': 1, 'to': 1, 'accomplished': 1, 'does': 1, 'of': 2, 'progress': 1, 'the': 4, 'secondary': 1}, 'To write a good love letter, you ought to begin without knowing what you mean to say and to finish without knowing what you have written.-Jean-Jacques Rousseau': {'knowing': 2, 'and': 1, 'begin': 1, 'good': 1, 'love': 1, 'letter': 1, 'say': 1, 'finish': 1, 'have': 1, 'jean': 1, 'a': 1, 'what': 2, 'write': 1, 'to': 4, 'written': 1, 'without': 2, 'mean': 1, 'you': 3, 'jacques': 1, 'ought': 1, 'rousseau': 1}, 'It is your work in life that is the ultimate seduction.-Pablo Picasso': {'life': 1, 'work': 1, 'in': 1, 'that': 1, 'is': 2, 'seduction': 1, 'it': 1, 'ultimate': 1, 'pablo': 1, 'picasso': 1, 'the': 1, 'your': 1}, 'Character is what you are in the dark.-John Whorfin': {'the': 1, 'what': 1, 'whorfin': 1, 'character': 1, 'dark': 1, 'are': 1, 'in': 1, 'you': 1, 'john': 1, 'is': 1}, 'I have a hobby...I have the world`s largest collection of sea shells. I keep it scattered on beaches all over the world. Maybe you`ve seen some of it...-Steven Wright': {'all': 1, 'sea': 1, 'some': 1, 'over': 1, 'of': 2, 'scattered': 1, 'it': 2, 'collection': 1, 'have': 2, 'steven': 1, 'seen': 1, 'the': 2, 'beaches': 1, 've': 1, 'a': 1, 'on': 1, 'world': 2, 'shells': 1, 'i': 3, 'maybe': 1, 'keep': 1, 'wright': 1, 's': 1, 'largest': 1, 'hobby': 1, 'you': 1}, 'If we command our wealth, we shall be rich and free; if our wealth commands us, we are poor indeed.-Edmund Burke': {'and': 1, 'be': 1, 'we': 3, 'poor': 1, 'shall': 1, 'indeed': 1, 'free': 1, 'are': 1, 'our': 2, 'if': 2, 'commands': 1, 'wealth': 2, 'us': 1, 'command': 1, 'edmund': 1, 'rich': 1, 'burke': 1}, 'Philosophy is questions that may never be answered. Religion is answers that may never be questioned.-Author Unknown': {'be': 2, 'philosophy': 1, 'author': 1, 'may': 2, 'unknown': 1, 'is': 2, 'never': 2, 'answers': 1, 'answered': 1, 'that': 2, 'questioned': 1, 'questions': 1, 'religion': 1}, 'In politics shared hatreds are almost always the basis of friendships.-Alexis de Tocqueville': {'hatreds': 1, 'tocqueville': 1, 'shared': 1, 'basis': 1, 'almost': 1, 'always': 1, 'de': 1, 'alexis': 1, 'of': 1, 'are': 1, 'in': 1, 'politics': 1, 'the': 1, 'friendships': 1}, 'There are people who put their dreams in a little box and say, Yes, I`ve got dreams, of course I`ve got dreams. Then they put the box away and bring it out once in awhile to look in it, and yep, they`re still there.-Erna Bombeck': {'and': 3, 've': 2, 'people': 1, 'it': 2, 'course': 1, 'say': 1, 'are': 1, 'in': 3, 'yep': 1, 'yes': 1, 'still': 1, 'awhile': 1, 'out': 1, 'little': 1, 'their': 1, 'away': 1, 'there': 2, 'to': 1, 'got': 2, 'then': 1, 'bombeck': 1, 'who': 1, 'erna': 1, 'a': 1, 'they': 2, 'put': 2, 're': 1, 'dreams': 3, 'box': 2, 'look': 1, 'bring': 1, 'i': 2, 'of': 1, 'the': 1, 'once': 1}, 'A radical is a man with both feet firmly planted in the air.-Franklin D. Roosevelt': {'a': 2, 'both': 1, 'd': 1, 'radical': 1, 'is': 1, 'roosevelt': 1, 'air': 1, 'feet': 1, 'planted': 1, 'franklin': 1, 'in': 1, 'the': 1, 'man': 1, 'with': 1, 'firmly': 1}, 'Nietzsche was stupid and abnormal.-Leo Tolstoy': {'nietzsche': 1, 'and': 1, 'tolstoy': 1, 'stupid': 1, 'was': 1, 'abnormal': 1, 'leo': 1}, 'A typical vice of American politics is the avoidance of saying anything real on real issues.-Theodore Roosevelt': {'real': 2, 'saying': 1, 'theodore': 1, 'is': 1, 'politics': 1, 'issues': 1, 'a': 1, 'on': 1, 'anything': 1, 'vice': 1, 'of': 2, 'roosevelt': 1, 'american': 1, 'the': 1, 'avoidance': 1, 'typical': 1}, 'Humility must always be the portion of any man who receives acclaim earned in blood of his followers and sacrifices of his friends.-Dwight Eisenhower': {'and': 1, 'be': 1, 'acclaim': 1, 'who': 1, 'his': 2, 'blood': 1, 'in': 1, 'friends': 1, 'any': 1, 'must': 1, 'earned': 1, 'always': 1, 'eisenhower': 1, 'sacrifices': 1, 'portion': 1, 'followers': 1, 'receives': 1, 'of': 3, 'the': 1, 'man': 1, 'dwight': 1, 'humility': 1}, 'Avoid the base hypocrisy of condemning in one man what you pass over in silence when committed by another.-Theodore Roosevelt': {'the': 1, 'theodore': 1, 'over': 1, 'pass': 1, 'one': 1, 'base': 1, 'another': 1, 'committed': 1, 'by': 1, 'man': 1, 'what': 1, 'in': 2, 'hypocrisy': 1, 'of': 1, 'avoid': 1, 'when': 1, 'roosevelt': 1, 'you': 1, 'condemning': 1, 'silence': 1}, 'I always cheer up immensely if an attack is particularly wounding because I think, well, if they attack one personally, it means they have not a single political argument left.-Margaret Thatcher': {'because': 1, 'particularly': 1, 'they': 2, 'means': 1, 'well': 1, 'is': 1, 'it': 1, 'one': 1, 'margaret': 1, 'single': 1, 'have': 1, 'personally': 1, 'not': 1, 'immensely': 1, 'thatcher': 1, 'if': 2, 'a': 1, 'wounding': 1, 'argument': 1, 'always': 1, 'political': 1, 'up': 1, 'i': 2, 'attack': 2, 'cheer': 1, 'an': 1, 'think': 1, 'left': 1}, 'Love is a fruit in season at all times, and within reach of every hand.-Mother Teresa': {'and': 1, 'all': 1, 'love': 1, 'season': 1, 'is': 1, 'within': 1, 'reach': 1, 'teresa': 1, 'hand': 1, 'fruit': 1, 'every': 1, 'at': 1, 'in': 1, 'a': 1, 'of': 1, 'times': 1, 'mother': 1}, 'Reason and judgment are the qualities of a leader.-Tacitus': {'and': 1, 'a': 1, 'tacitus': 1, 'of': 1, 'reason': 1, 'are': 1, 'qualities': 1, 'the': 1, 'judgment': 1, 'leader': 1}, 'I confess, I do not believe in time.-Vladimir Nabokov': {'do': 1, 'vladimir': 1, 'i': 2, 'confess': 1, 'in': 1, 'time': 1, 'not': 1, 'believe': 1, 'nabokov': 1}, 'Eros will have naked bodies; Friendship naked personalities.-C.S. Lewis': {'will': 1, 'c': 1, 'personalities': 1, 'lewis': 1, 'naked': 2, 's': 1, 'have': 1, 'friendship': 1, 'bodies': 1, 'eros': 1}, 'I think and think for months and years, ninety-nine times, the conclusion is false. The hundredth time I am right.-Albert Einstein': {'and': 2, 'right': 1, 'false': 1, 'am': 1, 'is': 1, 'albert': 1, 'years': 1, 'ninety': 1, 'einstein': 1, 'hundredth': 1, 'for': 1, 'i': 2, 'months': 1, 'times': 1, 'nine': 1, 'time': 1, 'the': 2, 'think': 2, 'conclusion': 1}, 'She is not perfect. You are not perfect. The question is whether or not you are perfect for each other.-Robin Williams': {'perfect': 3, 'the': 1, 'for': 1, 'whether': 1, 'is': 2, 'question': 1, 'robin': 1, 'other': 1, 'she': 1, 'each': 1, 'not': 3, 'you': 2, 'or': 1, 'williams': 1, 'are': 2}, 'All human actions have one or more of these seven causes: chance, nature, compulsions, habit, reason, passion, desire.-Aristotle': {'all': 1, 'have': 1, 'nature': 1, 'seven': 1, 'actions': 1, 'one': 1, 'chance': 1, 'human': 1, 'causes': 1, 'desire': 1, 'these': 1, 'of': 1, 'compulsions': 1, 'reason': 1, 'passion': 1, 'aristotle': 1, 'habit': 1, 'or': 1, 'more': 1}, 'The good thing about being bisexual is that it doubles your chance of a date on a Saturday night.-Woody Allen': {'good': 1, 'that': 1, 'being': 1, 'bisexual': 1, 'is': 1, 'it': 1, 'chance': 1, 'woody': 1, 'date': 1, 'allen': 1, 'saturday': 1, 'a': 2, 'on': 1, 'about': 1, 'of': 1, 'your': 1, 'thing': 1, 'night': 1, 'doubles': 1, 'the': 1}, 'I could not handle being a woman, I would stay home all day and play with my breasts.-Steve Martin': {'and': 1, 'all': 1, 'woman': 1, 'handle': 1, 'being': 1, 'breasts': 1, 'play': 1, 'stay': 1, 'steve': 1, 'not': 1, 'home': 1, 'with': 1, 'day': 1, 'a': 1, 'would': 1, 'i': 2, 'could': 1, 'martin': 1, 'my': 1}, 'Perfect humility dispenses with modesty.-C.S. Lewis': {'perfect': 1, 'modesty': 1, 'lewis': 1, 'c': 1, 's': 1, 'humility': 1, 'dispenses': 1, 'with': 1}, 'If a woman has to choose between catching a fly ball and saving an infant`s life, she will choose to save the infant`s life without even considering if there are men on base.-Dave Barry': {'and': 1, 'considering': 1, 'infant': 2, 'ball': 1, 'saving': 1, 'men': 1, 'life': 2, 'an': 1, 'fly': 1, 'dave': 1, 'catching': 1, 'are': 1, 'a': 2, 'if': 2, 'even': 1, 'on': 1, 'woman': 1, 'has': 1, 'barry': 1, 'there': 1, 'without': 1, 'will': 1, 'to': 2, 's': 2, 'base': 1, 'choose': 2, 'between': 1, 'the': 1, 'save': 1, 'she': 1}, 'This is slavery, not to speak one`s thought.-Euripides': {'euripides': 1, 'this': 1, 'is': 1, 'slavery': 1, 'one': 1, 'thought': 1, 'to': 1, 's': 1, 'not': 1, 'speak': 1}, 'Punctuality is the thief of time.-Oscar Wilde': {'of': 1, 'is': 1, 'thief': 1, 'wilde': 1, 'time': 1, 'punctuality': 1, 'the': 1, 'oscar': 1}, 'The broad masses of a population are more amenable to the appeal of rhetoric than to any other force.-Adolf Hitler': {'force': 1, 'amenable': 1, 'are': 1, 'any': 1, 'hitler': 1, 'population': 1, 'a': 1, 'rhetoric': 1, 'adolf': 1, 'broad': 1, 'masses': 1, 'than': 1, 'to': 2, 'other': 1, 'of': 2, 'the': 2, 'appeal': 1, 'more': 1}, 'Government is not reason; it is not eloquent; it is force. Like fire, it is a dangerous servant and a fearful master.-George Washington': {'and': 1, 'force': 1, 'government': 1, 'fire': 1, 'is': 4, 'washington': 1, 'it': 3, 'reason': 1, 'not': 2, 'george': 1, 'a': 2, 'like': 1, 'servant': 1, 'dangerous': 1, 'eloquent': 1, 'fearful': 1, 'master': 1}, 'It is astonishing what an effort it seems to be for many people to put their brains definitely and systematically to work.-Thomas Edison': {'and': 1, 'be': 1, 'thomas': 1, 'people': 1, 'brains': 1, 'is': 1, 'it': 2, 'an': 1, 'put': 1, 'effort': 1, 'what': 1, 'for': 1, 'their': 1, 'systematically': 1, 'many': 1, 'work': 1, 'seems': 1, 'astonishing': 1, 'to': 3, 'definitely': 1, 'edison': 1}, 'I like your Christ, I do not like your Christians. Your Christians are so unlike your Christ.-Mahatma Gandhi': {'do': 1, 'christ': 2, 'unlike': 1, 'i': 2, 'like': 2, 'so': 1, 'gandhi': 1, 'not': 1, 'mahatma': 1, 'your': 4, 'christians': 2, 'are': 1}, 'A University of Chicago professor said the greatest day in the world was when a water puppy crawled out on land and decided to stay. The water puppy, he said, went on to become a man. If he proves that, I am willing to give up Christmas, Thanksgiving, and New Year`s Day, and to celebrate Water Puppy Day.-William Jennings Bryan': {'and': 3, 'the': 3, 'give': 1, 'in': 1, 'am': 1, 'up': 1, 'decided': 1, 'year': 1, 'out': 1, 'said': 2, 'chicago': 1, 'when': 1, 'to': 4, 'willing': 1, 'new': 1, 'puppy': 3, 'was': 1, 'christmas': 1, 'that': 1, 'jennings': 1, 'stay': 1, 'william': 1, 'if': 1, 'water': 3, 'world': 1, 'on': 2, 'day': 3, 'celebrate': 1, 'he': 2, 'a': 3, 'bryan': 1, 'land': 1, 'i': 1, 'crawled': 1, 'university': 1, 'thanksgiving': 1, 's': 1, 'proves': 1, 'greatest': 1, 'man': 1, 'of': 1, 'become': 1, 'went': 1, 'professor': 1}, 'Words which do not give the light of Christ increase the darkness.-Mother Teresa': {'do': 1, 'darkness': 1, 'give': 1, 'light': 1, 'of': 1, 'teresa': 1, 'increase': 1, 'which': 1, 'words': 1, 'mother': 1, 'not': 1, 'the': 2, 'christ': 1}, 'Life is not a support system for art. It`s the other way around.-Stephen King': {'life': 1, 'art': 1, 'around': 1, 'is': 1, 'it': 1, 'not': 1, 'a': 1, 'king': 1, 'for': 1, 'support': 1, 'system': 1, 's': 1, 'other': 1, 'way': 1, 'stephen': 1, 'the': 1}, 'All good art is about something deeper than it admits.-Roger Ebert': {'about': 1, 'good': 1, 'art': 1, 'deeper': 1, 'is': 1, 'all': 1, 'it': 1, 'admits': 1, 'roger': 1, 'something': 1, 'ebert': 1, 'than': 1}, 'Accept the challenges so that you can feel the exhilaration of victory.-George Patton': {'that': 1, 'feel': 1, 'of': 1, 'patton': 1, 'accept': 1, 'you': 1, 'challenges': 1, 'exhilaration': 1, 'so': 1, 'can': 1, 'the': 2, 'george': 1, 'victory': 1}, 'Regarding the debate about faith and works: It\x92s like asking which blade in a pair of scissors is most important.-C.S. Lewis': {'and': 1, 'lewis': 1, 'is': 1, 'it': 1, 'most': 1, 'important': 1, 'in': 1, 'pair': 1, 'scissors': 1, 'debate': 1, 'a': 1, 'faith': 1, 'regarding': 1, 'like': 1, 'c': 1, 'blade': 1, 's': 2, 'asking': 1, 'which': 1, 'of': 1, 'about': 1, 'the': 1, 'works': 1}, 'He who is of calm and happy nature will hardly feel the pressure of age, but to him who is of an opposite disposition youth and age are equally a burden.-Plato': {'and': 2, 'equally': 1, 'who': 2, 'disposition': 1, 'opposite': 1, 'feel': 1, 'is': 2, 'plato': 1, 'but': 1, 'an': 1, 'pressure': 1, 'are': 1, 'burden': 1, 'him': 1, 'he': 1, 'a': 1, 'youth': 1, 'of': 3, 'age': 2, 'nature': 1, 'will': 1, 'to': 1, 'calm': 1, 'the': 1, 'hardly': 1, 'happy': 1}, 'He who is not courageous enough to take risks will accomplish nothing in life.-Muhammad Ali': {'life': 1, 'ali': 1, 'is': 1, 'who': 1, 'not': 1, 'muhammad': 1, 'in': 1, 'nothing': 1, 'courageous': 1, 'he': 1, 'accomplish': 1, 'will': 1, 'to': 1, 'enough': 1, 'take': 1, 'risks': 1}, 'Life is what happens to you while you`re busy making other plans.-John Lennon': {'happens': 1, 'life': 1, 'busy': 1, 'plans': 1, 'to': 1, 'is': 1, 'what': 1, 're': 1, 'while': 1, 'other': 1, 'lennon': 1, 'making': 1, 'you': 2, 'john': 1}, 'Happiness is the full use of your powers along lines of excellence.-John F. Kennedy': {'use': 1, 'full': 1, 'f': 1, 'of': 2, 'is': 1, 'kennedy': 1, 'lines': 1, 'your': 1, 'excellence': 1, 'along': 1, 'john': 1, 'powers': 1, 'the': 1, 'happiness': 1}, 'No side will win the Battle of the Sexes. There`s too much fraternizing with the enemy.-Henry Kissinger': {'win': 1, 'of': 1, 'battle': 1, 'with': 1, 'enemy': 1, 'kissinger': 1, 'no': 1, 'much': 1, 'there': 1, 'will': 1, 's': 1, 'fraternizing': 1, 'sexes': 1, 'henry': 1, 'the': 3, 'side': 1, 'too': 1}, 'Happiness makes up in height for what it lacks in length.-Robert Frost': {'what': 1, 'for': 1, 'robert': 1, 'frost': 1, 'up': 1, 'height': 1, 'length': 1, 'in': 2, 'it': 1, 'lacks': 1, 'makes': 1, 'happiness': 1}, 'Demoralize the enemy from within by surprise, terror, sabotage, assassination. This is the war of the future.-Adolf Hitler': {'is': 1, 'within': 1, 'by': 1, 'hitler': 1, 'enemy': 1, 'from': 1, 'adolf': 1, 'this': 1, 'of': 1, 'assassination': 1, 'future': 1, 'terror': 1, 'surprise': 1, 'the': 3, 'sabotage': 1, 'war': 1, 'demoralize': 1}, 'Friendship is a single soul dwelling in two bodies.-Aristotle': {'a': 1, 'dwelling': 1, 'is': 1, 'soul': 1, 'two': 1, 'single': 1, 'aristotle': 1, 'in': 1, 'friendship': 1, 'bodies': 1}, 'What is the most important for democracy is not that great fortunes should not exist, but that great fortunes should not remain in the same hands. In that way there are rich men, but they do not form a class.-Alexis de Tocqueville': {'tocqueville': 1, 'do': 1, 'men': 1, 'rich': 1, 'form': 1, 'that': 3, 'is': 2, 'de': 1, 'great': 2, 'but': 2, 'most': 1, 'fortunes': 2, 'important': 1, 'exist': 1, 'are': 1, 'they': 1, 'in': 2, 'not': 4, 'class': 1, 'a': 1, 'what': 1, 'for': 1, 'democracy': 1, 'there': 1, 'same': 1, 'should': 2, 'remain': 1, 'way': 1, 'the': 2, 'alexis': 1, 'hands': 1}, 'It is a scientific fact that your body will not absorb cholesterol if you take it from another person`s plate.-Dave Barry': {'body': 1, 'plate': 1, 'scientific': 1, 'that': 1, 'absorb': 1, 'is': 1, 'it': 2, 'dave': 1, 'another': 1, 'not': 1, 'your': 1, 'if': 1, 'a': 1, 'from': 1, 'barry': 1, 'will': 1, 'person': 1, 's': 1, 'take': 1, 'cholesterol': 1, 'you': 1, 'fact': 1}, 'Corrupt politicians make the other ten percent look bad.-Henry Kissinger': {'look': 1, 'kissinger': 1, 'make': 1, 'percent': 1, 'politicians': 1, 'bad': 1, 'other': 1, 'henry': 1, 'corrupt': 1, 'the': 1, 'ten': 1}, 'Of all tyrannies, a tyranny exercised for the good of its victims may be the most oppressive. It may be better to live under robber barons than under omnipotent moral busybodies. The robber baron`s cruelty may sometimes sleep, his cupidity may at some point be satiated; but those who torment us for our own good will torment us without end, for they do so with the approval of their own conscience.-C.S. Lewis': {'all': 1, 'own': 2, 'do': 1, 'busybodies': 1, 'some': 1, 'it': 1, 'good': 2, 'moral': 1, 'barons': 1, 'a': 1, 'our': 1, 'its': 1, 'conscience': 1, 'end': 1, 'omnipotent': 1, 'for': 3, 'to': 1, 'point': 1, 'who': 1, 'better': 1, 'their': 1, 'live': 1, 'robber': 2, 'lewis': 1, 'tyrannies': 1, 'be': 3, 'his': 1, 'victims': 1, 'oppressive': 1, 'may': 4, 'under': 2, 'cruelty': 1, 'but': 1, 'exercised': 1, 'most': 1, 'cupidity': 1, 'they': 1, 'approval': 1, 'with': 1, 'than': 1, 'those': 1, 'baron': 1, 'tyranny': 1, 'c': 1, 'sleep': 1, 'of': 3, 'sometimes': 1, 'us': 2, 'torment': 2, 'will': 1, 's': 2, 'without': 1, 'so': 1, 'satiated': 1, 'the': 4, 'at': 1}, 'Life`s Tragedy is that we get old to soon and wise too late.-Benjamin Franklin': {'and': 1, 'benjamin': 1, 'we': 1, 'old': 1, 'that': 1, 'is': 1, 'life': 1, 'soon': 1, 'tragedy': 1, 'wise': 1, 'get': 1, 'late': 1, 'to': 1, 's': 1, 'too': 1, 'franklin': 1}, 'Humility is the foundation of all the other virtues hence, in the soul in which this virtue does not exist there cannot be any other virtue except in mere appearance.-Saint Augustine': {'be': 1, 'all': 1, 'saint': 1, 'augustine': 1, 'foundation': 1, 'is': 1, 'humility': 1, 'virtues': 1, 'soul': 1, 'cannot': 1, 'exist': 1, 'virtue': 2, 'in': 3, 'not': 1, 'any': 1, 'this': 1, 'of': 1, 'there': 1, 'appearance': 1, 'except': 1, 'mere': 1, 'does': 1, 'which': 1, 'hence': 1, 'the': 3, 'other': 2}, 'A man`s very highest moment is, I have no doubt at all, when he kneels in the dust, and beats his breast, and tells all the sins of his life.-Oscar Wilde': {'and': 2, 'all': 2, 'his': 2, 'kneels': 1, 'very': 1, 'oscar': 1, 'is': 1, 'life': 1, 'sins': 1, 'beats': 1, 'wilde': 1, 'at': 1, 'have': 1, 'in': 1, 'dust': 1, 'highest': 1, 'tells': 1, 'man': 1, 'a': 1, 'no': 1, 'i': 1, 'of': 1, 'when': 1, 'moment': 1, 's': 1, 'doubt': 1, 'the': 2, 'he': 1, 'breast': 1}, 'Men have always been afraid that women could get along without them.-Margaret Mead': {'them': 1, 'afraid': 1, 'that': 1, 'always': 1, 'could': 1, 'men': 1, 'been': 1, 'margaret': 1, 'without': 1, 'mead': 1, 'have': 1, 'get': 1, 'along': 1, 'women': 1}, 'Feminism was established to allow unattractive women easier access to the mainstream.-Rush Limbaugh': {'established': 1, 'rush': 1, 'mainstream': 1, 'limbaugh': 1, 'access': 1, 'to': 2, 'allow': 1, 'unattractive': 1, 'the': 1, 'was': 1, 'easier': 1, 'feminism': 1, 'women': 1}, 'We turn not older with years, but newer every day.-Emily Dickinson': {'we': 1, 'older': 1, 'but': 1, 'years': 1, 'turn': 1, 'every': 1, 'newer': 1, 'dickinson': 1, 'not': 1, 'with': 1, 'day': 1, 'emily': 1}, 'Nothing separates the generations more than music. By the time a child is eight or nine, he has developed a passion for his own music that is even stronger than his passions for procrastination and weird clothes.-Bill Cosby': {'and': 1, 'the': 2, 'own': 1, 'developed': 1, 'is': 2, 'child': 1, 'even': 1, 'passions': 1, 'for': 2, 'by': 1, 'passion': 1, 'music': 2, 'has': 1, 'more': 1, 'his': 2, 'that': 1, 'eight': 1, 'procrastination': 1, 'separates': 1, 'nothing': 1, 'than': 2, 'he': 1, 'a': 2, 'bill': 1, 'stronger': 1, 'nine': 1, 'time': 1, 'weird': 1, 'cosby': 1, 'or': 1, 'generations': 1, 'clothes': 1}, 'It is said that gifts persuade even the gods.-Euripides': {'even': 1, 'said': 1, 'euripides': 1, 'that': 1, 'gods': 1, 'is': 1, 'it': 1, 'gifts': 1, 'persuade': 1, 'the': 1}, 'The best and most beautiful things in the world cannot be seen or even touched. They must be felt with the heart.-Helen Keller': {'and': 1, 'beautiful': 1, 'be': 2, 'felt': 1, 'most': 1, 'cannot': 1, 'keller': 1, 'they': 1, 'helen': 1, 'seen': 1, 'with': 1, 'best': 1, 'must': 1, 'even': 1, 'in': 1, 'world': 1, 'things': 1, 'heart': 1, 'touched': 1, 'the': 3, 'or': 1}, 'Experts tell us that if the Millennium Bug is not fixed, when the year 2000 arrives, our financial records will be inaccurate, our telephone system will be unreliable, our government will be paralyzed and airline flights will be canceled without warning. In other words, things will be pretty much the same as they are now.-Dave Barry': {'and': 1, 'financial': 1, 'words': 1, 'is': 1, 'year': 1, 'telephone': 1, 'canceled': 1, 'as': 1, 'warning': 1, 'experts': 1, 'paralyzed': 1, 'in': 1, 'our': 3, 'if': 1, 'things': 1, 'that': 1, 'when': 1, 'system': 1, 'same': 1, 'flights': 1, 'other': 1, 'millennium': 1, 'pretty': 1, 'tell': 1, 'be': 5, 'arrives': 1, 'inaccurate': 1, 'government': 1, 'much': 1, 'records': 1, 'dave': 1, 'they': 1, 'not': 1, 'unreliable': 1, 'now': 1, 'bug': 1, 'us': 1, 'will': 5, '2000': 1, 'without': 1, 'airline': 1, 'barry': 1, 'the': 3, 'fixed': 1, 'are': 1}, 'Where knowledge ends, religion begins.-Benjamin Disraeli': {'begins': 1, 'benjamin': 1, 'ends': 1, 'knowledge': 1, 'religion': 1, 'disraeli': 1, 'where': 1}, 'The days of looking the other way while despotic regimes trample human rights, rob their nations` wealth, and then excuse their failings by feeding their people a steady diet of anti-Western hatred are over.-Dick Cheney': {'and': 1, 'the': 2, 'people': 1, 'rob': 1, 'anti': 1, 'are': 1, 'human': 1, 'feeding': 1, 'despotic': 1, 'dick': 1, 'cheney': 1, 'looking': 1, 'their': 3, 'trample': 1, 'other': 1, 'way': 1, 'over': 1, 'failings': 1, 'then': 1, 'diet': 1, 'excuse': 1, 'western': 1, 'by': 1, 'wealth': 1, 'a': 1, 'rights': 1, 'of': 2, 'steady': 1, 'days': 1, 'nations': 1, 'while': 1, 'hatred': 1, 'regimes': 1}, 'God loves each of us as if there were only one of us.-Saint Augustine': {'loves': 1, 'augustine': 1, 'god': 1, 'there': 1, 'as': 1, 'us': 2, 'one': 1, 'only': 1, 'were': 1, 'saint': 1, 'each': 1, 'of': 2, 'if': 1}, 'I get to go to lots of overseas places, like Canada.-Britney Spears': {'canada': 1, 'like': 1, 'places': 1, 'get': 1, 'i': 1, 'of': 1, 'britney': 1, 'to': 2, 'go': 1, 'overseas': 1, 'lots': 1, 'spears': 1}, 'Love is the delightful interval between meeting a beautiful girl and discovering that she looks like a haddock.-John Barrymore': {'beautiful': 1, 'and': 1, 'love': 1, 'barrymore': 1, 'that': 1, 'is': 1, 'looks': 1, 'girl': 1, 'a': 2, 'like': 1, 'interval': 1, 'haddock': 1, 'delightful': 1, 'she': 1, 'between': 1, 'discovering': 1, 'the': 1, 'john': 1, 'meeting': 1}, 'The surface of American society is covered with a layer of democratic paint, but from time to time one can see the old aristocratic colours breaking through.-Alexis de Tocqueville': {'tocqueville': 1, 'layer': 1, 'old': 1, 'is': 1, 'de': 1, 'surface': 1, 'one': 1, 'society': 1, 'see': 1, 'through': 1, 'but': 1, 'with': 1, 'a': 1, 'from': 1, 'to': 1, 'of': 2, 'breaking': 1, 'american': 1, 'alexis': 1, 'colours': 1, 'paint': 1, 'aristocratic': 1, 'can': 1, 'time': 2, 'covered': 1, 'the': 2, 'democratic': 1}, 'I never see what has been done; I only see what remains to be done.-Siddhartha Buddha': {'be': 1, 'what': 2, 'i': 2, 'never': 1, 'see': 2, 'been': 1, 'to': 1, 'only': 1, 'done': 2, 'buddha': 1, 'has': 1, 'siddhartha': 1, 'remains': 1}, 'The man who does not read good books has no advantage over the man who cannot read them.-Mark Twain': {'them': 1, 'good': 1, 'advantage': 1, 'read': 2, 'over': 1, 'who': 2, 'cannot': 1, 'books': 1, 'not': 1, 'man': 2, 'no': 1, 'mark': 1, 'twain': 1, 'does': 1, 'the': 2, 'has': 1}, 'On the plus side, death is one of the few things that can be done just as easily lying down.-Woody Allen': {'be': 1, 'just': 1, 'that': 1, 'is': 1, 'one': 1, 'down': 1, 'as': 1, 'done': 1, 'allen': 1, 'woody': 1, 'on': 1, 'death': 1, 'things': 1, 'of': 1, 'few': 1, 'plus': 1, 'can': 1, 'easily': 1, 'the': 2, 'side': 1, 'lying': 1}, 'There is hope for the future because God has a sense of humor and we are funny to God.-Bill Cosby': {'and': 1, 'we': 1, 'because': 1, 'is': 1, 'are': 1, 'sense': 1, 'bill': 1, 'a': 1, 'funny': 1, 'humor': 1, 'for': 1, 'god': 2, 'there': 1, 'to': 1, 'future': 1, 'of': 1, 'the': 1, 'has': 1, 'hope': 1, 'cosby': 1}, 'Women are the only realists; their whole object in life is to pit their realism against the extravagant, excessive, and occasionally drunken idealism of men.-GK Chesterton': {'and': 1, 'drunken': 1, 'life': 1, 'object': 1, 'excessive': 1, 'is': 1, 'men': 1, 'are': 1, 'in': 1, 'realists': 1, 'pit': 1, 'women': 1, 'idealism': 1, 'to': 1, 'gk': 1, 'against': 1, 'their': 2, 'only': 1, 'occasionally': 1, 'extravagant': 1, 'of': 1, 'the': 2, 'whole': 1, 'realism': 1, 'chesterton': 1}, 'I`ve been accused of vulgarity. I say that`s bullshit.-Mel Brooks': {'ve': 1, 'that': 1, 'i': 2, 'of': 1, 'vulgarity': 1, 'say': 1, 'been': 1, 's': 1, 'accused': 1, 'brooks': 1, 'mel': 1, 'bullshit': 1}, 'We know too much, and are convinced of too little. Our literature is a substitute for religion, and so is our religion.-T.S. Eliot': {'and': 2, 'we': 1, 'literature': 1, 'is': 2, 'know': 1, 'are': 1, 'our': 2, 'eliot': 1, 'substitute': 1, 'a': 1, 'little': 1, 'for': 1, 'convinced': 1, 'of': 1, 'religion': 2, 's': 1, 'much': 1, 'so': 1, 'too': 2, 't': 1}, 'I had a dream the other night. I dreamed that Jimmy Carter came to me and asked why I wanted his job. I told him I didn`t want his job. I want to be President.-Ronald Reagan': {'and': 1, 'be': 1, 'jimmy': 1, 'carter': 1, 'that': 1, 'dreamed': 1, 'reagan': 1, 'ronald': 1, 'job': 2, 'his': 2, 'a': 1, 'want': 2, 'president': 1, 'wanted': 1, 'why': 1, 'me': 1, 'i': 6, 'didn': 1, 'had': 1, 'him': 1, 'to': 2, 'other': 1, 't': 1, 'night': 1, 'the': 1, 'dream': 1, 'asked': 1, 'came': 1, 'told': 1}, 'He who controls the present, controls the past. He who controls the past, controls the future.-George Orwell': {'who': 2, 'controls': 4, 'george': 1, 'past': 2, 'future': 1, 'the': 4, 'orwell': 1, 'present': 1, 'he': 2}, 'Rhis is to be asserted in general of men: that they are ungrateful, fickle, false, cowardly, covetous, and as long as you succeed, are yours entirely; they will offer you their blood, property, life, and children...when the need is far distant; but when it approaches, they will turn against you.-Nicolo Machiavelli': {'and': 2, 'false': 1, 'cowardly': 1, 'is': 2, 'covetous': 1, 'general': 1, 'as': 2, 'distant': 1, 'are': 2, 'in': 1, 'need': 1, 'asserted': 1, 'children': 1, 'to': 1, 'that': 1, 'when': 2, 'long': 1, 'their': 1, 'fickle': 1, 'you': 3, 'be': 1, 'life': 1, 'offer': 1, 'far': 1, 'men': 1, 'but': 1, 'it': 1, 'approaches': 1, 'succeed': 1, 'rhis': 1, 'they': 3, 'entirely': 1, 'ungrateful': 1, 'of': 1, 'against': 1, 'will': 2, 'turn': 1, 'machiavelli': 1, 'nicolo': 1, 'the': 1, 'property': 1, 'yours': 1, 'blood': 1}, 'My mind is my own church.-Thomas Paine': {'paine': 1, 'thomas': 1, 'own': 1, 'church': 1, 'my': 2, 'is': 1, 'mind': 1}, 'The invisible and the non-existent look very much alike.-Delos McKown': {'and': 1, 'non': 1, 'mckown': 1, 'look': 1, 'very': 1, 'delos': 1, 'much': 1, 'alike': 1, 'existent': 1, 'the': 2, 'invisible': 1}, 'You must be the change you wish to see in the world.-Mahatma Gandhi': {'be': 1, 'wish': 1, 'to': 1, 'see': 1, 'mahatma': 1, 'gandhi': 1, 'in': 1, 'world': 1, 'you': 2, 'the': 2, 'change': 1, 'must': 1}, 'The biggest bore is the person who is bored by everyone and everything.-Frank Tyger': {'and': 1, 'tyger': 1, 'everyone': 1, 'bore': 1, 'person': 1, 'frank': 1, 'is': 2, 'who': 1, 'everything': 1, 'biggest': 1, 'the': 2, 'bored': 1, 'by': 1}, 'Any reviewer who expresses rage and loathing for a novel is preposterous. He or she is like a person who has put on full armor and attacked a hot fudge sundae.-Kurt Vonnegut': {'and': 2, 'full': 1, 'attacked': 1, 'is': 2, 'who': 2, 'preposterous': 1, 'put': 1, 'reviewer': 1, 'loathing': 1, 'any': 1, 'he': 1, 'a': 3, 'on': 1, 'novel': 1, 'like': 1, 'for': 1, 'rage': 1, 'armor': 1, 'sundae': 1, 'person': 1, 'hot': 1, 'she': 1, 'vonnegut': 1, 'expresses': 1, 'kurt': 1, 'has': 1, 'fudge': 1, 'or': 1}, 'Are you entitled to the fruits of your labor or does government have some presumptive right to spend and spend and spend?-Ronald Reagan': {'and': 2, 'the': 1, 'right': 1, 'government': 1, 'some': 1, 'reagan': 1, 'ronald': 1, 'are': 1, 'have': 1, 'spend': 3, 'your': 1, 'to': 2, 'of': 1, 'labor': 1, 'presumptive': 1, 'does': 1, 'fruits': 1, 'you': 1, 'or': 1, 'entitled': 1}, 'Parents are not interested in justice, they`re interested in peace and quiet.-Bill Cosby': {'and': 1, 'peace': 1, 'justice': 1, 'bill': 1, 'quiet': 1, 're': 1, 'interested': 2, 'parents': 1, 'are': 1, 'they': 1, 'in': 2, 'not': 1, 'cosby': 1}, 'No distance of place or lapse of time can lessen the friendship of those who are thoroughly persuaded of each other`s worth.-Robert Southey': {'lapse': 1, 'southey': 1, 'persuaded': 1, 'of': 4, 'who': 1, 'each': 1, 'are': 1, 'those': 1, 'distance': 1, 'no': 1, 'thoroughly': 1, 'robert': 1, 'lessen': 1, 'or': 1, 's': 1, 'other': 1, 'place': 1, 'can': 1, 'time': 1, 'the': 1, 'friendship': 1, 'worth': 1}, 'If the United Nations once admits that international disputes can be settled by using force, then we will have destroyed the foundation of the organization and our best hope of establishing a world order.-Dwight Eisenhower': {'and': 1, 'force': 1, 'then': 1, 'have': 1, 'using': 1, 'our': 1, 'nations': 1, 'best': 1, 'if': 1, 'united': 1, 'by': 1, 'destroyed': 1, 'international': 1, 'order': 1, 'hope': 1, 'foundation': 1, 'we': 1, 'that': 1, 'admits': 1, 'disputes': 1, 'world': 1, 'be': 1, 'eisenhower': 1, 'a': 1, 'of': 2, 'establishing': 1, 'will': 1, 'can': 1, 'organization': 1, 'the': 3, 'settled': 1, 'dwight': 1, 'once': 1}, 'To be a philosopher is not merely to have subtle thoughts; but so to love wisdom as to live according to its dictates.-Henry Thoreau': {'be': 1, 'love': 1, 'is': 1, 'dictates': 1, 'but': 1, 'wisdom': 1, 'as': 1, 'thoreau': 1, 'have': 1, 'not': 1, 'subtle': 1, 'its': 1, 'thoughts': 1, 'a': 1, 'according': 1, 'philosopher': 1, 'to': 5, 'live': 1, 'so': 1, 'henry': 1, 'merely': 1}, 'I didn`t come to Washington to be loved and I haven`t been disappointed.-Philip L. Gramm': {'and': 1, 'be': 1, 'loved': 1, 'i': 2, 'come': 1, 'didn': 1, 'washington': 1, 'l': 1, 'been': 1, 'to': 2, 't': 2, 'philip': 1, 'gramm': 1, 'disappointed': 1, 'haven': 1}, 'I have gathered a posie of other men\x92s flowers, and nothing but the thread that binds them is mine own.-John Bartlett': {'and': 1, 'them': 1, 'own': 1, 'that': 1, 'is': 1, 'men': 1, 'mine': 1, 'but': 1, 'nothing': 1, 'have': 1, 'bartlett': 1, 'flowers': 1, 'a': 1, 'thread': 1, 'i': 1, 'of': 1, 'binds': 1, 's': 1, 'other': 1, 'posie': 1, 'the': 1, 'john': 1, 'gathered': 1}, 'Marriage is our last, best chance to grow up.-Joseph Barth': {'last': 1, 'is': 1, 'up': 1, 'barth': 1, 'to': 1, 'chance': 1, 'joseph': 1, 'marriage': 1, 'our': 1, 'grow': 1, 'best': 1}, 'If we do not help a man in trouble, it is as if we caused the trouble.-Nachman of Bratslav': {'do': 1, 'we': 2, 'help': 1, 'caused': 1, 'is': 1, 'it': 1, 'as': 1, 'in': 1, 'not': 1, 'trouble': 2, 'man': 1, 'a': 1, 'of': 1, 'bratslav': 1, 'nachman': 1, 'the': 1, 'if': 2}, 'In framing a government which is to be administered by men over men the great difficulty lies in this: You must first enable the government to control the governed, and in the next place, oblige it to control itself.-Alexander Hamilton': {'control': 2, 'and': 1, 'enable': 1, 'be': 1, 'oblige': 1, 'the': 4, 'over': 1, 'men': 2, 'it': 1, 'lies': 1, 'itself': 1, 'hamilton': 1, 'framing': 1, 'in': 3, 'by': 1, 'alexander': 1, 'a': 1, 'great': 1, 'difficulty': 1, 'this': 1, 'administered': 1, 'government': 2, 'governed': 1, 'next': 1, 'to': 3, 'place': 1, 'which': 1, 'you': 1, 'must': 1, 'is': 1, 'first': 1}, 'Let us have faith that right makes might, and in that faith, let us, to the end, dare to do our duty as we understand it.-Abraham Lincoln': {'and': 1, 'duty': 1, 'we': 1, 'right': 1, 'do': 1, 'it': 1, 'as': 1, 'understand': 1, 'have': 1, 'in': 1, 'our': 1, 'dare': 1, 'faith': 2, 'lincoln': 1, 'end': 1, 'makes': 1, 'that': 2, 'us': 2, 'to': 2, 'let': 2, 'the': 1, 'abraham': 1, 'might': 1}, 'The Democrats seem to be basically nicer people, but they have demonstrated time and again that they have the management skills of celery.-Dave Barry': {'and': 1, 'be': 1, 'they': 2, 'nicer': 1, 'people': 1, 'time': 1, 'but': 1, 'dave': 1, 'democrats': 1, 'have': 2, 'seem': 1, 'again': 1, 'management': 1, 'skills': 1, 'barry': 1, 'that': 1, 'celery': 1, 'to': 1, 'of': 1, 'the': 2, 'demonstrated': 1, 'basically': 1}, 'I`ve worked for four presidents and watched two others up close, and I know that there`s no such thing as a routine day in the Oval Office.-Dick Cheney': {'and': 2, 'such': 1, 'there': 1, 've': 1, 'office': 1, 'that': 1, 'presidents': 1, 'others': 1, 'up': 1, 'four': 1, 'as': 1, 'know': 1, 'in': 1, 'oval': 1, 'watched': 1, 'worked': 1, 'day': 1, 'close': 1, 'a': 1, 'for': 1, 'no': 1, 'i': 2, 'dick': 1, 'cheney': 1, 'two': 1, 'thing': 1, 's': 1, 'routine': 1, 'the': 1}, 'Sex is emotion in motion.-Mae West': {'emotion': 1, 'motion': 1, 'mae': 1, 'in': 1, 'west': 1, 'is': 1, 'sex': 1}, 'A right delayed is a right denied.-Martin Luther King Jr.': {'a': 2, 'king': 1, 'luther': 1, 'right': 2, '': 1, 'is': 1, 'martin': 1, 'delayed': 1, 'jr': 1, 'denied': 1}, 'The direction in which education starts a man will determine his future life.-Plato': {'a': 1, 'direction': 1, 'his': 1, 'which': 1, 'starts': 1, 'plato': 1, 'life': 1, 'will': 1, 'future': 1, 'determine': 1, 'in': 1, 'the': 1, 'education': 1, 'man': 1}, 'We seem to be going through a period of nostalgia, and everyone seems to think yesterday was better than today. I don`t think it was, and I would advise you not to wait ten years before admitting today was great. If you`re hung up on nostalgia, pretend today is yesterday and just go out and have one hell of a time.-Art Buchwald': {'and': 4, 'everyone': 1, 'art': 1, 'ten': 1, 'is': 1, 'period': 1, 'years': 1, 'through': 1, 'have': 1, 'go': 1, 'hell': 1, 'seem': 1, 'buchwald': 1, 'before': 1, 'just': 1, 'would': 1, 'to': 3, 'seems': 1, 'nostalgia': 2, 'better': 1, 're': 1, 'going': 1, 'advise': 1, 'if': 1, 'was': 3, 'today': 3, 'be': 1, 'we': 1, 'yesterday': 2, 'admitting': 1, 'it': 1, 'not': 1, 'one': 1, 'than': 1, 'wait': 1, 'a': 2, 'on': 1, 'great': 1, 'don': 1, 'i': 2, 'of': 2, 'pretend': 1, 'up': 1, 'think': 2, 't': 1, 'time': 1, 'hung': 1, 'out': 1, 'you': 2}, 'History doesn`t repeat itself, but it does rhyme.-Mark Twain': {'repeat': 1, 'rhyme': 1, 'it': 1, 'doesn': 1, 'mark': 1, 'twain': 1, 'itself': 1, 'does': 1, 'but': 1, 'history': 1, 't': 1}, 'True patriotism hates injustice in its own land more than anywhere else.-Clarence Darrow': {'own': 1, 'patriotism': 1, 'clarence': 1, 'darrow': 1, 'else': 1, 'its': 1, 'anywhere': 1, 'injustice': 1, 'in': 1, 'more': 1, 'true': 1, 'than': 1, 'hates': 1, 'land': 1}, 'Peace is its own reward.-Mahatma Gandhi': {'own': 1, 'mahatma': 1, 'gandhi': 1, 'is': 1, 'peace': 1, 'its': 1, 'reward': 1}, 'The fool doth think he is wise, but the wise man knows himself to be a fool.-William Shakespeare': {'fool': 2, 'be': 1, 'himself': 1, 'knows': 1, 'is': 1, 'but': 1, 'william': 1, 'doth': 1, 'man': 1, 'a': 1, 'wise': 2, 'to': 1, 'shakespeare': 1, 'the': 2, 'he': 1, 'think': 1}, 'By a curious confusion, many modern critics have passed from the proposition that a masterpiece may be unpopular to the other proposition that unless it is unpopular it cannot be a masterpiece.-GK Chesterton': {'be': 2, 'unless': 1, 'that': 2, 'may': 1, 'confusion': 1, 'is': 1, 'modern': 1, 'it': 2, 'proposition': 2, 'have': 1, 'curious': 1, 'gk': 1, 'by': 1, 'a': 3, 'unpopular': 2, 'cannot': 1, 'from': 1, 'masterpiece': 2, 'many': 1, 'to': 1, 'other': 1, 'passed': 1, 'critics': 1, 'the': 2, 'chesterton': 1}, 'It is only by doing things others have not that one can advance.-George Patton': {'advance': 1, 'by': 1, 'that': 1, 'doing': 1, 'things': 1, 'is': 1, 'patton': 1, 'it': 1, 'one': 1, 'only': 1, 'can': 1, 'have': 1, 'others': 1, 'not': 1, 'george': 1}, 'If people don\x92t come to the games, you can\x92t stop them.-Yogi Berra': {'them': 1, 'don': 1, 'people': 1, 'stop': 1, 'yogi': 1, 'berra': 1, 'to': 1, 'games': 1, 'can': 1, 'the': 1, 'if': 1, 'come': 1, 'you': 1, 't': 2}, 'Experience is that marvelous thing that enables you to recognize a mistake when you make it again.-Franklin Jones': {'jones': 1, 'that': 2, 'recognize': 1, 'is': 1, 'it': 1, 'marvelous': 1, 'a': 1, 'again': 1, 'thing': 1, 'make': 1, 'when': 1, 'experience': 1, 'to': 1, 'franklin': 1, 'you': 2, 'enables': 1, 'mistake': 1}, 'I dote on his very absence.-William Shakespeare': {'on': 1, 'his': 1, 'i': 1, 'william': 1, 'very': 1, 'absence': 1, 'shakespeare': 1, 'dote': 1}, 'The laws of gravity cannot be held responsible for people falling in love.-Albert Einstein': {'in': 1, 'be': 1, 'love': 1, 'for': 1, 'people': 1, 'of': 1, 'responsible': 1, 'albert': 1, 'gravity': 1, 'held': 1, 'cannot': 1, 'einstein': 1, 'the': 1, 'falling': 1, 'laws': 1}, 'Let the word go forth from this time and place, to friend and foe alike, that the torch has been passed to a new generation of Americans.-John F. Kennedy': {'and': 2, 'that': 1, 'generation': 1, 'torch': 1, 'kennedy': 1, 'americans': 1, 'alike': 1, 'go': 1, 'word': 1, 'let': 1, 'a': 1, 'john': 1, 'from': 1, 'foe': 1, 'this': 1, 'of': 1, 'f': 1, 'been': 1, 'to': 2, 'place': 1, 'passed': 1, 'time': 1, 'new': 1, 'the': 2, 'has': 1, 'forth': 1, 'friend': 1}, 'By the time we`ve made it, we`ve had it.-Malcolm Forbes': {'we': 2, 'made': 1, 've': 2, 'malcolm': 1, 'had': 1, 'it': 2, 'forbes': 1, 'time': 1, 'the': 1, 'by': 1}, 'Beauty is ever to the lonely mind a shadow fleeting; she is never plain. She is a visitor who leaves behind the gift of grief, the souvenir of pain.-Christopher Morley': {'lonely': 1, 'pain': 1, 'beauty': 1, 'visitor': 1, 'is': 3, 'who': 1, 'mind': 1, 'souvenir': 1, 'grief': 1, 'christopher': 1, 'never': 1, 'fleeting': 1, 'shadow': 1, 'a': 2, 'gift': 1, 'morley': 1, 'plain': 1, 'leaves': 1, 'to': 1, 'behind': 1, 'she': 2, 'of': 2, 'the': 3, 'ever': 1}, 'Originality is the fine art of remembering what you hear but forgetting where you heard it.-Laurence Peter': {'remembering': 1, 'art': 1, 'is': 1, 'it': 1, 'but': 1, 'heard': 1, 'hear': 1, 'peter': 1, 'fine': 1, 'you': 2, 'what': 1, 'forgetting': 1, 'of': 1, 'originality': 1, 'laurence': 1, 'the': 1, 'where': 1}, 'My main objective is to be professional but to kill him.-Mike Tyson': {'be': 1, 'mike': 1, 'is': 1, 'but': 1, 'to': 2, 'kill': 1, 'objective': 1, 'professional': 1, 'tyson': 1, 'main': 1, 'my': 1, 'him': 1}, 'Life is just one damned thing after another.-Elbert Hubbard': {'life': 1, 'hubbard': 1, 'just': 1, 'elbert': 1, 'is': 1, 'after': 1, 'one': 1, 'thing': 1, 'another': 1, 'damned': 1}, 'There cannot be true democracy unless women`s voices are heard.-Hillary Clinton': {'be': 1, 'unless': 1, 'democracy': 1, 'there': 1, 's': 1, 'voices': 1, 'heard': 1, 'hillary': 1, 'cannot': 1, 'are': 1, 'clinton': 1, 'true': 1, 'women': 1}, 'Since love grows within you, so beauty grows. For love is the beauty of the soul.-Saint Augustine': {'within': 1, 'love': 2, 'beauty': 2, 'for': 1, 'of': 1, 'is': 1, 'since': 1, 'soul': 1, 'grows': 2, 'augustine': 1, 'so': 1, 'saint': 1, 'the': 2, 'you': 1}, 'There is luxury in self-reproach. When we blame ourselves, we feel no one else has a right to blame us.-Oscar Wilde': {'we': 2, 'right': 1, 'feel': 1, 'oscar': 1, 'is': 1, 'else': 1, 'blame': 2, 'wilde': 1, 'in': 1, 'one': 1, 'reproach': 1, 'ourselves': 1, 'a': 1, 'no': 1, 'self': 1, 'there': 1, 'when': 1, 'us': 1, 'to': 1, 'luxury': 1, 'has': 1}, 'Just think of the tragedy of teaching children not to doubt.-Clarence Darrow': {'think': 1, 'clarence': 1, 'just': 1, 'of': 2, 'tragedy': 1, 'to': 1, 'doubt': 1, 'darrow': 1, 'not': 1, 'teaching': 1, 'the': 1, 'children': 1}, 'Cooking was invented in prehistoric times, when a primitive tribe had a lucky accident. The tribe had killed an animal and was going to eat it raw, when a tribe member named Woog tripped and dropped it into the fire. At first the other tribe members were angry at Woog, but then, as the aroma of burning meat filled the air, they had an idea. So they ate Woog raw.-Dave Barry': {'and': 2, 'tribe': 4, 'primitive': 1, 'members': 1, 'burning': 1, 'had': 3, 'into': 1, 'prehistoric': 1, 'named': 1, 'an': 2, 'raw': 2, 'as': 1, 'dropped': 1, 'in': 1, 'times': 1, 'tripped': 1, 'idea': 1, 'member': 1, 'barry': 1, 'angry': 1, 'cooking': 1, 'when': 2, 'eat': 1, 'woog': 3, 'to': 1, 'going': 1, 'animal': 1, 'was': 2, 'filled': 1, 'then': 1, 'fire': 1, 'lucky': 1, 'but': 1, 'it': 2, 'dave': 1, 'accident': 1, 'they': 2, 'invented': 1, 'killed': 1, 'a': 3, 'ate': 1, 'meat': 1, 'of': 1, 'air': 1, 'so': 1, 'were': 1, 'aroma': 1, 'the': 5, 'at': 2, 'other': 1, 'first': 1}, 'The best defense against usurpatory government is an assertive citizenry.-William F. Buckley': {'the': 1, 'government': 1, 'assertive': 1, 'is': 1, 'f': 1, 'against': 1, 'an': 1, 'william': 1, 'defense': 1, 'citizenry': 1, 'buckley': 1, 'usurpatory': 1, 'best': 1}, 'The older I grow the more I distrust the familiar doctrine that age brings wisdom.-Henry Mencken': {'older': 1, 'i': 2, 'familiar': 1, 'age': 1, 'that': 1, 'wisdom': 1, 'mencken': 1, 'distrust': 1, 'doctrine': 1, 'henry': 1, 'the': 3, 'grow': 1, 'brings': 1, 'more': 1}, 'For each illness that doctors cure with medicine, they provoke ten in healthy people by inoculating them with the virus that is a thousand times more powerful than any microbe: the idea that one is ill.-Marcel Proust': {'illness': 1, 'ten': 1, 'people': 1, 'is': 2, 'powerful': 1, 'idea': 1, 'marcel': 1, 'one': 1, 'cure': 1, 'in': 1, 'provoke': 1, 'any': 1, 'for': 1, 'by': 1, 'medicine': 1, 'inoculating': 1, 'more': 1, 'them': 1, 'that': 3, 'thousand': 1, 'virus': 1, 'they': 1, 'doctors': 1, 'microbe': 1, 'proust': 1, 'with': 2, 'than': 1, 'a': 1, 'healthy': 1, 'ill': 1, 'times': 1, 'each': 1, 'the': 2}, 'Under the doctrine of the separation of powers, the manner in which the president personally exercises his assigned executive powers is not subject to questioning by another branch of government.-Richard Nixon': {'his': 1, 'another': 1, 'government': 1, 'is': 1, 'executive': 1, 'questioning': 1, 'assigned': 1, 'not': 1, 'manner': 1, 'doctrine': 1, 'in': 1, 'exercises': 1, 'president': 1, 'by': 1, 'subject': 1, 'separation': 1, 'personally': 1, 'richard': 1, 'of': 3, 'to': 1, 'branch': 1, 'which': 1, 'under': 1, 'the': 4, 'powers': 2, 'nixon': 1}, 'There are some who`ve forgotten why we have a military. It`s not to promote war; it`s to be prepared for peace.-Ronald Reagan': {'be': 1, 'we': 1, 'peace': 1, 've': 1, 'reagan': 1, 'who': 1, 'some': 1, 'it': 2, 'prepared': 1, 'ronald': 1, 'are': 1, 'have': 1, 'not': 1, 'promote': 1, 'why': 1, 'a': 1, 'for': 1, 'there': 1, 'to': 2, 's': 2, 'forgotten': 1, 'military': 1, 'war': 1}, 'Is there anything more beautiful than a beautiful, beautiful flamingo, flying across in front of a beautiful sunset? And he`s carrying a beautiful rose in his beak, and also he`s carrying a very beautiful painting with his feet. And also, you`re drunk.-Jack Handey': {'beautiful': 6, 'and': 3, 'flying': 1, 'drunk': 1, 'very': 1, 'is': 1, 'beak': 1, 'feet': 1, 'his': 2, 'jack': 1, 'in': 2, 'front': 1, 'carrying': 2, 'with': 1, 'than': 1, 'he': 2, 'a': 4, 'flamingo': 1, 'anything': 1, 'also': 2, 'rose': 1, 'there': 1, 're': 1, 's': 2, 'handey': 1, 'sunset': 1, 'of': 1, 'you': 1, 'painting': 1, 'across': 1, 'more': 1}, 'It is a good idea to ``shop around`` before you settle on a doctor. Ask about the condition of his Mercedes. Ask about the competence of his mechanic. Don`t be shy! After all, you`re paying for it.-Dave Barry': {'shop': 1, 'all': 1, 'is': 1, 'it': 2, 'good': 1, 'before': 1, 'for': 1, 'doctor': 1, 'barry': 1, 'to': 1, 'you': 2, 'competence': 1, 'be': 1, 'his': 2, 'around': 1, 'after': 1, 'idea': 1, 'dave': 1, 'a': 2, 'ask': 2, 're': 1, 'condition': 1, 'paying': 1, 'on': 1, 'about': 2, 'don': 1, 'of': 2, 'settle': 1, 't': 1, 'mechanic': 1, 'shy': 1, 'mercedes': 1, 'the': 2}, 'My life has no purpose, no direction, no aim, no meaning, and yet I`m happy. I can`t figure it out. What am I doing right?-Charles Schulz': {'and': 1, 'life': 1, 'right': 1, 'figure': 1, 'doing': 1, 'charles': 1, 'am': 1, 'direction': 1, 'it': 1, 'meaning': 1, 'purpose': 1, 'yet': 1, 'out': 1, 'happy': 1, 'what': 1, 'no': 4, 'i': 3, 'm': 1, 'aim': 1, 't': 1, 'schulz': 1, 'has': 1, 'my': 1, 'can': 1}, 'We are healed from suffering only by experiencing it to the full.-Marcel Proust': {'we': 1, 'full': 1, 'from': 1, 'experiencing': 1, 'suffering': 1, 'marcel': 1, 'healed': 1, 'to': 1, 'only': 1, 'are': 1, 'it': 1, 'proust': 1, 'the': 1, 'by': 1}, 'Men marry to make an end; women to make a beginning.-Alexis Dupuy': {'a': 1, 'end': 1, 'marry': 1, 'men': 1, 'alexis': 1, 'an': 1, 'dupuy': 1, 'to': 2, 'beginning': 1, 'make': 2, 'women': 1}, 'Show me a thoroughly satisfied man and I will show you a failure.-Thomas Edison': {'me': 1, 'a': 2, 'and': 1, 'show': 2, 'i': 1, 'thoroughly': 1, 'edison': 1, 'satisfied': 1, 'will': 1, 'failure': 1, 'you': 1, 'thomas': 1, 'man': 1}, 'Government consists in nothing else but so controlling subjects that they shall neither be able to, nor have cause to do it harm.-Nicolo Machiavelli': {'do': 1, 'harm': 1, 'they': 1, 'government': 1, 'it': 1, 'but': 1, 'else': 1, 'nothing': 1, 'nicolo': 1, 'have': 1, 'in': 1, 'consists': 1, 'be': 1, 'nor': 1, 'that': 1, 'able': 1, 'so': 1, 'to': 2, 'subjects': 1, 'machiavelli': 1, 'shall': 1, 'controlling': 1, 'neither': 1, 'cause': 1}, 'Nothing gives one person so much advantage over another as to remain always cool and unruffled under all circumstances.-Thomas Jefferson': {'and': 1, 'all': 1, 'advantage': 1, 'over': 1, 'thomas': 1, 'one': 1, 'as': 1, 'another': 1, 'nothing': 1, 'jefferson': 1, 'circumstances': 1, 'person': 1, 'always': 1, 'to': 1, 'remain': 1, 'much': 1, 'so': 1, 'under': 1, 'unruffled': 1, 'cool': 1, 'gives': 1}, 'If you are resolutely determined to make a lawyer of yourself, the thing is more than half done already.-Abraham Lincoln': {'the': 1, 'already': 1, 'is': 1, 'yourself': 1, 'done': 1, 'are': 1, 'lawyer': 1, 'half': 1, 'than': 1, 'if': 1, 'a': 1, 'lincoln': 1, 'to': 1, 'of': 1, 'make': 1, 'thing': 1, 'determined': 1, 'you': 1, 'abraham': 1, 'resolutely': 1, 'more': 1}, 'Before reciting his prayers, a man should give to charity.-Nachman of Bratslav': {'a': 1, 'his': 1, 'give': 1, 'reciting': 1, 'prayers': 1, 'of': 1, 'bratslav': 1, 'should': 1, 'to': 1, 'nachman': 1, 'man': 1, 'before': 1, 'charity': 1}, 'Nature thrives on patience; man on impatience.-Paul Boese': {'on': 2, 'impatience': 1, 'nature': 1, 'patience': 1, 'paul': 1, 'boese': 1, 'thrives': 1, 'man': 1}, 'As soon as one is unhappy one becomes moral.-Marcel Proust': {'becomes': 1, 'is': 1, 'soon': 1, 'unhappy': 1, 'one': 2, 'as': 2, 'moral': 1, 'marcel': 1, 'proust': 1}, 'There are no secrets to success. It is the result of preparation, hard work, and learning from failure.-Colin Powell': {'and': 1, 'work': 1, 'is': 1, 'hard': 1, 'it': 1, 'failure': 1, 'colin': 1, 'are': 1, 'learning': 1, 'from': 1, 'success': 1, 'no': 1, 'secrets': 1, 'of': 1, 'there': 1, 'preparation': 1, 'to': 1, 'the': 1, 'powell': 1, 'result': 1}, 'Analyzing humor is like dissecting a frog. Few people are interested and the frog dies of it.-E.B. White': {'and': 1, 'dissecting': 1, 'people': 1, 'dies': 1, 'is': 1, 'it': 1, 'analyzing': 1, 'are': 1, 'e': 1, 'white': 1, 'a': 1, 'b': 1, 'humor': 1, 'like': 1, 'of': 1, 'frog': 2, 'few': 1, 'interested': 1, 'the': 1}, 'Christmas is a time when you get homesick, even when you`re home.-Carol Nelson': {'a': 1, 'even': 1, 'get': 1, 'is': 1, 'homesick': 1, 'when': 2, 'christmas': 1, 're': 1, 'nelson': 1, 'time': 1, 'home': 1, 'carol': 1, 'you': 2}, 'You cannot go on `explaining away` for ever: you will find that you have explained explanation itself away. You cannot go on `seeing through` things for ever. The whole point of seeing through something is to see something through it.-C.S. Lewis': {'seeing': 2, 'point': 1, 'lewis': 1, 'is': 1, 'explained': 1, 'it': 1, 'see': 1, 'itself': 1, 'through': 3, 'something': 2, 'have': 1, 'c': 1, 'go': 2, 'find': 1, 'on': 2, 'explaining': 1, 'for': 2, 'things': 1, 'away': 2, 'that': 1, 'the': 1, 'will': 1, 'to': 1, 's': 1, 'cannot': 2, 'whole': 1, 'of': 1, 'you': 4, 'ever': 2, 'explanation': 1}, 'We all wish to be judged by our peers, by the men `after our own heart.` Only they really know our mind and only they judge it by standards we fully acknowledge. Theirs is the praise we really covet and the blame we really dread. The little pockets of early Chrstians survived because they cared exclusively for the love of `the bretheren` and stopped their ears to the opinion of the Pagan society around them. But a circle of criminals, cranks, or perverts survives in just the same way; by becoming deaf to the opinion of the outer world, by discounting it as the chatter of outsiders who `don`t understand,` of the `conventional,` the `bourgeois,` the `Establishment,` of prigs, prudes, and humbugs.-C.S. Lewis': {'all': 1, 'own': 1, 'love': 1, 'they': 3, 'just': 1, 'lewis': 1, 'perverts': 1, 'bretheren': 1, 'to': 3, 'little': 1, 'criminals': 1, 'outer': 1, 'chrstians': 1, 'acknowledge': 1, 'exclusively': 1, 'cared': 1, 'their': 1, 'only': 2, 'judged': 1, 'way': 1, 'circle': 1, 'survives': 1, 'them': 1, 'around': 1, 'cranks': 1, 'deaf': 1, 'becoming': 1, 'peers': 1, 'but': 1, 'early': 1, 'understand': 1, 'know': 1, 'survived': 1, 'judge': 1, 'world': 1, 'chatter': 1, 'wish': 1, 'standards': 1, 'discounting': 1, 't': 1, 'praise': 1, 'of': 8, 'ears': 1, 'and': 4, 'heart': 1, 'because': 1, 'who': 1, 'is': 1, 'mind': 1, 'it': 2, 'society': 1, 'as': 1, 'in': 1, 'our': 3, 'really': 3, 'for': 1, 'same': 1, 'stopped': 1, 'establishment': 1, 'outsiders': 1, 'be': 1, 'we': 4, 'after': 1, 'men': 1, 'conventional': 1, 'blame': 1, 'prudes': 1, 'humbugs': 1, 'pagan': 1, 'by': 5, 'bourgeois': 1, 'a': 1, 'c': 1, 'don': 1, 'fully': 1, 'prigs': 1, 'theirs': 1, 'covet': 1, 's': 1, 'dread': 1, 'pockets': 1, 'opinion': 2, 'the': 15, 'or': 1}, 'No man will make a great leader who wants to do it all himself or get all the credit for doing it.-Andrew Carnegie': {'wants': 1, 'do': 1, 'all': 2, 'himself': 1, 'get': 1, 'doing': 1, 'who': 1, 'it': 2, 'carnegie': 1, 'andrew': 1, 'man': 1, 'a': 1, 'great': 1, 'for': 1, 'no': 1, 'make': 1, 'credit': 1, 'or': 1, 'will': 1, 'to': 1, 'the': 1, 'leader': 1}, 'If the primary aim of a captain were to preserve his ship, he would keep it in port forever.-Thomas Aquinas': {'preserve': 1, 'thomas': 1, 'his': 1, 'primary': 1, 'it': 1, 'aquinas': 1, 'in': 1, 'ship': 1, 'captain': 1, 'port': 1, 'he': 1, 'a': 1, 'forever': 1, 'would': 1, 'of': 1, 'keep': 1, 'aim': 1, 'to': 1, 'were': 1, 'the': 1, 'if': 1}, 'Life is anything that dies when you stomp on it.-Dave Barry': {'on': 1, 'life': 1, 'anything': 1, 'that': 1, 'dies': 1, 'is': 1, 'when': 1, 'it': 1, 'dave': 1, 'barry': 1, 'you': 1, 'stomp': 1}, 'Being president is like being a jackass in a hailstorm. There`s nothing to do but stand there and take it.-Lyndon B. Johnson': {'and': 1, 'do': 1, 'being': 2, 'is': 1, 'it': 1, 'but': 1, 'hailstorm': 1, 'lyndon': 1, 'in': 1, 'nothing': 1, 'president': 1, 'a': 2, 'b': 1, 'like': 1, 'johnson': 1, 'there': 2, 'to': 1, 's': 1, 'stand': 1, 'jackass': 1, 'take': 1}, 'There`s nothing sadder in this world than to awake Christmas morning and not be a child.-Erna Bombeck': {'and': 1, 'be': 1, 'bombeck': 1, 'in': 1, 'erna': 1, 'nothing': 1, 'awake': 1, 'child': 1, 'not': 1, 'world': 1, 'sadder': 1, 'than': 1, 'a': 1, 'this': 1, 'there': 1, 'morning': 1, 'to': 1, 's': 1, 'christmas': 1}, 'Don`t let people drive you crazy when you know it`s in walking distance.-Author Unknown': {'crazy': 1, 'people': 1, 'walking': 1, 'it': 1, 'let': 1, 'know': 1, 'in': 1, 'distance': 1, 'don': 1, 'author': 1, 'unknown': 1, 'when': 1, 'drive': 1, 's': 1, 't': 1, 'you': 2}, 'What is a wedding? Webster`s dictionary defines a wedding as `the process of removing weeds from one`s garden.`-Homer Simpson': {'homer': 1, 'garden': 1, 'dictionary': 1, 'process': 1, 'is': 1, 'wedding': 2, 'one': 1, 'as': 1, 'weeds': 1, 'defines': 1, 'a': 2, 'what': 1, 'from': 1, 'of': 1, 's': 2, 'removing': 1, 'webster': 1, 'the': 1, 'simpson': 1}, 'The first thing I do in the morning is brush my teeth and sharpen my tongue.-Dorothy Parker': {'and': 1, 'do': 1, 'parker': 1, 'is': 1, 'brush': 1, 'in': 1, 'dorothy': 1, 'sharpen': 1, 'the': 2, 'i': 1, 'morning': 1, 'thing': 1, 'teeth': 1, 'tongue': 1, 'my': 2, 'first': 1}, 'Duties are not performed for duty`s sake, but because their neglect would make the man uncomfortable. A man performs but one duty - the duty of contenting his spirit, the duty of making himself agreeable to himself.-Mark Twain': {'duty': 4, 'his': 1, 'because': 1, 'but': 2, 'one': 1, 'himself': 2, 'are': 1, 'uncomfortable': 1, 'making': 1, 'not': 1, 'spirit': 1, 'man': 2, 'a': 1, 'for': 1, 'would': 1, 'their': 1, 'sake': 1, 'of': 2, 'make': 1, 'mark': 1, 'twain': 1, 'to': 1, 's': 1, 'contenting': 1, 'performs': 1, 'agreeable': 1, 'the': 3, 'neglect': 1, 'duties': 1, 'performed': 1}, 'It ain`t over till it`s over.-Yogi Berra': {'over': 2, 'yogi': 1, 'it': 2, 'berra': 1, 'till': 1, 's': 1, 'ain': 1, 't': 1}, 'We know life is futile. A man who considers that his life is of very wonderful importance is awfully close to a padded cell.-Clarence Darrow': {'life': 2, 'his': 1, 'clarence': 1, 'that': 1, 'very': 1, 'is': 3, 'who': 1, 'we': 1, 'awfully': 1, 'padded': 1, 'know': 1, 'close': 1, 'importance': 1, 'considers': 1, 'man': 1, 'a': 2, 'darrow': 1, 'cell': 1, 'to': 1, 'wonderful': 1, 'futile': 1, 'of': 1}, 'A man who desires to get married should know either everything or nothing.-Oscar Wilde': {'a': 1, 'who': 1, 'desires': 1, 'get': 1, 'oscar': 1, 'married': 1, 'should': 1, 'to': 1, 'wilde': 1, 'either': 1, 'nothing': 1, 'everything': 1, 'man': 1, 'or': 1, 'know': 1}, 'Your children need your presence more than your presents.-Jesse Jackson': {'your': 3, 'jackson': 1, 'presence': 1, 'than': 1, 'presents': 1, 'need': 1, 'more': 1, 'children': 1, 'jesse': 1}, 'A mind that is stretched by a new experience can never go back to its old dimensions.-Oliver Wendell Holmes': {'holmes': 1, 'old': 1, 'that': 1, 'wendell': 1, 'is': 1, 'never': 1, 'mind': 1, 'back': 1, 'stretched': 1, 'go': 1, 'its': 1, 'a': 2, 'oliver': 1, 'dimensions': 1, 'experience': 1, 'by': 1, 'to': 1, 'can': 1, 'new': 1}, 'Art, like morality, consists in drawing the line somewhere.-GK Chesterton': {'art': 1, 'like': 1, 'somewhere': 1, 'drawing': 1, 'in': 1, 'consists': 1, 'line': 1, 'morality': 1, 'gk': 1, 'the': 1, 'chesterton': 1}, 'We are living in a world, where what we earn is a function of what we learn.-Bill Clinton': {'a': 2, 'living': 1, 'we': 3, 'clinton': 1, 'in': 1, 'what': 2, 'function': 1, 'of': 1, 'is': 1, 'bill': 1, 'earn': 1, 'are': 1, 'learn': 1, 'world': 1, 'where': 1}, 'In the beginning, the universe was created. This made a lot of people very angry, and has been widely regarded as a bad idea.-Douglas Adams': {'and': 1, 'lot': 1, 'people': 1, 'very': 1, 'idea': 1, 'as': 1, 'been': 1, 'in': 1, 'beginning': 1, 'a': 2, 'made': 1, 'adams': 1, 'created': 1, 'this': 1, 'universe': 1, 'angry': 1, 'douglas': 1, 'bad': 1, 'widely': 1, 'of': 1, 'the': 2, 'has': 1, 'was': 1, 'regarded': 1}, 'The greatness of our country has been based on our thinking that everyone has a right even to be wrong.-Ronald Reagan': {'be': 1, 'everyone': 1, 'that': 1, 'even': 1, 'reagan': 1, 'ronald': 1, 'wrong': 1, 'right': 1, 'our': 2, 'a': 1, 'on': 1, 'has': 2, 'based': 1, 'thinking': 1, 'of': 1, 'been': 1, 'to': 1, 'greatness': 1, 'the': 1, 'country': 1}, 'Anyone who invokes authors in discussion is not using his intelligence but his memory.-Leonardo da Vinci': {'his': 2, 'vinci': 1, 'intelligence': 1, 'is': 1, 'who': 1, 'but': 1, 'da': 1, 'authors': 1, 'not': 1, 'using': 1, 'in': 1, 'discussion': 1, 'anyone': 1, 'invokes': 1, 'memory': 1, 'leonardo': 1}, 'This will never be a civilized country until we expend more money for books than we do for chewing gum.-Elbert Hubbard': {'be': 1, 'we': 2, 'do': 1, 'money': 1, 'never': 1, 'civilized': 1, 'books': 1, 'than': 1, 'a': 1, 'expend': 1, 'hubbard': 1, 'for': 2, 'this': 1, 'country': 1, 'gum': 1, 'will': 1, 'elbert': 1, 'chewing': 1, 'until': 1, 'more': 1}, 'The truth is always a trick to those who live among lies.-Author Unknown': {'a': 1, 'among': 1, 'to': 1, 'author': 1, 'always': 1, 'is': 1, 'who': 1, 'trick': 1, 'lies': 1, 'live': 1, 'truth': 1, 'unknown': 1, 'the': 1, 'those': 1}, 'With the sleep of dreams comes nightmares.-William Shakespeare': {'nightmares': 1, 'of': 1, 'william': 1, 'sleep': 1, 'comes': 1, 'the': 1, 'with': 1, 'dreams': 1, 'shakespeare': 1}, 'I was angry with my friend I told my wrath, my wrath did end. I was angry with my foe: I told it not, my wrath did grow.-William Blake': {'it': 1, 'william': 1, 'not': 1, 'with': 2, 'grow': 1, 'blake': 1, 'end': 1, 'wrath': 3, 'i': 4, 'my': 5, 'angry': 2, 'foe': 1, 'did': 2, 'was': 2, 'friend': 1, 'told': 2}, 'PRESIDENT, n. The leading figure in a small group of men of whom \x97 and of whom only \x97 it is positively known that immense numbers of their countrymen did not want any of them for President.-Ambrose Bierce': {'and': 1, 'them': 1, 'figure': 1, 'that': 1, 'is': 1, 'men': 1, 'it': 1, 'known': 1, 'countrymen': 1, 'numbers': 1, 'want': 1, 'in': 1, 'not': 1, 'president': 2, 'any': 1, 'positively': 1, 'a': 1, 'ambrose': 1, 'group': 1, 'for': 1, 'immense': 1, 'did': 1, 'leading': 1, 'whom': 2, 'n': 1, 'their': 1, 'only': 1, 'bierce': 1, 'of': 5, 'small': 1, 'the': 1}, 'I have often wondered how it is that every man loves himself more than all the rest of men, but yet sets less value on his own opinion of himself than on the opinion of others.-Marcus Aurelius': {'all': 1, 'own': 1, 'often': 1, 'less': 1, 'is': 1, 'men': 1, 'it': 1, 'rest': 1, 'his': 1, 'aurelius': 1, 'but': 1, 'have': 1, 'others': 1, 'himself': 2, 'on': 2, 'yet': 1, 'man': 1, 'marcus': 1, 'wondered': 1, 'i': 1, 'of': 3, 'that': 1, 'value': 1, 'than': 2, 'how': 1, 'loves': 1, 'sets': 1, 'every': 1, 'the': 2, 'opinion': 2, 'more': 1}, 'Music expresses that which cannot be said and on which it is impossible to be silent.-Victor Hugo': {'and': 1, 'be': 2, 'that': 1, 'is': 1, 'it': 1, 'cannot': 1, 'impossible': 1, 'victor': 1, 'on': 1, 'said': 1, 'silent': 1, 'hugo': 1, 'to': 1, 'music': 1, 'which': 2, 'expresses': 1}, 'We ascribe beauty to that which is simple; which has no superfluous parts; which exactly answers its end; which stands related to all things; which is the mean of many extremes.-Ralph Waldo Emerson': {'extremes': 1, 'all': 1, 'beauty': 1, 'that': 1, 'simple': 1, 'is': 2, 'exactly': 1, 'ascribe': 1, 'we': 1, 'related': 1, 'answers': 1, 'its': 1, 'end': 1, 'stands': 1, 'waldo': 1, 'no': 1, 'things': 1, 'many': 1, 'ralph': 1, 'to': 2, 'emerson': 1, 'parts': 1, 'which': 5, 'of': 1, 'the': 1, 'has': 1, 'superfluous': 1, 'mean': 1}, 'I have never started a poem yet whose end I knew. Writing a poem is discovering.-Robert Frost': {'a': 2, 'poem': 2, 'frost': 1, 'end': 1, 'have': 1, 'whose': 1, 'i': 2, 'is': 1, 'knew': 1, 'writing': 1, 'started': 1, 'never': 1, 'discovering': 1, 'yet': 1, 'robert': 1}, 'You don`t take a photograph, you make it.-Ansel Adams': {'a': 1, 'photograph': 1, 'don': 1, 'adams': 1, 'make': 1, 'it': 1, 't': 1, 'take': 1, 'you': 2, 'ansel': 1}, 'When nothing seems to help, I go and look at a stonecutter hammering away at his rock perhaps a hundred times without as much as a crack showing in it. Yet at the hundred and first blow it will split in two, and I know it was not that blow that did it, but all that had gone before.-Jacob August Riis': {'and': 3, 'gone': 1, 'all': 1, 'help': 1, 'when': 1, 'it': 4, 'nothing': 1, 'as': 2, 'at': 3, 'in': 2, 'go': 1, 'yet': 1, 'before': 1, 'blow': 2, 'perhaps': 1, 'away': 1, 'seems': 1, 'two': 1, 'to': 1, 'much': 1, 'split': 1, 'crack': 1, 'hundred': 2, 'was': 1, 'hammering': 1, 'his': 1, 'august': 1, 'that': 3, 'showing': 1, 'riis': 1, 'but': 1, 'know': 1, 'not': 1, 'had': 1, 'a': 3, 'jacob': 1, 'look': 1, 'i': 2, 'stonecutter': 1, 'times': 1, 'will': 1, 'did': 1, 'without': 1, 'rock': 1, 'the': 1, 'first': 1}, 'In life, as in art, the beautiful moves in curves.-Edward Bulwer-Lytton': {'beautiful': 1, 'lytton': 1, 'life': 1, 'bulwer': 1, 'art': 1, 'curves': 1, 'as': 1, 'edward': 1, 'in': 3, 'the': 1, 'moves': 1}, 'A Native American elder once described his own inner struggles in this manner: Inside of me there are two dogs. One of the dogs is mean and evil. The other dog is good. The mean dog fights the good dog all the time. When asked which dog wins, he reflected.-George Bernard Shaw': {'and': 1, 'all': 1, 'own': 1, 'is': 2, 'fights': 1, 'reflected': 1, 'one': 1, 'elder': 1, 'his': 1, 'manner': 1, 'in': 1, 'george': 1, 'native': 1, 'are': 1, 'described': 1, 'shaw': 1, 'there': 1, 'when': 1, 'struggles': 1, 'bernard': 1, 'other': 1, 'inner': 1, 'which': 1, 'dogs': 2, 'a': 1, 'good': 2, 'time': 1, 'evil': 1, 'two': 1, 'he': 1, 'me': 1, 'this': 1, 'wins': 1, 'inside': 1, 'dog': 4, 'american': 1, 'of': 2, 'the': 5, 'once': 1, 'asked': 1, 'mean': 2}, 'Must not all things at the last be swallowed up in death?-Plato': {'be': 1, 'all': 1, 'death': 1, 'last': 1, 'things': 1, 'plato': 1, 'up': 1, 'at': 1, 'in': 1, 'not': 1, 'the': 1, 'swallowed': 1, 'must': 1}, 'There are perhaps no days of our childhood we lived so fully as those we spent with a favorite book.-Marcel Proust': {'we': 2, 'lived': 1, 'marcel': 1, 'spent': 1, 'as': 1, 'are': 1, 'our': 1, 'proust': 1, 'with': 1, 'those': 1, 'a': 1, 'no': 1, 'perhaps': 1, 'of': 1, 'there': 1, 'favorite': 1, 'days': 1, 'book': 1, 'so': 1, 'fully': 1, 'childhood': 1}, 'People will pay more to be entertained than educated.-Johnny Carson': {'be': 1, 'educated': 1, 'to': 1, 'johnny': 1, 'people': 1, 'pay': 1, 'entertained': 1, 'carson': 1, 'will': 1, 'than': 1, 'more': 1}, 'To grasp the full significance of life is the actor`s duty, to interpret it is his problem and to express it his dedication.-Marlon Brando': {'duty': 1, 'and': 1, 'life': 1, 'full': 1, 'brando': 1, 'significance': 1, 'is': 2, 'express': 1, 'it': 2, 'his': 2, 'dedication': 1, 'problem': 1, 'interpret': 1, 'of': 1, 'actor': 1, 'to': 3, 's': 1, 'marlon': 1, 'grasp': 1, 'the': 2}, 'Dogs look up to you. Cats look down on you. Pigs treat you like equals.-Winston Churchill': {'on': 1, 'churchill': 1, 'look': 2, 'winston': 1, 'up': 1, 'equals': 1, 'down': 1, 'to': 1, 'pigs': 1, 'treat': 1, 'cats': 1, 'you': 3, 'dogs': 1, 'like': 1}, 'To assert that the earth revolves around the sun is as erroneous as to claim that Jesus was not born of a virgin.-Cardinal Bellarmine': {'claim': 1, 'erroneous': 1, 'around': 1, 'that': 2, 'is': 1, 'jesus': 1, 'assert': 1, 'born': 1, 'as': 2, 'bellarmine': 1, 'not': 1, 'earth': 1, 'a': 1, 'virgin': 1, 'sun': 1, 'revolves': 1, 'to': 2, 'cardinal': 1, 'of': 1, 'the': 2, 'was': 1}, 'When angry, count ten before you speak; if very angry, a hundred.-Thomas Jefferson': {'count': 1, 'a': 1, 'thomas': 1, 'ten': 1, 'very': 1, 'angry': 2, 'when': 1, 'speak': 1, 'jefferson': 1, 'before': 1, 'you': 1, 'hundred': 1, 'if': 1}, 'In the Orthodox spiritual tradition, the ultimate moral question we ask is the following: Is what we are doing, is what I am doing, beautiful or not?-Carolyn Gifford': {'beautiful': 1, 'spiritual': 1, 'carolyn': 1, 'orthodox': 1, 'doing': 2, 'is': 3, 'am': 1, 'we': 2, 'gifford': 1, 'not': 1, 'moral': 1, 'are': 1, 'in': 1, 'ask': 1, 'tradition': 1, 'what': 2, 'i': 1, 'question': 1, 'ultimate': 1, 'following': 1, 'the': 3, 'or': 1}, 'Reality is that which, when you stop believing in it, doesn`t go away.-Phillip K. Dick': {'that': 1, 'is': 1, 'stop': 1, 'it': 1, 'doesn': 1, 'in': 1, 'go': 1, 'phillip': 1, 'k': 1, 'dick': 1, 'when': 1, 'reality': 1, 'believing': 1, 't': 1, 'which': 1, 'you': 1, 'away': 1}, 'Religion to me has always been the wound, not the bandage.-Dennis Potter': {'me': 1, 'wound': 1, 'has': 1, 'religion': 1, 'always': 1, 'potter': 1, 'been': 1, 'to': 1, 'bandage': 1, 'not': 1, 'the': 2, 'dennis': 1}, 'The nation which forgets its defenders will be itself forgotten.-Calvin Coolidge': {'be': 1, 'coolidge': 1, 'defenders': 1, 'calvin': 1, 'nation': 1, 'will': 1, 'itself': 1, 'which': 1, 'forgotten': 1, 'the': 1, 'its': 1, 'forgets': 1}, 'Diligence is the mother of good luck.-Benjamin Franklin': {'benjamin': 1, 'good': 1, 'diligence': 1, 'of': 1, 'is': 1, 'franklin': 1, 'mother': 1, 'the': 1, 'luck': 1}, 'Simplicity is the ultimate sophistication.-Leonardo da Vinci': {'simplicity': 1, 'vinci': 1, 'is': 1, 'sophistication': 1, 'ultimate': 1, 'the': 1, 'da': 1, 'leonardo': 1}, 'Sin has many tools, but a lie is the handle which fits them all.-Edmund Burke': {'them': 1, 'handle': 1, 'is': 1, 'all': 1, 'but': 1, 'fits': 1, 'tools': 1, 'a': 1, 'lie': 1, 'many': 1, 'edmund': 1, 'which': 1, 'the': 1, 'has': 1, 'sin': 1, 'burke': 1}, 'Let us not forget that the cultivation of the earth is the most important labor of man. When tillage begins, other arts will follow. The farmers, therefore, are the founders of civilization.-Daniel Webster': {'forget': 1, 'that': 1, 'is': 1, 'most': 1, 'important': 1, 'let': 1, 'are': 1, 'follow': 1, 'not': 1, 'earth': 1, 'man': 1, 'begins': 1, 'arts': 1, 'farmers': 1, 'of': 3, 'when': 1, 'us': 1, 'labor': 1, 'will': 1, 'daniel': 1, 'cultivation': 1, 'tillage': 1, 'civilization': 1, 'founders': 1, 'webster': 1, 'the': 5, 'other': 1, 'therefore': 1}, 'It`s not how much we give but how much love we put into giving.-Mother Teresa': {'we': 2, 'love': 1, 'give': 1, 'giving': 1, 'not': 1, 'into': 1, 'teresa': 1, 'it': 1, 'but': 1, 'how': 2, 's': 1, 'much': 2, 'mother': 1, 'put': 1}, 'There are men in all ages who mean to govern well, but they mean to govern. They promise to be good masters, but they mean to be masters.-Daniel Webster': {'be': 2, 'all': 1, 'who': 1, 'men': 1, 'ages': 1, 'but': 2, 'good': 1, 'promise': 1, 'are': 1, 'they': 3, 'in': 1, 'masters': 2, 'there': 1, 'well': 1, 'to': 4, 'daniel': 1, 'webster': 1, 'govern': 2, 'mean': 3}, 'She was what we used to call a suicide blond - dyed by her own hand.-Saul Bellow': {'we': 1, 'used': 1, 'hand': 1, 'bellow': 1, 'blond': 1, 'own': 1, 'by': 1, 'a': 1, 'what': 1, 'suicide': 1, 'her': 1, 'dyed': 1, 'to': 1, 'call': 1, 'she': 1, 'was': 1, 'saul': 1}, 'I arrive at the end of this review having done my duty as a critic. I have described the movie accurately and you have a good idea what you are in for if you go to see it. Most of you will not. I cannot argue with you. Some of you will--the brave and the curious. You embody the spirit of the man who first wondered what it would taste like to eat an oyster.-Roger Ebert': {'duty': 1, 'and': 2, 'brave': 1, 'taste': 1, 'some': 1, 'idea': 1, 'an': 1, 'critic': 1, 'done': 1, 'at': 1, 'have': 2, 'in': 1, 'go': 1, 'curious': 1, 'wondered': 1, 'as': 1, 'if': 1, 'are': 1, 'what': 2, 'end': 1, 'for': 1, 'would': 1, 'movie': 1, 'review': 1, 'ebert': 1, 'spirit': 1, 'to': 2, 'you': 7, 'good': 1, 'who': 1, 'accurately': 1, 'it': 2, 'most': 1, 'cannot': 1, 'not': 1, 'described': 1, 'with': 1, 'eat': 1, 'oyster': 1, 'man': 1, 'a': 2, 'arrive': 1, 'like': 1, 'i': 3, 'of': 4, 'see': 1, 'will': 2, 'this': 1, 'roger': 1, 'embody': 1, 'the': 6, 'argue': 1, 'my': 1, 'having': 1, 'first': 1}, 'I hope that when you are my age, you will be able to say as I have been able to say: We lived in freedom. We lived lives that were a statement, not an apology.-Ronald Reagan': {'be': 1, 'we': 2, 'lived': 2, 'that': 2, 'able': 2, 'reagan': 1, 'an': 1, 'ronald': 1, 'as': 1, 'lives': 1, 'are': 1, 'have': 1, 'in': 1, 'not': 1, 'a': 1, 'apology': 1, 'i': 2, 'freedom': 1, 'age': 1, 'when': 1, 'say': 2, 'been': 1, 'will': 1, 'to': 2, 'statement': 1, 'were': 1, 'you': 2, 'my': 1, 'hope': 1}, 'Those who believe they are exclusively in the right are generally those who achieve something.-Aldous Huxley': {'right': 1, 'believe': 1, 'who': 2, 'generally': 1, 'exclusively': 1, 'those': 2, 'are': 2, 'they': 1, 'in': 1, 'the': 1, 'aldous': 1, 'huxley': 1, 'achieve': 1, 'something': 1}, 'There can be no liberty unless there is economic liberty.-Margaret Thatcher': {'be': 1, 'unless': 1, 'no': 1, 'is': 1, 'there': 2, 'liberty': 2, 'thatcher': 1, 'margaret': 1, 'economic': 1, 'can': 1}, 'Karate is a form of marital arts in which people who have had years and years of training can, using only their hands and feet, make some of the worst movies in the history of the world.-Dave Barry': {'and': 2, 'hands': 1, 'form': 1, 'people': 1, 'is': 1, 'who': 1, 'some': 1, 'training': 1, 'marital': 1, 'feet': 1, 'dave': 1, 'worst': 1, 'have': 1, 'in': 2, 'using': 1, 'years': 2, 'a': 1, 'arts': 1, 'world': 1, 'movies': 1, 'barry': 1, 'make': 1, 'had': 1, 'karate': 1, 'their': 1, 'only': 1, 'can': 1, 'which': 1, 'of': 4, 'the': 3, 'history': 1}, 'When I see a play and understand it the first time, then I know it can`t be much good.-T.S. Eliot': {'and': 1, 'be': 1, 'play': 1, 'good': 1, 'then': 1, 'it': 2, 'see': 1, 'understand': 1, 'know': 1, 'eliot': 1, 'a': 1, 'i': 2, 'when': 1, 's': 1, 'much': 1, 'can': 1, 'time': 1, 'the': 1, 'first': 1, 't': 2}, 'Too many poets delude themselves by thinking that the mind is dangerous and must be left out. Well, the mind is dangerous and must be left in.-Robert Frost': {'and': 2, 'be': 2, 'poets': 1, 'that': 1, 'is': 2, 'frost': 1, 'mind': 2, 'in': 1, 'themselves': 1, 'must': 2, 'thinking': 1, 'many': 1, 'robert': 1, 'well': 1, 'by': 1, 'too': 1, 'dangerous': 2, 'the': 2, 'out': 1, 'delude': 1, 'left': 2}, 'Thus the metric system did not really catch on in the States, unless you count the increasing popularity of the nine-millimeter bullet.-Dave Barry': {'unless': 1, 'on': 1, 'metric': 1, 'thus': 1, 'states': 1, 'catch': 1, 'dave': 1, 'in': 1, 'not': 1, 'the': 4, 'really': 1, 'count': 1, 'millimeter': 1, 'bullet': 1, 'did': 1, 'barry': 1, 'popularity': 1, 'system': 1, 'nine': 1, 'of': 1, 'you': 1, 'increasing': 1}, 'Men marry because they are tired; women because they are curious. Both are disappointed.-Oscar Wilde': {'both': 1, 'because': 2, 'tired': 1, 'oscar': 1, 'marry': 1, 'men': 1, 'wilde': 1, 'are': 3, 'they': 2, 'curious': 1, 'disappointed': 1, 'women': 1}, 'Money doesn`t talk, it swears.-Bob Dylan': {'dylan': 1, 'money': 1, 'it': 1, 'doesn': 1, 't': 1, 'swears': 1, 'bob': 1, 'talk': 1}, 'Wisdom begins at the end.-Daniel Webster': {'begins': 1, 'daniel': 1, 'end': 1, 'at': 1, 'webster': 1, 'the': 1, 'wisdom': 1}, 'If we will be quiet and ready enough, we shall find compensation in every disappointment.-Henry Thoreau': {'and': 1, 'be': 1, 'we': 2, 'shall': 1, 'enough': 1, 'every': 1, 'thoreau': 1, 'in': 1, 'ready': 1, 'find': 1, 'if': 1, 'quiet': 1, 'will': 1, 'compensation': 1, 'disappointment': 1, 'henry': 1}}

3.d


In [11]:
def reverse_postinglist(quotelist):
    """get a dictionary whose keys are the words, and the values are themselves dictionary, with the key\
    being a full quote and the value being the number of times the word appears in the full quote"""
    
    Repostlist = dict()
    for quote,wordcount in postlist.items():
        for word,count in wordcount.items():
            if word in Repostlist : # if a word is added in Repostlist, then add quote and count to the values of the Repostlist[word].
                Repostlist[word][quote]=count
            else:                   # if word is not added in Repostlist, build a Repostlist[word] first, then add quote and count to the values of Repostlist[word].
                Repostlist[word] = dict()
                Repostlist[word][quote]=count
    return Repostlist

Repostlist=reverse_postinglist(quote)
print Repostlist['we'] #test the result of a given word 'we' in Reposting-list


{'It is always thus, impelled by a state of mind which is destined not to last, that we make our irrevocable decisions.-Marcel Proust': 1, 'Failure is success if we learn from it.-Malcolm Forbes': 1, 'The hour of departure has arrived, and we go our ways - I to die, and you to live. Which is better God only knows.-Plato': 1, 'We are all worms, but I do believe I am a glow-worm.-Winston Churchill': 1, 'We`ve got to live. No matter how many skies have fallen.-D.H. Lawrence': 1, 'I almost had a pyschic girlfriend, but she left me before we met.-Steven Wright': 1, 'In the long run, we shape our lives and we shape ourselves. The process never ends until we die, and the choices that we make are ultimately our responsibility.-Eleanor Roosevelt': 4, 'We make a living by what we get, but we make a life by what we give.-Winston Churchill': 4, 'Through pride we are ever deceiving ourselves. But deep down below the surface of the average conscience a still, small voice says to us, something is out of tune.-Carl Jung': 1, 'When we`re unemployed, we`re called lazy; when the whites are unemployed it`s called a depression.-Jesse Jackson': 2, 'To defend Western Europe we have to let the Pentagon buy all these tanks and guns and things, and the Pentagon is unable to buy any object that that costs less than a condominium in Vail. If the Pentagon needs, say, fruit, it will argue that it must have fruit that can withstand the rigors of combat conditions, and it will wind up purchasing the FX-700 Seedless Tactical Grape, which will cost $160,000 per bunch, and will have an 83 percent failure rate.-Dave Barry': 1, 'Experience proves this, or that, or nothing, according to the preconceptions we bring to it.-C.S. Lewis': 1, 'We need not just a new generation of leadership but a new gender of leadership.-Bill Clinton': 1, 'How we spend our days is, of course, how we spend our lives.-Annie Dillard': 2, 'Intoxicated with unbroken success, we have become too self-sufficient to feel the necessity of redeeming and preserving grace, too proud to pray to the God that made us.-Abraham Lincoln': 1, 'It is only our bad temper that we put down to being tired or worried or hungry; we put our good temper down to ourselves.-C.S. Lewis': 2, 'The cost of freedom is always high, but Americans have always paid it. And one path we shall never choose, and that is the path of surrender, or submission.-John F. Kennedy': 1, 'Without computers, the government would be unable to function at the level of effectiveness and efficiency that we have come to expect.  This is because the primary function of the government is -- and here I am quoting directly from the U.S. Constitution -- `to spew out paper.`-Dave Barry': 1, 'What we are today comes from our thoughts of yesterday and our present thoughts build our life tomorrow. Our life is the creation of our mind.-Siddhartha Buddha': 1, 'What is it that makes a complete stranger dive into an icy river to save a solid-gold baby? Maybe we`ll never know.-Jack Handey': 1, 'Parting is all we know of heaven and all we need to know of hell.-Emily Dickinson': 2, 'Every difference of opinion is not a difference of principle. We have called by different names brethren of the same principle.-Thomas Jefferson': 1, 'If we do not help a man in trouble, it is as if we caused the trouble.-Nachman of Bratslav': 2, 'There is hope for the future because God has a sense of humor and we are funny to God.-Bill Cosby': 1, 'That is the true season of love, when we believe that we alone can love, that no one could ever have loved so before us, and that no one will love in the same way after us.-Johann Wolfgang von Goethe': 2, 'If there is any principle of the Constitution that more imperatively calls for attachment than any other it is the principle of free thought, not free thought for those who agree with us but freedom for the thought that we hate.-Oliver Wendell Holmes': 1, 'We do survive every moment, after all, except the last one.-John Updike': 1, 'On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does.-Will Rogers': 1, 'When we got into office, the thing that surprised me the most was that things were as bad as we`d been saying they were.-John F. Kennedy': 2, 'In the councils of government, we must guard against the acquisition of unwarranted influence, whether sought or unsought, by the military-industrial complex.-Dwight Eisenhower': 1, 'We all want progress, but if you`re on the wrong road, progress means doing an about-turn and walking back to the right road; in that case, the man who turns back soonest is the most progressive.-C.S. Lewis': 1, 'The thing we all have to understand to put these last two years in focus, is that liberals in this country care more about whether European leaders like us than they do about whether terrorists are killing us.-Rush Limbaugh': 1, 'The significant problems we face cannot be solved at the same level of thinking we were at when we created them.-Albert Einstein': 3, 'The illegal we do immediately. The unconstitutional takes a little longer.-Henry Kissinger': 1, 'God does not give heed to the ambitiousness of our prayers, because he is always ready to give to us his light, not a visible light but an intellectual and spiritual one; but we are not always ready to receive it when we turn aside and down to other things out of a desire for temporal things.-Saint Augustine': 2, 'Life`s Tragedy is that we get old to soon and wise too late.-Benjamin Franklin': 1, 'True wisdom comes to each of us when we realize how little we understand about life, ourselves, and the world around us.-Socrates': 2, 'We turn not older with years, but newer every day.-Emily Dickinson': 1, 'When we die, our bodies are buried. When we live, our souls are buried.-Jason Mechalek': 2, 'If you have an apple and I have an apple and we exchange these apples then you and I will still each have one apple. But if you have an idea and I have an idea and we exchange these ideas, then each of us will have two ideas.-George Bernard Shaw': 2, 'One of the great attractions of patriotism -- it fulfills our worst wishes. In the person of our nation we are able, vicariously, to bully and cheat. Bully and cheat, what`s more, with a feeling that we are profoundly virtuous.-Aldous Huxley': 2, 'We have the Bill of Rights. What we need is a Bill of Responsibilities.-Bill Maher': 2, 'Some of your countrymen were unable to distinguish between their native dislike for war and the stainless patriotism of those who suffered its scars. But there has been a rethinking and now we can say to you, and say as a nation, thank you for your courage.-Ronald Reagan': 1, 'There are perhaps no days of our childhood we lived so fully as those we spent with a favorite book.-Marcel Proust': 2, 'Alexander, Caesar, Charlemagne, and myself founded empires; but what foundation did we rest the creations of our genius? Upon force. Jesus Christ founded an empire upon love; and at this hour millions of men would die for Him.-Napoleon Bonaparte': 1, 'Four-fifths of all our troubles would disappear, if we would only sit down and keep still.-Calvin Coolidge': 1, 'Be thankful we`re not getting all the government we`re paying for.-Will Rogers': 2, 'My role in society, or any artist`s or poet`s role, is to try and express what we all feel. Not to tell people how to feel. Not as a preacher, not as a leader, but as a reflection of us all.-John Lennon': 1, 'If the United Nations once admits that international disputes can be settled by using force, then we will have destroyed the foundation of the organization and our best hope of establishing a world order.-Dwight Eisenhower': 1, 'Being is desirable because it is identical with Beauty, and Beauty is loved because it is Being. We ourselves possess Beauty when we are true to our own being; ugliness is in going over to another order; knowing ourselves, we are beautiful; in self-ignorance, we are ugly.-Ambrose Bierce': 4, 'We live in an age when unnecessary things are our only necessities.-Oscar Wilde': 1, 'Let us have faith that right makes might, and in that faith, let us, to the end, dare to do our duty as we understand it.-Abraham Lincoln': 1, 'The greatest thing in this world is not so much where we are, but in what direction we are moving.-Oliver Wendell Holmes': 2, 'If we command our wealth, we shall be rich and free; if our wealth commands us, we are poor indeed.-Edmund Burke': 3, 'We should take care not to make the intellect our god; it has, of course, powerful muscles, but no personality.-Albert Einstein': 1, 'We seem to be going through a period of nostalgia, and everyone seems to think yesterday was better than today. I don`t think it was, and I would advise you not to wait ten years before admitting today was great. If you`re hung up on nostalgia, pretend today is yesterday and just go out and have one hell of a time.-Art Buchwald': 1, 'Most modern freedom is at root fear. It is not so much that we are too bold to endure rules; it is rather that we are too timid to endure responsibilities.-GK Chesterton': 2, 'I think computer viruses should count as life. I think it says something about human nature that the only form of life we have created so far is purely destructive. We`ve created life in our own image.-Stephen Hawking': 2, 'We must repsect the other fellow`s religion, but only in the sense and to the extent that we respect his theory that his wife is beautiful and his children are smart.-Henry Mencken': 2, 'By the time we`ve made it, we`ve had it.-Malcolm Forbes': 2, 'It is by the goodness of God that, in this country, we have three benefits: freedom of speech, freedom of thought, and the wisdom never to use either.-Mark Twain': 1, 'We know too much, and are convinced of too little. Our literature is a substitute for religion, and so is our religion.-T.S. Eliot': 1, 'There is luxury in self-reproach. When we blame ourselves, we feel no one else has a right to blame us.-Oscar Wilde': 2, 'Were it possible for us to wait for ourselves to come into the room, not many of us would find our hearts breaking into flower as we heard the door handle turn.-Rebecca West': 1, 'The reason we hold truth in such respect is because we have so little opportunity to get familiar with it.-Mark Twain': 2, 'We are never deceived; we deceive ourselves.-Johann Wolfgang von Goethe': 2, 'We ascribe beauty to that which is simple; which has no superfluous parts; which exactly answers its end; which stands related to all things; which is the mean of many extremes.-Ralph Waldo Emerson': 1, 'There are some who`ve forgotten why we have a military. It`s not to promote war; it`s to be prepared for peace.-Ronald Reagan': 1, 'We know life is futile. A man who considers that his life is of very wonderful importance is awfully close to a padded cell.-Clarence Darrow': 1, 'We are healed from suffering only by experiencing it to the full.-Marcel Proust': 1, 'She was what we used to call a suicide blond - dyed by her own hand.-Saul Bellow': 1, 'New knowledge is the most valuable commodity on earth. The more truth we have to work with, the richer we become.-Kurt Vonnegut': 2, 'We all wish to be judged by our peers, by the men `after our own heart.` Only they really know our mind and only they judge it by standards we fully acknowledge. Theirs is the praise we really covet and the blame we really dread. The little pockets of early Chrstians survived because they cared exclusively for the love of `the bretheren` and stopped their ears to the opinion of the Pagan society around them. But a circle of criminals, cranks, or perverts survives in just the same way; by becoming deaf to the opinion of the outer world, by discounting it as the chatter of outsiders who `don`t understand,` of the `conventional,` the `bourgeois,` the `Establishment,` of prigs, prudes, and humbugs.-C.S. Lewis': 4, 'We are what we repeatedly do. Excellence, therefore, is not an act, but a habit.-Aristotle': 2, 'There are very few monsters who warrant the fear we have of them.-Andr\xe9 Gide': 1, 'Nature is trying very hard to make us succeed, but nature does not depend on us. We are not the only experiment.-Buckminster Fuller': 1, 'To be what we are, and to become what we are capable of becoming, is the only end of life.-Robert Louis Stevenson': 2, 'We are living in a world, where what we earn is a function of what we learn.-Bill Clinton': 3, 'We have it in our power to begin the world over again.-Thomas Paine': 1, 'This will never be a civilized country until we expend more money for books than we do for chewing gum.-Elbert Hubbard': 2, 'If we have no peace, it is because we have forgotten that we belong to each other.-Mother Teresa': 3, 'I do not believe one can settle how much we ought to give. I am afraid the only safe rule is to give more than we can spare.-C.S. Lewis': 2, 'The greatest happiness of life is the conviction that we are loved, loved for ourselves, or rather, loved in spite of ourselves.-Victor Hugo': 1, 'Chicago sounds rough to the maker of verse. One comfort we have: Cincinnati sounds worse.-Oliver Wendell Holmes': 1, 'In the Orthodox spiritual tradition, the ultimate moral question we ask is the following: Is what we are doing, is what I am doing, beautiful or not?-Carolyn Gifford': 2, 'It`s not how much we give but how much love we put into giving.-Mother Teresa': 2, 'Imagination will often carry us to worlds that never were. But without it, we go nowhere.-Carl Sagan': 1, 'If we will be quiet and ready enough, we shall find compensation in every disappointment.-Henry Thoreau': 2, 'The time which we have at our disposal every day is elastic; the passions we feel expand it, those that we inspire contract it, and habit fills up what remains.-Marcel Proust': 3, 'No sooner do we depart from sense and instinct to follow reason but we are insensibly drawn into uncouth paradoxes, difficulties, and inconsistencies, which multiply and grow upon us as we advance in speculation; till at length, having wandered through many intricate mazes, we find ourselves just where we were, or, which is worse, sit down in a forlorn scepticism.-George Berkeley': 5, 'We have to make America the best place in the world to do business.-Dick Cheney': 1, 'I hope that when you are my age, you will be able to say as I have been able to say: We lived in freedom. We lived lives that were a statement, not an apology.-Ronald Reagan': 2}

3.e


In [12]:
def TF(w,q):
    """get the TF value for a given word and a given quote"""

    pl=postlist[q]
    TFvalue=pl[w]/float(max(pl.values()))  #float the max(pl.value) in order to get a float value for TFvalue
    return TFvalue

import math
def IDF(w):
    """get the IDF value for a given word"""
    
    IDFvalue=math.log((len(quote)/float(len(Repostlist[w])))) #float the len(Repostlist[w]) in order to get a float value for IDFvalue
    return IDFvalue
    
def TF_IDF(w,a):
    """get the TF_IDF value for a given word and a given quote"""
    
    return TF(w,a)*IDF(w)
     
print TF_IDF('we',quote[0]) # test the TF_IDF value for 'we' in quote[0]
print quote[0]


2.26492837356
How we spend our days is, of course, how we spend our lives.-Annie Dillard

3.f


In [13]:
def Quote_search_single(w):
    """get a dictinary whose keys are full quotes containing a given word, and whose values the TF_IDF score\
    of that word for that full quote"""
    
    if w not in Repostlist.keys():  # if the word is not in any quote, break
        print w +" doesn't apear in quotes at all"
        print "funtion ended."
        return {}
    else: 
        dict1=Repostlist[w]
        dict2=dict()
        for k in dict1.keys():
            #print k
            a = TF_IDF(w,k)
            dict2[k]= a
        return dict2

print Quote_search_single('we') # test the result for word 'we'


{'It is always thus, impelled by a state of mind which is destined not to last, that we make our irrevocable decisions.-Marcel Proust': 1.1324641867780203, 'Failure is success if we learn from it.-Malcolm Forbes': 2.2649283735560406, 'The hour of departure has arrived, and we go our ways - I to die, and you to live. Which is better God only knows.-Plato': 1.1324641867780203, 'We are all worms, but I do believe I am a glow-worm.-Winston Churchill': 1.1324641867780203, 'We`ve got to live. No matter how many skies have fallen.-D.H. Lawrence': 2.2649283735560406, 'I almost had a pyschic girlfriend, but she left me before we met.-Steven Wright': 2.2649283735560406, 'In the long run, we shape our lives and we shape ourselves. The process never ends until we die, and the choices that we make are ultimately our responsibility.-Eleanor Roosevelt': 2.2649283735560406, 'We make a living by what we get, but we make a life by what we give.-Winston Churchill': 2.2649283735560406, 'Through pride we are ever deceiving ourselves. But deep down below the surface of the average conscience a still, small voice says to us, something is out of tune.-Carl Jung': 1.1324641867780203, 'When we`re unemployed, we`re called lazy; when the whites are unemployed it`s called a depression.-Jesse Jackson': 2.2649283735560406, 'To defend Western Europe we have to let the Pentagon buy all these tanks and guns and things, and the Pentagon is unable to buy any object that that costs less than a condominium in Vail. If the Pentagon needs, say, fruit, it will argue that it must have fruit that can withstand the rigors of combat conditions, and it will wind up purchasing the FX-700 Seedless Tactical Grape, which will cost $160,000 per bunch, and will have an 83 percent failure rate.-Dave Barry': 0.45298567471120815, 'Experience proves this, or that, or nothing, according to the preconceptions we bring to it.-C.S. Lewis': 1.1324641867780203, 'We need not just a new generation of leadership but a new gender of leadership.-Bill Clinton': 1.1324641867780203, 'How we spend our days is, of course, how we spend our lives.-Annie Dillard': 2.2649283735560406, 'Intoxicated with unbroken success, we have become too self-sufficient to feel the necessity of redeeming and preserving grace, too proud to pray to the God that made us.-Abraham Lincoln': 0.7549761245186801, 'It is only our bad temper that we put down to being tired or worried or hungry; we put our good temper down to ourselves.-C.S. Lewis': 2.2649283735560406, 'The cost of freedom is always high, but Americans have always paid it. And one path we shall never choose, and that is the path of surrender, or submission.-John F. Kennedy': 1.1324641867780203, 'Without computers, the government would be unable to function at the level of effectiveness and efficiency that we have come to expect.  This is because the primary function of the government is -- and here I am quoting directly from the U.S. Constitution -- `to spew out paper.`-Dave Barry': 0.45298567471120815, 'What we are today comes from our thoughts of yesterday and our present thoughts build our life tomorrow. Our life is the creation of our mind.-Siddhartha Buddha': 0.45298567471120815, 'If we command our wealth, we shall be rich and free; if our wealth commands us, we are poor indeed.-Edmund Burke': 2.2649283735560406, 'Parting is all we know of heaven and all we need to know of hell.-Emily Dickinson': 2.2649283735560406, 'Every difference of opinion is not a difference of principle. We have called by different names brethren of the same principle.-Thomas Jefferson': 0.7549761245186801, 'If we do not help a man in trouble, it is as if we caused the trouble.-Nachman of Bratslav': 2.2649283735560406, 'There are perhaps no days of our childhood we lived so fully as those we spent with a favorite book.-Marcel Proust': 2.2649283735560406, 'Be thankful we`re not getting all the government we`re paying for.-Will Rogers': 2.2649283735560406, 'If there is any principle of the Constitution that more imperatively calls for attachment than any other it is the principle of free thought, not free thought for those who agree with us but freedom for the thought that we hate.-Oliver Wendell Holmes': 0.7549761245186801, 'We do survive every moment, after all, except the last one.-John Updike': 2.2649283735560406, 'On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does.-Will Rogers': 0.7549761245186801, 'When we got into office, the thing that surprised me the most was that things were as bad as we`d been saying they were.-John F. Kennedy': 2.2649283735560406, 'In the councils of government, we must guard against the acquisition of unwarranted influence, whether sought or unsought, by the military-industrial complex.-Dwight Eisenhower': 0.7549761245186801, 'We all want progress, but if you`re on the wrong road, progress means doing an about-turn and walking back to the right road; in that case, the man who turns back soonest is the most progressive.-C.S. Lewis': 0.5662320933890101, 'The thing we all have to understand to put these last two years in focus, is that liberals in this country care more about whether European leaders like us than they do about whether terrorists are killing us.-Rush Limbaugh': 1.1324641867780203, 'The significant problems we face cannot be solved at the same level of thinking we were at when we created them.-Albert Einstein': 2.2649283735560406, 'The illegal we do immediately. The unconstitutional takes a little longer.-Henry Kissinger': 1.1324641867780203, 'God does not give heed to the ambitiousness of our prayers, because he is always ready to give to us his light, not a visible light but an intellectual and spiritual one; but we are not always ready to receive it when we turn aside and down to other things out of a desire for temporal things.-Saint Augustine': 0.9059713494224163, 'Life`s Tragedy is that we get old to soon and wise too late.-Benjamin Franklin': 2.2649283735560406, 'True wisdom comes to each of us when we realize how little we understand about life, ourselves, and the world around us.-Socrates': 2.2649283735560406, 'We turn not older with years, but newer every day.-Emily Dickinson': 2.2649283735560406, 'When we die, our bodies are buried. When we live, our souls are buried.-Jason Mechalek': 2.2649283735560406, 'If you have an apple and I have an apple and we exchange these apples then you and I will still each have one apple. But if you have an idea and I have an idea and we exchange these ideas, then each of us will have two ideas.-George Bernard Shaw': 0.7549761245186801, 'One of the great attractions of patriotism -- it fulfills our worst wishes. In the person of our nation we are able, vicariously, to bully and cheat. Bully and cheat, what`s more, with a feeling that we are profoundly virtuous.-Aldous Huxley': 1.5099522490373603, 'We have the Bill of Rights. What we need is a Bill of Responsibilities.-Bill Maher': 1.5099522490373603, 'Some of your countrymen were unable to distinguish between their native dislike for war and the stainless patriotism of those who suffered its scars. But there has been a rethinking and now we can say to you, and say as a nation, thank you for your courage.-Ronald Reagan': 0.7549761245186801, 'There is hope for the future because God has a sense of humor and we are funny to God.-Bill Cosby': 1.1324641867780203, 'Alexander, Caesar, Charlemagne, and myself founded empires; but what foundation did we rest the creations of our genius? Upon force. Jesus Christ founded an empire upon love; and at this hour millions of men would die for Him.-Napoleon Bonaparte': 1.1324641867780203, 'Four-fifths of all our troubles would disappear, if we would only sit down and keep still.-Calvin Coolidge': 1.1324641867780203, 'That is the true season of love, when we believe that we alone can love, that no one could ever have loved so before us, and that no one will love in the same way after us.-Johann Wolfgang von Goethe': 1.1324641867780203, 'My role in society, or any artist`s or poet`s role, is to try and express what we all feel. Not to tell people how to feel. Not as a preacher, not as a leader, but as a reflection of us all.-John Lennon': 0.7549761245186801, 'If the United Nations once admits that international disputes can be settled by using force, then we will have destroyed the foundation of the organization and our best hope of establishing a world order.-Dwight Eisenhower': 0.7549761245186801, 'Being is desirable because it is identical with Beauty, and Beauty is loved because it is Being. We ourselves possess Beauty when we are true to our own being; ugliness is in going over to another order; knowing ourselves, we are beautiful; in self-ignorance, we are ugly.-Ambrose Bierce': 1.8119426988448326, 'We live in an age when unnecessary things are our only necessities.-Oscar Wilde': 2.2649283735560406, 'Let us have faith that right makes might, and in that faith, let us, to the end, dare to do our duty as we understand it.-Abraham Lincoln': 1.1324641867780203, 'The greatest thing in this world is not so much where we are, but in what direction we are moving.-Oliver Wendell Holmes': 2.2649283735560406, 'What is it that makes a complete stranger dive into an icy river to save a solid-gold baby? Maybe we`ll never know.-Jack Handey': 1.1324641867780203, 'We should take care not to make the intellect our god; it has, of course, powerful muscles, but no personality.-Albert Einstein': 2.2649283735560406, 'We seem to be going through a period of nostalgia, and everyone seems to think yesterday was better than today. I don`t think it was, and I would advise you not to wait ten years before admitting today was great. If you`re hung up on nostalgia, pretend today is yesterday and just go out and have one hell of a time.-Art Buchwald': 0.5662320933890101, 'Most modern freedom is at root fear. It is not so much that we are too bold to endure rules; it is rather that we are too timid to endure responsibilities.-GK Chesterton': 1.5099522490373603, 'We are what we repeatedly do. Excellence, therefore, is not an act, but a habit.-Aristotle': 2.2649283735560406, 'We must repsect the other fellow`s religion, but only in the sense and to the extent that we respect his theory that his wife is beautiful and his children are smart.-Henry Mencken': 1.5099522490373603, 'By the time we`ve made it, we`ve had it.-Malcolm Forbes': 2.2649283735560406, 'It is by the goodness of God that, in this country, we have three benefits: freedom of speech, freedom of thought, and the wisdom never to use either.-Mark Twain': 0.7549761245186801, 'We know too much, and are convinced of too little. Our literature is a substitute for religion, and so is our religion.-T.S. Eliot': 1.1324641867780203, 'There is luxury in self-reproach. When we blame ourselves, we feel no one else has a right to blame us.-Oscar Wilde': 2.2649283735560406, 'Were it possible for us to wait for ourselves to come into the room, not many of us would find our hearts breaking into flower as we heard the door handle turn.-Rebecca West': 1.1324641867780203, 'The reason we hold truth in such respect is because we have so little opportunity to get familiar with it.-Mark Twain': 2.2649283735560406, 'We are never deceived; we deceive ourselves.-Johann Wolfgang von Goethe': 2.2649283735560406, 'We ascribe beauty to that which is simple; which has no superfluous parts; which exactly answers its end; which stands related to all things; which is the mean of many extremes.-Ralph Waldo Emerson': 0.45298567471120815, 'There are some who`ve forgotten why we have a military. It`s not to promote war; it`s to be prepared for peace.-Ronald Reagan': 1.1324641867780203, 'We know life is futile. A man who considers that his life is of very wonderful importance is awfully close to a padded cell.-Clarence Darrow': 0.7549761245186801, 'We are healed from suffering only by experiencing it to the full.-Marcel Proust': 2.2649283735560406, 'Imagination will often carry us to worlds that never were. But without it, we go nowhere.-Carl Sagan': 2.2649283735560406, 'New knowledge is the most valuable commodity on earth. The more truth we have to work with, the richer we become.-Kurt Vonnegut': 1.5099522490373603, 'We all wish to be judged by our peers, by the men `after our own heart.` Only they really know our mind and only they judge it by standards we fully acknowledge. Theirs is the praise we really covet and the blame we really dread. The little pockets of early Chrstians survived because they cared exclusively for the love of `the bretheren` and stopped their ears to the opinion of the Pagan society around them. But a circle of criminals, cranks, or perverts survives in just the same way; by becoming deaf to the opinion of the outer world, by discounting it as the chatter of outsiders who `don`t understand,` of the `conventional,` the `bourgeois,` the `Establishment,` of prigs, prudes, and humbugs.-C.S. Lewis': 0.6039808996149442, 'I think computer viruses should count as life. I think it says something about human nature that the only form of life we have created so far is purely destructive. We`ve created life in our own image.-Stephen Hawking': 1.5099522490373603, 'There are very few monsters who warrant the fear we have of them.-Andr\xe9 Gide': 2.2649283735560406, 'Nature is trying very hard to make us succeed, but nature does not depend on us. We are not the only experiment.-Buckminster Fuller': 1.1324641867780203, 'To be what we are, and to become what we are capable of becoming, is the only end of life.-Robert Louis Stevenson': 2.2649283735560406, 'We are living in a world, where what we earn is a function of what we learn.-Bill Clinton': 2.2649283735560406, 'We have it in our power to begin the world over again.-Thomas Paine': 2.2649283735560406, 'This will never be a civilized country until we expend more money for books than we do for chewing gum.-Elbert Hubbard': 2.2649283735560406, 'If we have no peace, it is because we have forgotten that we belong to each other.-Mother Teresa': 2.2649283735560406, 'I do not believe one can settle how much we ought to give. I am afraid the only safe rule is to give more than we can spare.-C.S. Lewis': 2.2649283735560406, 'The greatest happiness of life is the conviction that we are loved, loved for ourselves, or rather, loved in spite of ourselves.-Victor Hugo': 0.7549761245186801, 'Chicago sounds rough to the maker of verse. One comfort we have: Cincinnati sounds worse.-Oliver Wendell Holmes': 1.1324641867780203, 'In the Orthodox spiritual tradition, the ultimate moral question we ask is the following: Is what we are doing, is what I am doing, beautiful or not?-Carolyn Gifford': 1.5099522490373603, 'It`s not how much we give but how much love we put into giving.-Mother Teresa': 2.2649283735560406, 'She was what we used to call a suicide blond - dyed by her own hand.-Saul Bellow': 2.2649283735560406, 'I hope that when you are my age, you will be able to say as I have been able to say: We lived in freedom. We lived lives that were a statement, not an apology.-Ronald Reagan': 2.2649283735560406, 'The time which we have at our disposal every day is elastic; the passions we feel expand it, those that we inspire contract it, and habit fills up what remains.-Marcel Proust': 2.2649283735560406, 'No sooner do we depart from sense and instinct to follow reason but we are insensibly drawn into uncouth paradoxes, difficulties, and inconsistencies, which multiply and grow upon us as we advance in speculation; till at length, having wandered through many intricate mazes, we find ourselves just where we were, or, which is worse, sit down in a forlorn scepticism.-George Berkeley': 2.2649283735560406, 'We have to make America the best place in the world to do business.-Dick Cheney': 1.1324641867780203, 'If we will be quiet and ready enough, we shall find compensation in every disappointment.-Henry Thoreau': 2.2649283735560406}

3.g


In [14]:
def Quote_search_multiple(list):
    """get a dictionary whose keys are full quotes containing words in a given word list, and whose values\
    are the sum of TF_IDF scores of all the words for that full quote"""
    dict2=dict()    
    for w in list:
        if w not in Repostlist.keys(): # if the word is not in any quote, break
            print w +" doesn't apear in quotes at all"
            print "funtion ended."
            return
        else:    
            dict1=Quote_search_single(w)
            for k,v in dict1.items():
                if k in dict2: dict2[k]=dict2[k]+v
                else:          dict2[k]=v
    return dict2

print Quote_search_multiple(['we','him']) # test code for ['we','him']


{'It is always thus, impelled by a state of mind which is destined not to last, that we make our irrevocable decisions.-Marcel Proust': 1.1324641867780203, 'Failure is success if we learn from it.-Malcolm Forbes': 2.2649283735560406, 'The hour of departure has arrived, and we go our ways - I to die, and you to live. Which is better God only knows.-Plato': 1.1324641867780203, 'We are all worms, but I do believe I am a glow-worm.-Winston Churchill': 1.1324641867780203, 'I think a good gift for the president would be a chocolate revolver. And since he`s so busy, you`d probably have to run up to him and hand it to him.-Jack Handey': 2.7191111663352467, 'We`ve got to live. No matter how many skies have fallen.-D.H. Lawrence': 2.2649283735560406, 'Let him who desires peace prepare for war.-Vegetius': 4.078666749502871, 'I almost had a pyschic girlfriend, but she left me before we met.-Steven Wright': 2.2649283735560406, 'In the long run, we shape our lives and we shape ourselves. The process never ends until we die, and the choices that we make are ultimately our responsibility.-Eleanor Roosevelt': 2.2649283735560406, 'We make a living by what we get, but we make a life by what we give.-Winston Churchill': 2.2649283735560406, 'Through pride we are ever deceiving ourselves. But deep down below the surface of the average conscience a still, small voice says to us, something is out of tune.-Carl Jung': 1.1324641867780203, 'When we`re unemployed, we`re called lazy; when the whites are unemployed it`s called a depression.-Jesse Jackson': 2.2649283735560406, 'To defend Western Europe we have to let the Pentagon buy all these tanks and guns and things, and the Pentagon is unable to buy any object that that costs less than a condominium in Vail. If the Pentagon needs, say, fruit, it will argue that it must have fruit that can withstand the rigors of combat conditions, and it will wind up purchasing the FX-700 Seedless Tactical Grape, which will cost $160,000 per bunch, and will have an 83 percent failure rate.-Dave Barry': 0.45298567471120815, 'Experience proves this, or that, or nothing, according to the preconceptions we bring to it.-C.S. Lewis': 1.1324641867780203, 'If your kid makes one of those little homemade guitars out of a cigar box and rubber bands, don`t let him just play it once or twice and then throw it away. Make him practice on it, every day, for about three hours a day. Later, he`ll thank you.-Jack Handey': 2.7191111663352467, 'We need not just a new generation of leadership but a new gender of leadership.-Bill Clinton': 1.1324641867780203, 'How we spend our days is, of course, how we spend our lives.-Annie Dillard': 2.2649283735560406, 'Intoxicated with unbroken success, we have become too self-sufficient to feel the necessity of redeeming and preserving grace, too proud to pray to the God that made us.-Abraham Lincoln': 0.7549761245186801, 'It is only our bad temper that we put down to being tired or worried or hungry; we put our good temper down to ourselves.-C.S. Lewis': 2.2649283735560406, 'The cost of freedom is always high, but Americans have always paid it. And one path we shall never choose, and that is the path of surrender, or submission.-John F. Kennedy': 1.1324641867780203, 'Without computers, the government would be unable to function at the level of effectiveness and efficiency that we have come to expect.  This is because the primary function of the government is -- and here I am quoting directly from the U.S. Constitution -- `to spew out paper.`-Dave Barry': 0.45298567471120815, 'Against criticism a man can neither protest nor defend himself; he must act in spite of it, and then it will gradually yield to him.-Johann Wolfgang von Goethe': 2.0393333747514353, 'What we are today comes from our thoughts of yesterday and our present thoughts build our life tomorrow. Our life is the creation of our mind.-Siddhartha Buddha': 0.45298567471120815, 'What is it that makes a complete stranger dive into an icy river to save a solid-gold baby? Maybe we`ll never know.-Jack Handey': 1.1324641867780203, 'Parting is all we know of heaven and all we need to know of hell.-Emily Dickinson': 2.2649283735560406, 'Every difference of opinion is not a difference of principle. We have called by different names brethren of the same principle.-Thomas Jefferson': 0.7549761245186801, 'If we do not help a man in trouble, it is as if we caused the trouble.-Nachman of Bratslav': 2.2649283735560406, 'This does not mean that the enemy is to be allowed to escape. The object is to make him believe that there is a road to safety, and thus prevent his fighting with the courage of despair. After that, you may crush him.-Sun Tzu': 2.0393333747514353, 'There is hope for the future because God has a sense of humor and we are funny to God.-Bill Cosby': 1.1324641867780203, 'That is the true season of love, when we believe that we alone can love, that no one could ever have loved so before us, and that no one will love in the same way after us.-Johann Wolfgang von Goethe': 1.1324641867780203, 'Don`t marry a man to reform him - that`s what reform schools are for.-Mae West': 2.0393333747514353, 'If there is any principle of the Constitution that more imperatively calls for attachment than any other it is the principle of free thought, not free thought for those who agree with us but freedom for the thought that we hate.-Oliver Wendell Holmes': 0.7549761245186801, 'We do survive every moment, after all, except the last one.-John Updike': 2.2649283735560406, 'On account of being a democracy and run by the people, we are the only nation in the world that has to keep a government four years, no matter what it does.-Will Rogers': 0.7549761245186801, 'When we got into office, the thing that surprised me the most was that things were as bad as we`d been saying they were.-John F. Kennedy': 2.2649283735560406, 'He who is of calm and happy nature will hardly feel the pressure of age, but to him who is of an opposite disposition youth and age are equally a burden.-Plato': 1.3595555831676234, 'In the councils of government, we must guard against the acquisition of unwarranted influence, whether sought or unsought, by the military-industrial complex.-Dwight Eisenhower': 0.7549761245186801, 'We all want progress, but if you`re on the wrong road, progress means doing an about-turn and walking back to the right road; in that case, the man who turns back soonest is the most progressive.-C.S. Lewis': 0.5662320933890101, 'The thing we all have to understand to put these last two years in focus, is that liberals in this country care more about whether European leaders like us than they do about whether terrorists are killing us.-Rush Limbaugh': 1.1324641867780203, 'The significant problems we face cannot be solved at the same level of thinking we were at when we created them.-Albert Einstein': 2.2649283735560406, 'The illegal we do immediately. The unconstitutional takes a little longer.-Henry Kissinger': 1.1324641867780203, 'God does not give heed to the ambitiousness of our prayers, because he is always ready to give to us his light, not a visible light but an intellectual and spiritual one; but we are not always ready to receive it when we turn aside and down to other things out of a desire for temporal things.-Saint Augustine': 0.9059713494224163, 'Life`s Tragedy is that we get old to soon and wise too late.-Benjamin Franklin': 2.2649283735560406, 'True wisdom comes to each of us when we realize how little we understand about life, ourselves, and the world around us.-Socrates': 2.2649283735560406, 'We turn not older with years, but newer every day.-Emily Dickinson': 2.2649283735560406, 'When we die, our bodies are buried. When we live, our souls are buried.-Jason Mechalek': 2.2649283735560406, 'If you have an apple and I have an apple and we exchange these apples then you and I will still each have one apple. But if you have an idea and I have an idea and we exchange these ideas, then each of us will have two ideas.-George Bernard Shaw': 0.7549761245186801, 'One of the great attractions of patriotism -- it fulfills our worst wishes. In the person of our nation we are able, vicariously, to bully and cheat. Bully and cheat, what`s more, with a feeling that we are profoundly virtuous.-Aldous Huxley': 1.5099522490373603, 'We have the Bill of Rights. What we need is a Bill of Responsibilities.-Bill Maher': 1.5099522490373603, 'Some of your countrymen were unable to distinguish between their native dislike for war and the stainless patriotism of those who suffered its scars. But there has been a rethinking and now we can say to you, and say as a nation, thank you for your courage.-Ronald Reagan': 0.7549761245186801, 'God help the man who won`t marry until he finds a perfect woman, and God help him still more if he finds her.-Benjamin Tillet': 2.0393333747514353, 'There are perhaps no days of our childhood we lived so fully as those we spent with a favorite book.-Marcel Proust': 2.2649283735560406, 'Alexander, Caesar, Charlemagne, and myself founded empires; but what foundation did we rest the creations of our genius? Upon force. Jesus Christ founded an empire upon love; and at this hour millions of men would die for Him.-Napoleon Bonaparte': 3.1717975615294556, 'I had a dream the other night. I dreamed that Jimmy Carter came to me and asked why I wanted his job. I told him I didn`t want his job. I want to be President.-Ronald Reagan': 0.6797777915838117, 'Four-fifths of all our troubles would disappear, if we would only sit down and keep still.-Calvin Coolidge': 1.1324641867780203, 'Be thankful we`re not getting all the government we`re paying for.-Will Rogers': 2.2649283735560406, 'My role in society, or any artist`s or poet`s role, is to try and express what we all feel. Not to tell people how to feel. Not as a preacher, not as a leader, but as a reflection of us all.-John Lennon': 0.7549761245186801, 'If the United Nations once admits that international disputes can be settled by using force, then we will have destroyed the foundation of the organization and our best hope of establishing a world order.-Dwight Eisenhower': 0.7549761245186801, 'Being is desirable because it is identical with Beauty, and Beauty is loved because it is Being. We ourselves possess Beauty when we are true to our own being; ugliness is in going over to another order; knowing ourselves, we are beautiful; in self-ignorance, we are ugly.-Ambrose Bierce': 1.8119426988448326, 'The object of teaching a child is to enable him to get along without a teacher.-Elbert Hubbard': 2.0393333747514353, 'We live in an age when unnecessary things are our only necessities.-Oscar Wilde': 2.2649283735560406, 'Thus far, the reputed idiot Bush has graduated from Yale and Harvard, made a stack of cash in the oil industry, become the first consecutive-term governor of Texas, defeated a dual-term VP for the presidency, and led his party to [November 5th`s] extraordinary triumphs. Let his opponents keep calling him stupid; if they do, within five years Bush will be King of England, the Pope, and world Formula One motor racing champion.-Tim Blair': 0.8157333499005741, 'Let us have faith that right makes might, and in that faith, let us, to the end, dare to do our duty as we understand it.-Abraham Lincoln': 1.1324641867780203, 'The greatest thing in this world is not so much where we are, but in what direction we are moving.-Oliver Wendell Holmes': 2.2649283735560406, 'If we command our wealth, we shall be rich and free; if our wealth commands us, we are poor indeed.-Edmund Burke': 2.2649283735560406, 'Imagination is a quality given a man to compensate him for what he is not, and a sense of humor was provided to console him for what he is.-Oscar Wilde': 2.7191111663352467, 'We should take care not to make the intellect our god; it has, of course, powerful muscles, but no personality.-Albert Einstein': 2.2649283735560406, 'We seem to be going through a period of nostalgia, and everyone seems to think yesterday was better than today. I don`t think it was, and I would advise you not to wait ten years before admitting today was great. If you`re hung up on nostalgia, pretend today is yesterday and just go out and have one hell of a time.-Art Buchwald': 0.5662320933890101, 'Most modern freedom is at root fear. It is not so much that we are too bold to endure rules; it is rather that we are too timid to endure responsibilities.-GK Chesterton': 1.5099522490373603, 'I think computer viruses should count as life. I think it says something about human nature that the only form of life we have created so far is purely destructive. We`ve created life in our own image.-Stephen Hawking': 1.5099522490373603, 'We must repsect the other fellow`s religion, but only in the sense and to the extent that we respect his theory that his wife is beautiful and his children are smart.-Henry Mencken': 1.5099522490373603, 'By the time we`ve made it, we`ve had it.-Malcolm Forbes': 2.2649283735560406, 'My main objective is to be professional but to kill him.-Mike Tyson': 2.0393333747514353, 'It is by the goodness of God that, in this country, we have three benefits: freedom of speech, freedom of thought, and the wisdom never to use either.-Mark Twain': 0.7549761245186801, 'We know too much, and are convinced of too little. Our literature is a substitute for religion, and so is our religion.-T.S. Eliot': 1.1324641867780203, 'There is luxury in self-reproach. When we blame ourselves, we feel no one else has a right to blame us.-Oscar Wilde': 2.2649283735560406, 'Were it possible for us to wait for ourselves to come into the room, not many of us would find our hearts breaking into flower as we heard the door handle turn.-Rebecca West': 1.1324641867780203, 'The reason we hold truth in such respect is because we have so little opportunity to get familiar with it.-Mark Twain': 2.2649283735560406, 'We are never deceived; we deceive ourselves.-Johann Wolfgang von Goethe': 2.2649283735560406, 'We ascribe beauty to that which is simple; which has no superfluous parts; which exactly answers its end; which stands related to all things; which is the mean of many extremes.-Ralph Waldo Emerson': 0.45298567471120815, 'There are some who`ve forgotten why we have a military. It`s not to promote war; it`s to be prepared for peace.-Ronald Reagan': 1.1324641867780203, 'We know life is futile. A man who considers that his life is of very wonderful importance is awfully close to a padded cell.-Clarence Darrow': 0.7549761245186801, 'We are healed from suffering only by experiencing it to the full.-Marcel Proust': 2.2649283735560406, 'She was what we used to call a suicide blond - dyed by her own hand.-Saul Bellow': 2.2649283735560406, 'New knowledge is the most valuable commodity on earth. The more truth we have to work with, the richer we become.-Kurt Vonnegut': 1.5099522490373603, 'We all wish to be judged by our peers, by the men `after our own heart.` Only they really know our mind and only they judge it by standards we fully acknowledge. Theirs is the praise we really covet and the blame we really dread. The little pockets of early Chrstians survived because they cared exclusively for the love of `the bretheren` and stopped their ears to the opinion of the Pagan society around them. But a circle of criminals, cranks, or perverts survives in just the same way; by becoming deaf to the opinion of the outer world, by discounting it as the chatter of outsiders who `don`t understand,` of the `conventional,` the `bourgeois,` the `Establishment,` of prigs, prudes, and humbugs.-C.S. Lewis': 0.6039808996149442, 'We are what we repeatedly do. Excellence, therefore, is not an act, but a habit.-Aristotle': 2.2649283735560406, 'There are very few monsters who warrant the fear we have of them.-Andr\xe9 Gide': 2.2649283735560406, 'Nature is trying very hard to make us succeed, but nature does not depend on us. We are not the only experiment.-Buckminster Fuller': 1.1324641867780203, 'To be what we are, and to become what we are capable of becoming, is the only end of life.-Robert Louis Stevenson': 2.2649283735560406, 'We are living in a world, where what we earn is a function of what we learn.-Bill Clinton': 2.2649283735560406, 'We have it in our power to begin the world over again.-Thomas Paine': 2.2649283735560406, 'This will never be a civilized country until we expend more money for books than we do for chewing gum.-Elbert Hubbard': 2.2649283735560406, 'If we have no peace, it is because we have forgotten that we belong to each other.-Mother Teresa': 2.2649283735560406, 'A powerful idea communicates some of its strength to him who challenges it.-Marcel Proust': 4.078666749502871, 'I do not believe one can settle how much we ought to give. I am afraid the only safe rule is to give more than we can spare.-C.S. Lewis': 2.2649283735560406, 'The greatest happiness of life is the conviction that we are loved, loved for ourselves, or rather, loved in spite of ourselves.-Victor Hugo': 0.7549761245186801, 'Chicago sounds rough to the maker of verse. One comfort we have: Cincinnati sounds worse.-Oliver Wendell Holmes': 1.1324641867780203, 'In the Orthodox spiritual tradition, the ultimate moral question we ask is the following: Is what we are doing, is what I am doing, beautiful or not?-Carolyn Gifford': 1.5099522490373603, 'It`s not how much we give but how much love we put into giving.-Mother Teresa': 2.2649283735560406, 'Imagination will often carry us to worlds that never were. But without it, we go nowhere.-Carl Sagan': 2.2649283735560406, 'If we will be quiet and ready enough, we shall find compensation in every disappointment.-Henry Thoreau': 2.2649283735560406, 'The time which we have at our disposal every day is elastic; the passions we feel expand it, those that we inspire contract it, and habit fills up what remains.-Marcel Proust': 2.2649283735560406, 'No sooner do we depart from sense and instinct to follow reason but we are insensibly drawn into uncouth paradoxes, difficulties, and inconsistencies, which multiply and grow upon us as we advance in speculation; till at length, having wandered through many intricate mazes, we find ourselves just where we were, or, which is worse, sit down in a forlorn scepticism.-George Berkeley': 2.2649283735560406, 'We have to make America the best place in the world to do business.-Dick Cheney': 1.1324641867780203, 'I hope that when you are my age, you will be able to say as I have been able to say: We lived in freedom. We lived lives that were a statement, not an apology.-Ronald Reagan': 2.2649283735560406}

In [ ]: