forked from vinitshahdeo/inspirational-quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
1306 lines (1306 loc) · 49.2 KB
/
data.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 only people who never fail are those who never try.",
"from":"Ilka Chase"
},
{
"text":"Failure is just another way to learn how to do something right.",
"from":"Marian Wright Edelman"
},
{
"text":"I failed my way to success.",
"from":"Thomas Edison"
},
{
"text":"Every failure brings with it the seed of an equivalent success.",
"from":"Napoleon Hill"
},
{
"text":"Only those who dare to fail greatly can ever achieve greatly.",
"from":"John F. Kennedy"
},
{
"text":"It is hard to fail, but it is worse never to have tried to succeed.",
"from":"Theodore Roosevelt"
},
{
"text":"Imagination is more important than knowledge.",
"from":"Albert Einstein"
},
{
"text":"Hold fast to dreams, for if dreams die, life is a broken winged bird that cannot fly.",
"from":"Langston Hughes"
},
{
"text":"The future belongs to those who believe in the beauty of their dreams.",
"from":"Eleanor Roosevelt"
},
{
"text":"Go confidently in the direction of your dreams. Live the life you have imagined.",
"from":"Henry David Thoreau"
},
{
"text":"You cannot depend on your eyes when your imagination is out of focus.",
"from":"Mark Twain"
},
{
"text":"Commitment leads to action. Action brings your dream closer.",
"from":"Marcia Wieder"
},
{
"text":"I never think of the future",
"from":"it comes soon enough."
},
{
"text":"Don't waste your life in doubts and fears: Spend yourself on the work before you, well assured that the right performance of this hour's duties will be the best preparation for the hours or ages that follow it.",
"from":"Ralph Waldo Emerson"
},
{
"text":"Do not anticipate trouble or worry about what may never happen. Keep in the sunlight.",
"from":"Benjamin Franklin"
},
{
"text":"Take time to deliberate; but when the time for action arrives, stop thinking and go in.",
"from":"Andrew Jackson"
},
{
"text":"The mind that is anxious about future events is miserable.",
"from":"Seneca"
},
{
"text":"Live in each season as it passes; breathe the air, drink the drink, taste the fruit, and resign yourself to the influences of each.",
"from":"Henry David Thoreau"
},
{
"text":"The art of leadership is saying no, not yes. It is very easy to say yes.",
"from":"Tony Blair"
},
{
"text":"A leader is a dealer in hope.",
"from":"Napoleon Bonaparte"
},
{
"text":"While a good leader sustains momentum, a great leader increases it.",
"from":"John C. Maxwell"
},
{
"text":"A general is just as good or just as bad as the troops under his command make him.",
"from":"General Douglas MacArthur"
},
{
"text":"To do great things is difficult; but to command great things is more difficult.",
"from":"Friedrich Nietzsche"
},
{
"text":"Leadership does not always wear the harness of compromise.",
"from":"Woodrow Wilson"
},
{
"text":"Business opportunities are like buses",
"from":"there's always another one coming."
},
{
"text":"I avoid looking forward or backward, and try to keep looking upward.",
"from":"Charlotte Bronte"
},
{
"text":"The more difficulties one has to encounter, within and without, the more significant and the higher in inspiration his life will be.",
"from":"Horace Bushnell"
},
{
"text":"Every artist was first an amateur.",
"from":"Ralph Waldo Emerson"
},
{
"text":"I was always looking outside myself for strength and confidence, but it comes from within. It is there all of the time.",
"from":"Anna Freud"
},
{
"text":"We can do anything we want to do if we stick to it long enough.",
"from":"Helen Keller"
},
{
"text":"Our business in life is not to get ahead of others, but to get ahead of ourselves.",
"from":"E. Joseph Cossman"
},
{
"text":"Insist on yourself. Never imitate.",
"from":"Ralph Waldo Emerson"
},
{
"text":"Who looks outside, dreams. Who looks inside, awakes.",
"from":"Carl Jung"
},
{
"text":"It is not easy to find happiness in ourselves, and it is not possible to find it elsewhere.",
"from":"Agnes Repplier"
},
{
"text":"The only journey is the one within.",
"from":"Rainer Maria Rilke"
},
{
"text":"Follow your honest convictions, and stay strong.",
"from":"William Thackeray"
},
{
"text":"The happiness of your life depends upon the quality of your thoughts; therefore guard accordingly.",
"from":"Marcus Aurelius"
},
{
"text":"Action may not always bring happiness; but there is no happiness without action.",
"from":"Benjamin Disraeli"
},
{
"text":"Happiness depends more on the inward disposition of mind than on outward circumstances.",
"from":"Benjamin Franklin"
},
{
"text":"There is no happiness except in the realization that we have accomplished something.",
"from":"Henry Ford"
},
{
"text":"Happiness is not a goal, but a by-product.",
"from":"Eleanor Roosevelt"
},
{
"text":"Happiness is not a state to arrive at, but a manner of traveling.",
"from":"Margaret Lee Runbeck"
},
{
"text":"Purpose is what gives life a meaning.",
"from":"C. H. Parkhurst"
},
{
"text":"The significance of a man is not in what he attains but in what he longs to attain.",
"from":"Kahlil Gibran"
},
{
"text":"In all things that you do, consider the end.",
"from":"Solon"
},
{
"text":"Life can be pulled by goals just as surely as it can be pushed by drives.",
"from":"Viktor Frankl"
},
{
"text":"The virtue lies in the struggle, not in the prize.",
"from":"Richard Monckton Milnes"
},
{
"text":"To reach a port, we must sail",
"from":"sail, not tie at anchor"
},
{
"text":"Success is the child of audacity.",
"from":"Benjamin Disraeli"
},
{
"text":"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.",
"from":"Vince Lombardi"
},
{
"text":"The secret of success is to know something nobody else knows.",
"from":"Aristotle Onassis"
},
{
"text":"The surest way not to fail is to determine to succeed.",
"from":"Richard Brinsley Sheridan"
},
{
"text":"I cannot give you the formula for success, but I can give you the formula for failure",
"from":"which is: Try to please everybody."
},
{
"text":"Careful thinking and hard work will solve nearly all your problems. Try and see for yourself.",
"from":"Ullery"
},
{
"text":"Years teach us more than books.",
"from":"Berthold Auerbach"
},
{
"text":"The only medicine for suffering, crime, and all the other woes of mankind, is wisdom.",
"from":"Thomas Huxley"
},
{
"text":"The art of being wise is knowing what to overlook.",
"from":"William James"
},
{
"text":"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.",
"from":"Abraham Maslow"
},
{
"text":"A wise man learns by the mistakes of others, a fool by his own.",
"from":"Latin proverb"
},
{
"text":"No man was ever wise by chance.",
"from":"Seneca"
},
{
"text":"In everything the ends well defined are the secret of durable success.",
"from":"Victor Cousins"
},
{
"text":"Arriving at one goal is the starting point to another.",
"from":"John Dewey"
},
{
"text":"A goal is a dream with a deadline.",
"from":"Napoleon Hill"
},
{
"text":"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.",
"from":"Don Lancaster"
},
{
"text":"Goals are the fuel in the furnace of achievement.",
"from":"Brian Tracy"
},
{
"text":"We are what we repeatedly do. Excellence, therefore, is not an act but a habit.",
"from":"Aristotle"
},
{
"text":"Take risks and you'll get the payoffs. Learn from your mistakes until you succeed. It's that simple.",
"from":"Bobby Flay"
},
{
"text":"The best way out is always through.",
"from":"Robert Frost"
},
{
"text":"You miss 100 percent of the shots you don't take.",
"from":"Wayne Gretzky"
},
{
"text":"Nothing will ever be attempted if all possible objections must first be overcome.",
"from":"Samuel Johnson"
},
{
"text":"Don't bunt. Aim out of the ballpark.",
"from":"David Ogilvy"
},
{
"text":"The critical ingredient is getting off your butt and doing something. It’s as simple as that. A lot of people have ideas, but there are few who decide to do something about them now. Not tomorrow. Not next week. But today. The true entrepreneur is a doer, not a dreamer.",
"from":"Nolan Bushnell, entrepreneur."
},
{
"text":"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.",
"from":"Winston Churchill, British Prime Minister."
},
{
"text":"Your most unhappy customers are your greatest source of learning.",
"from":"Bill Gates, co-founder of Microsoft."
},
{
"text":"I have not failed. I’ve just found 10,000 ways that won’t work.",
"from":"Thomas Edison, inventor."
},
{
"text":"Entrepreneurship is neither a science nor an art. It is a practice.",
"from":"Peter Drucker, management consultant, educator, and author."
},
{
"text":"In the modern world of business, it is useless to be a creative, original thinker unless you can also sell what you create.",
"from":"David Ogilvy, Co-founder of Ogilvy & Mather."
},
{
"text":"Success is how high you bounce after you hit bottom.",
"from":"General George Patton."
},
{
"text":"If you’re not embarrassed by the first version of your product, you’ve launched too late.",
"from":"Reid Hoffman, co-founder of LinkedIn."
},
{
"text":"Positive thinking will let you do everything better than negative thinking will.",
"from":"Zig Ziglar, author, salesman, and motivational speaker."
},
{
"text":"I’m not afraid of dying, I’m afraid of not trying.",
"from":"Jay Z, musician."
},
{
"text":"Whatever the mind can conceive and believe, the mind can achieve.",
"from":"Dr. Napoleon Hill, author of Think and Grow Rich."
},
{
"text":"The longer you’re not taking action the more money you’re losing",
"from":"Carrie Wilkerson"
},
{
"text":"If you live for weekends or vacations, your shit is broken",
"from":"Gary Vaynerchuk"
},
{
"text":"Go Big, or Go Home",
"from":"Eliza Dushku"
},
{
"text":"Most great people have attained their greatest success just one step beyond their greatest failure",
"from":"Napoleon Hill"
},
{
"text":"Opportunity is missed by most people because it is dressed in overalls and looks like work",
"from":"Thomas Edison"
},
{
"text":"Have the end in mind and every day make sure your working towards it",
"from":"Ryan Allis"
},
{
"text":"He who begins many things finishes but few",
"from":"German Proverb"
},
{
"text":"The best use of life is to spend it for something that outlasts it",
"from":"William James"
},
{
"text":"If you think education is expensive, try ignorance",
"from":"Derek Bok"
},
{
"text":"Entrepreneurship is living a few years of your life like most people wont so you can spend the rest of your life like most people can’t",
"from":"A student in Warren G. Tracy’s class"
},
{
"text":"Lend your friend $20, if he doesn’t pay you back then he’s not your friend. Money well spent",
"from":"Ted Nicolas"
},
{
"text":"Be nice to geek’s, you’ll probably end up working for one",
"from":"Bill Gates"
},
{
"text":"To never forget that the most important thing in life is the quality of life we lead",
"from":"Quoted by Tony Hsieh on Retireat21"
},
{
"text":"Its better to own the racecourse then the race horse",
"from":"Unknown"
},
{
"text":"When you go to buy, don’t show your silver",
"from":"Chinese Proverb"
},
{
"text":"It’s easier to ask forgiveness than it is to get permission",
"from":"Grace Hopper"
},
{
"text":"To win without risk is to triumph without glory",
"from":"Corneille"
},
{
"text":"Example is not the main thing in influencing other people; it’s the only thing",
"from":"Abraham Lincoln"
},
{
"text":"Associate yourself with people of good quality, for it is better to be alone than in bad company",
"from":"Booker T. Washington"
},
{
"text":"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",
"from":"Mark Twain"
},
{
"text":"There is only one success",
"from":"to be able to spend your life in your own way"
},
{
"text":"You don’t buy a nice car and get rich you get rich and buy a nice car",
"from":"Unknown"
},
{
"text":"Fall seven times, stand up eight",
"from":"Japanese Proverb"
},
{
"text":"One day your life will flash before your eyes. Make sure it is worth watching",
"from":"Mooie"
},
{
"text":"Whatever the mind can conceive and believe, the mind can achieve",
"from":"Dr. Napoleon Hill"
},
{
"text":"I have not failed. I’ve just found 10,000 ways that won’t work",
"from":"Thomas Alva Edison"
},
{
"text":"If you ain’t making waves, you ain’t kickin’ hard enough",
"from":"Unknown"
},
{
"text":"What is not started will never get finished",
"from":"Johann Wolfgang von Goethe"
},
{
"text":"Do not wait to strike until the iron is hot; but make it hot by striking",
"from":"William B. Sprague"
},
{
"text":"When you cease to dream you cease to live",
"from":"Malcolm Forbes"
},
{
"text":"There are two rules for success. 1) Never tell everything you know.",
"from":"Roger H. Lincoln"
},
{
"text":"The only place where success comes before work is in the dictionary.",
"from":"Vidal Sassoon"
},
{
"text":"Every single person I know who is successful at what they do is successful because they love doing it.",
"from":"Joe Penna"
},
{
"text":"Being realistic is the most commonly traveled road to mediocrity.",
"from":"Will Smith"
},
{
"text":"Whenever an individual or a business decides that success has been attained, progress stops.",
"from":"Thomas J. Watson"
},
{
"text":"To be successful, you have to have your heart in your business, and your business in your heart.",
"from":"Thomas J. Watson"
},
{
"text":"If hard work is the key to success, most people would rather pick the lock.",
"from":"Claude McDonald"
},
{
"text":"Success is simply a matter of luck. Ask any failure.",
"from":"Earl Wilson"
},
{
"text":"The road to success is always under construction.",
"from":"Arnold Palmer"
},
{
"text":"Anything the mind can conceive and believe, it can achieve.",
"from":"Napoleon Hill"
},
{
"text":"Most great people have attained their greatest success just one step beyond their greatest failure.",
"from":"Napoleon Hill"
},
{
"text":"Whether you think you can or you can’t, you’re right.",
"from":"Henry Ford"
},
{
"text":"Failure defeats losers, failure inspires winners.",
"from":"Robert T. Kiyosaki"
},
{
"text":"I have not failed. I’ve just found 10,000 ways that won’t work.",
"from":"Thomas Edison"
},
{
"text":"The biggest failure you can have in life is not trying at all.",
"from":"Emil Motycka"
},
{
"text":"I honestly think it is better to be a failure at something you love than to be a success at something you hate.",
"from":"George Burns"
},
{
"text":"Leaders don’t force people to follow, they invite them on a journey.",
"from":"Charles S. Lauer"
},
{
"text":"Example is not the main thing in influencing other people; it’s the only thing.",
"from":"Abraham Lincoln"
},
{
"text":"Leadership is doing what is right when no one is watching.",
"from":"George Van Valkenburg"
},
{
"text":"Leadership is the art of getting someone else to do something you want done because he wants to do it.",
"from":"Dwight D. Eisenhower"
},
{
"text":"The difference between a boss and a leader: a boss says, ‘Go!’ -a leader says, ‘Let’s go!’.",
"from":"E. M. Kelly"
},
{
"text":"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.",
"from":"Charles Maurice"
},
{
"text":"The whole problem with the world is that fools and fanatics are always so certain of themselves, but wiser people so full of doubts.",
"from":"Bertrand Russell"
},
{
"text":"We are what we repeatedly do. Excellence, then, is not an act, but a habit.",
"from":"Aristotle"
},
{
"text":"Cannibals prefer those who have no spines.",
"from":"Stanislaw Lem"
},
{
"text":"A ship in harbor is safe. But that’s now what ships are built for.",
"from":"William Shedd"
},
{
"text":"If one does not know to which port one is sailing, no wind is favorable.",
"from":"Lucius Annaeus Seneca"
},
{
"text":"You miss 100% of the shots you don’t take.",
"from":"Wayne Gretzky"
},
{
"text":"I’m not a businessman. I’m a business, man.",
"from":"Jay-Z"
},
{
"text":"The vision must be followed by the venture. It is not enough to stare up the steps – we must step up the stairs.",
"from":"Vance Hayner"
},
{
"text":"Do not wait to strike until the iron is hot; but make it hot by striking.",
"from":"William B. Sprague"
},
{
"text":"It’s easier to ask forgiveness than it is to get permission.",
"from":"Grace Hopper"
},
{
"text":"Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do.",
"from":"Mark Twain"
},
{
"text":"One day your life will flash before your eyes. Make sure it is worth watching.",
"from":"Mooie"
},
{
"text":"“I think it’s wrong that only one company makes the game Monopoly.",
"from":"Steven Wright"
},
{
"text":"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.",
"from":"Steven Wright"
},
{
"text":"Catch a man a fish, and you can sell it to him. Teach a man to fish, and you ruin a wonderful business opportunity.",
"from":"Karl (maybe Groucho) Marx"
},
{
"text":"I used to sell furniture for a living. The trouble was, it was my own.",
"from":"Les Dawson"
},
{
"text":"Marking dynamos for repair $10,000.00—2 hours labor $10.00; knowing where to mark $9,990.00.",
"from":"Invoice from Charles Steinmetz"
},
{
"text":"By working faithfully eight hours a day you may eventually get to be boss and work twelve hours a day.",
"from":"Robert Frost"
},
{
"text":"My son is now an ‘entrepreneur’. That’s what you’re called when you don’t have a job.",
"from":"Ted Turner"
},
{
"text":"I didn’t go to college, but if I did, I would’ve taken all my tests at a restaurant, ’cause ‘The customer is always right.’",
"from":"Mitch Hedberg"
},
{
"text":"Formal education will make you a living. Self education will make you a fortune.",
"from":"Jim Rohn"
},
{
"text":"The greatest reward in becoming a millionaire is not the amount of money that you earn. It is the kind of person that you have to become to become a millionaire in the first place.",
"from":"Jim Rohn"
},
{
"text":"If you’re not learning while you’re earning, you’re cheating yourself out of the better portion of your compensation.",
"from":"Napoleon Hill"
},
{
"text":"A business that makes nothing but money is a poor business.",
"from":"Henry Ford"
},
{
"text":"After a certain point, money is meaningless. It ceases to be the goal. The game is what counts.",
"from":"Aristotle"
},
{
"text":"I treat business a bit like a computer game. I count money as points. I’m doing really well: making lots of money and lots of points.",
"from":"Michael Dunlop"
},
{
"text":"All of my friends were doing babysitting jobs. I wanted money without the job.",
"from":"Adam Horwitz"
},
{
"text":"“I don’t pay good wages because I have a lot of money; I have a lot of money because I pay good wages.",
"from":"Robert Bosch"
},
{
"text":"Lend your friend $20. If he doesn’t pay you back then he’s not your friend. Money well spent.",
"from":"Ted Nicolas"
},
{
"text":"Money and success don’t change people; they merely amplify what is already there.",
"from":"Will Smith"
},
{
"text":"The secret of getting ahead is getting started.",
"from":"Agatha Christie"
},
{
"text":"Hire character. Train skill.",
"from":"Peter Schultz"
},
{
"text":"In preparing for battle I have always found that plans are useless, but planning is indispensable.",
"from":"Dwight D. Eisenhower"
},
{
"text":"You’ve got to stop doing all the things that people have tried, tested, and found out don’t work.",
"from":"Michael Dunlop"
},
{
"text":"I never perfected an invention that I did not think about in terms of the service it might give others… I find out what the world needs, then I proceed to invent.",
"from":"Thomas Edison"
},
{
"text":"If you’re not making mistakes, then you’re not making decisions.",
"from":"Catherine Cook"
},
{
"text":"Your most unhappy customers are your greatest source of learning.",
"from":"Bill Gates"
},
{
"text":"One can get anything if he is willing to help enough others get what they want.",
"from":"Zig Ziglar"
},
{
"text":"An entrepreneur tends to bite off a little more than he can chew hoping he’ll quickly learn how to chew it.",
"from":"Roy Ash"
},
{
"text":"The true entrepreneur is a doer, not a dreamer.",
"from":"Nolan Bushnell"
},
{
"text":"Whenever you are asked if you can do a job, tell ’em, ‘Certainly, I can!’ Then get busy and find out how to do it.",
"from":"Theodore Roosevelt"
},
{
"text":"Everything started as nothing.",
"from":"Ben Weissenstein"
},
{
"text":"If you start with nothing and end up with nothing, there’s nothing lost.",
"from":"Michael Dunlop"
},
{
"text":"Start today, not tomorrow. If anything, you should have started yesterday.",
"from":"Emil Motycka"
},
{
"text":"Make it happen now, not tomorrow. Tomorrow is a loser’s excuse.",
"from":"Andrew Fashion"
},
{
"text":"Every day I get up and look through the Forbes list of the richest people in America. If I’m not there, I go to work.",
"from":"Robert Orben"
},
{
"text":"Entrepreneurship is living a few years of your life like most people won’t, so that you can spend the rest of your life like most people can’t.",
"from":"Anonymous"
},
{
"text":"Yesterday’s home runs don’t win today’s games.",
"from":"Babe Ruth"
},
{
"text":"You should always stay hungry. Stay hungry, so you can eat.",
"from":"Syed Balkhi"
},
{
"text":"If you’re not living life on the edge, you’re taking up too much space.",
"from":"Anonymous"
},
{
"text":"I wasn’t satisfied just to earn a good living. I was looking to make a statement.",
"from":"Donald Trump"
},
{
"text":"Opportunity is missed by most people because it is dressed in overalls and looks like work.",
"from":"Thomas Edison"
},
{
"text":"You must either modify your dreams or magnify your skills.",
"from":"Jim Rohn"
},
{
"text":"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.",
"from":"Mark Twain"
},
{
"text":"Not a single person whose name is worth remembering lived a life of ease.",
"from":"Ryan P. Allis"
},
{
"text":"If you think that you are going to love something, give it a try. You’re going to kick yourself in the butt for the rest of your life if you don’t.",
"from":"Joe Penna"
},
{
"text":"The best time to plant a tree is twenty years ago. The second best time is now.",
"from":"Chinese Proverb"
},
{
"text":"If you want one year of prosperity, grow grain. If you want ten years of prosperity, grow trees. If you want one hundred years of prosperity, grow people.",
"from":"Chinese Proverb"
},
{
"text":"Vision without action is a daydream. Action without vision is a nightmare.",
"from":"Japanese Proverb"
},
{
"text":"Sow a thought, reap an action; sow an action, reap a habit; sow a habit, reap a character; sow a character, reap a destiny.",
"from":"Chinese Proverb"
},
{
"text":"A bad workman blames his tools.",
"from":"Chinese Proverb"
},
{
"text":"A fall into a ditch makes you wiser.",
"from":"Chinese Proverb"
},
{
"text":"Defeat isn’t bitter if you don’t swallow it.",
"from":"Chinese Proverb"
},
{
"text":"The diamond cannot be polished without friction, nor the man perfected without trials.",
"from":"Chinese Proverb"
},
{
"text":"A jade stone is useless before it is processed; a man is good-for-nothing until he is educated.",
"from":"Chinese Proverb"
},
{
"text":"A journey of a thousand miles begins with a single step.",
"from":"Chinese Proverb"
},
{
"text":"The loftiest towers rise from the ground.",
"from":"Chinese Proverb"
},
{
"text":"Building a castle is difficult. Defending and maintaining it is harder still.",
"from":"Asian Proverb"
},
{
"text":"A person who says it cannot be done should not interrupt the man doing it.",
"from":"Chinese Proverb"
},
{
"text":"All cats love fish but fear to wet their paws.",
"from":"Chinese Proverb"
},
{
"text":"Don’t stand by the water and long for fish; go home and weave a net.",
"from":"Chinese Proverb"
},
{
"text":"Everyone should carefully observe which way his heart draws him, and then choose that way with all his strength.",
"from":"Hasidic Proverb"
},
{
"text":"Failing to plan is planning to fail.",
"from":"Chinese Proverb"
},
{
"text":"If you pay peanuts, you get monkeys.",
"from":"Chinese Proverb"
},
{
"text":"Make happy those who are near, and those who are far will come.",
"from":"Chinese Proverb"
},
{
"text":"Teachers open the door. You enter by yourself.",
"from":"Chinese Proverb"
},
{
"text":"Find a job you love and you’ll never work a day in your life.",
"from":"Confucius"
},
{
"text":"The entrepreneur builds an enterprise; the technician builds a job.",
"from":"Michael Gerber"
},
{
"text":"If you want to be inventive, you have to be willing to fail.",
"from":"Jeff Bezos"
},
{
"text":"The challenge is not just to build a company that can endure; but to build one that is worthy of enduring.",
"from":"Jim Collins"
},
{
"text":"Success is a lousy teacher. It seduces smart people into thinking they can’t lose.",
"from":"Bill Gates"
},
{
"text":"Don’t treat your customers like a bunch of purses and wallets.",
"from":"Chris Brogan"
},
{
"text":"Nine out of ten businesses fail; so I came up with a foolproof plan",
"from":"create ten businesses.”"
},
{
"text":"I’m not a businessman",
"from":"I”m a business, man.”"
},
{
"text":"If plan ‘A’ fails",
"from":"remember you have 25 letters left.”"
},
{
"text":"We make a living by what we get. But we make a life by what we give.",
"from":"Winston Churchhill"
},
{
"text":"Believe that you will succeed",
"from":"and you will.”"
},
{
"text":"Victory comes only after many struggles and countless defeats.",
"from":"Og Mandino"
},
{
"text":"As long as you’re going to be thinking anyway, think big.",
"from":"Donald Trump"
},
{
"text":"Success is how high you bounce after you hit bottom",
"from":"General George Patton"
},
{
"text":"Remembering you are going to die is the best way I know to avoid the trap of thinking you have something to lose.",
"from":"Steve Jobs"
},
{
"text":"It’s not about how to get started; its about how to get noticed.",
"from":"Steve Case"
},
{
"text":"A ship in harbor is safe, but that’s not what ships are for.",
"from":"John Shedd"
},
{
"text":"If I find 10,000 ways something won’t work, I haven’t failed. I am not discouraged, because every wrong attempt discarded is often a step forward.",
"from":"Thomas Edison"
},
{
"text":"Business opportunities are like buses, there’s always another one coming.",
"from":"Richard Branson"
},
{
"text":"If we don’t allow ourselves to make mistakes, we will never invest in things that are radical.",
"from":"Jeff Clavier"
},
{
"text":"The critical ingredient is getting off your butt and doing something.",
"from":"Nolan Bushnell"
},
{
"text":"Nothing will work unless you do.",
"from":"Maya Angelou"
},
{
"text":"Try not to be a man of success, but rather try to become a man of value.",
"from":"Albert Einstein"
},
{
"text":"You won’t get anything unless you have the vision to imagine it.",
"from":"John Lennon"
},
{
"text":"A man must be big enough to admit his mistakes, smart enough to profit from them, and strong enough to correct them.",
"from":"John C. Maxwell"
},
{
"text":"In the modern world of business, it is useless to be a creative, original thinker unless you can also sell what you create.",
"from":"David Ogilvy"
},
{
"text":"Success is doing what you want, where you want, when you want, with whom you want as much as you want.",
"from":"Tony Robbins"
},
{
"text":"If you don’t have a competitive advantage",
"from":"don’t compete.”"
},
{
"text":"You were born to win, but to be a winner, you must plan to win, prepare to win, and expect to win.",
"from":"Zig Ziglar"
},
{
"text":"If everything seems under control, you’re just not going fast enough.",
"from":"Mario Andretti"
},
{
"text":"Don’t be trapped by dogma",
"from":"which is living with the results of other people’s thinking.”"
},
{
"text":"Do or do not. There is no try.",
"from":"Yoda"
},
{
"text":"Show me a person who never made a mistake, and I will show you a person who never did anything.",
"from":"William Rosenberg, founder of Dunkin’ Donuts"
},
{
"text":"Ideas are commodity. Execution of them is not.",
"from":"Michael Dell, CEO of Dell"
},
{
"text":"User experience is everything. It always has been, but it’s undervalued and underinvested in. If you don’t know user-centered design, study it. Hire people who know it. Obsess over it. Live and breathe it. Get your whole company on board.",
"from":"Evan Williams, co-founder of Twitter"
},
{
"text":"A pessimist sees the difficulty in every opportunity; an optimist sees the opportunity in every difficulty.",
"from":"Winston Churchill, British Prime Minister"
},
{
"text":"The man who does not work for the love of work but only for money is likely to neither make money nor find much fun in life.",
"from":"Charles M. Schwab, American steel magnate"
},
{
"text":"Be undeniably good. No marketing effort or social media buzzword can be a substitute for that.",
"from":"Anthony Volodkin, founder of Hype Machine"
},
{
"text":"Ideas are easy. Implementation is hard.",
"from":"Guy Kawasaki, founder of AllTop"
},
{
"text":"You can say anything to anyone, but how you say it will determine how they will react.",
"from":"John Rampton, entrepreneur and investor"