-
Notifications
You must be signed in to change notification settings - Fork 37
/
quotes.json
12958 lines (12958 loc) · 403 KB
/
quotes.json
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 can't stay in your corner of the Forest waiting for others to come to you. You have to go to them sometimes.",
"author": "A.A. Milne"
},
{
"quote": "One of the advantages of being disorganized is that one is always having surprising discoveries.",
"author": "A.A. Milne"
},
{
"quote": "You're braver than you believe, and stronger than you seem, and smarter than you think.",
"author": "A.A. Milne"
},
{
"quote": "Rivers know this: there is no hurry. We shall get there some day.",
"author": "A.A. Milne"
},
{
"quote": "Weeds are flowers too, once you get to know them.",
"author": "A.A. Milne"
},
{
"quote": "Whatever you are, be a good one.",
"author": "Abraham Lincoln"
},
{
"quote": "The best way to predict the future is to create it.",
"author": "Abraham Lincoln"
},
{
"quote": "Give me six hours to chop down a tree and I will spend the first four sharpening the axe.",
"author": "Abraham Lincoln"
},
{
"quote": "In the end, it's not the years in your life that count. It's the life in your years.",
"author": "Abraham Lincoln"
},
{
"quote": "That some achieve great success is proof to all that others can achieve it as well.",
"author": "Abraham Lincoln"
},
{
"quote": "Those who look for the bad in people will surely find it.",
"author": "Abraham Lincoln"
},
{
"quote": "Things may come to those who wait, but only the things left by those who hustle.",
"author": "Abraham Lincoln"
},
{
"quote": "I would rather be a little nobody, then to be an evil somebody.",
"author": "Abraham Lincoln"
},
{
"quote": "The best way to predict your future is to create it.",
"author": "Abraham Lincoln"
},
{
"quote": "Everything eaten is killed. Every meal is a sacrifice.",
"author": "Adi Da Samraj"
},
{
"quote": "Fear of death is fear of the Unknown.",
"author": "Adi Da Samraj"
},
{
"quote": "Relax. Nothing is under control.",
"author": "Adi Da Samraj"
},
{
"quote": "Fear of death is fear of surrender to Infinity. Learn to surrender, to exist at Infinity while alive, and fear of death dissolves.",
"author": "Adi Da Samraj"
},
{
"quote": "Muddy water is best cleared by leaving it alone.",
"author": "Alan Watts"
},
{
"quote": "No valid plans for the future can be made by those who have no capacity for living now.",
"author": "Alan Watts"
},
{
"quote": "There will always be suffering. But we must not suffer over the suffering.",
"author": "Alan Watts"
},
{
"quote": "Man suffers only because he takes seriously what the gods made for fun.",
"author": "Alan Watts"
},
{
"quote": "It's better to have a short life that is full of what you like doing, than a long life spent in a miserable way.",
"author": "Alan Watts"
},
{
"quote": "You are a function of what the whole universe is doing in the same way that a wave is a function of what the whole ocean is doing.",
"author": "Alan Watts"
},
{
"quote": "Just as true humor is laughter at oneself, true humanity is knowledge of oneself.",
"author": "Alan Watts"
},
{
"quote": "The meaning of life is just to be alive. It is so plain and so obvious and so simple.",
"author": "Alan Watts"
},
{
"quote": "This is the real secret of life - to be completely engaged with what you are doing in the here and now. And instead of calling it work, realize it is play.",
"author": "Alan Watts"
},
{
"quote": "To travel is to be alive, but to get somewhere is to be dead.",
"author": "Alan Watts"
},
{
"quote": "The only way to make sense out of change is to plunge into it, move with it, and join the dance.",
"author": "Alan Watts"
},
{
"quote": "Muddy water is best cleared by leaving it alone.",
"author": "Alan Watts"
},
{
"quote": "Trying to define yourself is like trying to bite your own teeth.",
"author": "Alan Watts"
},
{
"quote": "In the middle of difficulty lies opportunity.",
"author": "Albert Einstein"
},
{
"quote": "No problem can be solved from the same level of consciousness that created it.",
"author": "Albert Einstein"
},
{
"quote": "The important thing is not to stop questioning. Curiosity has its own reason for existing.",
"author": "Albert Einstein"
},
{
"quote": "If you can't explain it simply, you don't understand it well enough.",
"author": "Albert Einstein"
},
{
"quote": "Life is like riding a bicycle. To keep your balance you must keep moving.",
"author": "Albert Einstein"
},
{
"quote": "He who can no longer pause to wonder and stand rapt in awe, is as good as dead; his eyes are closed. ",
"author": "Albert Einstein"
},
{
"quote": "He who is untrue to his own cause cannot command the respect of others.",
"author": "Albert Einstein"
},
{
"quote": "Imagination is more important than knowledge.",
"author": "Albert Einstein"
},
{
"quote": "There are only two ways to live your life. One is as if nothing is a miracle. The other is as if everything is a miracle.",
"author": "Albert Einstein"
},
{
"quote": "The person who never made a mistake never tried anything new.",
"author": "Albert Einstein"
},
{
"quote": "Creativity is intelligence having fun.",
"author": "Albert Einstein"
},
{
"quote": "Your imagination is your preview of life's coming attractions.",
"author": "Albert Einstein"
},
{
"quote": "I am thankful to all who said no to me. It is because of them that I'm doing it myself.",
"author": "Albert Einstein"
},
{
"quote": "Imagination is everything. It is the preview of life's coming attractions.",
"author": "Albert Einstein"
},
{
"quote": "Insanity: doing the same thing over and over again and expecting different results.",
"author": "Albert Einstein"
},
{
"quote": "Don't listen to the person who has the answers; listen to the person who has the questions.",
"author": "Albert Einstein"
},
{
"quote": "Try not to become a man of success, but rather try to become a man of value.",
"author": "Albert Einstein"
},
{
"quote": "All religions, arts and sciences are branches of the same tree. ",
"author": "Albert Einstein"
},
{
"quote": "Science can flourish only in an atmosphere of free speech. ",
"author": "Albert Einstein"
},
{
"quote": "It does not do to dwell on dreams and forget to live, remember that.",
"author": "Albus Dumbledore"
},
{
"quote": "The best of us sometimes eat our words. ",
"author": "Albus Dumbledore"
},
{
"quote": "It takes a great deal of bravery to stand up to our enemies, but just as much to stand up to our friends.",
"author": "Albus Dumbledore"
},
{
"quote": "Numbing the pain for a while will only make it worse when you finally feel it.",
"author": "Albus Dumbledore"
},
{
"quote": "It is important to fight and fight again, and keep fighting, for only then can evil be kept at bay though never quite eradicated.",
"author": "Albus Dumbledore"
},
{
"quote": "It is our choices that show what we truly are, far more than our abilities.",
"author": "Albus Dumbledore"
},
{
"quote": "Numbing the pain for a while will make it worse when you finally feel it.",
"author": "Albus Dumbledore"
},
{
"quote": "It's the unknown we fear when we look upon death and darkness, nothing more.",
"author": "Albus Dumbledore"
},
{
"quote": "It matters not what someone is born, but what they grow to be.",
"author": "Albus Dumbledore"
},
{
"quote": "Dark times lie ahead of us and there will be a time when we must choose between what is easy and what is right.",
"author": "Albus Dumbledore"
},
{
"quote": "The truth... It is a beautiful and terrible thing, and should therefore be treated with great caution.",
"author": "Albus Dumbledore"
},
{
"quote": "Happiness can be found, even in the darkest of times, if one only remembers to turn on the light.",
"author": "Albus Dumbledore"
},
{
"quote": "Ideas do not reach perfection in a day, no matter how much study is put upon them.",
"author": "Alexander Graham Bell"
},
{
"quote": "Before anything else, preparation is the key to success.",
"author": "Alexander Graham Bell"
},
{
"quote": "When one door closes another door opens. ",
"author": "Alexander Graham Bell"
},
{
"quote": "Night is a more quiet time to work. It aids thought.",
"author": "Alexander Graham Bell"
},
{
"quote": "Concentrate all your thoughts upon the work at hand. The sun's rays do not burn until brought to focus.",
"author": "Alexander Graham Bell"
},
{
"quote": "Leave the beaten track behind occasionally and dive into the woods. Every time you do you will be certain to find something you have never seen before.",
"author": "Alexander Graham Bell"
},
{
"quote": "The only difference between success and failure is the ability to take action.",
"author": "Alexander Graham Bell"
},
{
"quote": "A man, as a general rule, owes very little to what he is born with - a man is what he makes of himself.",
"author": "Alexander Graham Bell"
},
{
"quote": "To be angry is to revenge the faults of others on ourselves.",
"author": "Alexander Pope"
},
{
"quote": "You purchase pain with all that joy can give and die of nothing but a rage to live.",
"author": "Alexander Pope"
},
{
"quote": "Blessed is he who expects nothing, for he shall never be disappointed.",
"author": "Alexander Pope"
},
{
"quote": "Charms strike the sight, but merit wins the soul.",
"author": "Alexander Pope"
},
{
"quote": "If you want to know what God thinks about money just look at the people He gives it to.",
"author": "Alexander Pope"
},
{
"quote": "Do good by stealth, and blush to find it fame.",
"author": "Alexander Pope"
},
{
"quote": "Blessed is he who expects nothing, for he shall never be disappointed.",
"author": "Alexander Pope"
},
{
"quote": "Words are like Leaves; and where they most abound, Much Fruit of Sense beneath is rarely found.",
"author": "Alexander Pope"
},
{
"quote": "The merit of all things lies in their difficulty.",
"author": "Alexandre Dumas"
},
{
"quote": "There are two ways of seeing: with the body and with the soul. The body's sight can sometimes forget, but the soul remembers forever.",
"author": "Alexandre Dumas"
},
{
"quote": "I am not proud, but I am happy; and happiness blinds, I think, more than pride.",
"author": "Alexandre Dumas"
},
{
"quote": "Never fear quarrels, but seek hazardous adventures.",
"author": "Alexandre Dumas"
},
{
"quote": "Often we pass beside happiness without seeing it, without looking at it, or even if we have seen and looked at it, without recognizing it.",
"author": "Alexandre Dumas"
},
{
"quote": "For all evils there are two remedies - time and silence.",
"author": "Alexandre Dumas"
},
{
"quote": "The difference between treason and patriotism is only a matter of dates.",
"author": "Alexandre Dumas"
},
{
"quote": "All human wisdom is contained in these two words - Wait and Hope",
"author": "Alexandre Dumas"
},
{
"quote": "Meanings are not determined by situations, but we determine ourselves by the meanings we give to situations.",
"author": "Alfred Adler"
},
{
"quote": "The chief danger in life is that you may take too many precautions.",
"author": "Alfred Adler"
},
{
"quote": "All problems are interpersonal relationship problems.",
"author": "Alfred Adler"
},
{
"quote": "The only normal people are the ones you don't know very well.",
"author": "Alfred Adler"
},
{
"quote": "It is easier to fight for one's principles than to live up to them. ",
"author": "Alfred Adler"
},
{
"quote": "It is very obvious that we are not influenced by 'facts' but by our interpretation of the facts.",
"author": "Alfred Adler"
},
{
"quote": "The important thing is not what one is born with but what use one makes of that equipment.",
"author": "Alfred Adler"
},
{
"quote": "No experience is a cause of success or failure. We do not suffer from the shock of our experiences, so-called trauma - but we make out of them just what suits our purposes.",
"author": "Alfred Adler"
},
{
"quote": "A simple rule in dealing with those who are hard to get along with is to remember that this person is striving to assert his superiority; and you must deal with him from that point of view.",
"author": "Alfred Adler"
},
{
"quote": "The one who boasts does so only out of a feeling of inferiority.",
"author": "Alfred Adler"
},
{
"quote": "It is well known that those who do not trust themselves never trust others.",
"author": "Alfred Adler"
},
{
"quote": "Life is just the same as learning to swim. Do not be afraid of making mistakes, for there is no other way of learning how to live!",
"author": "Alfred Adler"
},
{
"quote": "Courage is the willingness to engage in a risk-taking behavior regardless of whether the consequences are unknown or possibly adverse.",
"author": "Alfred Adler"
},
{
"quote": "Decide whether or not the goal is worth the risks involved. If it is, stop worrying.",
"author": "Amelia Earhart"
},
{
"quote": "The greatest work that kindness does to others is that it makes them kind themselves.",
"author": "Amelia Earhart"
},
{
"quote": "I wasn't brave, I just didn't have time to be scared.",
"author": "Amelia Earhart"
},
{
"quote": "Everyone has oceans to fly, if they have the heart to do it. Is it reckless? Maybe. But what do dreams know of boundaries.",
"author": "Amelia Earhart"
},
{
"quote": "It is best to begin at the beginning.",
"author": "Amelia Earhart"
},
{
"quote": "A single act of kindness throws out roots in all directions, and the roots spring up and make new trees.",
"author": "Amelia Earhart"
},
{
"quote": "Courage is the price that life exacts for granting peace.",
"author": "Amelia Earhart"
},
{
"quote": "You know the more one does the more one can do.",
"author": "Amelia Earhart"
},
{
"quote": "Honor is the foundation of courage.",
"author": "Amelia Earhart"
},
{
"quote": "There's more to life than being a passenger.",
"author": "Amelia Earhart"
},
{
"quote": "The most effective way to do it, is to do it.",
"author": "Amelia Earhart"
},
{
"quote": "The most difficult thing is the decision to act, the rest is merely tenacity. The fears are paper tigers.",
"author": "Amelia Earhart"
},
{
"quote": "No kind action ever stops with itself. One kind action leads to another. Good example is followed.",
"author": "Amelia Earhart"
},
{
"quote": "Adventure is worthwhile in itself.",
"author": "Amelia Earhart"
},
{
"quote": "Never do things others can do and will do if there are things others cannot do or will not do.",
"author": "Amelia Earhart"
},
{
"quote": "It is far easier to start something than it is to finish it.",
"author": "Amelia Earhart"
},
{
"quote": "Tall oaks grow from little acorns.",
"author": "Andrew Carnegie"
},
{
"quote": "The first man gets the oyster, the second man gets the shell.",
"author": "Andrew Carnegie"
},
{
"quote": "If you want to be happy, set a goal that commands your thoughts, liberates your energy, and inspires your hopes.",
"author": "Andrew Carnegie"
},
{
"quote": "Do your duty and a little more and the future will take care of itself.",
"author": "Andrew Carnegie"
},
{
"quote": "No man becomes rich unless he enriches others.",
"author": "Andrew Carnegie"
},
{
"quote": "Success is getting what you want. Happiness is wanting what you get.",
"author": "Andrew Carnegie"
},
{
"quote": "There is little success where there is little laughter.",
"author": "Andrew Carnegie"
},
{
"quote": "No man will make a great leader who wants to do it all himself or to get all the credit for doing it.",
"author": "Andrew Carnegie"
},
{
"quote": "The secret of success lies not in doing your own work, but in recognizing the right man to do it.",
"author": "Andrew Carnegie"
},
{
"quote": "Perhaps the most tragic thing about mankind is that we are all dreaming about some magical garden over the horizon, instead of enjoying the roses that are right outside today.",
"author": "Andrew Carnegie"
},
{
"quote": "TEAMWORK: the fuel that allows common people attain uncommon results.",
"author": "Andrew Carnegie"
},
{
"quote": "Do not look for approval except for the consciousness of doing your best.",
"author": "Andrew Carnegie"
},
{
"quote": "People who are unable to motivate themselves must be content with mediocrity, no matter how impressive their other talents.",
"author": "Andrew Carnegie"
},
{
"quote": "A man who acquires the ability to take full possession of his own mind may take possession of anything else to which he is justly entitled.",
"author": "Andrew Carnegie"
},
{
"quote": "You cannot push anyone up a ladder unless he is willing to climb a little himself.",
"author": "Andrew Carnegie"
},
{
"quote": "True it is, we only hate those whom we do not know.",
"author": "Andrew Carnegie"
},
{
"quote": "All human beings can alter their lives by altering their attitudes.",
"author": "Andrew Carnegie"
},
{
"quote": "Anyone who has ever made anything of importance was disciplined.",
"author": "Andrew Hendrixson"
},
{
"quote": "You don't have to move mountains. You'll change the world simply by being a warm, kind-hearted human being.",
"author": "Anita Krizzan"
},
{
"quote": "When it hurts - observe. Life is trying to teach you something.",
"author": "Anita Krizzan"
},
{
"quote": "A golden cage is still just a cage.",
"author": "Anita Krizzan"
},
{
"quote": "There is no self-discovery without pain and loss.",
"author": "Anita Krizzan"
},
{
"quote": "Whoever is happy will make others happy too.",
"author": "Anne Frank"
},
{
"quote": "In the long run, the sharpest weapon of all is a kind and gentle spirit.",
"author": "Anne Frank"
},
{
"quote": "The dead receive more flowers than the living because regret is stronger than gratitude.",
"author": "Anne Frank"
},
{
"quote": "Laziness may appear attractive, but work gives satisfaction.",
"author": "Anne Frank"
},
{
"quote": "No one has ever become poor by giving.",
"author": "Anne Frank"
},
{
"quote": "Life is a process. We are a process. The universe is a process.",
"author": "Anne Wilson Schaef"
},
{
"quote": "Trusting our intuition often saves us from disaster. ",
"author": "Anne Wilson Schaef"
},
{
"quote": "Humor isn't for everyone. It's only for people who want to have fun, enjoy life, and feel alive.",
"author": "Anne Wilson Schaef"
},
{
"quote": "Looking after my health today gives me a better hope for tomorrow. ",
"author": "Anne Wilson Schaef"
},
{
"quote": "Even if you persuade me, you won't persuade me.",
"author": "Aristophanes"
},
{
"quote": "You cannot teach a crab to walk straight.",
"author": "Aristophanes"
},
{
"quote": "High thoughts must have high language.",
"author": "Aristophanes"
},
{
"quote": "Let each man exercise the art he knows.",
"author": "Aristophanes"
},
{
"quote": "The wise learn many things from their enemies.",
"author": "Aristophanes"
},
{
"quote": "Youth ages, immaturity is outgrown, ignorance can be educated, and drunkenness sobered, but stupid lasts forever.",
"author": "Aristophanes"
},
{
"quote": "Open your mind before your mouth.",
"author": "Aristophanes"
},
{
"quote": "By words the mind is winged.",
"author": "Aristophanes"
},
{
"quote": "Love is merely the name for the desire and pursuit of the whole.",
"author": "Aristophanes"
},
{
"quote": "Wise people, even though all laws were abolished, would still lead the same life.",
"author": "Aristophanes"
},
{
"quote": "The whole is greater than the sum of its parts.",
"author": "Aristotle"
},
{
"quote": "We become brave by doing brave acts.",
"author": "Aristotle"
},
{
"quote": "Memory is the scribe of the soul.",
"author": "Aristotle"
},
{
"quote": "Hope is a waking dream.",
"author": "Aristotle"
},
{
"quote": "Happiness depends upon ourselves.",
"author": "Aristotle"
},
{
"quote": "The more you know, the more you know you don't know.",
"author": "Aristotle"
},
{
"quote": "A friend to all is a friend to none.",
"author": "Aristotle"
},
{
"quote": "To lead an orchestra, you must turn your back on the crowd.",
"author": "Aristotle"
},
{
"quote": "Happiness is a quality of the soul...not a function of one's material circumstances.",
"author": "Aristotle"
},
{
"quote": "Misfortune shows those who are not really friends.",
"author": "Aristotle"
},
{
"quote": "The educated differ from the uneducated as much as the living differ from the dead.",
"author": "Aristotle"
},
{
"quote": "The energy of the mind is the essence of life.",
"author": "Aristotle"
},
{
"quote": "It is not enough to win a war; it is more important to organize the peace.",
"author": "Aristotle"
},
{
"quote": "No great mind has ever existed without a touch of madness.",
"author": "Aristotle"
},
{
"quote": "The guest will judge better of a feast than the cook.",
"author": "Aristotle"
},
{
"quote": "Wishing to be friends is quick work, but friendship is a slow ripening fruit.",
"author": "Aristotle"
},
{
"quote": "Happiness is the meaning and the purpose of life, the whole aim and end of human existence.",
"author": "Aristotle"
},
{
"quote": "Pleasure in the job puts perfection in the work.",
"author": "Aristotle"
},
{
"quote": "Educating the mind without educating the heart is no education at all.",
"author": "Aristotle"
},
{
"quote": "He who cannot be a good follower cannot be a good leader.",
"author": "Aristotle"
},
{
"quote": "What is a friend? A single soul dwelling in two bodies.",
"author": "Aristotle"
},
{
"quote": "Wit is educated insolence.",
"author": "Aristotle"
},
{
"quote": "The least deviation from truth will be multiplied later.",
"author": "Aristotle"
},
{
"quote": "To perceive is to suffer.",
"author": "Aristotle"
},
{
"quote": "It is the mark of an educated mind to be able to entertain a thought without accepting it.",
"author": "Aristotle"
},
{
"quote": "Those who know, do. Those that understand, teach.",
"author": "Aristotle"
},
{
"quote": "Quality is not an act, it is a habit.",
"author": "Aristotle"
},
{
"quote": "Knowing yourself is the beginning of all wisdom.",
"author": "Aristotle"
},
{
"quote": "Patience is bitter, but its fruit is sweet.",
"author": "Aristotle"
},
{
"quote": "Through discipline comes freedom.",
"author": "Aristotle"
},
{
"quote": "Happiness is the meaning and the purpose of life, the whole aim and end of human existence.",
"author": "Aristotle"
},
{
"quote": "The roots of education are bitter, but the fruit is sweet.",
"author": "Aristotle"
},
{
"quote": "Where your talents and the needs of the world cross, there lies your vocation.",
"author": "Aristotle"
},
{
"quote": "Those who know, do. Those that understand, teach.",
"author": "Aristotle"
},
{
"quote": "He who has overcome his fears will truly be free.",
"author": "Aristotle"
},
{
"quote": "For the things we have to learn before we can do them, we learn by doing them.",
"author": "Aristotle"
},
{
"quote": "It is during our darkest moments that we must focus to see the light.",
"author": "Aristotle"
},
{
"quote": "It is during our darkest moments that we must focus to see the light.",
"author": "Aristotle"
},
{
"quote": "We are what we repeatedly do. Excellence, then, is not an act, but a habit.",
"author": "Aristotle"
},
{
"quote": "The more knowledge you have, the more you're free to rely on your instincts.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "If you want to turn a vision into reality, you have to give 100% and never stop believing in your dream.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "You'll get more from being a peacemaker than a warrior.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "Dreams are for dreamers. Goals are for achievers.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "You can't climb the ladder of success with your hands in your pockets.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "Winners are not people who never fail, but people who never quit.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "I don't walk away from things that I think are unfinished.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "Help others and give something back.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "Have a vision, trust yourself, break some rules, ignore the naysayers, don't be afraid to fail.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "You were born to win, but to be a winner, you must plan to win, prepare to win, expect to win.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "Life may be full of pain but that's not an excuse to give up.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "The mind is the limit.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "Go confidently in the direction of your dreams. Live the life you've imagined.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "You can have results or excuses, but not both.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "If you don't find the time, if you don't do the work, you don't get the results.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "Positive thinking can be contagious. Being surrounded by winners helps you develop into a winner.",
"author": "Arnold Schwarzenegger"
},
{
"quote": "You can tell more about a person by what he says about others than you can by what others say about him.",
"author": "Audrey Hepburn"
},
{
"quote": "Why change? Everyone has his own style. When you have found it, you should stick to it.",
"author": "Audrey Hepburn"
},
{
"quote": "The most important thing is to enjoy your life, to be happy, it's all that matters.",
"author": "Audrey Hepburn"
},
{
"quote": "Giving is living. If you stop wanting to give, there's nothing more to live for.",
"author": "Audrey Hepburn"
},
{
"quote": "Good things aren't supposed to just fall into your lap.",
"author": "Audrey Hepburn"
},
{
"quote": "The best thing to hold onto in life is each other.",
"author": "Audrey Hepburn"
},
{
"quote": "Success is like reaching an important birthday and finding you're exactly the same.",
"author": "Audrey Hepburn"
},
{
"quote": "Opportunities don't often come along. So, when they do, you have to grab them.",
"author": "Audrey Hepburn"
},
{
"quote": "To plant a garden is to believe in tomorrow. ",
"author": "Audrey Hepburn"
},
{
"quote": "As you grow older you will discover that you have two hands. One for helping yourself, the other for helping others.",
"author": "Audrey Hepburn"
},
{
"quote": "They say love is the best investment; the more you give, the more you get in return.",
"author": "Audrey Hepburn"
},
{
"quote": "Nothing is impossible. The word itself says 'I'm possible!'",
"author": "Audrey Hepburn"
},
{
"quote": "You can avoid reality, but you cannot avoid the consequences of avoiding reality.",
"author": "Ayn Rand"
},
{
"quote": "The truth is not for all men, but for those who seek it.",
"author": "Ayn Rand"
},
{
"quote": "Integrity is the ability to stand by an idea.",
"author": "Ayn Rand"
},
{
"quote": "If you don't know, the thing to do is not to get scared, but to learn.",
"author": "Ayn Rand"
},
{
"quote": "To achieve, you need thought. You have to know what you are doing and that's real power.",
"author": "Ayn Rand"
},
{
"quote": "An inventor is a man who asks Why? of the universe and lets nothing stand between the answer and his mind.",
"author": "Ayn Rand"
},
{
"quote": "Wealth is the product of man's capacity to think.",
"author": "Ayn Rand"
},
{
"quote": "The ladder of success is best climbed by stepping on the rungs of opportunity.",
"author": "Ayn Rand"
},
{
"quote": "Learn to value yourself, which means: fight for your happiness.",
"author": "Ayn Rand"
},
{
"quote": "Worry is a waste of emotional reserve.",
"author": "Ayn Rand"
},
{
"quote": "The businessman's tool is value.",
"author": "Ayn Rand"
},
{
"quote": "The man who does not value himself, cannot value anything or anyone.",
"author": "Ayn Rand"
},
{
"quote": "Money is only a tool. It will take you wherever you wish, but it will not replace you as the driver.",
"author": "Ayn Rand"
},
{
"quote": "A creative man is motivated by the desire to achieve, not by the desire to beat others.",
"author": "Ayn Rand"
},
{
"quote": "Love is the expression of one's values.",
"author": "Ayn Rand"
},
{
"quote": "Everyone has the right to make his own decisions, but none has the right to force his decision on others.",
"author": "Ayn Rand"
},
{
"quote": "The question isn't who is going to let me; it's who is going to stop me.",
"author": "Ayn Rand"
},
{
"quote": "Live and act within the limit of your knowledge and keep expanding it to the limit of your life.",
"author": "Ayn Rand"
},
{
"quote": "Never let the fear of striking out keep you from playing the game.",
"author": "Babe Ruth"
},
{
"quote": "Every strike brings me closer to the next home run. ",
"author": "Babe Ruth"
},
{
"quote": "You just can't beat the person who never gives up. ",
"author": "Babe Ruth"
},
{
"quote": "There is no excuse for not trying.",
"author": "Barack Obama"
},
{
"quote": "A change is brought about because ordinary people do extraordinary things.",
"author": "Barack Obama"
},
{
"quote": "Our stories may be singular, but our destination is shared.",
"author": "Barack Obama"
},
{
"quote": "You can put lipstick on a pig. It's still a pig.",
"author": "Barack Obama"
},
{
"quote": "We will outstretch the hand if you unclench your fist.",
"author": "Barack Obama"
},
{
"quote": "The best way to not feel hopeless is to get up and do something.",
"author": "Barack Obama"