-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes.json
13739 lines (13739 loc) · 405 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
[
{
"id": "0",
"category": "Albert Einstein",
"body": "Life is like riding a bicycle. To keep your balance you must keep moving.",
"by": "Albert Einstein"
},
{
"id": "1",
"category": "Albert Einstein",
"body": "The important thing is not to stop questioning. Curiosity has its own reason for existing.",
"by": "Albert Einstein"
},
{
"id": "2",
"category": "Albert Einstein",
"body": "No problem can be solved from the same level of consciousness that created it.",
"by": "Albert Einstein"
},
{
"id": "3",
"category": "Albert Einstein",
"body": "Try not to become a man of success, but rather try to become a man of value.",
"by": "Albert Einstein"
},
{
"id": "4",
"category": "Donald Trump",
"body": "I try to learn from the past, but I plan for the future by focusing exclusively on the present. That's where the fun is.",
"by": "Donald Trump"
},
{
"id": "5",
"category": "Donald Trump",
"body": "The point is that you can't be too greedy.",
"by": "Donald Trump"
},
{
"id": "6",
"category": "Abraham Lincoln",
"body": "My father taught me to work; he did not teach me to love it.",
"by": "Abraham Lincoln"
},
{
"id": "7",
"category": "Abraham Lincoln",
"body": "Common looking people are the best in the world: that is the reason the Lord makes so many of them.",
"by": "Abraham Lincoln"
},
{
"id": "8",
"category": "Abraham Lincoln",
"body": "How many legs does a dog have if you call the tail a leg? Four. Calling a tail a leg doesn't make it a leg.",
"by": "Abraham Lincoln"
},
{
"id": "9",
"category": "Abraham Lincoln",
"body": "And in the end it's not the years in your life that count. It's the life in your years.",
"by": "Abraham Lincoln"
},
{
"id": "10",
"category": "Abraham Lincoln",
"body": "My experience has taught me that a man who has no vices has damned few virtues.",
"by": "Abraham Lincoln"
},
{
"id": "11",
"category": "Abraham Lincoln",
"body": "Will springs from the two elements of moral sense and self-interest.",
"by": "Abraham Lincoln"
},
{
"id": "12",
"category": "Abraham Lincoln",
"body": "I am a slow walker, but I never walk backwards.",
"by": "Abraham Lincoln"
},
{
"id": "13",
"category": "Abraham Lincoln",
"body": "I will prepare and some day my chance will come.",
"by": "Abraham Lincoln"
},
{
"id": "14",
"category": "Abraham Lincoln",
"body": "I never had a policy; I have just tried to do my very best each and every day.",
"by": "Abraham Lincoln"
},
{
"id": "15",
"category": "Abraham Lincoln",
"body": "If there is anything that a man can do well, I say let him do it. Give him a chance.",
"by": "Abraham Lincoln"
},
{
"id": "16",
"category": "Abraham Lincoln",
"body": "You cannot escape the responsibility of tomorrow by evading it today.",
"by": "Abraham Lincoln"
},
{
"id": "17",
"category": "Abraham Lincoln",
"body": "Nearly all men can stand adversity, but if you want to test a man's character, give him power.",
"by": "Abraham Lincoln"
},
{
"id": "18",
"category": "Abraham Lincoln",
"body": "",
"by": "Abraham Lincoln"
},
{
"id": "19",
"category": "Abraham Lincoln",
"body": "I do not think much of a man who is not wiser today than he was yesterday.",
"by": "Abraham Lincoln"
},
{
"id": "20",
"category": "Abraham Lincoln",
"body": "People are just as happy as they make up their minds to be.",
"by": "Abraham Lincoln"
},
{
"id": "21",
"category": "Albert Einstein",
"body": "Imagination is more important than knowledge.",
"by": "Albert Einstein"
},
{
"id": "22",
"category": "Albert Einstein",
"body": "The hardest thing in the world to understand is the income tax.",
"by": "Albert Einstein"
},
{
"id": "23",
"category": "Albert Einstein",
"body": "Reality is merely an illusion, albeit a very persistent one.",
"by": "Albert Einstein"
},
{
"id": "24",
"category": "Albert Einstein",
"body": "The only real valuable thing is intuition.",
"by": "Albert Einstein"
},
{
"id": "25",
"category": "Albert Einstein",
"body": "A person starts to live when he can live outside himself.",
"by": "Albert Einstein"
},
{
"id": "26",
"category": "Albert Einstein",
"body": "Weakness of attitude becomes weakness of character.",
"by": "Albert Einstein"
},
{
"id": "27",
"category": "Albert Einstein",
"body": "I never think of the future. It comes soon enough.",
"by": "Albert Einstein"
},
{
"id": "28",
"category": "Albert Einstein",
"body": "The eternal mystery of the world is its comprehensibility.",
"by": "Albert Einstein"
},
{
"id": "29",
"category": "Albert Einstein",
"body": "Sometimes one pays most for the things one gets for nothing.",
"by": "Albert Einstein"
},
{
"id": "30",
"category": "Albert Einstein",
"body": "Science without religion is lame. Religion without science is blind.",
"by": "Albert Einstein"
},
{
"id": "31",
"category": "Albert Einstein",
"body": "Anyone who has never made a mistake has never tried anything new.",
"by": "Albert Einstein"
},
{
"id": "32",
"category": "Albert Einstein",
"body": "Great spirits have often encountered violent opposition from weak minds.",
"by": "Albert Einstein"
},
{
"id": "33",
"category": "Albert Einstein",
"body": "Common sense is the collection of prejudices acquired by age eighteen.",
"by": "Albert Einstein"
},
{
"id": "34",
"category": "Albert Einstein",
"body": "Science is a wonderful thing if one does not have to earn one's living at it.",
"by": "Albert Einstein"
},
{
"id": "35",
"category": "Albert Einstein",
"body": "The secret to creativity is knowing how to hide your sources.",
"by": "Albert Einstein"
},
{
"id": "36",
"category": "Albert Einstein",
"body": "The only thing that interferes with my learning is my education.",
"by": "Albert Einstein"
},
{
"id": "37",
"category": "Albert Einstein",
"body": "God does not care about our mathematical difficulties. He integrates empirically.",
"by": "Albert Einstein"
},
{
"id": "38",
"category": "Albert Einstein",
"body": "The whole of science is nothing more than a refinement of everyday thinking.",
"by": "Albert Einstein"
},
{
"id": "39",
"category": "Albert Einstein",
"body": "Technological progress is like an axe in the hands of a pathological criminal.",
"by": "Albert Einstein"
},
{
"id": "40",
"category": "Albert Einstein",
"body": "Peace cannot be kept by force. It can only be achieved by understanding.",
"by": "Albert Einstein"
},
{
"id": "41",
"category": "Albert Einstein",
"body": "The most incomprehensible thing about the world is that it is comprehensible.",
"by": "Albert Einstein"
},
{
"id": "42",
"category": "Albert Einstein",
"body": "Education is what remains after one has forgotten everything he learned in school.",
"by": "Albert Einstein"
},
{
"id": "43",
"category": "Albert Einstein",
"body": "Do not worry about your difficulties in Mathematics. I can assure you mine are still greater.",
"by": "Albert Einstein"
},
{
"id": "44",
"category": "Albert Einstein",
"body": "Equations are more important to me, because politics is for the present, but an equation is something for eternity.",
"by": "Albert Einstein"
},
{
"id": "45",
"category": "Albert Einstein",
"body": "Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.",
"by": "Albert Einstein"
},
{
"id": "46",
"category": "Albert Einstein",
"body": "As far as the laws of mathematics refer to reality, they are not certain, as far as they are certain, they do not refer to reality.",
"by": "Albert Einstein"
},
{
"id": "47",
"category": "Albert Einstein",
"body": "The fear of death is the most unjustified of all fears, for there's no risk of accident for someone who's dead.",
"by": "Albert Einstein"
},
{
"id": "48",
"category": "Albert Einstein",
"body": "In order to form an immaculate member of a flock of sheep one must, above all, be a sheep.",
"by": "Albert Einstein"
},
{
"id": "49",
"category": "Anthony Robbins",
"body": "A real decision is measured by the fact that you've taken a new action. If there's no action, you haven't truly decided.",
"by": "Anthony Robbins"
},
{
"id": "50",
"category": "Anthony Robbins",
"body": "Commit to CANI! - Constant And Never-ending Improvement.",
"by": "Anthony Robbins"
},
{
"id": "51",
"category": "Anthony Robbins",
"body": "For changes to be of any true value, they've got to be lasting and consistent.",
"by": "Anthony Robbins"
},
{
"id": "52",
"category": "Anthony Robbins",
"body": "If you do what you've always done, you'll get what you've always gotten.",
"by": "Anthony Robbins"
},
{
"id": "53",
"category": "Anthony Robbins",
"body": "In life you need either inspiration or desperation.",
"by": "Anthony Robbins"
},
{
"id": "54",
"category": "Anthony Robbins",
"body": "It is in your moments of decision that your destiny is shaped.",
"by": "Anthony Robbins"
},
{
"id": "55",
"category": "Anthony Robbins",
"body": "It is not what we get. But who we become, what we contribute... that gives meaning to our lives.",
"by": "Anthony Robbins"
},
{
"id": "56",
"category": "Anthony Robbins",
"body": "It not knowing what to do, it's doing what you know.",
"by": "Anthony Robbins"
},
{
"id": "57",
"category": "Anthony Robbins",
"body": "It's not the events of our lives that shape us, but our beliefs as to what those events mean.",
"by": "Anthony Robbins"
},
{
"id": "58",
"category": "Anthony Robbins",
"body": "Passion is the genesis of genius.",
"by": "Anthony Robbins"
},
{
"id": "59",
"category": "Anthony Robbins",
"body": "People are not lazy. They simply have impotent goals - that is, goals that do not inspire them.",
"by": "Anthony Robbins"
},
{
"id": "60",
"category": "Anthony Robbins",
"body": "Setting goals is the first step in turning the invisible into the visible.",
"by": "Anthony Robbins"
},
{
"id": "61",
"category": "Anthony Robbins",
"body": "The meeting of preparation with opportunity generates the offspring we call luck.",
"by": "Anthony Robbins"
},
{
"id": "62",
"category": "Anthony Robbins",
"body": "The path to success is to take massive, determined action.",
"by": "Anthony Robbins"
},
{
"id": "63",
"category": "Anthony Robbins",
"body": "The way we communicate with others and with ourselves ultimately determines the quality of our lives.",
"by": "Anthony Robbins"
},
{
"id": "64",
"category": "Anthony Robbins",
"body": "There is no such thing as failure. There are only results.",
"by": "Anthony Robbins"
},
{
"id": "65",
"category": "Anthony Robbins",
"body": "There's always a way - if you're committed.",
"by": "Anthony Robbins"
},
{
"id": "66",
"category": "Anthony Robbins",
"body": "There's no abiding success without commitment.",
"by": "Anthony Robbins"
},
{
"id": "67",
"category": "Anthony Robbins",
"body": "We aren't in an information age, we are in an entertainment age.",
"by": "Anthony Robbins"
},
{
"id": "68",
"category": "Anthony Robbins",
"body": "We can change our lives. We can do, have, and be exactly what we wish.",
"by": "Anthony Robbins"
},
{
"id": "69",
"category": "Anthony Robbins",
"body": "We will act consistently with our view of who we truly are, whether that view is accurate or not.",
"by": "Anthony Robbins"
},
{
"id": "70",
"category": "Anthony Robbins",
"body": "Whatever happens, take responsibility!",
"by": "Anthony Robbins"
},
{
"id": "71",
"category": "Anthony Robbins",
"body": "You always succeed in producing a result.",
"by": "Anthony Robbins"
},
{
"id": "72",
"category": "Brian Tracey",
"body": "The more credit you give away, the more will come back to you. The more you help others, the more they will want to help you.",
"by": "Brian Tracey"
},
{
"id": "73",
"category": "Brian Tracey",
"body": "It doesn't matter where you are coming from. All that matters is where you are going.",
"by": "Brian Tracey"
},
{
"id": "74",
"category": "Brian Tracey",
"body": "Relationships are the hallmark of the mature person.",
"by": "Brian Tracey"
},
{
"id": "75",
"category": "Brian Tracey",
"body": "Never say anything about yourself you do not want to come true.",
"by": "Brian Tracey"
},
{
"id": "76",
"category": "Brian Tracey",
"body": "The person we believe ourselves to be will always act in a manner consistent with our self-image.",
"by": "Brian Tracey"
},
{
"id": "77",
"category": "Brian Tracey",
"body": "We feel good about ourselves to the exact degree we feel in control of our lives.",
"by": "Brian Tracey"
},
{
"id": "78",
"category": "Brian Tracey",
"body": "You have within you right now, everything you need to deal with whatever the world can throw at you.",
"by": "Brian Tracey"
},
{
"id": "79",
"category": "Dale Carnegie",
"body": "Any fool can criticize, condemn, and complain -- and most fools do.",
"by": "Dale Carnegie"
},
{
"id": "80",
"category": "Dale Carnegie",
"body": "Remember happiness doesn't depend on who you are or what you have; it depends solely upon what you think.",
"by": "Dale Carnegie"
},
{
"id": "81",
"category": "Dale Carnegie",
"body": "Success is getting what you want. Happiness is wanting what you get.",
"by": "Dale Carnegie"
},
{
"id": "82",
"category": "Dale Carnegie",
"body": "Those convinced against their will are of the same opinion still.",
"by": "Dale Carnegie"
},
{
"id": "83",
"category": "Dale Carnegie",
"body": "I deal with the obvious. I present, reiterate and glorify the obvious -- because the obvious is what people need to be told.",
"by": "Dale Carnegie"
},
{
"id": "84",
"category": "Dale Carnegie",
"body": "The royal road to a man's heart is to talk to him about the things he treasures most.",
"by": "Dale Carnegie"
},
{
"id": "85",
"category": "Dale Carnegie",
"body": "If you want to be enthusiastic, act enthusiastic.",
"by": "Dale Carnegie"
},
{
"id": "86",
"category": "Dale Carnegie",
"body": "When fate hands us a lemon, let's try to make a lemonade.",
"by": "Dale Carnegie"
},
{
"id": "87",
"category": "Dale Carnegie",
"body": "The successful man will profit from his mistakes and try again in a different way.",
"by": "Dale Carnegie"
},
{
"id": "88",
"category": "Dale Carnegie",
"body": "Flaming enthusiasm, backed up by horse sense and persistence, is the quality that most frequently makes for success.",
"by": "Dale Carnegie"
},
{
"id": "89",
"category": "Dennis Waitley",
"body": "Mistakes are painful when they happen, but years later a collection of mistakes is what is called experience.",
"by": "Dennis Waitley"
},
{
"id": "90",
"category": "Dennis Waitley",
"body": "Expect the best, plan for the worst, and prepare to be surprised.",
"by": "Dennis Waitley"
},
{
"id": "91",
"category": "Dennis Waitley",
"body": "You must learn from your past mistakes, but not lean on your past successes.",
"by": "Dennis Waitley"
},
{
"id": "92",
"category": "Dennis Waitley",
"body": "It's not what you are that holds you back, it's what you think you are not.",
"by": "Dennis Waitley"
},
{
"id": "93",
"category": "Dennis Waitley",
"body": "Luck happens when opportunity encounters the prepared mind.",
"by": "Dennis Waitley"
},
{
"id": "94",
"category": "Dennis Waitley",
"body": "Losers make promises they often break. Winners make commitments they always keep.",
"by": "Dennis Waitley"
},
{
"id": "95",
"category": "Dennis Waitley",
"body": "Life is not accountable to us. We are accountable to life.",
"by": "Dennis Waitley"
},
{
"id": "96",
"category": "Dennis Waitley",
"body": "We have got to have a dream if we are going to make a dream come true.",
"by": "Dennis Waitley"
},
{
"id": "97",
"category": "Dennis Waitley",
"body": "Out of need springs desire, and out of desire springs the energy and the will to win.",
"by": "Dennis Waitley"
},
{
"id": "98",
"category": "Dennis Waitley",
"body": "Love is a daily, mutual exchange of value.",
"by": "Dennis Waitley"
},
{
"id": "99",
"category": "Dennis Waitley",
"body": "A smile is the light in your window that tells others that there is a caring, sharing person inside.",
"by": "Dennis Waitley"
},
{
"id": "100",
"category": "Dennis Waitley",
"body": "The greatest gifts you can give your children are the roots of responsibility and the wings of independence.",
"by": "Dennis Waitley"
},
{
"id": "101",
"category": "Donald Trump",
"body": "A little more moderation would be good. Of course, my life hasn't exactly been one of moderation.",
"by": "Donald Trump"
},
{
"id": "102",
"category": "Donald Trump",
"body": "Sometimes by losing a battle you find a new way to win the war.",
"by": "Donald Trump"
},
{
"id": "103",
"category": "Donald Trump",
"body": "You have to think anyway, so why not think big?",
"by": "Donald Trump"
},
{
"id": "104",
"category": "Donald Trump",
"body": "Money was never a big motivation for me, except as a way to keep score. The real excitement is playing the game.",
"by": "Donald Trump"
},
{
"id": "105",
"category": "Donald Trump",
"body": "No dream is too big. No challenge is too great. Nothing we want for our future is beyond our reach.",
"by": "Donald Trump"
},
{
"id": "106",
"category": "Donald Trump",
"body": "I've always won, and I'm going to continue to win. And that's the way it is.",
"by": "Donald Trump"
},
{
"id": "107",
"category": "Donald Trump",
"body": "I like thinking big. If you're going to be thinking anything, you might as well think big.",
"by": "Donald Trump"
},
{
"id": "108",
"category": "Earl Nightingale",
"body": "Our attitude toward life determines life's attitude towards us.",
"by": "Earl Nightingale"
},
{
"id": "109",
"category": "Earl Nightingale",
"body": "People with goals succeed because they know where they're going.",
"by": "Earl Nightingale"
},
{
"id": "110",
"category": "Earl Nightingale",
"body": "Success is the progressive realization of a worthy goal or ideal.",
"by": "Earl Nightingale"
},
{
"id": "111",
"category": "Earl Nightingale",
"body": "Open your ears before you open your mouth, it may surprise your eyes!",
"by": "Earl Nightingale"
},
{
"id": "112",
"category": "Earl Nightingale",
"body": "Your world is a living expression of how you are using and have used your mind.",
"by": "Earl Nightingale"
},
{
"id": "113",
"category": "Earl Nightingale",
"body": "We can let circumstances rule us, or we can take charge and rule our lives from within.",
"by": "Earl Nightingale"
},
{
"id": "114",
"category": "Earl Nightingale",
"body": "We can help others in the world more by making the most of yourself than in any other way.",
"by": "Earl Nightingale"
},
{
"id": "115",
"category": "Earl Nightingale",
"body": "Whenever we're afraid, its because we don't know enough. If we understood enough, we would never be afraid.",
"by": "Earl Nightingale"
},
{
"id": "116",
"category": "Earl Nightingale",
"body": "Whatever we plant in our subconscious mind and nourish with repetition and emotion will one day become a reality.",
"by": "Earl Nightingale"
},
{
"id": "117",
"category": "Earl Nightingale",
"body": "We tend to live up to our expectations.",
"by": "Earl Nightingale"
},
{
"id": "118",
"category": "Earl Nightingale",
"body": "You'll find boredom where there is an absence of a good idea.",
"by": "Earl Nightingale"
},
{
"id": "119",
"category": "Earl Nightingale",
"body": "Creativity is a natural extension of our enthusiasm.",
"by": "Earl Nightingale"
},
{
"id": "120",
"category": "Earl Nightingale",
"body": "Everything in the world we want to do or get done, we must do with and through people.",
"by": "Earl Nightingale"
},
{
"id": "121",
"category": "Earl Nightingale",
"body": "Our first journey is to find that special place for us.",
"by": "Earl Nightingale"
},
{
"id": "122",
"category": "Jim Rohn",
"body": "For every disciplined effort there is a multiple reward.",
"by": "Jim Rohn"
},
{
"id": "123",
"category": "Jim Rohn",
"body": "Formal education will make you a living; self-education will make you a fortune.",
"by": "Jim Rohn"
},
{
"id": "124",
"category": "Jim Rohn",
"body": "Give whatever you are doing and whoever you are with the gift of your attention.",
"by": "Jim Rohn"
},
{
"id": "125",
"category": "Jim Rohn",
"body": "Words do two major things: They provide food for the mind and create light for understanding and awareness.",
"by": "Jim Rohn"
},
{
"id": "126",
"category": "Jim Rohn",
"body": "Discipline is the bridge between goals and accomplishment.",
"by": "Jim Rohn"
},
{
"id": "127",
"category": "Jim Rohn",
"body": "Success is nothing more than a few simple disciplines, practiced every day.",
"by": "Jim Rohn"
},
{
"id": "128",
"category": "Jim Rohn",
"body": "Success is not to be pursued; it is to be attracted by the person you become.",
"by": "Jim Rohn"
},
{
"id": "129",
"category": "Jim Rohn",
"body": "Either you run the day or the day runs you.",
"by": "Jim Rohn"
},
{
"id": "130",
"category": "Jim Rohn",
"body": "Whatever good things we build end up building us.",
"by": "Jim Rohn"
},
{
"id": "131",
"category": "Jim Rohn",
"body": "We must all suffer one of two things: the pain of discipline or the pain of regret or disappointment.",
"by": "Jim Rohn"
},
{
"id": "132",
"category": "Jim Rohn",
"body": "Take care of your body. It's the only place you have to live.",
"by": "Jim Rohn"
},
{
"id": "133",
"category": "Jim Rohn",
"body": "Don't wish it were easier, wish you were better.",
"by": "Jim Rohn"
},
{
"id": "134",
"category": "Jim Rohn",
"body": "Don't say, \"If I could, I would.\" Say, \"If I can, I will\"",
"by": "Jim Rohn"
},
{
"id": "135",
"category": "Jim Rohn",
"body": "Indecision is the thief of opportunity.",
"by": "Jim Rohn"
},
{
"id": "136",
"category": "Jim Rohn",
"body": "You cannot change your destination overnight, but you can change your direction overnight.",
"by": "Jim Rohn"
},
{
"id": "137",
"category": "Mark Victor Hansen",
"body": "Ideas attract money, time, talents, skills, energy and other complementary ideas that will bring them into reality.",
"by": "Mark Victor Hansen"
},
{
"id": "138",
"category": "Mark Victor Hansen",
"body": "I never let my subject get in the way of what I want to talk about.",
"by": "Mark Victor Hansen"
},
{
"id": "139",
"category": "Mark Victor Hansen",
"body": "I want to talk with people who care about things that matter that will make a life- changing difference.",
"by": "Mark Victor Hansen"
},
{
"id": "140",
"category": "Mark Victor Hansen",
"body": "In imagination, there's no limitation.",
"by": "Mark Victor Hansen"
},
{
"id": "141",
"category": "Mark Victor Hansen",
"body": "When your self-worth goes up, your net worth goes up with it.",
"by": "Mark Victor Hansen"
},
{
"id": "142",
"category": "Mark Victor Hansen",
"body": "Imitate until you emulate; match and surpass those who launched you. It's the highest form of thankfulness.",
"by": "Mark Victor Hansen"
},
{
"id": "143",
"category": "Mark Victor Hansen",
"body": "Your belief determines your action and your action determines your results, but first you have to believe.",
"by": "Mark Victor Hansen"
},
{
"id": "144",
"category": "Mark Victor Hansen",
"body": "The more goals you set - the more goals you get.",
"by": "Mark Victor Hansen"
},
{
"id": "145",
"category": "Mark Victor Hansen",
"body": "With vision, every person, organization and country can flourish. The Bible says, 'Without vision we perish.",
"by": "Mark Victor Hansen"
},
{
"id": "146",
"category": "Mark Victor Hansen",
"body": "Predetermine the objectives you want to accomplish. Think big, act big and set out to accomplish big results.",
"by": "Mark Victor Hansen"
},
{
"id": "147",
"category": "Napoleon Hill",
"body": "The best job goes to the person who can get it done without passing the buck or coming back with excuses.",
"by": "Napoleon Hill"
},
{
"id": "148",
"category": "Napoleon Hill",
"body": "It is always your next move.",
"by": "Napoleon Hill"
},
{
"id": "149",
"category": "Napoleon Hill",
"body": "No one can make you jealous, angry, vengeful, or greedy -- unless you let him.",
"by": "Napoleon Hill"
},
{
"id": "150",
"category": "Napoleon Hill",
"body": "Everyone enjoys doing the kind of work for which he is best suited.",
"by": "Napoleon Hill"
},
{
"id": "151",
"category": "Napoleon Hill",
"body": "The most common cause of fear of old age is associated with the possibility of poverty.",
"by": "Napoleon Hill"
},
{
"id": "152",
"category": "Napoleon Hill",
"body": "There is always room for those who can be relied upon to deliver the goods when they say they will.",
"by": "Napoleon Hill"
},
{
"id": "153",
"category": "Napoleon Hill",
"body": "Just as our eyes need light in order to see, our minds need ideas in order to conceive.",
"by": "Napoleon Hill"
},
{
"id": "154",
"category": "Napoleon Hill",
"body": "Money without brains is always dangerous.",
"by": "Napoleon Hill"
},
{
"id": "155",
"category": "Napoleon Hill",
"body": "War grows out of the desire of the individual to gain advantage at the expense of his fellow men.",
"by": "Napoleon Hill"
},
{
"id": "156",
"category": "Napoleon Hill",
"body": "Persistence is to the character of man as carbon is to steel.",
"by": "Napoleon Hill"
},
{
"id": "157",
"category": "Napoleon Hill",
"body": "Don't wait. The time will never be just right.",
"by": "Napoleon Hill"
},
{
"id": "158",
"category": "Napoleon Hill",
"body": "The ladder of success is never crowded at the top.",
"by": "Napoleon Hill"
},
{
"id": "159",
"category": "Napoleon Hill",
"body": "All great truths are simple in final analysis, and easily understood; if they are not, they are not great truths.",
"by": "Napoleon Hill"
},
{
"id": "160",
"category": "Napoleon Hill",
"body": "If you cannot do great things, do small things in a great way.",
"by": "Napoleon Hill"
},
{
"id": "161",
"category": "Napoleon Hill",
"body": "No man can succeed in a line of endeavor which he does not like.",
"by": "Napoleon Hill"
},
{
"id": "162",
"category": "Napoleon Hill",
"body": "The most interesting thing about a postage stamp is the persistence with which it sticks to its job.",
"by": "Napoleon Hill"
},
{
"id": "163",
"category": "Napoleon Hill",
"body": "It is literally true that you can succeed best and quickest by helping others to succeed.",
"by": "Napoleon Hill"
},
{
"id": "164",
"category": "Napoleon Hill",
"body": "You might well remember that nothing can bring you success but yourself.",
"by": "Napoleon Hill"
},
{
"id": "165",
"category": "Napoleon Hill",
"body": "Indecision is the seedling of fear.",
"by": "Napoleon Hill"
},
{
"id": "166",
"category": "Napoleon Hill",