-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes.json
1202 lines (1202 loc) · 41.8 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
[
{
"text": "The greatest of empires, is the empire over one\u0027s self.",
"author": "Publilius Syrus"
},
{
"text": "Misfortune shows those who are not really friends.",
"author": "Aristotle"
},
{
"text": "If what you\u0027re doing is not your passion, you have nothing to lose.",
"author": "Celestine Chua"
},
{
"text": "The temptation to give up is strongest just before victory.",
"author": "Zen Proverb"
},
{
"text": "Always remember that you are absolutely unique. Just like everyone else. ",
"author": "Margaret Mead"
},
{
"text": "I never dwell on what happened. You can\u0027t change it. Move forward.",
"author": "Joan Rivers"
},
{
"text": "A crisis is an opportunity riding the dangerous wind.",
"author": "Chinese Proverb"
},
{
"text": "Courage is almost a contradiction in terms. It means a strong desire to live taking the form of a readiness to die.",
"author": "Gilbert Chesterton"
},
{
"text": "A hut full of laughter is richer than a palace full of sadness.",
"author": "Zen Proverb"
},
{
"text": "At the end of the day, let there be no excuses, no explanations, no regrets.",
"author": "Steve Maraboli"
},
{
"text": "The secret of happiness, you see, is not found in seeking more, but in developing the capacity to enjoy less.",
"author": "Dan Millman"
},
{
"text": "Get busy living, or get busy dying.",
"author": "Stephen King"
},
{
"text": "Happiness depends upon ourselves.",
"author": "Aristotle"
},
{
"text": "Embody what you teach, and teach only what you have embodied.",
"author": "Dan Millman"
},
{
"text": "When you\u0027ve got nothing, you\u0027ve got nothing to lose.",
"author": "Bob Dylan"
},
{
"text": "Be where your enemy is not.",
"author": "Sun Tzu"
},
{
"text": "If you aren\u0027t sure which way to do something, do it both ways and see which works better.",
"author": "John Carmack"
},
{
"text": "An ounce of performance is worth pounds of promises.",
"author": "Mae West"
},
{
"text": "Our virtues and our failings are inseparable, like force and matter. When they separate, man is no more. ",
"author": "Nikola Tesla"
},
{
"text": "When everything seems to be going against you, remember that the airplane takes off against the wind, not with it. ",
"author": "Henry Ford"
},
{
"text": "Decide whether or not the goal is worth the risks involved. If it is, stop worrying.",
"author": "Amelia Earhart"
},
{
"text": "The difference between winning and losing is most often not quitting.",
"author": "Walt Disney"
},
{
"text": "A needle is not sharp at both ends. ",
"author": "Chinese Proverb"
},
{
"text": "If you can see it in your mind, you can hold it in your mind.",
"author": "Steve Harvey"
},
{
"text": "Your conscience is the measure of the honesty of your selfishness. Listen to it carefully.",
"author": "Richard Bach"
},
{
"text": "Follow your instincts. That is where true wisdom manifests itself.",
"author": "Oprah Winfrey"
},
{
"text": "We ordinary people must forge our own beauty.",
"author": "Kenji Miyazawa"
},
{
"text": "Focus on how far you have come in life rather than looking at the accomplishments of others.",
"author": "Lolly Daskal"
},
{
"text": "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"
},
{
"text": "Keep your eyes on the stars, but remember to keep your feet on the ground.",
"author": "Theodore Roosevelt"
},
{
"text": "Those who attain the middle Dominate the whole.",
"author": "Ming-Dao Deng"
},
{
"text": "It always seems impossible until it\u0027s done.",
"author": "Nelson Mandela"
},
{
"text": "Unless a man is master of his soul, all other kinds of mastery amount to little.",
"author": "Theodore Roosevelt"
},
{
"text": "The few who do are the envy of the many who only watch.",
"author": "Jim Rohn"
},
{
"text": "Life is from the inside out. When you shift on the inside, life shifts on the outside.",
"author": "Kamal Ravikant"
},
{
"text": "Remembering that you are going to die is the best way I know to avoid the trap of thinking you have something to lose.",
"author": "Steve Jobs"
},
{
"text": "It is only depth of character that determines the profundity with which we face life.",
"author": "Ming-Dao Deng"
},
{
"text": "It\u0027s 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"
},
{
"text": "Money is only a tool. It will take you wherever you wish, but it will not replace you as the driver.",
"author": "Ayn Rand"
},
{
"text": "Live and act within the limit of your knowledge and keep expanding it to the limit of your life.",
"author": "Ayn Rand"
},
{
"text": "An inventor is a man who asks Why? of the universe and lets nothing stand between the answer and his mind.",
"author": "Ayn Rand"
},
{
"text": "Don\u0027t gain the world and lose your soul. Wisdom is better than silver and gold.",
"author": "Bob Marley"
},
{
"text": "Life isn\u0027t about finding yourself. Life is about creating yourself.",
"author": "George Bernard Shaw"
},
{
"text": "Nothing makes a man broad-minded like adversity.",
"author": "Will Rogers"
},
{
"text": "Just try to be the best you can be; never cease trying to be the best you can be. That\u0027s in your power.",
"author": "John Wooden"
},
{
"text": "The past has no power over the present moment. ",
"author": "Eckhart Tolle"
},
{
"text": "Our view of the world is truly shaped by what we decide to hear.",
"author": "William James"
},
{
"text": "We must not sit down and wait for miracles. Up and be going!",
"author": "John Eliot"
},
{
"text": "Just throw away all thoughts of imaginary things, and stand firm in that which you are.",
"author": "Kabir"
},
{
"text": "Fools talk, cowards are silent, wise men listen.",
"author": "Carlos Ruiz Zafon"
},
{
"text": "Walk slowly but never walk backward.",
"author": "Unknown"
},
{
"text": "We learn to walk by falling down. If we never fell down, we would never walk.",
"author": "Robert Kiyosaki"
},
{
"text": "If you love somebody, let them go, for if they return, they were always yours. If they don\u0027t, they never were.",
"author": "Kahlil Gibran"
},
{
"text": "We must not be afraid of dreaming the seemingly impossible if we want the seemingly impossible to become a reality.",
"author": "Vaclav Havel"
},
{
"text": "Whoever is happy will make others happy too.",
"author": "Anne Frank"
},
{
"text": "When you are talented you do it whatever it is until your fingers bleed or your eyes are ready to fall out of your head.",
"author": "Stephen King"
},
{
"text": "Wherever there is danger, there lurks opportunity; wherever there is opportunity, there lurks danger. The two are inseparable.",
"author": "Earl Nightingale"
},
{
"text": "Projecting your mind into a successful situation is the most powerful means to achieve goals. ",
"author": "Estee Lauder"
},
{
"text": "Give credit where credit is due: simply said, if you want loyalty and best effort, you must be thoughtful. ",
"author": "Estee Lauder"
},
{
"text": "We suffer for the simple reason that suffering is biologically useful. It is nature\u0027s preferred agent for inspiring change.",
"author": "Mark Manson"
},
{
"text": "The secret of getting ahead is getting started.",
"author": "Mark Twain"
},
{
"text": "Dreams are the royal road to the unconscious. ",
"author": "Sigmund Freud"
},
{
"text": "I would rather die on my feet than live on my knees.",
"author": "Euripides"
},
{
"text": "It\u0027s not the size of the dog in the fight, it\u0027s the size of the fight in the dog.",
"author": "Mark Twain"
},
{
"text": "Man\u0027s character is his fate.",
"author": "Heraclitus"
},
{
"text": "It is better to fail in originality than to succeed in imitation.",
"author": "Herman Melville"
},
{
"text": "He is not a lover who does not love forever.",
"author": "Euripides"
},
{
"text": "It is our experiences that mold us into who we are...during times of adversity our true character will show.",
"author": "Unknown"
},
{
"text": "Have a heart that never hardens, and a temper that never tires, and a touch that never hurts.",
"author": "Charles Dickens"
},
{
"text": "Throughout this life, you can never be certain of living long enough to take another breath.",
"author": "Huang Po"
},
{
"text": "When it is dark enough, you can see the stars.",
"author": "Ralph Waldo Emerson"
},
{
"text": "Give more than you think you can, trusting that you are richer than you think.",
"author": "Jon Kabat-Zinn"
},
{
"text": "There are people who have money and people who are rich.",
"author": "Coco Chanel"
},
{
"text": "A tiny change today brings a dramatically different tomorrow.",
"author": "Richard Bach"
},
{
"text": "You are what you believe in. You become that which you believe you can become.",
"author": "Bhagavad Gita"
},
{
"text": "The heart wants what it wants. There\u0027s no logic. ",
"author": "Woody Allen"
},
{
"text": "Even the smallest person can change the course of the future.",
"author": "J.R.R. Tolkien"
},
{
"text": "Where your talents and the needs of the world cross, there lies your vocation.",
"author": "Aristotle"
},
{
"text": "Our anxiety does not empty tomorrow of its sorrows, but only empties today of its strengths.",
"author": "Charles Spurgeon"
},
{
"text": "There is nothing more frightful than ignorance in action.",
"author": "Johann Wolfgang von Goethe"
},
{
"text": "Much learning does not teach understanding.",
"author": "Heraclitus"
},
{
"text": "No one can compete with you on being you. Most of life is a search for who and what needs you the most.",
"author": "Naval Ravikant"
},
{
"text": "The beautiful journey of today can only begin when we learn to let go of yesterday.",
"author": "Steve Maraboli"
},
{
"text": "Only when you can be extremely pliable and soft can you be extremely hard and strong.",
"author": "Zen Proverb"
},
{
"text": "Duty makes us do things well, but love makes us do them beautifully. ",
"author": "Zig Ziglar"
},
{
"text": "Inspire yourself to be great. Being good isn\u0027t good enough.",
"author": "Gurbaksh Chahal"
},
{
"text": "Normal is the average of deviance.",
"author": "Rita Mae Brown"
},
{
"text": "Laziness may appear attractive, but work gives satisfaction.",
"author": "Anne Frank"
},
{
"text": "It\u0027s your outlook on life that counts.",
"author": "Betty White"
},
{
"text": "Do not wait for leaders; do it alone, person to person.",
"author": "Mother Teresa"
},
{
"text": "We are all like the bright moon, we still have our darker side. ",
"author": "Kahlil Gibran"
},
{
"text": "Don\u0027t let the past steal your present.",
"author": "Cherralea Morgen"
},
{
"text": "If I can stop one heart from breaking, I shall not live in vain.",
"author": "Emily Dickinson"
},
{
"text": "Engage in those actions and thoughts that nurture the good qualities you want to have.",
"author": "Paramahansa Yogananda"
},
{
"text": "If you want to turn a vision into reality, you have to give 100% and never stop believing in your dream.",
"author": "Arnold Schwarzenegger"
},
{
"text": "It\u0027s OK to have your eggs in one basket as long as you control what happens to that basket.",
"author": "Elon Musk"
},
{
"text": "You can start changing our world for the better daily, no matter how small the action.",
"author": "Nelson Mandela"
},
{
"text": "Make failure your teacher, not your undertaker. ",
"author": "Zig Ziglar"
},
{
"text": "The more you like yourself, the less you are like anyone else, which makes you unique.",
"author": "Walt Disney"
},
{
"text": "Your neighbor is the man who needs you.",
"author": "Elbert Hubbard"
},
{
"text": "The Truth is realized in an instant; the Act is practiced step by step.",
"author": "Seungsahn"
},
{
"text": "When you\u0027re at the end of your rope, tie a knot and hold on.",
"author": "Theodore Roosevelt"
},
{
"text": "To belittle, you have to be little.",
"author": "Kahlil Gibran"
},
{
"text": "Your time is limited, so don\u0027t waste it living someone elses. life. Don\u0027t be trapped by dogma - which is living with the results of other people\u0027s thinking.",
"author": "Steve Jobs"
},
{
"text": "Let my soul smile through my heart and my heart smile through my eyes, that I may scatter rich smiles in sad hearts. ",
"author": "Paramahansa Yogananda"
},
{
"text": "There is no one giant step that does it. It\u0027s a lot of little steps.",
"author": "Peter A. Cohen"
},
{
"text": "A path is made by walking on it.",
"author": "Zhuangzi"
},
{
"text": "To create more positive results in your life, replace \u0027if only\u0027 with \u0027next time\u0027.",
"author": "Celestine Chua"
},
{
"text": "Success is not final, failure is not fatal: it is the courage to continue that counts.",
"author": "Winston Churchill"
},
{
"text": "The more you trust yourself, the less you compare yourself to others.",
"author": "Roy T. Bennett"
},
{
"text": "Everything that is made beautiful and fair and lovely is made for the eye of one who sees.",
"author": "Rumi"
},
{
"text": "Let not your mind run on what you lack as much as on what you have already.",
"author": "Marcus Aurelius"
},
{
"text": "If you do not get the chills when you set your goal you\u0027re not setting big enough goals.",
"author": "Bob Proctor"
},
{
"text": "When you are tempted to give up, your breakthrough is probably just around the corner.",
"author": "Joyce Meyer"
},
{
"text": "Who you are is always right.",
"author": "Ming-Dao Deng"
},
{
"text": "Without struggle, no progress and no result. Every breaking of habit produces a change in the machine.",
"author": "G.I. Gurdjieff"
},
{
"text": "The wisest men follow their own direction.",
"author": "Euripides"
},
{
"text": "Give more than you think you can, trusting that you are richer than you think.",
"author": "Jon Kabat-Zinn"
},
{
"text": "Lack of direction, not lack of time, is the problem. We all have twenty-four hour days.",
"author": "Zig Ziglar"
},
{
"text": "Great loves too must be endured.",
"author": "Coco Chanel"
},
{
"text": "It doesn\u0027t matter what you do, only how well you do it.",
"author": "Dan Millman"
},
{
"text": "An approximate answer to the right question is worth a great deal more than a precise answer to the wrong question.",
"author": "John Tukey"
},
{
"text": "Discipline is the mark of intelligent living.",
"author": "Sathya Sai Baba"
},
{
"text": "Happiness is a quality of the soul...not a function of one\u0027s material circumstances.",
"author": "Aristotle"
},
{
"text": "I wasn\u0027t brave, I just didn\u0027t have time to be scared.",
"author": "Amelia Earhart"
},
{
"text": "Nothing can bring you peace but yourself.",
"author": "Dale Carnegie"
},
{
"text": "You have to accept whatever comes, and the only important thing is that you meet it with the best you have to give.",
"author": "Eleanor Roosevelt"
},
{
"text": "Outstanding people have one thing in common: an absolute sense of mission. ",
"author": "Zig Ziglar"
},
{
"text": "Time is a game played beautifully by children.",
"author": "Heraclitus"
},
{
"text": "The attempt to escape from pain, is what creates more pain.",
"author": "Gabor Mate"
},
{
"text": "The people who are crazy enough to think they can change the world are the ones who do.",
"author": "Steve Jobs"
},
{
"text": "Everything flows, nothing stands still.",
"author": "Heraclitus"
},
{
"text": "Everything is created twice, first in the mind and then in reality.",
"author": "Robin Sharma"
},
{
"text": "It\u0027s not how much we give but how much love we put into giving.",
"author": "Mother Teresa"
},
{
"text": "Today is plenty; right now is enough. Tomorrow will come in good time. Until it does, live the depth of now.",
"author": "Ralph Marston"
},
{
"text": "Take care of your body. It\u0027s the only place you have to live.",
"author": "Jim Rohn"
},
{
"text": "The secret of life isn\u0027t what happens to you, but what you do with what happens to you.",
"author": "Norman Vincent Peale"
},
{
"text": "A journey of a thousand miles begins with a single step.",
"author": "Lao Tzu"
},
{
"text": "Life needs to be more than just solving problems every day. You need to wake up and be excited about the future.",
"author": "Elon Musk"
},
{
"text": "When you move beyond your fear, you feel free.",
"author": "Spencer Johnson"
},
{
"text": "The mind that turns ever outward Will have no end to craving. Only the mind turned inward Will find a still-point of peace.",
"author": "Ming-Dao Deng"
},
{
"text": "Most people get ahead during the time that others waste.",
"author": "Henry Ford"
},
{
"text": "Appear weak when you are strong, and strong when you are weak.",
"author": "Sun Tzu"
},
{
"text": "When you can\u0027t make them see the light, make them feel the heat.",
"author": "Ronald Reagan"
},
{
"text": "Problems remain as problems because people are busy defending them rather than finding solutions.",
"author": "Celestine Chua"
},
{
"text": "Stress happens when the mind resists what is.",
"author": "Dan Millman"
},
{
"text": "It is better to disappoint people with the truth than to appease them with a lie.",
"author": "Simon Sinek"
},
{
"text": "I admire those who do good and expect nothing in return.",
"author": "Roy T. Bennett"
},
{
"text": "It is secondary whether we choose belief or defiance. What is precious is that we are always able to choose.",
"author": "Ming-Dao Deng"
},
{
"text": "Forget safety. Live where you fear to live.",
"author": "Rumi"
},
{
"text": "How many times do you have to get hit over the head until you figure out who\u0027s hitting you?",
"author": "Harry S. Truman"
},
{
"text": "Success comes to those who become success conscious.",
"author": "Napoleon Hill"
},
{
"text": "Don\u0027t be pushed around by the fears in your mind. Be led by the dreams in your heart.",
"author": "Roy T. Bennett"
},
{
"text": "Without the rain there would be no rainbow.",
"author": "Gilbert Chesterton"
},
{
"text": "The past has no power over the present moment. ",
"author": "Eckhart Tolle"
},
{
"text": "If you pick up a starving dog and make him prosperous he will not bite you. This is the principal difference between a dog and man.",
"author": "Mark Twain"
},
{
"text": "Trust is the foundation of great leadership.",
"author": "Lolly Daskal"
},
{
"text": "Ability is a poor man\u0027s wealth.",
"author": "John Wooden"
},
{
"text": "No one ever said life was fair. Just Eventful.",
"author": "Carol Burnett"
},
{
"text": "Your world is a living expression of how you are using and have used your mind.",
"author": "Earl Nightingale"
},
{
"text": "If life were predictable it would cease to be life, and be without flavor.",
"author": "Eleanor Roosevelt"
},
{
"text": "We should not look back unless it is to derive useful lessons from past errors.",
"author": "George Washington"
},
{
"text": "Never feel shame for trying and failing, for he who has never failed is he who has never tried.",
"author": "Og Mandino"
},
{
"text": "Fools resist. The wise embrace.",
"author": "Maxime Lagace"
},
{
"text": "The more you are motivated by Love, The more Fearless \u0026 Free your action will be.",
"author": "Dalai Lama"
},
{
"text": "When I let go of what I am, I become what I might be.",
"author": "Lao Tzu"
},
{
"text": "A pessimist is one who makes difficulties of his opportunities and an optimist is one who makes opportunities of his difficulties.",
"author": "Harry S. Truman"
},
{
"text": "If you change the way you look at things, the things you look at change. ",
"author": "Wayne Dyer"
},
{
"text": "The difference between treason and patriotism is only a matter of dates.",
"author": "Alexandre Dumas"
},
{
"text": "Learn only how to avoid seeking for and attaching yourselves to anything.",
"author": "Huang Po"
},
{
"text": "Mastering others is strength, mastering yourself is true power.",
"author": "Lao Tzu"
},
{
"text": "Do every act of your life as if it were your last.",
"author": "Marcus Aurelius"
},
{
"text": "Do good, live in the most positive and joyful way possible every day.",
"author": "Roy T. Bennett"
},
{
"text": "By seeking and blundering we learn.",
"author": "Johann Wolfgang von Goethe"
},
{
"text": "What a liberation to realize that \u0027the voice in my head\u0027 is not who I am. Who am I then? The one who sees that.",
"author": "Eckhart Tolle"
},
{
"text": "Success is getting what you want. Happiness is wanting what you get.",
"author": "Andrew Carnegie"
},
{
"text": "Forgive yourself for your faults and your mistakes and move on.",
"author": "Les Brown"
},
{
"text": "As a matter of fact is an expression that precedes many an expression that isn\u0027t.",
"author": "Laurence J. Peter"
},
{
"text": "I never said it would be easy, I only said it would be worth it.",
"author": "Mae West"
},
{
"text": "Everyone you admire was once a beginner.",
"author": "Jack Butcher"
},
{
"text": "We create the world and ourselves;",
"author": "Ming-Dao Deng"
},
{
"text": "Great things are not done by impulse, but by a series of small things brought together.",
"author": "Vincent van Gogh"
},
{
"text": "The most important thing in life is to stop saying \u0027I wish\u0027 and start saying \u0027I will\u0027. Consider nothing impossible, then treat possibilities as probabilities.",
"author": "Charles Dickens"
},
{
"text": "No matter how smart we may think we are, no matter how committed we are to our truth, we can lose our way.",
"author": "Kamal Ravikant"
},
{
"text": "Everyone can rise above their circumstances and achieve success if they are dedicated to and passionate about what they do.",
"author": "Nelson Mandela"
},
{
"text": "Follow the man who seeks the truth; run from the man who has found it.",
"author": "Vaclav Havel"
},
{
"text": "It still holds true that man is most uniquely human when he turns obstacles into opportunities.",
"author": "Eric Hoffer"
},
{
"text": "Create with the heart; build with the mind.",
"author": "Criss Jami"
},
{
"text": "Better the cottage where one is merry than the palace where one weeps.",
"author": "Chinese Proverb"
},
{
"text": "Even a hare will bite when it is cornered. ",
"author": "Chinese Proverb"
},
{
"text": "It is better to change an opinion than to persist in a wrong one.",
"author": "Socrates"
},
{
"text": "People with clear, written goals, accomplish far more in a shorter period of time than people without them could ever imagine.",
"author": "Brian Tracy"
},
{
"text": "You can calculate the worth of a man by the number of his enemies.",
"author": "Gustave Flaubert"
},
{
"text": "The only person you should try to be better than is the person you were yesterday.",
"author": "Brian Tracy"
},
{
"text": "Evil is whatever distracts. ",
"author": "Franz Kafka"
},
{
"text": "It is passion that makes man live; wisdom makes one only last.",
"author": "Nicolas Chamfort"
},
{
"text": "The only way to \u0027find out if it will work out\u0027 is to do it.",
"author": "Simon Sinek"
},
{
"text": "If they wrote it to make money, don\u0027t read it.",
"author": "Naval Ravikant"
},
{
"text": "You will succeed because most people are lazy.",
"author": "Shahir Zag"
},
{
"text": "Anyone who stops learning is old, whether at twenty or eighty. Anyone who keeps learning stays young. ",
"author": "Henry Ford"
},
{
"text": "Mistakes are painful when they happen, but years later a collection of mistakes is what is called experience.",
"author": "Denis Waitley"
},
{
"text": "Keep your dreams, you never know when you might need them.",
"author": "Carlos Ruiz Zafon"
},
{
"text": "If you don\u0027t read the newspaper, you\u0027re uninformed. If you read the newspaper, you\u0027re misinformed.",
"author": "Mark Twain"
},
{
"text": "Letting go means to come to the realization that some people are a part of your history, but not a part of your destiny.",
"author": "Steve Maraboli"
},
{
"text": "The first man gets the oyster, the second man gets the shell.",
"author": "Andrew Carnegie"
},
{
"text": "If you throw away all thoughts of attainment, you will then come to see the real purpose of your quest.",
"author": "Seungsahn"
},
{
"text": "Reversing your treatment of the man you have wronged is better than asking his forgiveness.",
"author": "Elbert Hubbard"
},
{
"text": "Confidence is contagious. So is lack of confidence.",
"author": "Vince Lombardi"
},
{
"text": "If you are ever the smartest person in the room, you are in the wrong room.",
"author": "C. Sean McGee"
},
{
"text": "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"
},
{
"text": "Do not anticipate trouble, or worry about what may never happen. Keep in the sunlight.",
"author": "Benjamin Franklin"
},
{
"text": "We have a duty to maintain the light of consciousness to make sure it continues into the future.",
"author": "Elon Musk"
},
{
"text": "You can calculate the worth of a man by the number of his enemies.",
"author": "Gustave Flaubert"
},
{
"text": "Because of your smile, you make life more beautiful.",
"author": "Thich Nhat Hanh"
},
{
"text": "Success is liking yourself, liking what you do, and liking how you do it.",
"author": "Maya Angelou"
},
{
"text": "The major difference between the big shot and the little shot is the big shot is just a little shot who kept on shooting.",
"author": "Zig Ziglar"
},
{
"text": "The more we have the less we own.",
"author": "Meister Eckhart"
},
{
"text": "Expect the best, plan for the worst, and prepare to be surprised. ",
"author": "Denis Waitley"
},
{
"text": "Words are clothes that thoughts wear",
"author": "Samuel Butler"
},
{
"text": "Just get out and do it. You will be very, very glad that you did.",
"author": "Christopher McCandless"
},
{
"text": "Identify your problems, but give your power and energy to solutions.",
"author": "Tony Robbins"
},
{
"text": "Resilience is not what happens to you. It\u0027s how you react to, respond to, and recover from what happens to you.",
"author": "Jeffrey Gitomer"
},
{
"text": "Not until we are lost do we begin to understand ourselves.",
"author": "Henry David Thoreau"
},
{
"text": "When you\u0027re at the end of your rope, tie a knot and hold on.",
"author": "Theodore Roosevelt"
},
{
"text": "The more you lose yourself in something bigger than yourself, the more energy you will have.",
"author": "Norman Vincent Peale"
},
{
"text": "Normality is a paved road: It\u0027s comfortable to walk, but no flowers grow on it.",
"author": "Vincent van Gogh"
},
{
"text": "A person without a sense of humor is like a wagon without springs, jolted by every pebble in the road.",
"author": "Henry Ward Beecher"
},
{
"text": "Tall oaks grow from little acorns.",
"author": "Andrew Carnegie"
},
{
"text": "Most great people have achieved their greatest success just one step beyond their greatest failure.",
"author": "Napoleon Hill"
},
{
"text": "When you are talented you do it whatever it is until your fingers bleed or your eyes are ready to fall out of your head.",
"author": "Stephen King"
},
{
"text": "We are born from a quiet sleep, and we die to a calm awakening",
"author": "Zhuangzi"
},
{
"text": "The greatest of all mistakes is to do nothing because you think you can only do a little. ",
"author": "Zig Ziglar"
},
{
"text": "A journey of a thousand miles must begin with a single step.",
"author": "Lao Tzu"
},
{
"text": "Thinking is the hardest work there is. That is why so few people engage in it.",
"author": "Robert Kiyosaki"
},
{
"text": "Pain doesn\u0027t last. And when it\u0027s gone, we have something to show for it. Growth.",
"author": "Kamal Ravikant"
},
{
"text": "To raise your consciousness, surround yourself with people of higher consciousness.",
"author": "Celestine Chua"
},
{
"text": "Everyone is a moon, and has a dark side which he never shows to anybody.",
"author": "Mark Twain"
},
{
"text": "Don\u0027t just sit there. Do something. The answers will follow.",
"author": "Mark Manson"
},
{
"text": "Do not take life too seriously. You will never get out of it alive.",
"author": "Elbert Hubbard"
},
{
"text": "You are never too old to become younger.",
"author": "Mae West"
},
{
"text": "It is not fair to ask of others what you are not willing to do yourself.",
"author": "Eleanor Roosevelt"
},
{
"text": "If we are not able to smile, then the world will not have peace.",
"author": "Thich Nhat Hanh"
},
{
"text": "Life does not get better by chance, it gets better by change.",
"author": "Jim Rohn"
},
{
"text": "I must also have a dark side if I am to be whole.",
"author": "Carl Jung"
},
{
"text": "Human beings believe just as they breathe - in order to survive.",
"author": "Carlos Ruiz Zafon"
},
{
"text": "Living life in style also means living a life of balance.",
"author": "Jim Rohn"
},
{
"text": "The people who are crazy enough to think they can change the world are the ones who do.",
"author": "Steve Jobs"
},
{
"text": "The art of being wise is knowing what to overlook.",
"author": "William James"
},
{
"text": "Attitude drives actions. Actions drive results. Results drive lifestyles.",
"author": "Jim Rohn"
},
{
"text": "Nothing external to you has any power over you.",
"author": "Ralph Waldo Emerson"