-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes-new.json
2712 lines (2712 loc) · 101 KB
/
quotes-new.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": "It just works",
"author": "Todd Howard",
"link": "https://en.wikipedia.org/wiki/Todd_Howard"
},
{
"quote": "Sometimes it doesn't just work.",
"author": "Todd Howard",
"link": "https://en.wikipedia.org/wiki/Todd_Howard"
},
{
"quote": "Every failure brings with it the seed of an equivalent success.",
"author": "Napoleon Hill",
"link": "https://en.wikipedia.org/wiki/Napoleon_Hill"
},
{
"quote": "Only those who dare to fail greatly can ever achieve greatly.",
"author": "John F. Kennedy",
"link": "https://en.wikipedia.org/wiki/John_F._Kennedy"
},
{
"quote": "It is hard to fail, but it is worse never to have tried to succeed.",
"author": "Theodore Roosevelt",
"link": "https://en.wikipedia.org/wiki/Theodore_Roosevelt"
},
{
"quote": "Hold fast to dreams, for if dreams die, life is a broken winged bird that cannot fly.",
"author": "Langston Hughes",
"link": "https://en.wikipedia.org/wiki/Langston_Hughes"
},
{
"quote": "There is nothing so useless as doing efficiently that which should not be done at all.",
"author": "Peter Drucker",
"link": "https://en.wikipedia.org/wiki/Peter_Drucker"
},
{
"quote": "He who rejects change is the architect of decay.",
"author": "Harold Wilson",
"link": "https://en.wikipedia.org/wiki/Harold_Wilson"
},
{
"quote": "Without change there is no innovation, creativity, or incentive for improvement.",
"author": "William Pollard",
"link": "https://en.wikipedia.org/wiki/William_Pollard_(Quak)"
},
{
"quote": "Efficiency is doing things right; effectiveness is doing the right things.",
"author": "Peter Drucker",
"link": "https://en.wikipedia.org/wiki/Peter_Drucker"
},
{
"quote": "Continuous improvement is better than delayed perfection.",
"author": "Mark Twain",
"link": "https://en.wikipedia.org/wiki/Mark_Twain"
},
{
"quote": "You can’t use up creativity. The more you use, the more you have.",
"author": "Maya Angelou",
"link": "https://en.wikipedia.org/wiki/Maya_Angelou"
},
{
"quote": "Small daily improvements over time lead to stunning results.",
"author": "Robin Sharma",
"link": "https://en.wikipedia.org/wiki/Robin_Sharma"
},
{
"quote": "Change is inevitable. Progress is optional.",
"author": "Tony Robbins",
"link": "https://en.wikipedia.org/wiki/Tony_Robbins"
},
{
"quote": "If you always do what you’ve always done, you’ll always be where you’ve always been.",
"author": "T.D. Jakes",
"link": "https://en.wikipedia.org/wiki/T._D._Jakes"
},
{
"quote": "The only thing worse than starting something and failing… is not starting something.",
"author": "Seth Godin",
"link": "https://en.wikipedia.org/wiki/Seth_Godin"
},
{
"quote": "The secret of change is to focus all your energy not on fighting the old but on building the new.",
"author": "Socrates",
"link": "https://en.wikipedia.org/wiki/Socrates"
},
{
"quote": "The biggest room in the world is the room for improvement.",
"author": "Helmut Schmidt",
"link": "https://en.wikipedia.org/wiki/Helmut_Schmidt"
},
{
"quote": "Change before you have to.",
"author": "Jack Welch",
"link": "https://en.wikipedia.org/wiki/Suzy_Welch"
},
{
"quote": "Strive for continuous improvement, instead of perfection.",
"author": "Kim Collins",
"link": "https://en.wikipedia.org/wiki/Kim_Collins"
},
{
"quote": "The best way to predict the future is to create it.",
"author": "Peter Drucker",
"link": "https://en.wikipedia.org/wiki/Peter_Drucker"
},
{
"quote": "Success is the sum of small efforts, repeated day in and day out.",
"author": "Robert Collier",
"link": "https://en.wikipedia.org/wiki/Robert_James-Collier"
},
{
"quote": "Change is the law of life. And those who look only to the past or present are certain to miss the future.",
"author": "John F. Kennedy",
"link": "https://en.wikipedia.org/wiki/John_F._Kennedy"
},
{
"quote": "Even if you are on the right track, you’ll get run over if you just sit there.",
"author": "Will Rogers",
"link": "https://en.wikipedia.org/wiki/Will_Rogers"
},
{
"quote": "Improvement usually means doing something that we have never done before.",
"author": "Shigeo Shingo",
"link": "https://en.wikipedia.org/wiki/Shigeo_Shingo"
},
{
"quote": "Excellence is a continuous process and not an accident.",
"author": "A.P.J. Abdul Kalam",
"link": "https://en.wikipedia.org/wiki/A._P._J._Abdul_Kalam"
},
{
"quote": "The capacity to learn is a gift; the ability to learn is a skill; the willingness to learn is a choice.",
"author": "Brian Herbert",
"link": "https://en.wikipedia.org/wiki/Brian_Herbert"
},
{
"quote": "Innovation distinguishes between a leader and a follower.",
"author": "Steve Jobs",
"link": "https://en.wikipedia.org/wiki/Steve_Jobs"
},
{
"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",
"link": "https://en.wikipedia.org/wiki/Charles_Darwin"
},
{
"quote": "There is no innovation and creativity without failure. Period.",
"author": "Brene Brown",
"link": "https://en.wikipedia.org/wiki/Bren%C3%A9_Brown"
},
{
"quote": "In terms of changes, the spiritual mentors teach me that I must not forget those relating primarily to improve myself.",
"author": "Chico Xavier",
"link": "https://en.wikipedia.org/wiki/Chico_Xavier"
},
{
"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",
"link": "https://en.wikipedia.org/wiki/Steve_Jobs"
},
{
"quote": "It’s not about ideas. It’s about making ideas happen.",
"author": "Scott Belsky",
"link": "https://en.wikipedia.org/wiki/Scott_Belsky"
},
{
"quote": "The only limit to our realization of the tomorrow is our doubts of today.",
"author": "Franklin D. Roosevelt",
"link": "https://en.wikipedia.org/wiki/Franklin_D._Roosevelt"
},
{
"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",
"link": "https://en.wikipedia.org/wiki/Michael_Cain"
},
{
"quote": "Change your life today. Don’t gamble on the future, act now, without delay.",
"author": "Simone de Beauvoir",
"link": "https://en.wikipedia.org/wiki/Simone_de_Beauvoir"
},
{
"quote": "If you’re not failing every now and again, it’s a sign you’re not doing anything very innovative.",
"author": "Woody Allen",
"link": "https://en.wikipedia.org/wiki/Woody_Allen"
},
{
"quote": "If you want something new, you have to stop doing something old.",
"author": "Peter F. Drucker",
"link": "https://en.wikipedia.org/wiki/Peter_Drucker"
},
{
"quote": "If you can dream it, you can do it.",
"author": "Walt Disney",
"link": "https://en.wikipedia.org/wiki/Walt_Disney"
},
{
"quote": "The empires of the future are the empires of the mind.",
"author": "Winston Churchill",
"link": "https://en.wikipedia.org/wiki/Winston_Churchill"
},
{
"quote": "The important thing is not to stop questioning. Curiosity has its own reason for existence.",
"author": "Albert Einstein",
"link": "https://en.wikipedia.org/wiki/Albert_Einstein"
},
{
"quote": "There’s a way to do it better – find it.",
"author": "Thomas A. Edison",
"link": "https://en.wikipedia.org/wiki/Thomas_Edison"
},
{
"quote": "If you do what you always did, you will get what you always got.",
"author": "Albert Einstein",
"link": "https://en.wikipedia.org/wiki/Albert_Einstein"
},
{
"quote": "To improve is to change; to be perfect is to change often.",
"author": "Winston Churchill",
"link": "https://en.wikipedia.org/wiki/Winston_Churchill"
},
{
"quote": "Failure is simply the opportunity to begin again, this time more intelligently.",
"author": "Henry Ford",
"link": "https://en.wikipedia.org/wiki/Henry_Ford"
},
{
"quote": "Don’t watch the clock; do what it does. Keep going.",
"author": "Sam Levenson",
"link": "https://en.wikipedia.org/wiki/Levenson"
},
{
"quote": "You never change your life until you step out of your comfort zone; change begins at the end of your comfort zone.",
"author": "Roy T. Bennett",
"link": "https://en.wikipedia.org/wiki/Roy_Bennett_(politician)"
},
{
"quote": "The more I want to get something done, the less I call it work.",
"author": "Richard Bach",
"link": "https://en.wikipedia.org/wiki/Richard_Bach"
},
{
"quote": "The future depends on what you do today.",
"author": "Mahatma Gandhi",
"link": "https://en.wikipedia.org/wiki/Mahatma_Gandhi"
},
{
"quote": "Progress is impossible without change, and those who cannot change their minds cannot change anything.",
"author": "George Bernard Shaw",
"link": "https://en.wikipedia.org/wiki/George_Bernard_Shaw"
},
{
"quote": "Innovation is the ability to see change as an opportunity – not a threat.",
"author": "Steve Jobs",
"link": "https://en.wikipedia.org/wiki/Steve_Jobs"
},
{
"quote": "The only way to make sense out of change is to plunge into it, move with it, and join the dance.",
"author": "Alan Watts",
"link": "https://en.wikipedia.org/wiki/Alan_Watts"
},
{
"quote": "What is necessary to change a person is to change his awareness of himself.",
"author": "Abraham Maslow",
"link": "https://en.wikipedia.org/wiki/Abraham_Maslow"
},
{
"quote": "Change means that what was before wasn't perfect. People want things to be better.",
"author": "Esther Dyson",
"link": "https://en.wikipedia.org/wiki/Esther_Dyson"
},
{
"quote": "Do not wait until the conditions are perfect to begin. Beginning makes the conditions perfect.",
"author": "Alan Cohen",
"link": "https://en.wikipedia.org/wiki/Alan_Cohen"
},
{
"quote": "Change is the end result of all true learning.",
"author": "Leo Buscaglia",
"link": "https://en.wikipedia.org/wiki/Leo_Buscaglia"
},
{
"quote": "There is nothing permanent except change.",
"author": "Heraclitus",
"link": "https://en.wikipedia.org/wiki/Heraclius"
},
{
"quote": "Efficiency is doing better what is already being done.",
"author": "Peter Drucker",
"link": "https://en.wikipedia.org/wiki/Peter_Drucker"
},
{
"quote": "We can't become what we need to be by remaining what we are.",
"author": "Oprah Winfrey",
"link": "https://en.wikipedia.org/wiki/Oprah_Winfrey"
},
{
"quote": "If I had nine hours to chop down a tree, I’d spend the first six sharpening my axe.",
"author": "Abraham Lincoln",
"link": "https://en.wikipedia.org/wiki/Abraham_Lincoln"
},
{
"quote": "Things do not happen. Things are made to happen.",
"author": "John F. Kennedy",
"link": "https://en.wikipedia.org/wiki/John_F._Kennedy"
},
{
"quote": "An organization’s ability to learn, and translate that learning into action rapidly, is the ultimate competitive advantage.",
"author": "Jack Welch",
"link": "https://en.wikipedia.org/wiki/Suzy_Welch"
},
{
"quote": "It is not the strongest or the most intelligent who will survive but those who can best manage change.",
"author": "Charles Darwin",
"link": "https://en.wikipedia.org/wiki/Charles_Darwin"
},
{
"quote": "Change almost never fails because it's too early. It almost always fails because it's too late.",
"author": "Seth Godin",
"link": "https://en.wikipedia.org/wiki/Seth_Godin"
},
{
"quote": "Adaptability is about the powerful difference between adapting to cope and adapting to win.",
"author": "Max McKeown",
"link": "https://en.wikipedia.org/wiki/Max_McKeown"
},
{
"quote": "If you don’t like something, change it. If you can’t change it, change your attitude.",
"author": "Maya Angelou",
"link": "https://en.wikipedia.org/wiki/Maya_Angelou"
},
{
"quote": "The art of life is a constant readjustment to our surroundings.",
"author": "Kakuzo Okakaura",
"link": "https://en.wikipedia.org/wiki/Okakura_Kakuz%C5%8D"
},
{
"quote": "Action is the foundational key to all success.",
"author": "Pablo Picasso",
"link": "https://en.wikipedia.org/wiki/Pablo_Picasso"
},
{
"quote": "Start where you are. Use what you have. Do what you can.",
"author": "Arthur Ashe",
"link": "https://en.wikipedia.org/wiki/Arthur_Ashe"
},
{
"quote": "The only thing to do with good advice is to pass it on. It is never of any use to oneself.",
"author": "Oscar Wilde",
"link": "https://en.wikipedia.org/wiki/Oscar_Wilde"
},
{
"quote": "By changing nothing, nothing changes.",
"author": "Tony Robbins",
"link": "https://en.wikipedia.org/wiki/Tony_Robbins"
},
{
"quote": "The pessimist complains about the wind; the optimist expects it to change; the realist adjusts the sails.",
"author": "William Arthur Ward",
"link": "https://en.wikipedia.org/wiki/William_Arthur_Ward"
},
{
"quote": "Productivity is being able to do things that you were never able to do before.",
"author": "Franz Kafka",
"link": "https://en.wikipedia.org/wiki/Franz_Kafka"
},
{
"quote": "Amateurs sit and wait for inspiration, the rest of us just get up and go to work.",
"author": "Stephen King",
"link": "https://en.wikipedia.org/wiki/Stephen_King"
},
{
"quote": "The successful person makes a habit of doing what the failing person doesn't like to do.",
"author": "Thomas Edison",
"link": "https://en.wikipedia.org/wiki/Thomas_Edison"
},
{
"quote": "Whenever you see a successful business, someone once made a courageous decision.",
"author": "Peter Drucker",
"link": "https://en.wikipedia.org/wiki/Peter_Drucker"
},
{
"quote": "Don’t be afraid to give up the good to go for the great.",
"author": "John D. Rockefeller",
"link": "https://en.wikipedia.org/wiki/John_D._Rockefeller"
},
{
"quote": "The key to success is action, and the essential in action is perseverance.",
"author": "Sun Yat-sen",
"link": "https://en.wikipedia.org/wiki/Sun_Yat-sen"
},
{
"quote": "In a chronically leaking boat, energy devoted to changing vessels is more productive than energy devoted to patching leaks.",
"author": "Warren Buffett",
"link": "https://en.wikipedia.org/wiki/Warren_Buffett"
},
{
"quote": "Success seems to be connected with action. Successful people keep moving. They make mistakes, but they don't quit.",
"author": "Conrad Hilton",
"link": "https://en.wikipedia.org/wiki/Conrad_Hilton"
},
{
"quote": "One doesn’t discover new lands without consenting to lose sight of the shore for a very long time.",
"author": "Andre Gide",
"link": "https://no.wikipedia.org/wiki/Andr%C3%A9_Gide"
},
{
"quote": "The best way to have a good idea is to have a lot of ideas.",
"author": "Linus Pauling",
"link": "https://en.wikipedia.org/wiki/Linus_Pauling"
},
{
"quote": "There is only one corner of the universe you can be certain of improving, and that's your own self.",
"author": "Aldous Huxley",
"link": "https://en.wikipedia.org/wiki/Aldous_Huxley"
},
{
"quote": "A year from now you may wish you had started today.",
"author": "Karen Lamb",
"link": "https://en.wikipedia.org/wiki/June_Diane_Raphael"
},
{
"quote": "It’s not about having the right opportunities. It’s about handling the opportunities right.",
"author": "Mark Hunter",
"link": "https://en.wikipedia.org/wiki/Mark_Hunter_(musician)"
},
{
"quote": "Innovation is taking two things that already exist and putting them together in a new way.",
"author": "Tom Freston",
"link": "https://en.wikipedia.org/wiki/Tom_Freston"
},
{
"quote": "Don’t wait. The time will never be just right.",
"author": "Napoleon Hill",
"link": "https://en.wikipedia.org/wiki/Napoleon_Hill"
},
{
"quote": "There is a way; Up, Around, Over or Through",
"author": "Mary Kay Ash",
"link": "https://en.wikipedia.org/wiki/Jim_Underwood_(professor)"
},
{
"quote": "In the realm of ideas everything depends on enthusiasm… in the real world all rests on perseverance.",
"author": "Johann Wolfgang von Goethe",
"link": "https://en.wikipedia.org/wiki/Johann_Wolfgang_von_Goethe"
},
{
"quote": "Learning and innovation go hand in hand. The arrogance of success is to think that what you did yesterday will be sufficient for tomorrow.",
"author": "William Pollard",
"link": "https://en.wikipedia.org/wiki/William_Pollard_(Quaker)"
},
{
"quote": "You miss 100 percent of the shots you never take.",
"author": "Wayne Gretzky",
"link": "https://en.wikipedia.org/wiki/Wayne_Gretzky"
},
{
"quote": "The future belongs to those who believe in the beauty of their dreams.",
"author": "Eleanor Roosevelt",
"link": "https://en.wikipedia.org/wiki/Eleanor_Roosevelt"
},
{
"quote": "Go confidently in the direction of your dreams. Live the life you have imagined.",
"author": "Henry David Thoreau",
"link": "https://en.wikipedia.org/wiki/Henry_David_Thoreau"
},
{
"quote": "You cannot depend on your eyes when your imagination is out of focus.",
"author": "Mark Twain",
"link": "https://en.wikipedia.org/wiki/Mark_Twain_bibliography"
},
{
"quote": "Commitment leads to action. Action brings your dream closer.",
"author": "Marcia Wieder",
"link": "https://en.wikipedia.org/wiki/Katharine_Gun"
},
{
"quote": "Do not anticipate trouble or worry about what may never happen. Keep in the sunlight.",
"author": "Benjamin Franklin",
"link": "https://en.wikipedia.org/wiki/Benjamin_Franklin"
},
{
"quote": "Take time to deliberate; but when the time for action arrives, stop thinking and go in.",
"author": "Andrew Jackson",
"link": "https://en.wikipedia.org/wiki/Andrew_Young"
},
{
"quote": "The mind that is anxious about future events is miserable.",
"author": "Seneca",
"link": "https://en.wikipedia.org/wiki/Seneca_the_Younger"
},
{
"quote": "Live in each season as it passes; breathe the air, drink the drink, taste the fruit, and resign yourself to the influences of each.",
"author": "Henry David Thoreau",
"link": "https://en.wikipedia.org/wiki/Henry_David_Thoreau"
},
{
"quote": "The art of leadership is saying no, not yes. It is very easy to say yes.",
"author": "Tony Blair",
"link": "https://en.wikipedia.org/wiki/Tony_Blair"
},
{
"quote": "A leader is a dealer in hope.",
"author": "Napoleon Bonaparte",
"link": "https://en.wikipedia.org/wiki/Napoleon"
},
{
"quote": "While a good leader sustains momentum, a great leader increases it.",
"author": "John C. Maxwell",
"link": "https://en.wikipedia.org/wiki/John_C._Maxwell"
},
{
"quote": "A general is just as good or just as bad as the troops under his command make him.",
"author": "Douglas MacArthur",
"link": "https://en.wikipedia.org/wiki/Douglas_Francis_McArthur"
},
{
"quote": "To do great things is difficult; but to command great things is more difficult.",
"author": "Friedrich Nietzsche",
"link": "https://en.wikipedia.org/wiki/Friedrich_Nietzsche"
},
{
"quote": "Leadership does not always wear the harness of compromise.",
"author": "Woodrow Wilson",
"link": "https://en.wikipedia.org/wiki/Woodrow_Wilson"
},
{
"quote": "I avoid looking forward or backward, and try to keep looking upward.",
"author": "Charlotte Bronte",
"link": "https://en.wikipedia.org/wiki/Charlotte_Bront%C3%AB"
},
{
"quote": "The more difficulties one has to encounter, within and without, the more significant and the higher in inspiration his life will be.",
"author": "Horace Bushnell",
"link": "https://en.wikipedia.org/wiki/Horace_Bushnell"
},
{
"quote": "Every artist was first an amateur.",
"author": "Ralph Waldo Emerson",
"link": "https://en.wikipedia.org/wiki/Ralph_Waldo_Emerson"
},
{
"quote": "I was always looking outside myself for strength and confidence, but it comes from within. It is there all of the time.",
"author": "Anna Freud",
"link": "https://en.wikipedia.org/wiki/Anna_Freud"
},
{
"quote": "We can do anything we want to do if we stick to it long enough.",
"author": "Helen Keller",
"link": "https://en.wikipedia.org/wiki/Helen_Keller_Day"
},
{
"quote": "Our business in life is not to get ahead of others, but to get ahead of ourselves.",
"author": "E. Joseph Cossman",
"link": "https://en.wikipedia.org/wiki/Cossman"
},
{
"quote": "Insist on yourself. Never imitate.",
"author": "Ralph Waldo Emerson",
"link": "https://en.wikipedia.org/wiki/Ralph_Waldo_Emerson"
},
{
"quote": "Who looks outside, dreams. Who looks inside, awakes.",
"author": "Carl Jung",
"link": "https://en.wikipedia.org/wiki/Carl_Jung"
},
{
"quote": "It is not easy to find happiness in ourselves, and it is not possible to find it elsewhere.",
"author": "Agnes Repplier",
"link": "https://en.wikipedia.org/wiki/Agnes_Repplier"
},
{
"quote": "Follow your honest convictions, and stay strong.",
"author": "William Thackeray",
"link": "https://en.wikipedia.org/wiki/William_Makepeace_Thackeray"
},
{
"quote": "The happiness of your life depends upon the quality of your thoughts; therefore guard accordingly.",
"author": "Marcus Aurelius",
"link": "https://en.wikipedia.org/wiki/Marcus_Aurelius"
},
{
"quote": "Action may not always bring happiness; but there is no happiness without action.",
"author": "Benjamin Disraeli",
"link": "https://en.wikipedia.org/wiki/Benjamin_Disraeli"
},
{
"quote": "Happiness depends more on the inward disposition of mind than on outward circumstances.",
"author": "Benjamin Franklin",
"link": "https://en.wikipedia.org/wiki/Benjamin_Franklin"
},
{
"quote": "There is no happiness except in the realization that we have accomplished something.",
"author": "Henry Ford",
"link": "https://en.wikipedia.org/wiki/Henry_Ford"
},
{
"quote": "Happiness is not a goal, but a by-product.",
"author": "Eleanor Roosevelt",
"link": "https://en.wikipedia.org/wiki/Eleanor_Roosevelt"
},
{
"quote": "Purpose is what gives life a meaning.",
"author": "C. H. Parkhurst",
"link": "https://en.wikipedia.org/wiki/Helen_Parkhurst"
},
{
"quote": "The significance of a man is not in what he attains but in what he longs to attain.",
"author": "Kahlil Gibran",
"link": "https://en.wikipedia.org/wiki/Kahlil_Gibran"
},
{
"quote": "In all things that you do, consider the end.",
"author": "Solon",
"link": "https://en.wikipedia.org/wiki/Solon,_Ohio"
},
{
"quote": "Life can be pulled by goals just as surely as it can be pushed by drives.",
"author": "Viktor Frankl",
"link": "https://en.wikipedia.org/wiki/Viktor_Frankl"
},
{
"quote": "The virtue lies in the struggle, not in the prize.",
"author": "Richard Monckton Milnes",
"link": "https://en.wikipedia.org/wiki/Richard_Monckton_Milnes,_1st_Baron_Houghton"
},
{
"quote": "Success is the child of audacity.",
"author": "Benjamin Disraeli",
"link": "https://en.wikipedia.org/wiki/Benjamin_Disraeli"
},
{
"quote": "The difference between a successful person and others is not a lack of strength, not a lack of knowledge, but rather a lack in will.",
"author": "Vince Lombardi",
"link": "https://en.wikipedia.org/wiki/Vince_Lombardi"
},
{
"quote": "The secret of success is to know something nobody else knows.",
"author": "Aristotle Onassis",
"link": "https://en.wikipedia.org/wiki/Aristotle_Onassis"
},
{
"quote": "The surest way not to fail is to determine to succeed.",
"author": "Richard Brinsley Sheridan",
"link": "https://en.wikipedia.org/wiki/Richard_Brinsley_Sheridan"
},
{
"quote": "Years teach us more than books.",
"author": "Berthold Auerbach",
"link": "https://en.wikipedia.org/wiki/Berthold_Auerbach"
},
{
"quote": "The only medicine for suffering, crime, and all the other woes of mankind, is wisdom.",
"author": "Thomas Huxley",
"link": "https://en.wikipedia.org/wiki/Thomas_Henry_Huxley"
},
{
"quote": "The art of being wise is knowing what to overlook.",
"author": "William James",
"link": "https://en.wikipedia.org/wiki/William_James_Sidis"
},
{
"quote": "The great lesson is that the sacred is in the ordinary, that it is to be found in one's daily life, in one's neighbors, friends and family, in one's backyard.",
"author": "Abraham Maslow",
"link": "https://en.wikipedia.org/wiki/Abraham_Maslow"
},
{
"quote": "No man was ever wise by chance.",
"author": "Seneca",
"link": "https://en.wikipedia.org/wiki/Seneca_the_Younger"
},
{
"quote": "In everything the ends well defined are the secret of durable success.",
"author": "Victor Cousins",
"link": "https://en.wikipedia.org/wiki/Victor_Cousin"
},
{
"quote": "Arriving at one goal is the starting point to another.",
"author": "John Dewey",
"link": "https://en.wikipedia.org/wiki/John_Dewey"
},
{
"quote": "A goal is a dream with a deadline.",
"author": "Napoleon Hill",
"link": "https://en.wikipedia.org/wiki/Napoleon_Hill"
},
{
"quote": "Most 'impossible' goals can be met simply by breaking them down into bite-size chunks, writing them down, believing them, and then going full speed ahead as if they were routine.",
"author": "Don Lancaster",
"link": "https://en.wikipedia.org/wiki/Don_Lancaster"
},
{
"quote": "Goals are the fuel in the furnace of achievement.",
"author": "Brian Tracy",
"link": "https://en.wikipedia.org/wiki/Brian_Tracy"
},
{
"quote": "We are what we repeatedly do. Excellence, therefore, is not an act but a habit.",
"author": "Aristotle",
"link": "https://en.wikipedia.org/wiki/Aristotle"
},
{
"quote": "Take risks and you'll get the payoffs. Learn from your mistakes until you succeed. It's that simple.",
"author": "Bobby Flay",
"link": "https://en.wikipedia.org/wiki/Beat_Bobby_Flay"
},
{
"quote": "The best way out is always through.",
"author": "Robert Frost",
"link": "https://en.wikipedia.org/wiki/Robert_Frost"
},
{
"quote": "You miss 100 percent of the shots you don't take.",
"author": "Wayne Gretzky",
"link": "https://en.wikipedia.org/wiki/Wayne_Gretzky"
},
{
"quote": "Nothing will ever be attempted if all possible objections must first be overcome.",
"author": "Samuel Johnson",
"link": "https://en.wikipedia.org/wiki/Samuel_Johnson"
},
{
"quote": "Don't bunt. Aim out of the ballpark.",
"author": "David Ogilvy",
"link": "https://en.wikipedia.org/wiki/David_Ogilvy_(businessman)"
},
{
"quote": "Never, never, never, never, in nothing great or small, large or petty, never give in except to convictions of honour and good sense. Never yield to force; never yield to the apparently overwhelming might of the enemy.",
"author": "Winston Churchill",
"link": "https://en.wikipedia.org/wiki/Winston_Churchill"
},
{
"quote": "Entrepreneurship is neither a science nor an art. It is a practice.",
"author": "Peter Drucker",
"link": "https://en.wikipedia.org/wiki/Peter_Drucker"
},
{
"quote": "Success is how high you bounce after you hit bottom.",
"author": "George Patton.",
"link": "https://en.wikipedia.org/wiki/George_S._Patton_Sr."
},
{
"quote": "If you’re not embarrassed by the first version of your product, you’ve launched too late.",
"author": "Reid Hoffman.",
"link": "https://en.wikipedia.org/wiki/Reid_Hoffman"
},
{
"quote": "Positive thinking will let you do everything better than negative thinking will.",
"author": "Zig Ziglar",
"link": "https://en.wikipedia.org/wiki/Zig_Ziglar"
},
{
"quote": "I’m not afraid of dying, I’m afraid of not trying.",
"author": "Jay Z.",
"link": "https://en.wikipedia.org/wiki/Jay-Z"
},
{
"quote": "If you live for weekends or vacations, your shit is broken",
"author": "Gary Vaynerchuk",
"link": "https://en.wikipedia.org/wiki/Gary_Vaynerchuk"
},
{
"quote": "Go Big, or Go Home",
"author": "Eliza Dushku",
"link": "https://en.wikipedia.org/wiki/Eliza_Dushku"
},
{
"quote": "Most great people have attained their greatest success just one step beyond their greatest failure",
"author": "Napoleon Hill",
"link": "https://en.wikipedia.org/wiki/Napoleon_Hill"
},
{
"quote": "Opportunity is missed by most people because it is dressed in overalls and looks like work",
"author": "Thomas Edison",
"link": "https://en.wikipedia.org/wiki/Thomas_Edison"
},
{
"quote": "Have the end in mind and every day make sure your working towards it",
"author": "Ryan Allis",
"link": "https://en.wikipedia.org/wiki/Ryan_Sheckler"
},
{
"quote": "He who begins many things finishes but few",
"author": "German Proverb",
"link": "https://en.wikipedia.org/wiki/Proverb"
},
{
"quote": "The best use of life is to spend it for something that outlasts it",
"author": "William James",
"link": "https://en.wikipedia.org/wiki/William_James_Sidis"
},
{
"quote": "If you think education is expensive, try ignorance",
"author": "Derek Bok",
"link": "https://en.wikipedia.org/wiki/Book"
},
{
"quote": "Be nice to geek’s, you’ll probably end up working for one",
"author": "Bill Gates",
"link": "https://en.wikipedia.org/wiki/Bill_Gates"
},
{
"quote": "It’s easier to ask forgiveness than it is to get permission",
"author": "Grace Hopper",
"link": "https://en.wikipedia.org/wiki/Grace_Hopper"
},
{
"quote": "To win without risk is to triumph without glory",
"author": "Corneille",
"link": "https://en.wikipedia.org/wiki/Pierre_Corneille"
},
{
"quote": "Example is not the main thing in influencing other people; it’s the only thing",
"author": "Abraham Lincoln",
"link": "https://en.wikipedia.org/wiki/Abraham_Lincoln"
},
{
"quote": "Associate yourself with people of good quality, for it is better to be alone than in bad company",
"author": "Booker T. Washington",
"link": "https://en.wikipedia.org/wiki/Booker_T._Washington"
},
{
"quote": "Keep away from people who try to belittle your ambitions. Small people always do that, but the really great make you feel that you, too, can become great",
"author": "Mark Twain",
"link": "https://en.wikipedia.org/wiki/Mark_Twain_bibliography"
},
{
"quote": "Whatever the mind can conceive and believe, the mind can achieve",
"author": "Napoleon Hill",
"link": "https://en.wikipedia.org/wiki/Napoleon_Hill"
},
{
"quote": "I have not failed. I’ve just found 10,000 ways that won’t work",
"author": "Thomas Alva Edison",
"link": "https://en.wikipedia.org/wiki/Thomas_Alva_Edison"
},
{
"quote": "What is not started will never get finished",
"author": "Johann Wolfgang von Goethe",
"link": "https://en.wikipedia.org/wiki/Johann_Wolfgang_von_Goethe"
},
{
"quote": "Do not wait to strike until the iron is hot; but make it hot by striking",
"author": "William B. Sprague",
"link": "https://en.wikipedia.org/wiki/William_Buell_Sprague"
},
{
"quote": "When you cease to dream you cease to live",
"author": "Malcolm Forbes",
"link": "https://en.wikipedia.org/wiki/Malcolm_Forbes"
},
{
"quote": "The only place where success comes before work is in the dictionary.",
"author": "Vidal Sassoon",
"link": "https://en.wikipedia.org/wiki/Vidal_Sassoon"
},
{
"quote": "Every single person I know who is successful at what they do is successful because they love doing it.",
"author": "Joe Penna",
"link": "https://en.wikipedia.org/wiki/Joe_Penna"
},
{
"quote": "Being realistic is the most commonly traveled road to mediocrity.",
"author": "Will Smith",
"link": "https://en.wikipedia.org/wiki/Will_Smith"
},
{
"quote": "Whenever an individual or a business decides that success has been attained, progress stops.",
"author": "Thomas J. Watson",
"link": "https://en.wikipedia.org/wiki/Thomas_J._Watson"
},
{
"quote": "To be successful, you have to have your heart in your business, and your business in your heart.",
"author": "Thomas J. Watson",
"link": "https://en.wikipedia.org/wiki/Thomas_J._Watson"
},
{
"quote": "If hard work is the key to success, most people would rather pick the lock.",
"author": "Claude McDonald",
"link": "https://en.wikipedia.org/wiki/Claude_Maxwell_MacDonald"
},
{
"quote": "Success is simply a matter of luck. Ask any failure.",
"author": "Earl Wilson",
"link": "https://en.wikipedia.org/wiki/Earl_Wilson_(columnist)"
},
{
"quote": "The road to success is always under construction.",
"author": "Arnold Palmer",
"link": "https://en.wikipedia.org/wiki/Arnold_Palmer"
},
{
"quote": "Anything the mind can conceive and believe, it can achieve.",
"author": "Napoleon Hill",
"link": "https://en.wikipedia.org/wiki/Napoleon_Hill"
},
{
"quote": "Most great people have attained their greatest success just one step beyond their greatest failure.",
"author": "Napoleon Hill",
"link": "https://en.wikipedia.org/wiki/Napoleon_Hill"
},
{
"quote": "Whether you think you can or you can’t, you’re right.",
"author": "Henry Ford",
"link": "https://en.wikipedia.org/wiki/Henry_Ford"
},
{
"quote": "Failure defeats losers, failure inspires winners.",
"author": "Robert T. Kiyosaki",
"link": "https://en.wikipedia.org/wiki/Robert_Kiyosaki"
},
{
"quote": "I have not failed. I’ve just found 10,000 ways that won’t work.",
"author": "Thomas Edison",
"link": "https://en.wikipedia.org/wiki/Thomas_Edison"
},
{
"quote": "I honestly think it is better to be a failure at something you love than to be a success at something you hate.",
"author": "George Burns",
"link": "https://en.wikipedia.org/wiki/George_Burns"
},
{
"quote": "Example is not the main thing in influencing other people; it’s the only thing.",
"author": "Abraham Lincoln",
"link": "https://en.wikipedia.org/wiki/Abraham_Lincoln"
},
{
"quote": "Leadership is doing what is right when no one is watching.",
"author": "George Van Valkenburg",
"link": "https://en.wikipedia.org/wiki/Mac_Van_Valkenburg"
},
{
"quote": "Leadership is the art of getting someone else to do something you want done because he wants to do it.",
"author": "Dwight D. Eisenhower",
"link": "https://en.wikipedia.org/wiki/Dwight_D._Eisenhower"
},
{
"quote": "The difference between a boss and a leader: a boss says, ‘Go!’ -a leader says, ‘Let’s go!’.",
"author": "E. M. Kelly",
"link": "https://en.wikipedia.org/wiki/George_E._M._Kelly"
},
{
"quote": "I am more afraid of an army of one hundred sheep led by a lion than an army of one hundred lions led by a sheep.",
"author": "Charles Maurice",
"link": "https://en.wikipedia.org/wiki/Charles_Maurice_de_Talleyrand-P%C3%A9rigord"
},
{
"quote": "The whole problem with the world is that fools and fanatics are always so certain of themselves, but wiser people so full of doubts.",
"author": "Bertrand Russell",
"link": "https://en.wikipedia.org/wiki/Bertrand_Russell"
},
{
"quote": "We are what we repeatedly do. Excellence, then, is not an act, but a habit.",
"author": "Aristotle",
"link": "https://en.wikipedia.org/wiki/Aristotle"
},
{
"quote": "Cannibals prefer those who have no spines.",
"author": "Stanislaw Lem",
"link": "https://en.wikipedia.org/wiki/Stanis%C5%82aw_Lem"
},
{
"quote": "A ship in harbor is safe. But that’s now what ships are built for.",
"author": "William Shedd",
"link": "https://en.wikipedia.org/wiki/Shedd_Aquarium"
},
{
"quote": "If one does not know to which port one is sailing, no wind is favorable.",
"author": "Lucius Annaeus Seneca",
"link": "https://en.wikipedia.org/wiki/Seneca_the_Younger"
},
{
"quote": "I’m not a businessman. I’m a business, man.",
"author": "Jay-Z",
"link": "https://en.wikipedia.org/wiki/Jay-Z"
},
{
"quote": "Do not wait to strike until the iron is hot; but make it hot by striking.",
"author": "William B. Sprague",
"link": "https://en.wikipedia.org/wiki/William_Buell_Sprague"
},
{
"quote": "It’s easier to ask forgiveness than it is to get permission.",
"author": "Grace Hopper",
"link": "https://en.wikipedia.org/wiki/Grace_Hopper"
},
{
"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.",
"author": "Mark Twain",
"link": "https://en.wikipedia.org/wiki/Mark_Twain"
},
{
"quote": "“I think it’s wrong that only one company makes the game Monopoly.",
"author": "Steven Wright",
"link": "https://en.wikipedia.org/wiki/Steven_Wright_(baseball)"
},
{
"quote": "Ever notice how it’s a penny for your thoughts, yet you put in your two-cents? Someone is making a penny on the deal.",
"author": "Steven Wright",
"link": "https://en.wikipedia.org/wiki/Steven_Wright_(baseball)"