-
Notifications
You must be signed in to change notification settings - Fork 1
/
quotes.json
1262 lines (1262 loc) · 42.3 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": "What you do today can improve all your tomorrows.",
"author": "Ralph Marston"
},
{
"quote": "What you get by achieving your goals is not as important as what you become by achieving your goals.",
"author": "Zig Ziglar"
},
{
"quote": "The key is to keep company only with people who uplift you, whose presence calls forth your best.",
"author": "Epictetus"
},
{
"quote": "We may encounter many defeats but we must not be defeated.",
"author": "May Angelou"
},
{
"quote": "Problems are not stop signs, they are guidelines.",
"author": "Robert H. Schuller"
},
{
"quote": "Be kind whenever possible. It is always possible.",
"author": "Dalai Lama"
},
{
"quote": "A creative man is motivated by the desire to achieve, not by the desire to beat others.",
"author": "Ayn Rand"
},
{
"quote": "A somebody was once a nobody who wanted to and did.",
"author": "John Burroughs"
},
{
"quote": "Life is 10% what happens to us and 90% how we react to it.",
"author": "Dennis P. Kimbro"
},
{
"quote": "Even if you’re on the right track, you’ll get run over if you just sit there.",
"author": "Will Rogers"
},
{
"quote": "Luck is a dividend of sweat. The more you sweat, the luckier you get.",
"author": "Ray Kroc"
},
{
"quote": "Courage is the first of human qualities because it is the quality which guarantees all others.",
"author": "Winston Churchill"
},
{
"quote": "The great thing in this world is not so much where you stand, as in what direction you are moving.",
"author": "Oliver Wendell Holmes"
},
{
"quote": "Though no one can go back and make a brand new start, anyone can start from now and make a brand new ending.",
"author": "Carl Bard"
},
{
"quote": "Speak less than you know; have more than you show.",
"author": "William Shakespeare"
},
{
"quote": "Education costs money. But then so does ignorance.",
"author": "Sir Claus Moser"
},
{
"quote": "The journey of a thousand miles begins with one step.",
"author": "Lao Tzu"
},
{
"quote": "Do not let what you cannot do interfere with what you can do.",
"author": "John Wooden"
},
{
"quote": "Defeat is not bitter unless you swallow it.",
"author": "Joe Clark"
},
{
"quote": "An obstacle is often a stepping stone.",
"author": "Prescott"
},
{
"quote": "Don’t worry about failures, worry about the chances you miss when you don’t even try.",
"author": "Jack Canfield"
},
{
"quote": "Live each day as if your life had just begun.",
"author": "Johann Wolfgang Von Goethe"
},
{
"quote": "The secret to getting ahead is getting started.",
"author": "Mark Twain"
},
{
"quote": "The will to win, the desire to succeed, the urge to reach your full potential, these are the keys that will unlock the door to personal excellence.",
"author": "Confucius"
},
{
"quote": "Set your goals high and don’t stop until you get there.",
"author": "Bo Jackson"
},
{
"quote": "The world is full of magical things patiently waiting for our wits to grow sharper.",
"author": "Bertrand Russell"
},
{
"quote": "Let us make our future now, and let us make our dreams tomorrow’s reality.",
"author": "Malala Yousafzai"
},
{
"quote": "All you need is the plan, the road map, and the courage to press on to your destination.",
"author": "Earl Nightingale"
},
{
"quote": "The glow of one warm thought is to me worth more than money.",
"author": "Thomas Jefferson"
},
{
"quote": "The power of imagination makes us infinite.",
"author": "John Muir"
},
{
"quote": "Try to be a rainbow in someone’s cloud.",
"author": "Maya Angelou"
},
{
"quote": "I dwell in possibility.",
"author": "Emily Dickinson"
},
{
"quote": "A No. 2 pencil and a dream can take you anywhere.",
"author": "Joyce Meyer"
},
{
"quote": "In a gentle way, you can shake the world.",
"author": "Mahatma Gandhi"
},
{
"quote": "Follow your bliss and the universe will open doors where there were only walls.",
"author": "Joseph Campbell"
},
{
"quote": "Each day provides its own gifts.",
"author": "Marcus Aurelius"
},
{
"quote": "Creativity is intelligence having fun.",
"author": "Albert Einstein"
},
{
"quote": "People who are crazy enough to think they can change the world, are the ones who do.",
"author": "Rob Siltanen"
},
{
"quote": "Imagine your life is perfect in every respect; what would it look like?",
"author": "Brian Tracy"
},
{
"quote": "The way to get started is to quit talking and begin doing.",
"author": "Walt Disney"
},
{
"quote": "It is always the simple that produces the marvelous.",
"author": "Amelia Barr"
},
{
"quote": "Our greatest glory is not in never falling, but in rising every time we fall.",
"author": "Confucius"
},
{
"quote": "Everything you’ve ever wanted is on the other side of fear.",
"author": "George Addair"
},
{
"quote": "Success is not final, failure is not fatal: it is the courage to continue that counts.",
"author": "Winston Churchill"
},
{
"quote": "Hardships often prepare ordinary people for an extraordinary destiny.",
"author": "C.S. Lewis"
},
{
"quote": "Believe in yourself. You are braver than you think, more talented than you know, and capable of more than you imagine.",
"author": "Roy T. Bennett"
},
{
"quote": "I learned that courage was not the absence of fear, but the triumph over it. The brave man is not he who does not feel afraid, but he who conquers that fear.",
"author": "Nelson Mandela"
},
{
"quote": "There is only one thing that makes a dream impossible to achieve: the fear of failure.",
"author": "Paulo Coelho"
},
{
"quote": "It’s not whether you get knocked down. It’s whether you get up.",
"author": "Vince Lombardi"
},
{
"quote": "Your true success in life begins only when you make the commitment to become excellent at what you do.",
"author": "Brian Tracy"
},
{
"quote": "If you believe it will work out, you’ll see opportunities. If you believe it won’t, you will see obstacles.",
"author": "Wayne Dyer"
},
{
"quote": "Your mental and physical health come first. Everything else is secondary.",
"author": "Zat Rana"
},
{
"quote": "Less is almost always more. Simplicity is almost always the answer.",
"author": "Zat Rana"
},
{
"quote": "You have to be lucky to be successful, but luck can be engineered.",
"author": "Zat Rana"
},
{
"quote": "It all starts and ends in the mind. The most crucial skill is how you think.",
"author": "Zat Rana"
},
{
"quote": "People suck. But if you’re kind, you’ll get the best out of even the worst.",
"author": "Zat Rana"
},
{
"quote": "Perfection only exists in the mind. It’s not real. Imagine, create, improve.",
"author": "Zat Rana"
},
{
"quote": "The world doesn’t need more noise. Don’t complain. Set an example.",
"author": "Zat Rana"
},
{
"quote": "Struggle is a part of life. Learning to struggle well is a reward in itself.",
"author": "Zat Rana"
},
{
"quote": "Your attention is the most important asset you have. Be deliberate with it.",
"author": "Zat Rana"
},
{
"quote": "The goal of an ideal partner isn’t to complete you. It’s to augment you.",
"author": "Zat Rana"
},
{
"quote": "Who you let into your life is a vital decision. Don’t leave it up to chance.",
"author": "Zat Rana"
},
{
"quote": "The purpose of life isn’t to do or to accomplish. It’s to merely experience.",
"author": "Zat Rana"
},
{
"quote": "Everything is approximate. Don’t aim to be right. Aim to be less wrong.",
"author": "Zat Rana"
},
{
"quote": "It’s better to not have an opinion than to blindly follow someone else’s.",
"author": "Zat Rana"
},
{
"quote": "For the world to put you down, it first needs you to give it permission.",
"author": "Zat Rana"
},
{
"quote": "The more things you care about, the less meaningful caring becomes.",
"author": "Zat Rana"
},
{
"quote": "Be kind to yourself in the face of failures. They really don’t define you.",
"author": "Zat Rana"
},
{
"quote": "Don’t take too much pride in your accomplishments. They’re not all yours.",
"author": "Zat Rana"
},
{
"quote": "Life is short. Don’t tolerate bullsh*t. Don’t wait until it’s too late.",
"author": "Zat Rana"
},
{
"quote": "It’s true that some people have more innate talent. But talent isn’t enough.",
"author": "Zat Rana"
},
{
"quote": "There is no such thing as fairness, and dwelling on it creates despair.",
"author": "Zat Rana"
},
{
"quote": "If you want to achieve greatness stop asking for permission.",
"author": "Anonymous"
},
{
"quote": "Things work out best for those who make the best of how things work out.",
"author": "John Wooden"
},
{
"quote": "To live a creative life, we must lose our fear of being wrong.",
"author": "Anonymous"
},
{
"quote": "If you are not willing to risk the usual you will have to settle for the ordinary.",
"author": "Jim Rohn"
},
{
"quote": "Trust because you are willing to accept the risk, not because it’s safe or certain.",
"author": "Anonymous"
},
{
"quote": "All our dreams can come true if we have the courage to pursue them.",
"author": "Walt Disney"
},
{
"quote": "Good things come to people who wait, but better things come to those who go out and get them.",
"author": "Anonymous"
},
{
"quote": "If you do what you always did, you will get what you always got.",
"author": "Anonymous"
},
{
"quote": "Success is walking from failure to failure with no loss of enthusiasm.",
"author": "Winston Churchill"
},
{
"quote": "Just when the caterpillar thought the world was ending, he turned into a butterfly.",
"author": "Proverb"
},
{
"quote": "Successful entrepreneurs are givers and not takers of positive energy.",
"author": "Anonymous"
},
{
"quote": "You know you're in love when you can't fall asleep because reality is finally better than your dreams.",
"author": "Dr. Seuss"
},
{
"quote": "Whenever you see a successful person you only see the public glories, never the private sacrifices to reach them.",
"author": "Vaibhav Shah"
},
{
"quote": "Don’t be afraid to give up the good to go for the great.",
"author": "John D. Rockefeller"
},
{
"quote": "The distance between insanity and genius is measured only by success.",
"author": "Bruce Feirstein"
},
{
"quote": "Don’t raise your voice, improve your argument.",
"author": "Anonymous"
},
{
"quote": "What seems to us as bitter trials are often blessings in disguise.",
"author": "Oscar Wilde"
},
{
"quote": "Do one thing every day that scares you.",
"author": "Eleanor Roosevelt"
},
{
"quote": "What’s the point of being alive if you don’t at least try to do something remarkable.",
"author": "Anonymous"
},
{
"quote": "Life is not about finding yourself. Life is about creating yourself.",
"author": "Lolly Daskal"
},
{
"quote": "What lies behind us and what lies before us are tiny matters compared to what lies within us.",
"author": "Ralph Waldo Emerson"
},
{
"quote": "It is never too late to be what you might have been.",
"author": "George Eliot"
},
{
"quote": "Innovation distinguishes between a leader and a follower.",
"author": "Steve Jobs"
},
{
"quote": "In three words I can sum up everything I've learned about life: it goes on.",
"author": "Robert Frost"
},
{
"quote": "It does not matter how slowly you go, so long as you do not stop.",
"author": "Confucius"
},
{
"quote": "We are still masters of our fate. We are still captains of our souls.",
"author": "Winston Churchill"
},
{
"quote": "The best way out is always through.",
"author": "Robert Frost"
},
{
"quote": "Hope is like the sun, which, as we journey toward it, casts the shadow of our burden behind us.",
"author": "Samuel Smiles"
},
{
"quote": "Enthusiasm is the energy and force that builds literal momentum of the human soul and mind.",
"author": "Bryant McGill"
},
{
"quote": "Sometimes thinking too much can destroy your momentum.",
"author": "Tom Watson"
},
{
"quote": "Work spares us from three evils: boredom, vice, and need.",
"author": "Voltaire"
},
{
"quote": "Fortune favors the brave.",
"author": "Publius Terence"
},
{
"quote": "Strong lives are motivated by dynamic purposes.",
"author": "Kenneth Hildebrand"
},
{
"quote": "Either write something worth reading or do something worth writing.",
"author": "Benjamin Franklin"
},
{
"quote": "If the wind will not serve, take to the oars.",
"author": "Latin Proverb"
},
{
"quote": "There are no traffic jams along the extra mile.",
"author": "Roger Staubach"
},
{
"quote": "Too many of us are not living our dreams because we are living our fears.",
"author": "Les Brown"
},
{
"quote": "Challenges are what make life interested and overcoming them is what makes life meaningful.",
"author": "Joshua J. Marine"
},
{
"quote": "I have been impressed with the urgency of doing. Knowing is not enough; we must apply. Being willing is not enough; we must do.",
"author": "Leonardo da Vinci"
},
{
"quote": "Start where you are. Use what you have. Do what you can.",
"author": "Arthur Ashe"
},
{
"quote": "Happiness is not something ready made. It comes from your own actions.",
"author": "Dalai Lama"
},
{
"quote": "If you do what you’ve always done, you’ll get what you’ve always gotten.",
"author": "Tony Robbins"
},
{
"quote": "If you are offered a seat on a rocket ship, don’t ask what seat! Just get on.",
"author": "Sheryl Sandberg"
},
{
"quote": "The question isn’t who is going to let me; it’s who is going to stop me.",
"author": "Ayn Rand"
},
{
"quote": "Always work hard. Intensity clarifies. It creates not only momentum, but also the pressure you need to feel either friction, or fulfillment.",
"author": "Marcus Buckingham"
},
{
"quote": "We are what we repeatedly do. Excellence, therefore, is not an act but a habit.",
"author": "Aristotle"
},
{
"quote": "Take calculated risks. That is quite different from being rash.",
"author": "George S. Patton"
},
{
"quote": "In every difficult situation is potential value. Believe this, then begin looking for it.",
"author": "Norman Vincent Peale"
},
{
"quote": "When everything seems to be going against you, remember that the airplane takes off against the wind, not with it.",
"author": "Henry Ford"
},
{
"quote": "Accept responsibly for your life. Know that it is you who will get you where you want to go, no one else.",
"author": "Les Brown"
},
{
"quote": "You cannot plough a field by turning it over in your mind.",
"author": "Anonymous"
},
{
"quote": "The world is wide, and I will not waste my life in friction when it could be turned into momentum.",
"author": "Frances E. Willard"
},
{
"quote": "Believe with all of your heat that you will do what you were made to do.",
"author": "Orison Swett Marden"
},
{
"quote": "Do not wait to strike till the iron is hot; but make it hot by striking.",
"author": "William B. Sprague"
},
{
"quote": "If you have the guts to keep making mistakes, your wisdom and intelligence leap forward with huge momentum.",
"author": "Holly Near"
},
{
"quote": "Good things come to those who wait but greater things come to those who get off their ass and do anything to make it happen.",
"author": "Anonymous"
},
{
"quote": "Ask and it will be given to you; search and you will find; knock and the door will be opened for you.",
"author": "Jesus"
},
{
"quote": "People often say that motivation doesn’t last. Well, neither does bathing and that is why we recommend it daily.",
"author": "Zig Ziglar"
},
{
"quote": "I can, therefore I am.",
"author": "Simone Weil"
},
{
"quote": "I’ve found that luck is quite predictable. If you want more luck, take more chances. Be more active. Show up more often.",
"author": "Brian Tracy"
},
{
"quote": "You need to overcome the tug of people against you as you reach for high goals.",
"author": "George S. Patton"
},
{
"quote": "To know oneself, one should assert oneself.",
"author": "Albert Camus"
},
{
"quote": "The first step toward success is taken when you refuse to be a captive of the environment in which you first find yourself.",
"author": "Mark Caine"
},
{
"quote": "The most effective way to do it, is to do it.",
"author": "Amelia Earhart"
},
{
"quote": "Begin to be now what you will be hereafter.",
"author": "William James"
},
{
"quote": "Leap, and the net will appear.",
"author": "John Burroughs"
},
{
"quote": "Do your work with your whole heart, and you will succeed – there’s so little competition.",
"author": "Elbert Hubbard"
},
{
"quote": "A goal is a dream with a deadline.",
"author": "Napoleon Hill"
},
{
"quote": "Things do not happen. Things are made to happen.",
"author": "John F. Kennedy"
},
{
"quote": "Quality is not an act, it is a habit.",
"author": "Aristotle"
},
{
"quote": "The secret of getting ahead is getting started.",
"author": "Mark Twain"
},
{
"quote": "By failing to prepare, you are preparing to fail.",
"author": "Benjamin Franklin"
},
{
"quote": "Either you run the day or the day runs you.",
"author": "Jim Rohn"
},
{
"quote": "Once you choose hope, anything's possible.",
"author": "Christopher Reeve"
},
{
"quote": "Try not to become a person of success, but rather try to become a person of value.",
"author": "Albert Einstein"
},
{
"quote": "Success is walking from failure to failure with no loss of enthusiasm.",
"author": "Winston Churchill"
},
{
"quote": "Someone is sitting in the shade today because someone planted a tree a long time ago.",
"author": "Warren Buffett"
},
{
"quote": "Don't cry because it's over, smile because it happened.",
"author": "Dr. Seuss"
},
{
"quote": "Life is short, and it is here to be lived.",
"author": "Kate Winslet"
},
{
"quote": "You can't connect the dots looking forward; you can only connect them looking backward...This approach has never let me down, and it has made all the difference in my life.",
"author": "Steve Jobs"
},
{
"quote": "Everything you can imagine is real.",
"author": "Pablo Picasso"
},
{
"quote": "Successful people do what unsuccessful people are not willing to do. Don't wish it were easier; wish you were better.",
"author": "Jim Rohn"
},
{
"quote": "Rarely have I seen a situation where doing less than the other guy is a good strategy.",
"author": "Jimmy Spithill"
},
{
"quote": "Change will not come if we wait for some other person or some other time. We are the ones we've been waiting for. We are the change that we seek.",
"author": "Barack Obama"
},
{
"quote": "If you love what you do and are willing to do what it takes, it's within your reach.",
"author": "Steve Wozniak"
},
{
"quote": "In my experience, there is only one motivation, and that is desire. No reasons or principle contain it or stand against it.",
"author": "Jane Smiley"
},
{
"quote": "Keep on going, and the chances are that you will stumble on something, perhaps when you are least expecting it.",
"author": "Charles F. Kettering"
},
{
"quote": "The successful warrior is the average man, with laser-like focus.",
"author": "Bruce Lee"
},
{
"quote": "In the midst of movement and chaos, keep stillness inside of you.",
"author": "Deepak Chopra"
},
{
"quote": "Success does not consist in never making mistakes but in never making the same one a second time.",
"author": "George Bernard Shaw"
},
{
"quote": "I don't want to get to the end of my life and find that I lived just the length of it. I want to have lived the width of it as well.",
"author": "Diane Ackerman"
},
{
"quote": "As we look ahead into the next century, leaders will be those who empower others.",
"author": "Bill Gates"
},
{
"quote": "The only place where success comes before work is in the dictionary.",
"author": "Vidal Sassoon"
},
{
"quote": "It’s not what you look at that matters, it’s what you see.",
"author": "Anonymous"
},
{
"quote": "The road to success and the road to failure are almost exactly the same.",
"author": "Colin R. Davis"
},
{
"quote": "Success is liking yourself, liking what you do, and liking how you do it.",
"author": "Maya Angelou"
},
{
"quote": "A real entrepreneur is somebody who has no safety net underneath them.",
"author": "Henry Kravis"
},
{
"quote": "The function of leadership is to produce more leaders, not more followers.",
"author": "Ralph Nader"
},
{
"quote": "Whenever you find yourself on the side of the majority, it is time to pause and reflect.",
"author": "Mark Twain"
},
{
"quote": "If you genuinely want something, don’t wait for it — teach yourself to be impatient.",
"author": "Gurbaksh Chahal"
},
{
"quote": "Don’t let the fear of losing be greater than the excitement of winning.",
"author": "Robert Kiyosaki"
},
{
"quote": "Motivation is what gets you started. Habit is what keeps you going.",
"author": "Jim Ryun"
},
{
"quote": "People rarely succeed unless they have fun in what they are doing.",
"author": "Dale Carnegie"
},
{
"quote": "Little minds are tamed and subdued by misfortune; but great minds rise above it.",
"author": "Washington Irving"
},
{
"quote": "Knowledge is being aware of what you can do. Wisdom is knowing when not to do it.",
"author": "Anonymous"
},
{
"quote": "You can do anything, but not everything.",
"author": "Anonymous"
},
{
"quote": "Success is most often achieved by those who don't know that failure is inevitable.",
"author": "Coco Chanel"
},
{
"quote": "There are two types of people who will tell you that you cannot make a difference in this world: those who are afraid to try and those who are afraid you will succeed.",
"author": "Ray Goforth"
},
{
"quote": "Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning.",
"author": "Albert Einstein"
},
{
"quote": "Take up one idea. Make that one idea your life - think of it, dream of it, live on that idea. Let the brain, muscles, nerves, every part of your body be full of that idea, and just leave every other idea alone. This is the way to success.",
"author": "Swami Vivekananda"
},
{
"quote": "You only live once, but if you do it right, once is enough.",
"author": "Mae West"
},
{
"quote": "Opportunities don't happen. You create them.",
"author": "Chris Grosser"
},
{
"quote": "You miss 100 percent of the shots you don't take.",
"author": "Wayne Gretzky"
},
{
"quote": "The way I see it, if you want the rainbow, you gotta put up with the rain.",
"author": "Dolly Parton"
},
{
"quote": "The longer I live, the more beautiful life becomes.",
"author": "Frank Lloyd Wright"
},
{
"quote": "Success is the sum of small efforts, repeated day-in and day-out.",
"author": "Robert Collier"
},
{
"quote": "Things work out best for those who make the best of how things work out.",
"author": "John Wooden"
},
{
"quote": "A dream doesn't become reality through magic; it takes sweat, determination, and hard work.",
"author": "Colin Powell"
},
{
"quote": "If you always do what interests you, at least one person is pleased.",
"author": "Katharine Hepburn"
},
{
"quote": "Twenty years from now you will be more disappointed by the things that you didn't do than by the ones you did do. So throw off the bowlines. Sail away from the safe harbor...Explore. Dream. Discover.",
"author": "Mark Twain"
},
{
"quote": "Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work.",
"author": "Steve Jobs"
},
{
"quote": "Don't be afraid to give up the good to go for the great.",
"author": "John D. Rockefeller"
},
{
"quote": "Only put off until tomorrow what you are willing to die having left undone.",
"author": "Pablo Picasso"
},
{
"quote": "Though no one can go back and make a brand-new start, anyone can start from now and make a brand-new ending.",
"author": "Carl Bard"
},
{
"quote": "We become what we think about most of the time, and that's the strangest secret.",
"author": "Earl Nightingale"
},
{
"quote": "The biggest risk is not taking any risk...In a world that's changing really quickly, the only strategy that is guaranteed to fail is not taking risks.",
"author": "Mark Zuckerberg"
},
{
"quote": "Don't worry about failure; you only have to be right once.",
"author": "Drew Houston"
},
{
"quote": "Nothing great was ever achieved without enthusiasm.",
"author": "Ralph Waldo Emerson"
},
{
"quote": "Keep your face to the sunshine and you can never see the shadow.",
"author": "Helen Keller"
},
{
"quote": "The only place where success comes before work is in the dictionary.",
"author": "Vidal Sassoon"
},
{
"quote": "The more you praise and celebrate your life, the more there is in life to celebrate.",
"author": "Oprah Winfrey"
},
{
"quote": "All progress takes place outside the comfort zone.",
"author": "Michael John Bobak"
},
{
"quote": "The first step toward success is taken when you refuse to be a captive of the environment in which you first find yourself.",
"author": "Mark Caine"
},
{
"quote": "I avoid looking forward or backward, and try to keep looking upward.",
"author": "Charlotte Bronte"
},
{
"quote": "One of the greatest diseases is to be nobody to anybody.",
"author": "Mother Teresa"
},
{
"quote": "Your time is limited, so don’t waste it living someone else’s life.",
"author": "Steve Jobs"
},
{
"quote": "Setting goals is the first step in turning the invisible into visible.",
"author": "Tony Robbins"
},
{
"quote": "The most difficult thing is the decision to act, the rest is merely tenacity.",
"author": "Emelia Earhart"
},
{
"quote": "Courage is grace under pressure.",
"author": "Ernest Hemingway"
},
{
"quote": "If you are not willing to risk the usual, you will have to settle for the ordinary.",
"author": "Jim Rohn"
},
{
"quote": "There is no easy walk to freedom anywhere, and many of us will have to pass through the valley of the shadow of death again and again before we reach the mountaintop of our desires.",
"author": "Nelson Mandela"
},
{
"quote": "It is not the strongest of the species that survive, nor the most intelligent, but the one most responsive to change.",
"author": "Charles Darwin"
},
{
"quote": "The best and most beautiful things in the world cannot be seen or even touched -- they must be felt with the heart.",
"author": "Helen Keller"
},
{
"quote": "Great minds discuss ideas; average minds discuss events; small minds discuss people.",
"author": "Eleanor Roosevelt"
},
{
"quote": "The best revenge is massive success.",
"author": "Frank Sinatra"
},
{
"quote": "A successful man is one who can lay a firm foundation with the bricks others have thrown at him.",
"author": "David Brinkley"
},
{
"quote": "May you live every day of your life.",
"author": "Jonathan Swift"
},
{
"quote": "The difference between winning and losing is most often not quitting.",
"author": "Walt Disney"
},
{
"quote": "Live as if you were to die tomorrow. Learn as if you were to live forever.",
"author": "Mahatma Gandhi"
},
{
"quote": "I have not failed. I've just found 10,000 ways that won't work.",
"author": "Thomas Edison"
},
{
"quote": "When you cease to dream you cease to live.",
"author": "Malcolm Forbes"
},
{
"quote": "No one can make you feel inferior without your consent.",
"author": "Eleanor Roosevelt"
},
{
"quote": "Failure is another steppingstone to greatness.",
"author": "Oprah Winfrey"
},
{
"quote": "Identity is a prison you can never escape, but the way to redeem your past is not to run from it, but to try to understand it, and use it as a foundation to grow.",
"author": "Jay-Z"
},
{
"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.",
"author": "Audre Lorde"
},
{
"quote": "Develop success from failures. Discouragement and failure are two of the surest stepping stones to success.",
"author": "Dale Carnegie"
},
{
"quote": "If you want to make a permanent change, stop focusing on the size of your problems and start focusing on the size of you!",
"author": "T. Harv Eker"
},
{
"quote": "If you don’t design your own life plan, chances are you’ll fall into someone else’s plan. And guess what they have planned for you? Not much.",
"author": "Jim Rohn"
},
{
"quote": "The number one reason people fail in life is because they listen to their friends, family, and neighbors.",
"author": "Napoleon Hill"
},
{
"quote": "There is no chance, no destiny, no fate, that can hinder or control the firm resolve of a determined soul.",
"author": "Ella Wheeler Wilcox"
},
{
"quote": "You must expect great things of yourself before you can do them.",
"author": "Michael Jordan"
},
{
"quote": "Our greatest fear should not be of failure but of succeeding at things in life that don’t really matter.",
"author": "Francis Chan"
},
{
"quote": "In my experience, there is only one motivation, and that is desire. No reasons or principle contain it or stand against it.",
"author": "Jane Smiley"
},
{
"quote": "I don’t want to get to the end of my life and find that I lived just the length of it. I want to have lived the width of it as well.",
"author": "Diane Ackerman"
},
{
"quote": "Success is...knowing your purpose in life, growing to reach your maximum potential, and sowing seeds that benefit others.",
"author": "John C. Maxwell"
},
{
"quote": "Be miserable. Or motivate yourself. Whatever has to be done, it’s always your choice.",
"author": "Wayne Dyer"
},
{
"quote": "You’ve got to get up every morning with determination if you’re going to go to bed with satisfaction.",
"author": "George Lorimer"
},
{
"quote": "To be successful you must accept all challenges that come your way. You can’t just accept the ones you like.",
"author": "Mike Gafka"
},
{
"quote": "Real difficulties can be overcome; it is only the imaginary ones that are unconquerable.",
"author": "Theodore N. Vail"
},
{
"quote": "Failure is the condiment that gives success its flavor.",
"author": "Truman Capote"
},
{
"quote": "Don’t let what you cannot do interfere with what you can do.",
"author": "John R. Wooden"
},
{
"quote": "It is better to fail in originality than to succeed in imitation.",
"author": "Herman Melville"
},
{
"quote": "Fortune sides with him who dares.",
"author": "Virgil"
},
{
"quote": "You may have to fight a battle more than once to win it.",
"author": "Margaret Thatcher"
},
{
"quote": "It's not the size of the dog in the fight, but the size of the fight in the dog",
"author": "Archie Griffen"
},
{
"quote": "Nothing lasts forever. Not even your troubles.",
"author": "Arnold H. Glasgow"
},
{
"quote": "There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle.",
"author": "Albert Einstein"
},
{
"quote": "Where hope grows, miracles blossom.",
"author": "Elna Rae"