-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
executable file
·16266 lines (16266 loc) · 802 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
{
"Quotes": [{
"quoteText": "Genius is one percent inspiration and ninety-nine percent perspiration.",
"quoteAuthor": "Thomas Edison"
}, {
"quoteText": "You can observe a lot just by watching.",
"quoteAuthor": "Yogi Berra"
}, {
"quoteText": "A house divided against itself cannot stand.",
"quoteAuthor": "Abraham Lincoln"
}, {
"quoteText": "Difficulties increase the nearer we get to the goal.",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "Fate is in your hands and no one elses",
"quoteAuthor": "Byron Pulsifer"
}, {
"quoteText": "Be the chief but never the lord.",
"quoteAuthor": "Lao Tzu"
}, {
"quoteText": "Nothing happens unless first we dream.",
"quoteAuthor": "Carl Sandburg"
}, {
"quoteText": "Well begun is half done.",
"quoteAuthor": "Aristotle"
}, {
"quoteText": "Life is a learning experience, only if you learn.",
"quoteAuthor": "Yogi Berra"
}, {
"quoteText": "Self-complacency is fatal to progress.",
"quoteAuthor": "Margaret Sangster"
}, {
"quoteText": "Peace comes from within. Do not seek it without.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "What you give is what you get.",
"quoteAuthor": "Byron Pulsifer"
}, {
"quoteText": "We can only learn to love by loving.",
"quoteAuthor": "Iris Murdoch"
}, {
"quoteText": "Life is change. Growth is optional. Choose wisely.",
"quoteAuthor": "Karen Clark"
}, {
"quoteText": "You'll see it when you believe it.",
"quoteAuthor": "Wayne Dyer"
}, {
"quoteText": "Today is the tomorrow we worried about yesterday.",
"quoteAuthor": ""
}, {
"quoteText": "It's easier to see the mistakes on someone else's paper.",
"quoteAuthor": ""
}, {
"quoteText": "Every man dies. Not every man really lives.",
"quoteAuthor": ""
}, {
"quoteText": "To lead people walk behind them.",
"quoteAuthor": "Lao Tzu"
}, {
"quoteText": "Having nothing, nothing can he lose.",
"quoteAuthor": "William Shakespeare"
}, {
"quoteText": "Trouble is only opportunity in work clothes.",
"quoteAuthor": "Henry J. Kaiser"
}, {
"quoteText": "A rolling stone gathers no moss.",
"quoteAuthor": "Publilius Syrus"
}, {
"quoteText": "Ideas are the beginning points of all fortunes.",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "Everything in life is luck.",
"quoteAuthor": "Donald Trump"
}, {
"quoteText": "Doing nothing is better than being busy doing nothing.",
"quoteAuthor": "Lao Tzu"
}, {
"quoteText": "Trust yourself. You know more than you think you do.",
"quoteAuthor": "Benjamin Spock"
}, {
"quoteText": "Study the past, if you would divine the future.",
"quoteAuthor": "Confucius"
}, {
"quoteText": "The day is already blessed, find peace within it.",
"quoteAuthor": ""
}, {
"quoteText": "From error to error one discovers the entire truth.",
"quoteAuthor": "Sigmund Freud"
}, {
"quoteText": "Well done is better than well said.",
"quoteAuthor": "Benjamin Franklin"
}, {
"quoteText": "Bite off more than you can chew, then chew it.",
"quoteAuthor": "Ella Williams"
}, {
"quoteText": "Work out your own salvation. Do not depend on others.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "One today is worth two tomorrows.",
"quoteAuthor": "Benjamin Franklin"
}, {
"quoteText": "Once you choose hope, anythings possible.",
"quoteAuthor": "Christopher Reeve"
}, {
"quoteText": "God always takes the simplest way.",
"quoteAuthor": "Albert Einstein"
}, {
"quoteText": "One fails forward toward success.",
"quoteAuthor": "Charles Kettering"
}, {
"quoteText": "From small beginnings come great things.",
"quoteAuthor": ""
}, {
"quoteText": "Learning is a treasure that will follow its owner everywhere",
"quoteAuthor": "Chinese proverb"
}, {
"quoteText": "Be as you wish to seem.",
"quoteAuthor": "Socrates"
}, {
"quoteText": "The world is always in movement.",
"quoteAuthor": "V. Naipaul"
}, {
"quoteText": "Never mistake activity for achievement.",
"quoteAuthor": "John Wooden"
}, {
"quoteText": "What worries you masters you.",
"quoteAuthor": "Haddon Robinson"
}, {
"quoteText": "One faces the future with ones past.",
"quoteAuthor": "Pearl Buck"
}, {
"quoteText": "Goals are the fuel in the furnace of achievement.",
"quoteAuthor": "Brian Tracy"
}, {
"quoteText": "Who sows virtue reaps honour.",
"quoteAuthor": "Leonardo da Vinci"
}, {
"quoteText": "Be kind whenever possible. It is always possible.",
"quoteAuthor": "Dalai Lama"
}, {
"quoteText": "Talk doesn't cook rice.",
"quoteAuthor": "Chinese proverb"
}, {
"quoteText": "He is able who thinks he is able.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "Be as you wish to seem.",
"quoteAuthor": "Socrates"
}, {
"quoteText": "A goal without a plan is just a wish.",
"quoteAuthor": "Larry Elder"
}, {
"quoteText": "To succeed, we must first believe that we can.",
"quoteAuthor": "Michael Korda"
}, {
"quoteText": "Learn from yesterday, live for today, hope for tomorrow.",
"quoteAuthor": "Albert Einstein"
}, {
"quoteText": "A weed is no more than a flower in disguise.",
"quoteAuthor": "James Lowell"
}, {
"quoteText": "Do, or do not. There is no try.",
"quoteAuthor": "Yoda"
}, {
"quoteText": "All serious daring starts from within.",
"quoteAuthor": "Harriet Beecher Stowe"
}, {
"quoteText": "The best teacher is experience learned from failures.",
"quoteAuthor": "Byron Pulsifer"
}, {
"quoteText": "Think how hard physics would be if particles could think.",
"quoteAuthor": "Murray Gell-Mann"
}, {
"quoteText": "Love is the flower you've got to let grow.",
"quoteAuthor": "John Lennon"
}, {
"quoteText": "Don't wait. The time will never be just right.",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "One fails forward toward success.",
"quoteAuthor": "Charles Kettering"
}, {
"quoteText": "Time is the wisest counsellor of all.",
"quoteAuthor": "Pericles"
}, {
"quoteText": "You give before you get.",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "Wisdom begins in wonder.",
"quoteAuthor": "Socrates"
}, {
"quoteText": "Without courage, wisdom bears no fruit.",
"quoteAuthor": "Baltasar Gracian"
}, {
"quoteText": "Change in all things is sweet.",
"quoteAuthor": "Aristotle"
}, {
"quoteText": "What you fear is that which requires action to overcome.",
"quoteAuthor": "Byron Pulsifer"
}, {
"quoteText": "The best teacher is experience learned from failures.",
"quoteAuthor": "Byron Pulsifer"
}, {
"quoteText": "When performance exceeds ambition, the overlap is called success.",
"quoteAuthor": "Cullen Hightower"
}, {
"quoteText": "When deeds speak, words are nothing.",
"quoteAuthor": "African proverb"
}, {
"quoteText": "Real magic in relationships means an absence of judgement of others.",
"quoteAuthor": "Wayne Dyer"
}, {
"quoteText": "When performance exceeds ambition, the overlap is called success.",
"quoteAuthor": "Cullen Hightower"
}, {
"quoteText": "I never think of the future. It comes soon enough.",
"quoteAuthor": "Albert Einstein"
}, {
"quoteText": "Skill to do comes of doing.",
"quoteAuthor": "Ralph Emerson"
}, {
"quoteText": "Wisdom is the supreme part of happiness.",
"quoteAuthor": "Sophocles"
}, {
"quoteText": "I believe that every person is born with talent.",
"quoteAuthor": "Maya Angelou"
}, {
"quoteText": "Important principles may, and must, be inflexible.",
"quoteAuthor": "Abraham Lincoln"
}, {
"quoteText": "The undertaking of a new action brings new strength.",
"quoteAuthor": "Richard Evans"
}, {
"quoteText": "I believe that every person is born with talent.",
"quoteAuthor": "Maya Angelou"
}, {
"quoteText": "The years teach much which the days never know.",
"quoteAuthor": "Ralph Emerson"
}, {
"quoteText": "Our distrust is very expensive.",
"quoteAuthor": "Ralph Emerson"
}, {
"quoteText": "All know the way; few actually walk it.",
"quoteAuthor": "Bodhidharma"
}, {
"quoteText": "Great talent finds happiness in execution.",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "Faith in oneself is the best and safest course.",
"quoteAuthor": "Michelangelo"
}, {
"quoteText": "Courage is going from failure to failure without losing enthusiasm.",
"quoteAuthor": "Winston Churchill"
}, {
"quoteText": "The two most powerful warriors are patience and time.",
"quoteAuthor": "Leo Tolstoy"
}, {
"quoteText": "Anticipate the difficult by managing the easy.",
"quoteAuthor": "Lao Tzu"
}, {
"quoteText": "Those who are free of resentful thoughts surely find peace.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "Talk doesn't cook rice.",
"quoteAuthor": "Chinese proverb"
}, {
"quoteText": "A short saying often contains much wisdom.",
"quoteAuthor": "Sophocles"
}, {
"quoteText": "The day is already blessed, find peace within it.",
"quoteAuthor": ""
}, {
"quoteText": "It takes both sunshine and rain to make a rainbow.",
"quoteAuthor": ""
}, {
"quoteText": "A beautiful thing is never perfect.",
"quoteAuthor": ""
}, {
"quoteText": "Only do what your heart tells you.",
"quoteAuthor": "Princess Diana"
}, {
"quoteText": "Life is movement-we breathe, we eat, we walk, we move!",
"quoteAuthor": "John Pierrakos"
}, {
"quoteText": "No one can make you feel inferior without your consent.",
"quoteAuthor": "Eleanor Roosevelt"
}, {
"quoteText": "One fails forward toward success.",
"quoteAuthor": "Charles Kettering"
}, {
"quoteText": "Argue for your limitations, and sure enough theyre yours.",
"quoteAuthor": "Richard Bach"
}, {
"quoteText": "Luck is what happens when preparation meets opportunity.",
"quoteAuthor": "Seneca"
}, {
"quoteText": "Victory belongs to the most persevering.",
"quoteAuthor": "Napoleon Bonaparte"
}, {
"quoteText": "Once you choose hope, anythings possible.",
"quoteAuthor": "Christopher Reeve"
}, {
"quoteText": "Love all, trust a few, do wrong to none.",
"quoteAuthor": "William Shakespeare"
}, {
"quoteText": "In order to win, you must expect to win.",
"quoteAuthor": "Richard Bach"
}, {
"quoteText": "A goal is a dream with a deadline.",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "You can do it if you believe you can!",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "Set your goals high, and don't stop till you get there.",
"quoteAuthor": "Bo Jackson"
}, {
"quoteText": "Genius is one percent inspiration and ninety-nine percent perspiration.",
"quoteAuthor": "Thomas Edison"
}, {
"quoteText": "Every new day is another chance to change your life.",
"quoteAuthor": ""
}, {
"quoteText": "Smile, breathe, and go slowly.",
"quoteAuthor": "Thich Nhat Hanh"
}, {
"quoteText": "Nobody will believe in you unless you believe in yourself.",
"quoteAuthor": "Liberace"
}, {
"quoteText": "Be kind whenever possible. It is always possible.",
"quoteAuthor": "Dalai Lama"
}, {
"quoteText": "Do more than dream: work.",
"quoteAuthor": "William Arthur Ward"
}, {
"quoteText": "No man was ever wise by chance.",
"quoteAuthor": "Seneca"
}, {
"quoteText": "Some pursue happiness, others create it.",
"quoteAuthor": ""
}, {
"quoteText": "It's easier to see the mistakes on someone else's paper.",
"quoteAuthor": ""
}, {
"quoteText": "Think how hard physics would be if particles could think.",
"quoteAuthor": "Murray Gell-Mann"
}, {
"quoteText": "Well begun is half done.",
"quoteAuthor": "Aristotle"
}, {
"quoteText": "He that is giddy thinks the world turns round.",
"quoteAuthor": "William Shakespeare"
}, {
"quoteText": "Don't ruin the present with the ruined past.",
"quoteAuthor": "Ellen Gilchrist"
}, {
"quoteText": "Do something wonderful, people may imitate it.",
"quoteAuthor": "Albert Schweitzer"
}, {
"quoteText": "We do what we do because we believe.",
"quoteAuthor": ""
}, {
"quoteText": "Great talent finds happiness in execution.",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "Do one thing every day that scares you.",
"quoteAuthor": "Eleanor Roosevelt"
}, {
"quoteText": "If you cannot be silent be brilliant and thoughtful.",
"quoteAuthor": "Byron Pulsifer"
}, {
"quoteText": "Smile, breathe, and go slowly.",
"quoteAuthor": "Thich Nhat Hanh"
}, {
"quoteText": "Who looks outside, dreams; who looks inside, awakes.",
"quoteAuthor": "Carl Jung"
}, {
"quoteText": "What we think, we become.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "The shortest answer is doing.",
"quoteAuthor": "Lord Herbert"
}, {
"quoteText": "All our knowledge has its origins in our perceptions.",
"quoteAuthor": "Leonardo da Vinci"
}, {
"quoteText": "He is able who thinks he is able.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "The harder you fall, the higher you bounce.",
"quoteAuthor": ""
}, {
"quoteText": "Trusting our intuition often saves us from disaster.",
"quoteAuthor": "Anne Wilson Schaef"
}, {
"quoteText": "Truth is powerful and it prevails.",
"quoteAuthor": "Sojourner Truth"
}, {
"quoteText": "Talk doesn't cook rice.",
"quoteAuthor": "Chinese proverb"
}, {
"quoteText": "Light tomorrow with today!",
"quoteAuthor": "Elizabeth Browning"
}, {
"quoteText": "Silence is a fence around wisdom.",
"quoteAuthor": "German proverb"
}, {
"quoteText": "Society develops wit, but its contemplation alone forms genius.",
"quoteAuthor": "Madame de Stael"
}, {
"quoteText": "Real magic in relationships means an absence of judgement of others.",
"quoteAuthor": "Wayne Dyer"
}, {
"quoteText": "The years teach much which the days never know.",
"quoteAuthor": "Ralph Emerson"
}, {
"quoteText": "We can only learn to love by loving.",
"quoteAuthor": "Iris Murdoch"
}, {
"quoteText": "The simplest things are often the truest.",
"quoteAuthor": "Richard Bach"
}, {
"quoteText": "What you give is what you get.",
"quoteAuthor": "Byron Pulsifer"
}, {
"quoteText": "Everyone smiles in the same language.",
"quoteAuthor": ""
}, {
"quoteText": "A short saying often contains much wisdom.",
"quoteAuthor": "Sophocles"
}, {
"quoteText": "Yesterday I dared to struggle. Today I dare to win.",
"quoteAuthor": "Bernadette Devlin"
}, {
"quoteText": "Victory belongs to the most persevering.",
"quoteAuthor": "Napoleon Bonaparte"
}, {
"quoteText": "No alibi will save you from accepting the responsibility.",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "If you can dream it, you can do it.",
"quoteAuthor": "Walt Disney"
}, {
"quoteText": "From error to error one discovers the entire truth.",
"quoteAuthor": "Sigmund Freud"
}, {
"quoteText": "It is better to travel well than to arrive.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "Life shrinks or expands in proportion to one's courage.",
"quoteAuthor": "Anais Nin"
}, {
"quoteText": "You have to believe in yourself.",
"quoteAuthor": "Sun Tzu"
}, {
"quoteText": "Our intention creates our reality.",
"quoteAuthor": "Wayne Dyer"
}, {
"quoteText": "Silence is a true friend who never betrays.",
"quoteAuthor": "Confucius"
}, {
"quoteText": "Character develops itself in the stream of life.",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "From little acorns mighty oaks do grow.",
"quoteAuthor": "American proverb"
}, {
"quoteText": "You have to believe in yourself.",
"quoteAuthor": "Sun Tzu"
}, {
"quoteText": "You can't stop the waves, but you can learn to surf.",
"quoteAuthor": "Jon Kabat-Zinn"
}, {
"quoteText": "Reality does not conform to the ideal, but confirms it.",
"quoteAuthor": "Gustave Flaubert"
}, {
"quoteText": "Speak low, if you speak love.",
"quoteAuthor": "William Shakespeare"
}, {
"quoteText": "A really great talent finds its happiness in execution.",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "Reality leaves a lot to the imagination.",
"quoteAuthor": "John Lennon"
}, {
"quoteText": "Our intention creates our reality.",
"quoteAuthor": "Wayne Dyer"
}, {
"quoteText": "Society develops wit, but its contemplation alone forms genius.",
"quoteAuthor": "Madame de Stael"
}, {
"quoteText": "The greatest remedy for anger is delay.",
"quoteAuthor": "Seneca"
}, {
"quoteText": "Growth itself contains the germ of happiness.",
"quoteAuthor": "Pearl Buck"
}, {
"quoteText": "You can do what's reasonable or you can decide what's possible.",
"quoteAuthor": ""
}, {
"quoteText": "Nothing strengthens authority so much as silence.",
"quoteAuthor": "Leonardo da Vinci"
}, {
"quoteText": "Wherever you go, go with all your heart.",
"quoteAuthor": "Confucius"
}, {
"quoteText": "The only real valuable thing is intuition.",
"quoteAuthor": "Albert Einstein"
}, {
"quoteText": "I believe that every person is born with talent.",
"quoteAuthor": "Maya Angelou"
}, {
"quoteText": "Good luck is another name for tenacity of purpose.",
"quoteAuthor": "Ralph Emerson"
}, {
"quoteText": "Rainbows apologize for angry skies.",
"quoteAuthor": "Sylvia Voirol"
}, {
"quoteText": "Friendship isn't a big thing. It's a million little things.",
"quoteAuthor": ""
}, {
"quoteText": "Time is the most valuable thing a man can spend.",
"quoteAuthor": "Theophrastus"
}, {
"quoteText": "Whatever happens, take responsibility.",
"quoteAuthor": "Tony Robbins"
}, {
"quoteText": "Experience is simply the name we give our mistakes.",
"quoteAuthor": "Oscar Wilde"
}, {
"quoteText": "I think and that is all that I am.",
"quoteAuthor": "Wayne Dyer"
}, {
"quoteText": "A good plan today is better than a perfect plan tomorrow.",
"quoteAuthor": ""
}, {
"quoteText": "Be as you wish to seem.",
"quoteAuthor": "Socrates"
}, {
"quoteText": "If the shoe doesn't fit, must we change the foot?",
"quoteAuthor": "Gloria Steinem"
}, {
"quoteText": "Each day provides its own gifts.",
"quoteAuthor": "Marcus Aurelius"
}, {
"quoteText": "While we stop to think, we often miss our opportunity.",
"quoteAuthor": "Publilius Syrus"
}, {
"quoteText": "Life isn't about finding yourself. Life is about creating yourself.",
"quoteAuthor": "Bernard Shaw"
}, {
"quoteText": "To bring anything into your life, imagine that it's already there.",
"quoteAuthor": "Richard Bach"
}, {
"quoteText": "Begin to weave and God will give you the thread.",
"quoteAuthor": "German proverb"
}, {
"quoteText": "The more you know yourself, the more you forgive yourself.",
"quoteAuthor": "Confucius"
}, {
"quoteText": "Someone remembers, someone cares; your name is whispered in someone's prayers.",
"quoteAuthor": ""
}, {
"quoteText": "Without faith, nothing is possible. With it, nothing is impossible.",
"quoteAuthor": "Mary Bethune"
}, {
"quoteText": "What worries you masters you.",
"quoteAuthor": "Haddon Robinson"
}, {
"quoteText": "Once we accept our limits, we go beyond them.",
"quoteAuthor": "Albert Einstein"
}, {
"quoteText": "Don't be pushed by your problems; be led by your dreams.",
"quoteAuthor": ""
}, {
"quoteText": "Whatever we expect with confidence becomes our own self-fulfilling prophecy.",
"quoteAuthor": "Brian Tracy"
}, {
"quoteText": "Everything you can imagine is real.",
"quoteAuthor": "Pablo Picasso"
}, {
"quoteText": "The shortest answer is doing.",
"quoteAuthor": "Lord Herbert"
}, {
"quoteText": "A beautiful thing is never perfect.",
"quoteAuthor": ""
}, {
"quoteText": "Fear is a darkroom where negatives develop.",
"quoteAuthor": "Usman Asif"
}, {
"quoteText": "The simplest things are often the truest.",
"quoteAuthor": "Richard Bach"
}, {
"quoteText": "The truest wisdom is a resolute determination.",
"quoteAuthor": "Napoleon Bonaparte"
}, {
"quoteText": "Life is the flower for which love is the honey.",
"quoteAuthor": "Victor Hugo"
}, {
"quoteText": "Freedom is the right to live as we wish.",
"quoteAuthor": "Epictetus"
}, {
"quoteText": "Change your thoughts, change your life!",
"quoteAuthor": ""
}, {
"quoteText": "Never ignore a gut feeling, but never believe that it's enough.",
"quoteAuthor": "Robert Heller"
}, {
"quoteText": "Loss is nothing else but change,and change is Natures delight.",
"quoteAuthor": "Marcus Aurelius"
}, {
"quoteText": "Someone is special only if you tell them.",
"quoteAuthor": "Byron Pulsifer"
}, {
"quoteText": "Great talent finds happiness in execution.",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "Today is the tomorrow you worried about yesterday.",
"quoteAuthor": ""
}, {
"quoteText": "There is no way to happiness, happiness is the way.",
"quoteAuthor": "Thich Nhat Hanh"
}, {
"quoteText": "The day always looks brighter from behind a smile.",
"quoteAuthor": ""
}, {
"quoteText": "A beautiful thing is never perfect.",
"quoteAuthor": ""
}, {
"quoteText": "No alibi will save you from accepting the responsibility.",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "Argue for your limitations, and sure enough theyre yours.",
"quoteAuthor": "Richard Bach"
}, {
"quoteText": "You can observe a lot just by watching.",
"quoteAuthor": "Yogi Berra"
}, {
"quoteText": "Reality leaves a lot to the imagination.",
"quoteAuthor": "John Lennon"
}, {
"quoteText": "A stumble may prevent a fall.",
"quoteAuthor": ""
}, {
"quoteText": "He who talks more is sooner exhausted.",
"quoteAuthor": "Lao Tzu"
}, {
"quoteText": "Well begun is half done.",
"quoteAuthor": "Aristotle"
}, {
"quoteText": "He who is contented is rich.",
"quoteAuthor": "Lao Tzu"
}, {
"quoteText": "Work out your own salvation. Do not depend on others.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "You can do it if you believe you can!",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "What we achieve inwardly will change outer reality.",
"quoteAuthor": "Plutarch"
}, {
"quoteText": "Our strength grows out of our weaknesses.",
"quoteAuthor": "Ralph Waldo Emerson"
}, {
"quoteText": "We must become the change we want to see.",
"quoteAuthor": "Mahatma Gandhi"
}, {
"quoteText": "Happiness is found in doing, not merely possessing.",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "Put your future in good hands � your own.",
"quoteAuthor": ""
}, {
"quoteText": "We choose our destiny in the way we treat others.",
"quoteAuthor": "Wit"
}, {
"quoteText": "Time is the most valuable thing a man can spend.",
"quoteAuthor": "Theophrastus"
}, {
"quoteText": "No snowflake in an avalanche ever feels responsible.",
"quoteAuthor": "Voltaire"
}, {
"quoteText": "Smile, breathe, and go slowly.",
"quoteAuthor": "Thich Nhat Hanh"
}, {
"quoteText": "Fortune favours the brave.",
"quoteAuthor": "Virgil"
}, {
"quoteText": "I believe in one thing only, the power of human will.",
"quoteAuthor": "Joseph Stalin"
}, {
"quoteText": "The more you know yourself, the more you forgive yourself.",
"quoteAuthor": "Confucius"
}, {
"quoteText": "The best way out is always through.",
"quoteAuthor": "Robert Frost"
}, {
"quoteText": "The mind unlearns with difficulty what it has long learned.",
"quoteAuthor": "Seneca"
}, {
"quoteText": "I destroy my enemies when I make them my friends.",
"quoteAuthor": "Abraham Lincoln"
}, {
"quoteText": "No garden is without its weeds.",
"quoteAuthor": "Thomas Fuller"
}, {
"quoteText": "There is no failure except in no longer trying.",
"quoteAuthor": "Elbert Hubbard"
}, {
"quoteText": "Kind words will unlock an iron door.",
"quoteAuthor": "Turkish proverb"
}, {
"quoteText": "Problems are only opportunities with thorns on them.",
"quoteAuthor": "Hugh Miller"
}, {
"quoteText": "Life is just a chance to grow a soul.",
"quoteAuthor": "A. Powell Davies"
}, {
"quoteText": "Reality does not conform to the ideal, but confirms it.",
"quoteAuthor": "Gustave Flaubert"
}, {
"quoteText": "If you can dream it, you can do it.",
"quoteAuthor": "Walt Disney"
}, {
"quoteText": "Mountains cannot be surmounted except by winding paths.",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "May our hearts garden of awakening bloom with hundreds of flowers.",
"quoteAuthor": "Thich Nhat Hanh"
}, {
"quoteText": "Nobody will believe in you unless you believe in yourself.",
"quoteAuthor": "Liberace"
}, {
"quoteText": "Fortune befriends the bold.",
"quoteAuthor": "John Dryden"
}, {
"quoteText": "Keep true to the dreams of thy youth.",
"quoteAuthor": "Friedrich von Schiller"
}, {
"quoteText": "You're never a loser until you quit trying.",
"quoteAuthor": "Mike Ditka"
}, {
"quoteText": "Science is organized knowledge. Wisdom is organized life.",
"quoteAuthor": "Immanuel Kant"
}, {
"quoteText": "Knowing is not enough; we must apply!",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "Strong beliefs win strong men, and then make them stronger.",
"quoteAuthor": "Richard Bach"
}, {
"quoteText": "Autumn is a second spring when every leaf is a flower.",
"quoteAuthor": "Albert Camus"
}, {
"quoteText": "If you surrender to the wind, you can ride it.",
"quoteAuthor": "Toni Morrison"
}, {
"quoteText": "Character develops itself in the stream of life.",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "We must become the change we want to see.",
"quoteAuthor": "Mahatma Gandhi"
}, {
"quoteText": "Keep yourself to the sunshine and you cannot see the shadow.",
"quoteAuthor": "Helen Keller"
}, {
"quoteText": "Write your plans in pencil and give God the eraser.",
"quoteAuthor": "Paulo Coelho"
}, {
"quoteText": "Inspiration exists, but it has to find us working.",
"quoteAuthor": "Pablo Picasso"
}, {
"quoteText": "All serious daring starts from within.",
"quoteAuthor": "Harriet Beecher Stowe"
}, {
"quoteText": "Pick battles big enough to matter, small enough to win.",
"quoteAuthor": "Jonathan Kozol"
}, {
"quoteText": "Don't compromise yourself. You are all you've got.",
"quoteAuthor": "Janis Joplin"
}, {
"quoteText": "He that is giddy thinks the world turns round.",
"quoteAuthor": "William Shakespeare"
}, {
"quoteText": "A short saying oft contains much wisdom.",
"quoteAuthor": "Sophocles"
}, {
"quoteText": "Difficulties are things that show a person what they are.",
"quoteAuthor": "Epictetus"
}, {
"quoteText": "When you doubt your power, you give power to your doubt.",
"quoteAuthor": "Honore de Balzac"
}, {
"quoteText": "The cause is hidden. The effect is visible to all.",
"quoteAuthor": "Ovid"
}, {
"quoteText": "A weed is no more than a flower in disguise.",
"quoteAuthor": "James Lowell"
}, {
"quoteText": "Keep true to the dreams of thy youth.",
"quoteAuthor": "Friedrich von Schiller"
}, {
"quoteText": "A prudent question is one half of wisdom.",
"quoteAuthor": "Francis Bacon"
}, {
"quoteText": "The path to success is to take massive, determined action.",
"quoteAuthor": "Tony Robbins"
}, {
"quoteText": "I allow my intuition to lead my path.",
"quoteAuthor": "Manuel Puig"
}, {
"quoteText": "Nature takes away any faculty that is not used.",
"quoteAuthor": "William R. Inge"
}, {
"quoteText": "All our knowledge has its origins in our perceptions.",
"quoteAuthor": "Leonardo da Vinci"
}, {
"quoteText": "If the shoe doesn't fit, must we change the foot?",
"quoteAuthor": "Gloria Steinem"
}, {
"quoteText": "Life shrinks or expands in proportion to one's courage.",
"quoteAuthor": "Anais Nin"
}, {
"quoteText": "May our hearts garden of awakening bloom with hundreds of flowers.",
"quoteAuthor": "Thich Nhat Hanh"
}, {
"quoteText": "If you wish to be a writer, write.",
"quoteAuthor": "Epictetus"
}, {
"quoteText": "Today is the tomorrow we worried about yesterday.",
"quoteAuthor": ""
}, {
"quoteText": "There is no way to prosperity, prosperity is the way.",
"quoteAuthor": "Wayne Dyer"
}, {
"quoteText": "Talk doesn't cook rice.",
"quoteAuthor": "Chinese proverb"
}, {
"quoteText": "Wherever you go, go with all your heart.",
"quoteAuthor": "Confucius"
}, {
"quoteText": "Either you run the day or the day runs you.",
"quoteAuthor": "Jim Rohn"
}, {
"quoteText": "Write your plans in pencil and give God the eraser.",
"quoteAuthor": "Paulo Coelho"
}, {
"quoteText": "Better be ignorant of a matter than half know it.",
"quoteAuthor": "Publilius Syrus"
}, {
"quoteText": "Follow your instincts. That is where true wisdom manifests itself.",
"quoteAuthor": "Oprah Winfrey"
}, {
"quoteText": "There never was a good knife made of bad steel.",
"quoteAuthor": "Benjamin Franklin"
}, {
"quoteText": "To accomplish great things, we must dream as well as act.",
"quoteAuthor": "Anatole France"
}, {
"quoteText": "Patience is the companion of wisdom.",
"quoteAuthor": "Saint Augustine"
}, {
"quoteText": "The mind is everything. What you think you become.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "To enjoy life, we must touch much of it lightly.",
"quoteAuthor": "Voltaire"
}, {
"quoteText": "To fly, we have to have resistance.",
"quoteAuthor": "Maya Lin"
}, {
"quoteText": "The more you know yourself, the more you forgive yourself.",
"quoteAuthor": "Confucius"
}, {
"quoteText": "What you see depends on what you're looking for.",
"quoteAuthor": ""
}, {
"quoteText": "The heart has its reasons which reason knows not of.",
"quoteAuthor": "Blaise Pascal"
}, {
"quoteText": "When you doubt your power, you give power to your doubt.",
"quoteAuthor": "Honore de Balzac"
}, {
"quoteText": "Be great in act, as you have been in thought.",
"quoteAuthor": "William Shakespeare"
}, {
"quoteText": "Imagination rules the world.",
"quoteAuthor": "Napoleon Bonaparte"
}, {
"quoteText": "Kind words do not cost much. Yet they accomplish much.",
"quoteAuthor": "Blaise Pascal"
}, {
"quoteText": "Wherever you go, go with all your heart.",
"quoteAuthor": "Confucius"
}, {
"quoteText": "In order to win, you must expect to win.",
"quoteAuthor": "Richard Bach"
}, {
"quoteText": "You're never a loser until you quit trying.",
"quoteAuthor": "Mike Ditka"
}, {
"quoteText": "There is no greater harm than that of time wasted.",
"quoteAuthor": "Michelangelo"
}, {
"quoteText": "Intuition will tell the thinking mind where to look next.",
"quoteAuthor": "Jonas Salk"
}, {
"quoteText": "Nature takes away any faculty that is not used.",
"quoteAuthor": "William R. Inge"
}, {
"quoteText": "Doing nothing is better than being busy doing nothing.",
"quoteAuthor": "Lao Tzu"
}, {
"quoteText": "It is better to travel well than to arrive.",
"quoteAuthor": "Buddha"
}, {
"quoteText": "Once you choose hope, anythings possible.",
"quoteAuthor": "Christopher Reeve"
}, {
"quoteText": "Worry gives a small thing a big shadow.",
"quoteAuthor": ""
}, {
"quoteText": "Do, or do not. There is no try.",
"quoteAuthor": "Yoda"
}, {
"quoteText": "Fears are nothing more than a state of mind.",
"quoteAuthor": "Napoleon Hill"
}, {
"quoteText": "Mountains cannot be surmounted except by winding paths.",
"quoteAuthor": "Johann Wolfgang von Goethe"
}, {
"quoteText": "May our hearts garden of awakening bloom with hundreds of flowers.",
"quoteAuthor": "Thich Nhat Hanh"
}, {
"quoteText": "The journey of a thousand miles begins with one step.",
"quoteAuthor": "Lao Tzu"
}, {
"quoteText": "Don't be pushed by your problems; be led by your dreams.",
"quoteAuthor": ""
}, {
"quoteText": "Efficiency is doing things right; effectiveness is doing the right things.",
"quoteAuthor": "Peter Drucker"
}, {
"quoteText": "The greatest remedy for anger is delay.",
"quoteAuthor": "Seneca"
}, {
"quoteText": "Worry gives a small thing a big shadow.",
"quoteAuthor": ""
}, {
"quoteText": "Blaze with the fire that is never extinguished.",
"quoteAuthor": "Luisa Sigea"
}, {
"quoteText": "Don't cry because it's over. Smile because it happened.",
"quoteAuthor": "Dr. Seuss"
}, {
"quoteText": "Time is the wisest counsellor of all.",
"quoteAuthor": "Pericles"
}, {
"quoteText": "No is easier to do. Yes is easier to say.",
"quoteAuthor": "Jason Fried"
}, {
"quoteText": "From little acorns mighty oaks do grow.",
"quoteAuthor": "American proverb"
}, {
"quoteText": "To be wrong is nothing unless you continue to remember it.",
"quoteAuthor": "Confucius"
}, {
"quoteText": "Write your plans in pencil and give God the eraser.",
"quoteAuthor": "Paulo Coelho"
}, {
"quoteText": "Once we accept our limits, we go beyond them.",
"quoteAuthor": "Albert Einstein"
}, {
"quoteText": "He who talks more is sooner exhausted.",
"quoteAuthor": "Lao Tzu"
}, {
"quoteText": "I never think of the future. It comes soon enough.",
"quoteAuthor": "Albert Einstein"
}, {
"quoteText": "Whatever happens, take responsibility.",
"quoteAuthor": "Tony Robbins"
}, {
"quoteText": "Yesterdays home runs don't win today's games.",
"quoteAuthor": "Babe Ruth"
}, {
"quoteText": "The world is always in movement.",
"quoteAuthor": "V. Naipaul"
}, {
"quoteText": "Inspiration exists, but it has to find us working.",
"quoteAuthor": "Pablo Picasso"
}, {
"quoteText": "Silence is deep as Eternity, Speech is shallow as Time.",
"quoteAuthor": "Carlyle"
}, {
"quoteText": "Don't smother each other. No one can grow in the shade.",
"quoteAuthor": "Leo F. Buscaglia"
}, {
"quoteText": "We must become the change we want to see.",
"quoteAuthor": "Mahatma Gandhi"