-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Quotes.json
7854 lines (7854 loc) · 264 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": "All our knowledge has its origins in our perceptions",
"name": "Leonardo da Vinci"
},
{
"quote": "Your work is to discover your world and then with all your heart give yourself to it",
"name": "Buddha"
},
{
"quote": "Be sure you put your feet in the right place, then stand firm",
"name": "Abraham Lincoln"
},
{
"quote": "If you kick a stone in anger, you'll hurt your own foot",
"name": "Korean proverb"
},
{
"quote": "Many people have gone further than they thought they could because someone else thought they could",
"name": "Anonymous"
},
{
"quote": "The fox has many tricks. The hedgehog has but one. But that is the best of all",
"name": "Desiderius Erasmus"
},
{
"quote": "Wisdom is knowing what to do next; Skill is knowing how ot do it, and Virtue is doing it",
"name": "David Jordan"
},
{
"quote": "It's important to know that words don't move mountains. Work, exacting work moves mountains",
"name": "Danilo Dolci"
},
{
"quote": "I allow my intuition to lead my path",
"name": "Manuel Puig"
},
{
"quote": "Love is not blind; it simply enables one to see things others fail to see",
"name": "Anonymous"
},
{
"quote": "Keep yourself to the sunshine and you cannot see the shadow",
"name": "Helen Keller"
},
{
"quote": "A day of worry is more exhausting than a day of work",
"name": "John Lubbock"
},
{
"quote": "Every time you smile at someone, it is an action of love, a gift to that person, a beautiful thing",
"name": "Mother Teresa"
},
{
"quote": "Success is getting what you want. Happiness is wanting what you get",
"name": "Dale Carnegie"
},
{
"quote": "To be tested is good. The challenged life may be the best therapist",
"name": "Gail Sheehy"
},
{
"quote": "If you want things to be different, perhaps the answer is to become different yourself",
"name": "Norman Peale"
},
{
"quote": "The most important thing is transforming our minds, for a new way of thinking, a new outlook: we should strive to develop a new inner world",
"name": "Dalai Lama"
},
{
"quote": "Well begun is half done",
"name": "Aristotle"
},
{
"quote": "Risk more than others think is safe. Care more than others think is wise. Dream more than others think is practical.Expect more than others think is possible",
"name": "Cadet Maxim"
},
{
"quote": "You cannot travel the path until you have become the path itself",
"name": "Buddha"
},
{
"quote": "When deeds and words are in accord, the whole world is transformed",
"name": "Chuang Tzu"
},
{
"quote": "We are all faced with a series of great opportunities brilliantly disguised as impossible situations",
"name": "Charles R. Swindoll"
},
{
"quote": "Either write something worth reading or do something worth writing",
"name": "Benjamin Franklin"
},
{
"quote": "When we seek to discover the best in others, we somehow bring out the best in ourselves",
"name": "William Ward"
},
{
"quote": "Kindness is more important than wisdom, and the recognition of this is the beginning of wisdom",
"name": "Theodore Rubin"
},
{
"quote": "Take things as they are. Punch when you have to punch. Kick when you have to kick",
"name": "Bruce Lee"
},
{
"quote": "If we had no winter, the spring would not be so pleasant; if we did not sometimes taste of adversity, prosperity would not be so welcome",
"name": "Anne Bradstreet"
},
{
"quote": "You were not born a winner, and you were not born a loser. You are what you make yourself be",
"name": "Lou Holtz"
},
{
"quote": "If one does not know to which port is sailing, no wind is favorable",
"name": "Seneca"
},
{
"quote": "As we are liberated from our own fear, our presence automatically liberates others",
"name": "Nelson Mandela"
},
{
"quote": "If one advances confidently in the direction of his dream, and endeavours to live the life which he had imagines, he will meet with a success unexpected in common hours",
"name": "Henry David Thoreau"
},
{
"quote": "All achievements, all earned riches, have their beginning in an idea",
"name": "Napoleon Hill"
},
{
"quote": "If you hear a voice within you say “you cannot paint,” then by all means paint and that voice will be silenced",
"name": "Vincent Van Gogh"
},
{
"quote": "We need to find the courage to say NO to the things and people that are not serving us if we want to rediscover ourselves and live our lives with authenticity",
"name": "Barbara De Angelis"
},
{
"quote": "Give it all you've got because you never know if there's going to be a next time",
"name": "Danielle Ingrum"
},
{
"quote": "The universe is made of stories, not atoms",
"name": "Muriel Rukeyser"
},
{
"quote": "Fate is in your hands and no one else's",
"name": "Byron Pulsifer"
},
{
"quote": "He who obtains has little. He who scatters has much",
"name": "Richard Braunstein"
},
{
"quote": "What you are is what you have been. What you'll be is what you do now",
"name": "Buddha"
},
{
"quote": "We read the world wrong and say that it deceives us",
"name": "Rabindranath Tagore"
},
{
"quote": "No day in which you learn something is a complete loss",
"name": "David Eddings"
},
{
"quote": "Science is organized knowledge. Wisdom is organized life",
"name": "Immanuel Kant"
},
{
"quote": "Freedom is the right to live as we wish",
"name": "Epictetus"
},
{
"quote": "The moment one gives close attention to anything, it becomes a mysterious, awesome, indescribably magnificent world in itself",
"name": "Henry Miller"
},
{
"quote": "Dreams pass into the reality of action. From the actions stems the dream again; and this interdependence produces the highest form of living",
"name": "Anais Nin"
},
{
"quote": "Listen to your intuition. It will tell you everything you need to know",
"name": "Anthony D'Angelo"
},
{
"quote": "Certain things catch your eye, but pursue only those that capture the heart",
"name": "Ancient Indian Proverb"
},
{
"quote": "He who lives in harmony with himself lives in harmony with the world",
"name": "Marcus Aurelius"
},
{
"quote": "Take time to deliberate, but when the time for action has arrived, stop thinking and go in",
"name": "Napoleon Bonaparte"
},
{
"quote": "Life is not measured by the breaths we take, but by the moments that take our breath",
"name": "Anonymous"
},
{
"quote": "Learn from yesterday, live for today, hope for tomorrow",
"name": "Albert Einstein"
},
{
"quote": "You get peace of mind not by thinking about it or imagining it, but by quietening and relaxing the restless mind",
"name": "Remez Sasson"
},
{
"quote": "Sadness flies away on the wings of time",
"name": "Jean de la Fontaine"
},
{
"quote": "The trick is in what one emphasizes. We either make ourselves miserable, or we make ourselves happy. The amount of work is the same",
"name": "Carlos Castaneda"
},
{
"quote": "There is nothing in a caterpillar that tells you it's going to be a butterfly",
"name": "Buckminster Fuller"
},
{
"quote": "The happiness that is genuinely satisfying is accompanied by the fullest exercise of our faculties and the fullest realization of the world in which we live",
"name": "Bertrand Russell"
},
{
"quote": "What matters is the value we've created in our lives, the people we've made happy and how much we've grown as people",
"name": "Daisaku Ikeda"
},
{
"quote": "The spirit, the will to win, and the will to excel, are the things that endure. These qualities are so much more important than the events that occur",
"name": "Vincent Lombardi"
},
{
"quote": "Slow down and enjoy life. It's not only the scenery you miss by going too fast, you also miss the sense of where you are going and why",
"name": "Eddie Cantor"
},
{
"quote": "Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it",
"name": "Johann Wolfgang von Goethe"
},
{
"quote": "If you would take, you must first give, this is the beginning of intelligence",
"name": "Lao Tzu"
},
{
"quote": "All seasons are beautiful for the person who carries happiness within",
"name": "Horace Friess"
},
{
"quote": "No matter how hard the past, you can always begin again",
"name": "Buddha"
},
{
"quote": "Sometimes your joy is the source of your smile, but sometimes your smile can be the source of your joy",
"name": "Thich Nhat Hanh"
},
{
"quote": "Not every difficult and dangerous thing is suitable for training, but only that which is conducive to success in achieving the object of our effort",
"name": "Epictetus"
},
{
"quote": "Nothing ever goes away until it has taught us what we need to know",
"name": "Pema Chodron"
},
{
"quote": "You are important enough to ask and you are blessed enough to receive back",
"name": "Wayne Dyer"
},
{
"quote": "Without some goals and some efforts to reach it, no man can live",
"name": "John Dewey"
},
{
"quote": "We are shaped by our thoughts; we become what we think. When the mind is pure, joy follows like a shadow that never leaves",
"name": "Buddha"
},
{
"quote": "To accomplish great things, we must dream as well as act",
"name": "Anatole France"
},
{
"quote": "Imagination is the highest kite one can fly",
"name": "Lauren Bacall"
},
{
"quote": "Life a culmination of the past, an awareness of the present, an indication of the future beyond knowledge, the quality that gives a touch of divinity to matter",
"name": "Charles A. Lindbergh"
},
{
"quote": "Don't believe what your eyes are telling you. All they show is limitation. Look with your understanding, find out what you already know, and you'll see the way to fly",
"name": "Richard Bach"
},
{
"quote": "I believe that we are fundamentally the same and have the same basic potential",
"name": "Dalai Lama"
},
{
"quote": "To be wronged is nothing unless you continue to remember it",
"name": "Confucius"
},
{
"quote": "Our lives are a sum total of the choices we have made",
"name": "Wayne Dyer"
},
{
"quote": "Don't compromise yourself. You are all you've got",
"name": "Janis Joplin"
},
{
"quote": "Yesterday I dared to struggle. Today I dare to win",
"name": "Bernadette Devlin"
},
{
"quote": "We know from science that nothing in the universe exists as an isolated or independent entity",
"name": "Margaret Wheatley"
},
{
"quote": "Only when we are no longer afraid do we begin to live",
"name": "Dorothy Thompson"
},
{
"quote": "The cure for boredom is curiosity. There is no cure for curiosity",
"name": "Ellen Parr"
},
{
"quote": "Let me tell you the secret that has led me to my goal: my strength lies solely in my tenacity",
"name": "Louis Pasteur"
},
{
"quote": "Your sacred space is where you can find yourself again and again",
"name": "Joseph Campbell"
},
{
"quote": "The greatest antidote to insecurity and the sense of fear is compassion. It brings one back to the basis of one's inner strength",
"name": "Dalai Lama"
},
{
"quote": "A jug fills drop by drop",
"name": "Buddha"
},
{
"quote": "Treat people as if they were what they ought to be and you help them to become what they are capable of being",
"name": "Johann Wolfgang von Goethe"
},
{
"quote": "Adversity has the effect of eliciting talents, which in prosperous circumstances would have lain dormant",
"name": "Horace"
},
{
"quote": "Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless",
"name": "Jamie Paolinetti"
},
{
"quote": "Nothing strengthens authority so much as silence",
"name": "Leonardo da Vinci"
},
{
"quote": "To exist is to change, to change is to mature, to mature is to go on creating oneself endlessly",
"name": "Henri Bergson"
},
{
"quote": "It is fatal to enter any war without the will to win it",
"name": "General Douglas MacArthur"
},
{
"quote": "A man is great by deeds, not by birth",
"name": "Chanakya"
},
{
"quote": "The exercise of an extraordinary gift is the supremest pleasure in life",
"name": "Mark Twain"
},
{
"quote": "Doing what you love is the cornerstone of having abundance in your life",
"name": "Wayne Dyer"
},
{
"quote": "It is through science that we prove, but through intuition that we discover",
"name": "Jules Poincare"
},
{
"quote": "Strong people make as many mistakes as weak people. Difference is that strong people admit their mistakes, laugh at them, learn from them. That is how they become strong",
"name": "Richard Needham"
},
{
"quote": "The heart has its reasons which reason knows not of",
"name": "Blaise Pascal"
},
{
"quote": "Everything that irritates us about others can lead us to a better understanding of ourselves",
"name": "Carl Jung"
},
{
"quote": "To choose what is difficult all ones days, as if it were easy, that is faith",
"name": "W. H. Auden"
},
{
"quote": "What lies behind us and what lies before us are tiny matters compared to what lies within us",
"name": "Walt Emerson"
},
{
"quote": "A little knowledge that acts is worth infinitely more than much knowledge that is idle",
"name": "Kahlil Gibran"
},
{
"quote": "We cannot direct the wind but we can adjust the sails",
"name": "Anonymous"
},
{
"quote": "Something opens our wings. Something makes boredom and hurt disappear. Someone fills the cup in front of us: We taste only sacredness",
"name": "Rumi"
},
{
"quote": "In all things of nature there is something of the marvellous",
"name": "Aristotle"
},
{
"quote": "The path to success is to take massive, determined action",
"name": "Anthony Robbins"
},
{
"quote": "People take different roads seeking fulfilment and happiness. Just because theyre not on your road doesn't mean they've gotten lost",
"name": "Dalai Lama"
},
{
"quote": "Kindness in words creates confidence. Kindness in thinking creates profoundness. Kindness in giving creates love",
"name": "Lao Tzu"
},
{
"quote": "Truth is generally the best vindication against slander",
"name": "Abraham Lincoln"
},
{
"quote": "Friends are those rare people who ask how we are and then wait to hear the answer",
"name": "Ed Cunningham"
},
{
"quote": "If you want a thing done well, do it yourself",
"name": "Napoleon Bonaparte"
},
{
"quote": "Lose an hour in the morning, and you will spend all day looking for it",
"name": "Richard Whately"
},
{
"quote": "Those who will play with cats must expect to be scratched",
"name": "Cervantes"
},
{
"quote": "Mistakes are always forgivable, if one has the courage to admit them",
"name": "Bruce Lee"
},
{
"quote": "Consider that not only do negative thoughts and emotions destroy our experience of peace, they also undermine our health",
"name": "Dalai Lama"
},
{
"quote": "Things do not change, we change",
"name": "Henry Thoreau"
},
{
"quote": "We make a living by what we get, but we make a life by what we give",
"name": "Winston Churchill"
},
{
"quote": "Ignorance never settle a question",
"name": "Benjamin Disraeli"
},
{
"quote": "Just as a flower, which seems beautiful has color but no perfume, so are the fruitless words of a man who speaks them but does them not",
"name": "Dhammapada"
},
{
"quote": "Those who are free of resentful thoughts surely find peace",
"name": "Buddha"
},
{
"quote": "Beauty is not in the face; beauty is a light in the heart",
"name": "Kahlil Gibran"
},
{
"quote": "You may be disappointed if you fail, but you are doomed if you don’t try",
"name": "Beverly Sills"
},
{
"quote": "We must overcome the notion that we must be regular. It robs you of the chance to be extraordinary and leads you to the mediocre",
"name": "Uta Hagen"
},
{
"quote": "It is common sense to take a method and try it. If it fails, admit it frankly and try another. But above all, try something",
"name": "Franklin D. Roosevelt"
},
{
"quote": "Bad times have a scientific value. These are occasions a good learner would not miss",
"name": "Ralph Emerson"
},
{
"quote": "If you don't like something, change it. If you can't change it, change your attitude",
"name": "Maya Angelou"
},
{
"quote": "My mama always said: life's like a box of chocolate, you never know what you gonna get",
"name": "Forrest Gump"
},
{
"quote": "It all depends on how we look at things, and not how they are in themselves",
"name": "Carl Jung"
},
{
"quote": "Change in all things is sweet",
"name": "Aristotle"
},
{
"quote": "I am like a falling star who has finally found her place next to another in a lovely constellation, where we will sparkle in the heavens forever",
"name": "Amy Tan"
},
{
"quote": "Things that were hard to bear are sweet to remember",
"name": "Seneca"
},
{
"quote": "It takes courage to grow up and become who you really are",
"name": "E. E. Cummings"
},
{
"quote": "Sincerity is the way of Heaven. The attainment of sincerity is the way of men",
"name": "Confucius"
},
{
"quote": "Yesterdays home runs don't win today's games",
"name": "Babe Ruth"
},
{
"quote": "Whenever something negative happens to you, there is a deep lesson concealed within it",
"name": "Eckhart Tolle"
},
{
"quote": "Every child is an artist. The problem is how to remain an artist once he grows up",
"name": "Pablo Picasso"
},
{
"quote": "If you focus on results, you will never change. If you focus on change, you will get results",
"name": "Jack Dixon"
},
{
"quote": "Shoot for the moon. Even if you miss, you'll land among the stars",
"name": "Les Brown"
},
{
"quote": "A life spent making mistakes is not only more honourable but more useful than a life spent in doing nothing",
"name": "Bernard Shaw"
},
{
"quote": "Mountains cannot be surmounted except by winding paths",
"name": "Johann Wolfgang von Goethe"
},
{
"quote": "All great men are gifted with intuition. They know without reasoning or analysis, what they need to know",
"name": "Alexis Carrel"
},
{
"quote": "The awareness of our own strength makes us modest",
"name": "Paul Cezanne"
},
{
"quote": "If you love someone, set them free. If they come back they're yours; if they don't they never were",
"name": "Richard Bach"
},
{
"quote": "Action may not always bring happiness; but there is no happiness without action",
"name": "Benjamin Disraeli"
},
{
"quote": "One needs something to believe in, something for which one can have whole-hearted enthusiasm. One needs to feel that ones life has meaning, that one is needed in this world",
"name": "Hannah Senesh"
},
{
"quote": "Continuous effort - not strength or intelligence - is the key to unlocking our potential",
"name": "Winston Churchill"
},
{
"quote": "You don't drown by falling in water. You drown by staying there",
"name": "Anonymous"
},
{
"quote": "Love and compassion open our own inner life, reducing stress, distrust and loneliness",
"name": "Dalai Lama"
},
{
"quote": "Life is movement-we breathe, we eat, we walk, we move!",
"name": "John Pierrakos"
},
{
"quote": "For success, attitude is equally as important as ability",
"name": "Harry Banks"
},
{
"quote": "Not what we have but what we enjoy constitutes our abundance",
"name": "John Petit-Senn"
},
{
"quote": "Responsibility is not inherited, it is a choice that everyone needs to make at some point in their life",
"name": "Byron Pulsifer"
},
{
"quote": "Miracles come in moments. Be ready and willing",
"name": "Wayne Dyer"
},
{
"quote": "You're never a loser until you quit trying",
"name": "Mike Ditka"
},
{
"quote": "When you come to the end of your rope, tie a knot and hang on",
"name": "Franklin Roosevelt"
},
{
"quote": "Change is the law of life. And those who look only to the past or present are certain to miss the future",
"name": "John Kennedy"
},
{
"quote": "Strength does not come from physical capacity. It comes from an indomitable will",
"name": "Mahatma Gandhi"
},
{
"quote": "What do we live for, if it is not to make life less difficult for each other?",
"name": "George Eliot"
},
{
"quote": "Every artist dips his brush in his own soul, and paints his own nature into his pictures",
"name": "Henry Ward Beecher"
},
{
"quote": "Do not overrate what you have received, nor envy others. He who envies others does not obtain peace of mind",
"name": "Buddha"
},
{
"quote": "You always succeed in producing a result",
"name": "Tony Robbins"
},
{
"quote": "Six essential qualities that are the key to success: Sincerity, personal integrity, humility, courtesy, wisdom, charity",
"name": "William Menninger"
},
{
"quote": "Few things can help an individual more than to place responsibility on him, and to let him know that you trust him",
"name": "Booker T. Washington"
},
{
"quote": "We know the truth, not only by the reason, but by the heart",
"name": "Blaise Pascal"
},
{
"quote": "Truth, and goodness, and beauty are but different faces of the same all",
"name": "Ralph Emerson"
},
{
"quote": "He who lives in harmony with himself lives in harmony with the universe",
"name": "Marcus Aurelius"
},
{
"quote": "We don't stop playing because we grow old; we grow old because we stop playing",
"name": "Bernard Shaw"
},
{
"quote": "It's not who you are that holds you back, it's who you think you're not",
"name": "Anonymous"
},
{
"quote": "To keep the body in good health is a duty... otherwise we shall not be able to keep our mind strong and clear",
"name": "Buddha"
},
{
"quote": "Doing nothing is better than being busy doing nothing",
"name": "Lao Tzu"
},
{
"quote": "If we are not fully ourselves, truly in the present moment, we miss everything",
"name": "Thich Nhat Hanh"
},
{
"quote": "Through perseverance many people win success out of what seemed destined to be certain failure",
"name": "Benjamin Disraeli"
},
{
"quote": "Success is walking from failure to failure with no loss of enthusiasm",
"name": "Winston Churchill"
},
{
"quote": "In order to live free and happily you must sacrifice boredom. It is not always an easy sacrifice",
"name": "Richard Bach"
},
{
"quote": "You can't stop the waves, but you can learn to surf",
"name": "Jon Kabat-Zinn"
},
{
"quote": "I can't imagine a person becoming a success who doesn't give this game of life everything hes got",
"name": "Walter Cronkite"
},
{
"quote": "Talk doesn't cook rice",
"name": "Chinese proverb"
},
{
"quote": "On every thorn, delightful wisdom grows, In every rill a sweet instruction flows",
"name": "Edward Young"
},
{
"quote": "An unexamined life is not worth living",
"name": "Socrates"
},
{
"quote": "One may say the eternal mystery of the world is its comprehensibility",
"name": "Albert Einstein"
},
{
"quote": "Everything you’ve ever wanted is on the other side of fear",
"name": "George Addair"
},
{
"quote": "The truth is always exciting. Speak it, then. Life is dull without it",
"name": "Pearl Buck"
},
{
"quote": "The wisest men follow their own direction",
"name": "Euripides"
},
{
"quote": "Life shrinks or expands in proportion to one’s courage",
"name": "Anais Nin"
},
{
"quote": "Happiness is the reward we get for living to the highest right we know",
"name": "Richard Bach"
},
{
"quote": "Every person, all the events of your life are there because you have drawn them there. What you choose to do with them is up to you",
"name": "Richard Bach"
},
{
"quote": "There is nothing happens to any person but what was in his power to go through with",
"name": "Marcus Aurelius"
},
{
"quote": "Fear and creativity are conjoined twins. People are so afraid of their fear that they try to kill it. And when they kill it they also kill creativity because creativity is going into the unknown, and the unknown is scary",
"name": "Elizabeth Gilbert"
},
{
"quote": "When everything seems to be going against you, remember that the airplane takes off against the wind, not with it",
"name": "Henry Ford"
},
{
"quote": "Build your own dreams, or someone else will hire you to build theirs",
"name": "Farrah Gray"
},
{
"quote": "The journey of a thousand miles begins with one step",
"name": "Lao Tzu"
},
{
"quote": "The best teacher is experience learned from failures",
"name": "Byron Pulsifer"
},
{
"quote": "Don't wait for people to be friendly. Show them how",
"name": "Anonymous"
},
{
"quote": "People often say that motivation doesn’t last. Well, neither does bathing. That’s why we recommend it daily",
"name": "Zig Ziglar"
},
{
"quote": "Joy is what happens to us when we allow ourselves to recognize how good things really are",
"name": "Marianne Williamson"
},
{
"quote": "Constant kindness can accomplish much. As the sun makes ice melt, kindness causes misunderstanding, mistrust, and hostility to evaporate",
"name": "Albert Schweitzer"
},
{
"quote": "From error to error one discovers the entire truth",
"name": "Sigmund Freud"
},
{
"quote": "I think and that is all that I am",
"name": "Wayne Dyer"
},
{
"quote": "Silence is a fence around wisdom",
"name": "German proverb"
},
{
"quote": "Don't focus on making the right decision, focus on making the decision the right one",
"name": "Anonymous"
},
{
"quote": "No one is born hating another person...People must learn to hate, and if they can learn to hate, they can be taught to love..",
"name": "Nelson Mandela"
},
{
"quote": "Victory belongs to the most persevering",
"name": "Napoleon Bonaparte"
},
{
"quote": "I believe that we are solely responsible for our choices, and we have to accept the consequences of every deed, word, and thought throughout our lifetime",
"name": "Elisabeth Kubler-Ross"
},
{
"quote": "I can't believe that God put us on this earth to be ordinary",
"name": "Lou Holtz"
},
{
"quote": "When the solution is simple, God is answering",
"name": "Albert Einstein"
},
{
"quote": "Lots of people want to ride with you in the limo, but what you want is someone who will take the bus with you when the limo breaks down",
"name": "Oprah Winfrey"
},
{
"quote": "A failure is a man who has blundered but is not capable of cashing in on the experience",
"name": "Elbert Hubbard"
},
{
"quote": "A good teacher is like a candle, it consumes itself to light the way for others",
"name": "Anonymous"
},
{
"quote": "A short saying often contains much wisdom",
"name": "Sophocles"
},
{
"quote": "Peace comes from within. Do not seek it without",
"name": "Buddha"
},
{
"quote": "Patience is a virtue but you will never ever accomplish anything if you don't exercise action over patience",
"name": "Byron Pulsifer"
},
{
"quote": "Moral excellence comes about as a result of habit. We become just by doing just acts, temperate by doing temperate acts, brave by doing brave acts",
"name": "Aristotle"
},
{
"quote": "It is not so important to know everything as to appreciate what we learn",
"name": "Hannah More"
},
{
"quote": "Don't turn away from possible futures before you're certain you don't have anything to learn from them",
"name": "Richard Bach"
},
{
"quote": "To avoid criticism, do nothing, say nothing, be nothing",
"name": "Elbert Hubbard"
},
{
"quote": "In rivers, the water that you touch is the last of what has passed and the first of that which comes; so with present time",
"name": "Leonardo da Vinci"
},
{
"quote": "Do what you can, where you are, with what you have",
"name": "Teddy Roosevelt"
},
{
"quote": "Slow down and everything you are chasing will come around and catch you",
"name": "John De Paola"
},
{
"quote": "Never doubt that a small group of thoughtful, committed people can change the world. Indeed. It is the only thing that ever has",
"name": "Margaret Mead"
},
{
"quote": "The conditions of conquest are always easy. We have but to toil awhile, endure awhile, believe always, and never turn back",
"name": "Seneca"
},
{
"quote": "If you do not change direction, you may end up where you are heading",
"name": "Lao Tzu"
},
{
"quote": "Genius is one percent inspiration and ninety-nine percent perspiration",
"name": "Thomas Edison"
},
{
"quote": "Yesterday is history. Tomorrow is a mystery. And today? Today is a gift. That is why we call it the present",
"name": "Babatunde Olatunji"
},
{
"quote": "Neither genius, fame, nor love show the greatness of the soul. Only kindness can do that",
"name": "Jean Lacordaire"
},
{
"quote": "I care not so much what I am to others as what I am to myself. I will be rich by myself, and not by borrowing",
"name": "Michel de Montaigne"
},
{
"quote": "Life shrinks or expands in proportion to one's courage",
"name": "Anais Nin"
},
{
"quote": "A lot of times people look at the negative side of what they feel they can't do. I always look on the positive side of what I can do",
"name": "Chuck Norris"
},
{
"quote": "Face your deficiencies and acknowledge them; but do not let them master you. Let them teach you patience, sweetness, insight",
"name": "Helen Keller"
},
{
"quote": "There is no scarcity of opportunity to make a living at what you love; theres only scarcity of resolve to make it happen",
"name": "Wayne Dyer"
},
{
"quote": "Fortune favours the brave",
"name": "Virgil"
},
{
"quote": "Judge nothing, you will be happy. Forgive everything, you will be happier. Love everything, you will be happiest",
"name": "Sri Chinmoy"
},
{
"quote": "When I dare to be powerful, to use my strength in the service of my vision, then it becomes less and less important whether I am afraid",
"name": "Audre Lorde"
},
{
"quote": "Many people think of prosperity that concerns money only to forget that true prosperity is of the mind",
"name": "Byron Pulsifer"
},
{
"quote": "The meaning I picked, the one that changed my life: Overcome fear, behold wonder",
"name": "Richard Bach"
},
{
"quote": "To be great is to be misunderstood",
"name": "Ralph Emerson"
},
{
"quote": "We are the leaves of one branch, the drops of one sea, the flowers of one garden",
"name": "Jean Lacordaire"
},
{
"quote": "It is difficult to achieve a spirit of genuine cooperation as long as people remain indifferent to the feelings and happiness of others",
"name": "Dalai Lama"
},
{
"quote": "Sadness may be part of life but there is no need to let it dominate your entire life",
"name": "Byron Pulsifer"
},
{
"quote": "Be your own hero, it's cheaper than a movie ticket",
"name": "Doug Horton"
},
{
"quote": "Always be mindful of the kindness and not the faults of others",
"name": "Buddha"
},
{
"quote": "I believe that a simple and unassuming manner of life is best for everyone, best both for the body and the mind",
"name": "Albert Einstein"
},
{
"quote": "Winning isn’t everything, but wanting to win is",
"name": "Vince Lombardi"
},
{
"quote": "You have power over your mind not outside events. Realize this, and you will find strength",
"name": "Marcus Aurelius"
},
{
"quote": "Waste no more time arguing about what a good man should be. Be one",
"name": "Marcus Aurelius"
},
{
"quote": "Bold is not the act of foolishness but the attribute and inner strength to act when others will not so as to move forward not backward",
"name": "Byron Pulsifer"
},
{
"quote": "We have two ears and one mouth so that we can listen twice as much as we speak",
"name": "Epictetus"
},
{
"quote": "Most smiles are started by another smile",
"name": "Anonymous"
},
{
"quote": "Once you choose hope, anythings possible",
"name": "Christopher Reeve"
},
{
"quote": "Using the power of decision gives you the capacity to get past any excuse to change any and every part of your life in an instant",
"name": "Tony Robbins"
},
{
"quote": "If you get up one more time than you fall, you will make it through",
"name": "Anonymous"
},
{
"quote": "Remembering a wrong is like carrying a burden on the mind",
"name": "Buddha"