-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
quotes.db
22129 lines (22124 loc) · 726 KB
/
quotes.db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"quote": "You have brains in your head. You have feet in your shoes. You can steer yourself any direction you choose. You're on your own. And you know what you know. And YOU are the one who'll decide where to go...",
"author": "Dr. Seuss",
"category": "Motivation"
},
{
"quote": "Get busy living or get busy dying.",
"author": "Stephen King",
"category": "Motivation"
},
{
"quote": "I have absolutely no pleasure in the stimulants in which I sometimes so madly indulge. It has not been in the pursuit of pleasure that I have periled life and reputation and reason. It has been the desperate attempt to escape from torturing memories, from a sense of insupportable loneliness and a dread of some strange impending doom.",
"author": "Edgar Allen Poe",
"category": "Drinking, Addiction"
},
{
"quote":"If life were predictable it would cease to be life, and be without flavor.",
"author": "Eleanor Roosevelt"
},
{
"quote": "Always do sober what you said you'd do drunk. That will teach you to keep your mouth shut.",
"author": "Ernest Hemingway",
"category": "Drinking"
},
{
"quote": "I've gotten more out of alcohol than alcohol has taken out of me.",
"author": "Winston Churchill",
"category": "Drinking"
},
{
"quote": "People are dying. Entire ecosystems are collapsing. We are in the beginning of a mass extinction. And all you can talk about is money and fairytales of eternal economic growth. How dare you!",
"author": "Greta Thunberg"
},
{
"quote": "The Greeks created gods that were in their image; warlike but creative, wise but ferocious, loving but jealous, tender but brutal, compassionate, but vengeful.",
"author": "Stephen Fry",
"category": "Mythos: The Greek Myths Retold"
},
{
"quote": "Genius is patience.",
"author": "Isaac Newton"
},
{
"quote": "Attitude is a choice. Happiness is a choice. Optimism is a choice. Kindness is a choice. Giving is a choice. Respect is a choice. Whatever choice you make makes you. Choose wisely.",
"author": " Roy T. Bennett",
"category": "The Light in the Heart"
},
{
"quote": "Don't be pushed around by the fears in your mind. Be led by the dreams in your heart.",
"author": "Roy T. Bennett",
"category": "The Light in the Heart"
},
{
"quote": "Instead of worrying about what you cannot control, shift your energy to what you can create.",
"author": " Roy T. Bennett",
"category": "The Light in the Heart"
},
{
"quote": "If you want to be happy, do not dwell in the past, do not worry about the future, focus on living fully in the present.",
"author": " Roy T. Bennett",
"category": "The Light in the Heart"
},
{
"quote": "Take responsibility of your own happiness, never put it in other people’s hands.",
"author": " Roy T. Bennett",
"category": "The Light in the Heart"
},
{
"quote": "Everything will turn out right, the world is built on that.",
"author": "Mikhail Bulgakov",
"category": "Master and Margarita"
},
{
"quote": "If there is meaning in life at all, then there must be meaning in suffering.",
"author": "Victor Frankl",
"category": "Man's Search for Meaning"
},
{
"quote": "If I feel physically as if the top of my head were taken off, I know that is poetry.",
"author": "Emilie Dickinson"
},
{
"quote": "Man is sometimes extraordinarily, passionately, in love with suffering.",
"author": "Fyodor Dostoevsky",
"category": "Notes From Underground"
},
{ "quote": "It has to start somewhere, it has to start sometime, what better place than here? What better time than now?",
"author": "Zack de la Rocha"
},
{
"quote": "Yes I know my enemies. They're the teachers who taught me to fight me, compromise, conformity, assimilation, submission, ignorance, hypocrisy, brutality, the elite, all of which are American dreams.",
"author": "Zack de la Rocha"
},
{
"quote": "One of the great things about young people is that they do question, that they do care deeply about justice, and they they have open minds.",
"author": "Zack de la Rocha"
},
{
"quote": "Winter is Coming",
"author": "Pretty Much EveryOne",
"category": "got"
},
{
"quote": "The man who passes the sentence should swing the sword.",
"author": "Ned Stark",
"category": "got"
},
{
"quote": "The things I do for love.",
"author": "Jaime Lannister",
"category": "got"
},
{
"quote": "I have a tender spot in my heart for cripples, bastards and broken things.",
"author": "Tyrion",
"category": "got"
},
{
"quote": "When you play the game of thrones, you win or you die.",
"author": "Cersei",
"category": "got"
},
{
"quote": "I grew up with soldiers. I learned how to die a long time ago.",
"author": "Ned Stark",
"category": "got"
},
{
"quote": "Never forget what you are. The rest of the world will not. Wear it like armour, and it can never be used to hurt you.",
"author": "Tyrion",
"category": "got"
},
{
"quote": "Everyone is mine to torment.",
"author": "Joffrey",
"category": "got"
},
{
"quote": "The day will come when you think you are safe and happy, and your joy will turn to ashes in your mouth.",
"author": "Tyrion",
"category": "got"
},
{
"quote": "The night is dark and full of terrors.",
"author": "Melisandre",
"category": "got"
},
{
"quote": "You know nothing, Jon Snow.",
"author": "Ygritte",
"category": "got"
},
{
"quote": "Night gathers, and now my watch begins",
"author": "Members of Nights Watch",
"category": "got"
},
{
"quote": "A Lannister always pays his debts.",
"author": "A Lannister",
"category": "got"
},
{
"quote": "Burn them all!",
"author": "Aerys II Targaryen",
"category": "got"
},
{
"quote": "What do we say to the God of death?",
"author": "Syrio Forel",
"category": "got"
},
{
"quote": "There's no cure for being a c*nt.",
"author": "Bronn",
"category": "got"
},
{
"quote": "I've seen wet shits I like better than Walder Frey.",
"author": "Brynden Tully",
"category": "got"
},
{
"quote": "That's what I do: I drink and I know things.",
"author": "Tyrion",
"category": "got"
},
{
"quote": "A lion does not concern himself with the opinion of sheep.",
"author": "Tywin",
"category": "got"
},
{
"quote": "Chaos isn't a pit. Chaos is a ladder.",
"author": "Little Finger",
"category": "got"
},
{
"quote": "Power resides where men believe it resides. It's a trick; a shadow on the wall.",
"author": "Varys",
"category": "got"
},
{
"quote": "I understand that if any more words come pouring out your c*nt mouth, I'm gonna have to eat every f*cking chicken in this room.",
"author": "The Hound",
"category": "got"
},
{
"quote": "If you think this has a happy ending, you haven't been paying attention.",
"author": "Ramsay ",
"category": "got"
},
{
"quote": "A girl is Arya Stark of Winterfell. And I'm going home.",
"author": "Arya Stark",
"category": "got"
},
{
"quote": "Any man who must say 'I am the King' is no true King.",
"author": "Tywin",
"category": "got"
},
{
"quote": "I read it in a book.",
"author": "Samwell Tarly",
"category": "got"
},
{
"quote": "If I fall, don't bring me back.",
"author": "Jon snow",
"category": "got"
},
{
"quote": "Hold the door!",
"author": "Hodor/Wylis",
"category": "got"
},
{
"quote": "I don't plan on knitting by the fire while men fight for me.",
"author": "Lyanna Mormont",
"category": "got"
},
{
"quote": "When people ask you what happened here, tell them the North remembers. Tell them winter came for House Frey.",
"author": "Arya Stark",
"category": "got"
},
{
"quote": "Nothing f*cks you harder than time",
"author": "Ser Davos Seaworth",
"category": "got"
},
{
"quote": "There is only one war that matters. The Great War. And it is here.",
"author": "Jon snow",
"category": "got"
},
{
"quote": "The first draft is just you telling yourself the story",
"author": "Chinua Achebe"
},
{
"quote": "I can shake off everything as I write; my sorrows disappear, my courage is reborn",
"author": "Anne Frank"
},
{
"quote": "A professional writer is an amateur who didn�t quit",
"author": "Richard Bach"
},
{
"quote": "Genius is one percent inspiration and ninety-nine percent perspiration.",
"author": "Thomas Edison"
},
{
"quote": "You can observe a lot just by watching.",
"author": "Yogi Berra"
},
{
"quote": "A house divided against itself cannot stand.",
"author": "Abraham Lincoln"
},
{
"quote": "Difficulties increase the nearer we get to the goal.",
"author": "Johann Wolfgang von Goethe"
},
{
"quote": "Fate is in your hands and no one elses",
"author": "Byron Pulsifer"
},
{
"quote": "Be the chief but never the lord.",
"author": "Lao Tzu"
},
{
"quote": "Nothing happens unless first we dream.",
"author": "Carl Sandburg"
},
{
"quote": "Well begun is half done.",
"author": "Aristotle"
},
{
"quote": "Life is a learning experience, only if you learn.",
"author": "Yogi Berra"
},
{
"quote": "Self-complacency is fatal to progress.",
"author": "Margaret Sangster"
},
{
"quote": "Peace comes from within. Do not seek it without.",
"author": "Buddha"
},
{
"quote": "What you give is what you get.",
"author": "Byron Pulsifer"
},
{
"quote": "We can only learn to love by loving.",
"author": "Iris Murdoch"
},
{
"quote": "Life is change. Growth is optional. Choose wisely.",
"author": "Karen Clark"
},
{
"quote": "You'll see it when you believe it.",
"author": "Wayne Dyer"
},
{
"quote": "Today is the tomorrow we worried about yesterday.",
"author": ""
},
{
"quote": "It's easier to see the mistakes on someone else's paper.",
"author": ""
},
{
"quote": "Every man dies. Not every man really lives.",
"author": ""
},
{
"quote": "To lead people walk behind them.",
"author": "Lao Tzu"
},
{
"quote": "Having nothing, nothing can he lose.",
"author": "William Shakespeare"
},
{
"quote": "Trouble is only opportunity in work clothes.",
"author": "Henry J. Kaiser"
},
{
"quote": "A rolling stone gathers no moss.",
"author": "Publilius Syrus"
},
{
"quote": "Ideas are the beginning points of all fortunes.",
"author": "Napoleon Hill"
},
{
"quote": "Everything in life is luck.",
"author": "Donald Trump"
},
{
"quote": "Doing nothing is better than being busy doing nothing.",
"author": "Lao Tzu"
},
{
"quote": "Trust yourself. You know more than you think you do.",
"author": "Benjamin Spock"
},
{
"quote": "Study the past, if you would divine the future.",
"author": "Confucius"
},
{
"quote": "The day is already blessed, find peace within it.",
"author": ""
},
{
"quote": "From error to error one discovers the entire truth.",
"author": "Sigmund Freud"
},
{
"quote": "Well done is better than well said.",
"author": "Benjamin Franklin"
},
{
"quote": "Bite off more than you can chew, then chew it.",
"author": "Ella Williams"
},
{
"quote": "Work out your own salvation. Do not depend on others.",
"author": "Buddha"
},
{
"quote": "One today is worth two tomorrows.",
"author": "Benjamin Franklin"
},
{
"quote": "Once you choose hope, anythings possible.",
"author": "Christopher Reeve"
},
{
"quote": "God always takes the simplest way.",
"author": "Albert Einstein"
},
{
"quote": "One fails forward toward success.",
"author": "Charles Kettering"
},
{
"quote": "From small beginnings come great things.",
"author": ""
},
{
"quote": "Learning is a treasure that will follow its owner everywhere",
"author": "Chinese proverb"
},
{
"quote": "Be as you wish to seem.",
"author": "Socrates"
},
{
"quote": "The world is always in movement.",
"author": "V. Naipaul"
},
{
"quote": "Never mistake activity for achievement.",
"author": "John Wooden"
},
{
"quote": "What worries you masters you.",
"author": "Haddon Robinson"
},
{
"quote": "One faces the future with ones past.",
"author": "Pearl Buck"
},
{
"quote": "Goals are the fuel in the furnace of achievement.",
"author": "Brian Tracy"
},
{
"quote": "Who sows virtue reaps honour.",
"author": "Leonardo da Vinci"
},
{
"quote": "Be kind whenever possible. It is always possible.",
"author": "Dalai Lama"
},
{
"quote": "Talk doesn't cook rice.",
"author": "Chinese proverb"
},
{
"quote": "He is able who thinks he is able.",
"author": "Buddha"
},
{
"quote": "Be as you wish to seem.",
"author": "Socrates"
},
{
"quote": "A goal without a plan is just a wish.",
"author": "Larry Elder"
},
{
"quote": "To succeed, we must first believe that we can.",
"author": "Michael Korda"
},
{
"quote": "Learn from yesterday, live for today, hope for tomorrow.",
"author": "Albert Einstein"
},
{
"quote":"My favorite things in life don't cost any money. It's really clear that the most precious resource we all have is time.",
"author":"Steve Jobs"
},
{
"quote": "A weed is no more than a flower in disguise.",
"author": "James Lowell"
},
{
"quote": "Do, or do not. There is no try.",
"author": "Yoda"
},
{
"quote": "All serious daring starts from within.",
"author": "Harriet Beecher Stowe"
},
{
"quote": "The best teacher is experience learned from failures.",
"author": "Byron Pulsifer"
},
{
"quote": "Think how hard physics would be if particles could think.",
"author": "Murray Gell-Mann"
},
{
"quote": "Don't wait. The time will never be just right.",
"author": "Napoleon Hill"
},
{
"quote": "One fails forward toward success.",
"author": "Charles Kettering"
},
{
"quote": "Time is the wisest counsellor of all.",
"author": "Pericles"
},
{
"quote": "You give before you get.",
"author": "Napoleon Hill"
},
{
"quote": "Wisdom begins in wonder.",
"author": "Socrates"
},
{
"quote": "Without courage, wisdom bears no fruit.",
"author": "Baltasar Gracian"
},
{
"quote": "Change in all things is sweet.",
"author": "Aristotle"
},
{
"quote": "What you fear is that which requires action to overcome.",
"author": "Byron Pulsifer"
},
{
"quote": "The best teacher is experience learned from failures.",
"author": "Byron Pulsifer"
},
{
"quote": "When performance exceeds ambition, the overlap is called success.",
"author": "Cullen Hightower"
},
{
"quote": "When deeds speak, words are nothing.",
"author": "African proverb"
},
{
"quote": "Real magic in relationships means an absence of judgement of others.",
"author": "Wayne Dyer"
},
{
"quote": "When performance exceeds ambition, the overlap is called success.",
"author": "Cullen Hightower"
},
{
"quote": "I never think of the future. It comes soon enough.",
"author": "Albert Einstein"
},
{
"quote": "Skill to do comes of doing.",
"author": "Ralph Emerson"
},
{
"quote": "Wisdom is the supreme part of happiness.",
"author": "Sophocles"
},
{
"quote": "I believe that every person is born with talent.",
"author": "Maya Angelou"
},
{
"quote": "Important principles may, and must, be inflexible.",
"author": "Abraham Lincoln"
},
{
"quote": "The undertaking of a new action brings new strength.",
"author": "Richard Evans"
},
{
"quote": "I believe that every person is born with talent.",
"author": "Maya Angelou"
},
{
"quote": "The years teach much which the days never know.",
"author": "Ralph Emerson"
},
{
"quote": "Our distrust is very expensive.",
"author": "Ralph Emerson"
},
{
"quote": "All know the way; few actually walk it.",
"author": "Bodhidharma"
},
{
"quote": "Great talent finds happiness in execution.",
"author": "Johann Wolfgang von Goethe"
},
{
"quote": "Faith in oneself is the best and safest course.",
"author": "Michelangelo"
},
{
"quote": "Courage is going from failure to failure without losing enthusiasm.",
"author": "Winston Churchill"
},
{
"quote": "The two most powerful warriors are patience and time.",
"author": "Leo Tolstoy"
},
{
"quote": "Anticipate the difficult by managing the easy.",
"author": "Lao Tzu"
},
{
"quote": "Those who are free of resentful thoughts surely find peace.",
"author": "Buddha"
},
{
"quote": "Talk doesn't cook rice.",
"author": "Chinese proverb"
},
{
"quote": "A short saying often contains much wisdom.",
"author": "Sophocles"
},
{
"quote": "The day is already blessed, find peace within it.",
"author": ""
},
{
"quote": "It takes both sunshine and rain to make a rainbow.",
"author": ""
},
{
"quote": "A beautiful thing is never perfect.",
"author": ""
},
{
"quote": "Only do what your heart tells you.",
"author": "Princess Diana"
},
{
"quote": "Life is movement-we breathe, we eat, we walk, we move!",
"author": "John Pierrakos"
},
{
"quote": "No one can make you feel inferior without your consent.",
"author": "Eleanor Roosevelt"
},
{
"quote": "One fails forward toward success.",
"author": "Charles Kettering"
},
{
"quote": "Argue for your limitations, and sure enough theyre yours.",
"author": "Richard Bach"
},
{
"quote": "Luck is what happens when preparation meets opportunity.",
"author": "Seneca"
},
{
"quote": "Victory belongs to the most persevering.",
"author": "Napoleon Bonaparte"
},
{
"quote": "Once you choose hope, anythings possible.",
"author": "Christopher Reeve"
},
{
"quote": "Love all, trust a few, do wrong to none.",
"author": "William Shakespeare"
},
{
"quote": "In order to win, you must expect to win.",
"author": "Richard Bach"
},
{
"quote": "A goal is a dream with a deadline.",
"author": "Napoleon Hill"
},
{
"quote": "You can do it if you believe you can!",
"author": "Napoleon Hill"
},
{
"quote": "Set your goals high, and don't stop till you get there.",
"author": "Bo Jackson"
},
{
"quote": "Genius is one percent inspiration and ninety-nine percent perspiration.",
"author": "Thomas Edison"
},
{
"quote": "Every new day is another chance to change your life.",
"author": ""
},
{
"quote": "Smile, breathe, and go slowly.",
"author": "Thich Nhat Hanh"
},
{
"quote": "Nobody will believe in you unless you believe in yourself.",
"author": "Liberace"
},
{
"quote": "Be kind whenever possible. It is always possible.",
"author": "Dalai Lama"
},
{
"quote": "Do more than dream: work.",
"author": "William Arthur Ward"
},
{
"quote": "No man was ever wise by chance.",
"author": "Seneca"
},
{
"quote": "Some pursue happiness, others create it.",
"author": ""
},
{
"quote": "It's easier to see the mistakes on someone else's paper.",
"author": ""
},
{
"quote": "Think how hard physics would be if particles could think.",
"author": "Murray Gell-Mann"
},
{
"quote": "Well begun is half done.",
"author": "Aristotle"
},
{
"quote": "He that is giddy thinks the world turns round.",
"author": "William Shakespeare"
},
{
"quote": "Don't ruin the present with the ruined past.",
"author": "Ellen Gilchrist"
},
{
"quote": "Do something wonderful, people may imitate it.",
"author": "Albert Schweitzer"
},
{
"quote": "We do what we do because we believe.",
"author": ""
},
{
"quote": "Great talent finds happiness in execution.",
"author": "Johann Wolfgang von Goethe"
},
{
"quote": "Do one thing every day that scares you.",
"author": "Eleanor Roosevelt"
},
{
"quote": "If you cannot be silent be brilliant and thoughtful.",
"author": "Byron Pulsifer"
},
{
"quote": "Smile, breathe, and go slowly.",
"author": "Thich Nhat Hanh"
},
{
"quote": "Who looks outside, dreams; who looks inside, awakes.",
"author": "Carl Jung"
},
{
"quote": "What we think, we become.",
"author": "Buddha"
},
{
"quote": "The shortest answer is doing.",
"author": "Lord Herbert"
},
{
"quote": "All our knowledge has its origins in our perceptions.",
"author": "Leonardo da Vinci"
},
{
"quote": "He is able who thinks he is able.",
"author": "Buddha"
},
{
"quote": "The harder you fall, the higher you bounce.",
"author": ""
},
{
"quote": "Trusting our intuition often saves us from disaster.",
"author": "Anne Wilson Schaef"
},
{
"quote": "Truth is powerful and it prevails.",
"author": "Sojourner Truth"
},
{
"quote": "Talk doesn't cook rice.",
"author": "Chinese proverb"
},
{
"quote": "Light tomorrow with today!",
"author": "Elizabeth Browning"
},
{
"quote": "Silence is a fence around wisdom.",
"author": "German proverb"
},
{
"quote": "Society develops wit, but its contemplation alone forms genius.",
"author": "Madame de Stael"
},
{
"quote": "Society develops wit, but its contemplation alone forms genius.",
"author": "Madame de Stael"
},
{
"quote": "Real magic in relationships means an absence of judgement of others.",
"author": "Wayne Dyer"
},
{
"quote": "The years teach much which the days never know.",
"author": "Ralph Emerson"
},
{
"quote": "We can only learn to love by loving.",
"author": "Iris Murdoch"
},
{
"quote": "The simplest things are often the truest.",
"author": "Richard Bach"
},
{
"quote": "What you give is what you get.",
"author": "Byron Pulsifer"
},
{
"quote": "Everyone smiles in the same language.",
"author": ""
},
{
"quote": "A short saying often contains much wisdom.",
"author": "Sophocles"
},
{
"quote": "Yesterday I dared to struggle. Today I dare to win.",
"author": "Bernadette Devlin"
},
{
"quote": "Victory belongs to the most persevering.",
"author": "Napoleon Bonaparte"
},
{
"quote": "No alibi will save you from accepting the responsibility.",
"author": "Napoleon Hill"
},
{
"quote": "If you can dream it, you can do it.",
"author": "Walt Disney"
},
{
"quote": "From error to error one discovers the entire truth.",
"author": "Sigmund Freud"
},
{
"quote": "It is better to travel well than to arrive.",
"author": "Buddha"
},
{
"quote": "Life shrinks or expands in proportion to one's courage.",
"author": "Anais Nin"
},
{
"quote": "You have to believe in yourself.",
"author": "Sun Tzu"
},
{
"quote": "Our intention creates our reality.",
"author": "Wayne Dyer"
},
{
"quote": "Silence is a true friend who never betrays.",
"author": "Confucius"
},
{
"quote": "Character develops itself in the stream of life.",
"author": "Johann Wolfgang von Goethe"
},
{
"quote": "From little acorns mighty oaks do grow.",
"author": "American proverb"
},
{
"quote": "You have to believe in yourself.",
"author": "Sun Tzu"
},
{
"quote": "You can't stop the waves, but you can learn to surf.",
"author": "Jon Kabat-Zinn"
},
{
"quote": "Reality does not conform to the ideal, but confirms it.",
"author": "Gustave Flaubert"
},
{
"quote": "Speak low, if you speak love.",
"author": "William Shakespeare"
},
{
"quote": "A really great talent finds its happiness in execution.",
"author": "Johann Wolfgang von Goethe"
},
{
"quote": "Reality leaves a lot to the imagination.",
"author": "John Lennon"
},
{
"quote": "Our intention creates our reality.",
"author": "Wayne Dyer"
},
{
"quote": "Society develops wit, but its contemplation alone forms genius.",
"author": "Madame de Stael"
},
{
"quote": "The greatest remedy for anger is delay.",
"author": "Seneca"
},
{
"quote": "Growth itself contains the germ of happiness.",
"author": "Pearl Buck"
},
{
"quote": "You can do what's reasonable or you can decide what's possible.",
"author": ""
},
{
"quote": "Nothing strengthens authority so much as silence.",
"author": "Leonardo da Vinci"
},
{
"quote": "Wherever you go, go with all your heart.",
"author": "Confucius"
},
{
"quote": "The only real valuable thing is intuition.",
"author": "Albert Einstein"
},
{
"quote": "I believe that every person is born with talent.",
"author": "Maya Angelou"
},
{
"quote": "Good luck is another name for tenacity of purpose.",
"author": "Ralph Emerson"
},
{
"quote": "Rainbows apologize for angry skies.",
"author": "Sylvia Voirol"
},
{
"quote": "Friendship isn't a big thing. It's a million little things.",
"author": ""
},
{
"quote": "Time is the most valuable thing a man can spend.",
"author": "Theophrastus"
},
{
"quote": "Whatever happens, take responsibility.",
"author": "Tony Robbins"
},
{
"quote": "Experience is simply the name we give our mistakes.",
"author": "Oscar Wilde"
},
{
"quote": "I think and that is all that I am.",
"author": "Wayne Dyer"
},
{
"quote": "A good plan today is better than a perfect plan tomorrow.",
"author": ""
},
{
"quote": "Be as you wish to seem.",
"author": "Socrates"
},
{
"quote": "If the shoe doesn't fit, must we change the foot?",
"author": "Gloria Steinem"
},
{
"quote": "Each day provides its own gifts.",
"author": "Marcus Aurelius"
},
{