-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquotes.go
1656 lines (1652 loc) · 52.3 KB
/
quotes.go
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
package main
import (
"encoding/json"
"math/rand"
"net/http"
"time"
)
func handleGetQuote(w http.ResponseWriter, r *http.Request) {
rand := rand.New(rand.NewSource(time.Now().UnixMilli()))
quote := quotes[rand.Intn(len(quotes))]
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Access-Control-Allow-Origin", "*")
_ = json.NewEncoder(w).Encode(quote)
}
type Quote struct {
Text string `json:"text"`
Author string `json:"author"`
}
var quotes = []Quote{
{
Text: "The secret of joy in work is contained in one word � excellence. To know how to do something well is to enjoy it.",
Author: "Pearl Buck",
},
{
Text: "To be happy is to be able to become aware of oneself without fright.",
Author: "Walter Benjamin",
},
{
Text: "Into each life rain must fall but rain can be the giver of life and it is all in your attitude that makes rain produce sunshine.",
Author: "Byron Pulsifer",
},
{
Text: "True silence is the rest of the mind; it is to the spirit what sleep is to the body, nourishment and refreshment.",
Author: "William Penn",
},
{
Text: "To give hope to someone occurs when you teach them how to use the tools to do it for themselves.",
Author: "Byron Pulsifer",
},
{
Text: "Ability will never catch up with the demand for it.",
Author: "Confucius",
},
{
Text: "If one advances confidently in the direction of his dream, and endeavours to live the life which he had imagines, he will meet with a success unexpected in common hours.",
Author: "Henry David Thoreau",
},
{
Text: "Action will remove the doubts that theory cannot solve.",
Author: "Tehyi Hsieh",
},
{
Text: "Kindness is the golden chain by which society is bound together.",
Author: "Johann Wolfgang von Goethe",
},
{
Text: "To accomplish great things, we must dream as well as act.",
Author: "Anatole France",
},
{
Text: "Never bend your head. Always hold it high. Look the world right in the eye.",
Author: "Helen Keller",
},
{Text: "Take it easy � but take it.", Author: "Woody Guthrie"},
{
Text: "They say that time changes things, but you actually have to change them yourself.",
Author: "Andy Warhol",
},
{Text: "He who knows himself is enlightened.", Author: "Lao Tzu"},
{
Text: "Every sixty seconds you spend angry, upset or mad, is a full minute of happiness you�ll never get back.",
Author: "Someone",
},
{
Text: "Being in humaneness is good. If we select other goodness and thus are far apart from humaneness, how can we be the wise?",
Author: "Confucius",
},
{
Text: "A true friend is the most precious of all possessions and the one we take the least thought about acquiring.",
Author: "Francois de La Rochefoucauld",
},
{
Text: "Giving up doesn't always mean you are weak. Sometimes it means that you are strong enough to let go.",
Author: "Someone",
},
{
Text: "God has given you one face, and you make yourself another.",
Author: "William Shakespeare",
},
{
Text: "Though no one can go back and make a brand new start, anyone can start from now and make a brand new ending.",
Author: "Someone",
},
{
Text: "The fox has many tricks. The hedgehog has but one. But that is the best of all.",
Author: "Desiderius Erasmus",
},
{
Text: "Every adversity, every failure, every heartache carries with it the seed of an equal or greater benefit.",
Author: "Napoleon Hill",
},
{
Text: "If a man does his best, what else is there?",
Author: "George Patton",
},
{
Text: "Your outlook on life is a direct reflection on how much you like yourself.",
Author: "Lululemon",
},
{
Text: "The greatest remedy for anger is delay.",
Author: "Seneca",
},
{
Text: "What lies behind us and what lies before us are tiny matters compared to what lies within us.",
Author: "Walt Emerson",
},
{
Text: "Ability will never catch up with the demand for it.",
Author: "Confucius",
},
{
Text: "Doing nothing is better than being busy doing nothing.",
Author: "Lao Tzu",
},
{
Text: "Happiness is not something ready made. It comes from your own actions.",
Author: "Dalai Lama",
},
{
Text: "Everyone is a genius at least once a year. A real genius has his original ideas closer together.",
Author: "Georg Lichtenberg",
},
{
Text: "Moral excellence comes about as a result of habit. We become just by doing just acts, temperate by doing temperate acts, brave by doing brave acts.",
Author: "Aristotle",
},
{Text: "A jug fills drop by drop.", Author: "Buddha"},
{
Text: "The best way to pay for a lovely moment is to enjoy it.",
Author: "Richard Bach",
},
{
Text: "Men of perverse opinion do not know the excellence of what is in their hands, till some one dash it from them.",
Author: "Sophocles",
},
{
Text: "In the long run we get no more than we have been willing to risk giving.",
Author: "Sheldon Kopp",
},
{
Text: "Liberty, taking the word in its concrete sense, consists in the ability to choose.",
Author: "Simone Weil",
},
{
Text: "You have enemies? Good. That means you've stood up for something, sometime in your life.",
Author: "Winston Churchill",
},
{
Text: "Be slow of tongue and quick of eye.",
Author: "Cervantes",
},
{
Text: "Great ideas often receive violent opposition from mediocre minds.",
Author: "Albert Einstein",
},
{
Text: "Don't smother each other. No one can grow in the shade.",
Author: "Leo F. Buscaglia",
},
{
Text: "A failure is a man who has blundered but is not capable of cashing in on the experience.",
Author: "Elbert Hubbard",
},
{
Text: "Action is the foundational key to all success.",
Author: "Pablo Picasso",
},
{
Text: "Argue for your limitations, and sure enough theyre yours.",
Author: "Richard Bach",
},
{
Text: "Nothing happens unless first we dream.",
Author: "Carl Sandburg",
},
{
Text: "An optimist is a person who sees a green light everywhere, while the pessimist sees only the red spotlight... The truly wise person is colour-blind.",
Author: "Albert Schweitzer",
},
{
Text: "Nothing is softer or more flexible than water, yet nothing can resist it.",
Author: "Lao Tzu",
},
{
Text: "Don't smother each other. No one can grow in the shade.",
Author: "Leo F. Buscaglia",
},
{
Text: "We are all faced with a series of great opportunities brilliantly disguised as impossible situations.",
Author: "Charles R. Swindoll",
},
{
Text: "The real measure of your wealth is how much youd be worth if you lost all your money.",
Author: "Someone",
},
{
Text: "Never say there is nothing beautiful in the world any more. There is always something to make you wonder in the shape of a tree, the trembling of a leaf.",
Author: "Albert Schweitzer",
},
{
Text: "There is no need for temples, no need for complicated philosophies. My brain and my heart are my temples; my philosophy is kindness.",
Author: "Dalai Lama",
},
{
Text: "If you seek truth you will not seek victory by dishonourable means, and if you find truth you will become invincible.",
Author: "Epictetus",
},
{
Text: "Don't judge each day by the harvest you reap but by the seeds you plant.",
Author: "Robert Stevenson",
},
{
Text: "Nothing happens unless first we dream.",
Author: "Carl Sandburg",
},
{
Text: "The truth is always exciting. Speak it, then. Life is dull without it.",
Author: "Pearl Buck",
},
{
Text: "If you love someone, set them free. If they come back they're yours; if they don't they never were.",
Author: "Richard Bach",
},
{
Text: "By going beyond your own problems and taking care of others, you gain inner strength, self-confidence, courage, and a greater sense of calm.",
Author: "Dalai Lama",
},
{
Text: "Watch the little things; a small leak will sink a great ship.",
Author: "Benjamin Franklin",
},
{
Text: "Never idealize others. They will never live up to your expectations.",
Author: "Leo Buscaglia",
},
{
Text: "You have to take it as it happens, but you should try to make it happen the way you want to take it.",
Author: "Old German proverb",
},
{
Text: "Notice that the stiffest tree is most easily cracked, while the bamboo or willow survives by bending with the wind.",
Author: "Bruce Lee",
},
{
Text: "Action may not always bring happiness, but there is no happiness without action.",
Author: "Benjamin Disraeli",
},
{
Text: "Responsibility is not inherited, it is a choice that everyone needs to make at some point in their life.",
Author: "Byron Pulsifer",
},
{
Text: "You will not be punished for your anger, you will be punished by your anger.",
Author: "Buddha",
},
{
Text: "The greatest part of our happiness depends on our dispositions, not our circumstances.",
Author: "Martha Washington",
},
{
Text: "The smallest flower is a thought, a life answering to some feature of the Great Whole, of whom they have a persistent intuition.",
Author: "Honore de Balzac",
},
{
Text: "Face your deficiencies and acknowledge them; but do not let them master you. Let them teach you patience, sweetness, insight.",
Author: "Helen Keller",
},
{
Text: "Before you put on a frown, make absolutely sure there are no smiles available.",
Author: "Jim Beggs",
},
{
Text: "Those who dream by day are cognizant of many things which escape those who dream only by night.",
Author: "Edgar Allan Poe",
},
{
Text: "Being in humaneness is good. If we select other goodness and thus are far apart from humaneness, how can we be the wise?",
Author: "Confucius",
},
{
Text: "Life is what you make of it. Always has been, always will be.",
Author: "Grandma Moses",
},
{
Text: "One today is worth two tomorrows.",
Author: "Benjamin Franklin",
},
{
Text: "Every problem has a gift for you in its hands.",
Author: "Richard Bach",
},
{
Text: "More often than not, anger is actually an indication of weakness rather than of strength.",
Author: "Dalai Lama",
},
{
Text: "The day you decide to do it is your lucky day.",
Author: "Japanese proverb",
},
{
Text: "Success is not the key to happiness. Happiness is the key to success. If you love what you are doing, you will be successful.",
Author: "Albert Schweitzer",
},
{
Text: "A fine quotation is a diamond on the finger of a man of wit, and a pebble in the hand of a fool.",
Author: "Joseph Roux",
},
{
Text: "Inspiration exists, but it has to find us working.",
Author: "Pablo Picasso",
},
{
Text: "I have just three things to teach: simplicity, patience, compassion. These three are your greatest treasures.",
Author: "Lao Tzu",
},
{
Text: "There are two primary choices in life: to accept conditions as they exist, or accept the responsibility for changing them.",
Author: "Denis Waitley",
},
{
Text: "Neither genius, fame, nor love show the greatness of the soul. Only kindness can do that.",
Author: "Jean Lacordaire",
},
{Text: "What we think, we become.", Author: "Buddha"},
{
Text: "Work for something because it is good, not just because it stands a chance to succeed.",
Author: "Vaclav Havel",
},
{
Text: "By letting it go it all gets done. The world is won by those who let it go. But when you try and try. The world is beyond the winning.",
Author: "Lao Tzu",
},
{
Text: "The more you know yourself, the more you forgive yourself.",
Author: "Confucius",
},
{
Text: "It is better to understand a little than to misunderstand a lot.",
Author: "Anatole France",
},
{
Text: "If one is estranged from oneself, then one is estranged from others too. If one is out of touch with oneself, then one cannot touch others.",
Author: "Anne Lindbergh",
},
{
Text: "Each day provides its own gifts.",
Author: "Marcus Aurelius",
},
{
Text: "No man can succeed in a line of endeavor which he does not like.",
Author: "Napoleon Hill",
},
{
Text: "Action is the foundational key to all success.",
Author: "Pablo Picasso",
},
{
Text: "Through meditation and by giving full attention to one thing at a time, we can learn to direct attention where we choose.",
Author: "Eknath Easwaran",
},
{
Text: "People grow through experience if they meet life honestly and courageously. This is how character is built.",
Author: "Eleanor Roosevelt",
},
{
Text: "Well done is better than well said.",
Author: "Benjamin Franklin",
},
{
Text: "I never think of the future. It comes soon enough.",
Author: "Albert Einstein",
},
{
Text: "Practice yourself, for heavens sake in little things, and then proceed to greater.",
Author: "Epictetus",
},
{
Text: "You don't drown by falling in water. You drown by staying there.",
Author: "Someone",
},
{
Text: "First comes thought; then organization of that thought, into ideas and plans; then transformation of those plans into reality. The beginning, as you will observe, is in your imagination.",
Author: "Napoleon Hill",
},
{
Text: "All great achievements require time.",
Author: "Maya Angelou",
},
{
Text: "Difficulties are meant to rouse, not discourage. The human spirit is to grow strong by conflict.",
Author: "William Channing",
},
{
Text: "A failure is a man who has blundered but is not capable of cashing in on the experience.",
Author: "Elbert Hubbard",
},
{
Text: "The world is but a canvas to the imagination.",
Author: "Henry Thoreau",
},
{
Text: "The best cure for the body is a quiet mind.",
Author: "Napoleon Bonaparte",
},
{
Text: "The final proof of greatness lies in being able to endure criticism without resentment.",
Author: "Elbert Hubbard",
},
{
Text: "What is not started today is never finished tomorrow.",
Author: "Goethe",
},
{
Text: "You, yourself, as much as anybody in the entire universe, deserve your love and affection.",
Author: "Buddha",
},
{
Text: "Until you value yourself, you won't value your time. Until you value your time, you won't do anything with it.",
Author: "M. Scott Peck",
},
{
Text: "Freedom is what you do with what's been done to you.",
Author: "Jean-Paul Sartre",
},
{
Text: "What you fear is that which requires action to overcome.",
Author: "Byron Pulsifer",
},
{
Text: "God has given you one face, and you make yourself another.",
Author: "William Shakespeare",
},
{
Text: "Everyone smiles in the same language.",
Author: "Someone",
},
{
Text: "He that never changes his opinions, never corrects his mistakes, and will never be wiser on the morrow than he is today.",
Author: "Tryon Edwards",
},
{
Text: "The awareness of our own strength makes us modest.",
Author: "Paul Cezanne",
},
{
Text: "Truth is powerful and it prevails.",
Author: "Sojourner Truth",
},
{
Text: "Of course there is no formula for success except perhaps an unconditional acceptance of life and what it brings.",
Author: "Arthur Rubinstein",
},
{
Text: "I always wanted to be somebody, but I should have been more specific.",
Author: "Lily Tomlin",
},
{
Text: "Cherish your visions and your dreams as they are the children of your soul, the blueprints of your ultimate achievements.",
Author: "Napoleon Hill",
},
{
Text: "Being right is highly overrated. Even a stopped clock is right twice a day.",
Author: "Someone",
},
{
Text: "Friends are those rare people who ask how we are and then wait to hear the answer.",
Author: "Ed Cunningham",
},
{
Text: "The minute you settle for less than you deserve, you get even less than you settled for.",
Author: "Maureen Dowd",
},
{
Text: "What you do not want done to yourself, do not do to others.",
Author: "Confucius",
},
{
Text: "The foolish man seeks happiness in the distance, the wise grows it under his feet.",
Author: "James Oppenheim",
},
{
Text: "However many holy words you read, However many you speak, What good will they do you If you do not act on upon them?",
Author: "Buddha",
},
{
Text: "When you see a man of worth, think of how you may emulate him. When you see one who is unworthy, examine yourself.",
Author: "Confucius",
},
{Text: "Talk doesn't cook rice.", Author: "Chinese proverb"},
{
Text: "Four steps to achievement: Plan purposefully. Prepare prayerfully. Proceed positively. Pursue persistently.",
Author: "William Arthur Ward",
},
{
Text: "From wonder into wonder existence opens.",
Author: "Lao Tzu",
},
{
Text: "As long as your going to be thinking anyway, think big.",
Author: "Donald Trump",
},
{
Text: "The road leading to a goal does not separate you from the destination; it is essentially a part of it.",
Author: "Charles DeLint",
},
{
Text: "Work out your own salvation. Do not depend on others.",
Author: "Buddha",
},
{
Text: "The best and most beautiful things in the world cannot be seen, nor touched... but are felt in the heart.",
Author: "Helen Keller",
},
{
Text: "You can't let praise or criticism get to you. It's a weakness to get caught up in either one.",
Author: "John Wooden",
},
{
Text: "The journey of a thousand miles begins with one step.",
Author: "Lao Tzu",
},
{Text: "What we think, we become.", Author: "Buddha"},
{
Text: "I'm not afraid of storms, for Im learning how to sail my ship.",
Author: "Louisa Alcott",
},
{
Text: "Life is not measured by the breaths you take, but by its breathtaking moments.",
Author: "Michael Vance",
},
{
Text: "Fate is in your hands and no one elses",
Author: "Byron Pulsifer",
},
{
Text: "From small beginnings come great things.",
Author: "Someone",
},
{
Text: "Victory belongs to the most persevering.",
Author: "Napoleon Bonaparte",
},
{
Text: "As our case is new, we must think and act anew.",
Author: "Abraham Lincoln",
},
{
Text: "If we have a positive mental attitude, then even when surrounded by hostility, we shall not lack inner peace.",
Author: "Dalai Lama",
},
{
Text: "Know, first, who you are, and then adorn yourself accordingly.",
Author: "Epictetus",
},
{
Text: "Those who are free of resentful thoughts surely find peace.",
Author: "Buddha",
},
{
Text: "Every great advance in science has issued from a new audacity of the imagination.",
Author: "John Dewey",
},
{
Text: "Every gift from a friend is a wish for your happiness.",
Author: "Richard Bach",
},
{
Text: "If you cannot be silent be brilliant and thoughtful.",
Author: "Byron Pulsifer",
},
{
Text: "Beware of the half truth. You may have gotten hold of the wrong half.",
Author: "Someone",
},
{
Text: "Smile, breathe, and go slowly.",
Author: "Thich Nhat Hanh",
},
{
Text: "Always be yourself, express yourself, have faith in yourself, do not go out and look for a successful personality and duplicate it.",
Author: "Bruce Lee",
},
{
Text: "Meaning is not what you start with but what you end up with.",
Author: "Peter Elbow",
},
{
Text: "Make the most of yourself for that is all there is of you.",
Author: "Ralph Emerson",
},
{
Text: "The only limit to your impact is your imagination and commitment.",
Author: "Tony Robbins",
},
{
Text: "The greatest good you can do for another is not just to share your riches but to reveal to him his own.",
Author: "Benjamin Disraeli",
},
{
Text: "Each day provides its own gifts.",
Author: "Marcus Aurelius",
},
{
Text: "A little more persistence, a little more effort, and what seemed hopeless failure may turn to glorious success.",
Author: "Elbert Hubbard",
},
{
Text: "If we have a positive mental attitude, then even when surrounded by hostility, we shall not lack inner peace.",
Author: "Dalai Lama",
},
{
Text: "Ability will never catch up with the demand for it.",
Author: "Confucius",
},
{
Text: "Forgiveness does not change the past, but it does enlarge the future.",
Author: "Paul Boese",
},
{
Text: "The greatest danger for most of us is not that our aim is too high and we miss it, but that it is too low and we reach it.",
Author: "Michelangelo",
},
{
Text: "Sunshine is delicious, rain is refreshing, wind braces us up, snow is exhilarating; there is really no such thing as bad weather, only different kinds of good weather.",
Author: "John Ruskin",
},
{
Text: "Better than a thousand hollow words, is one word that brings peace.",
Author: "Buddha",
},
{
Text: "When you don't know what you believe, everything becomes an argument. Everything is debatable. But when you stand for something, decisions are obvious.",
Author: "Someone",
},
{
Text: "From error to error one discovers the entire truth.",
Author: "Sigmund Freud",
},
{
Text: "If there is no struggle, there is no progress.",
Author: "Frederick Douglass",
},
{
Text: "It all depends on how we look at things, and not how they are in themselves.",
Author: "Carl Jung",
},
{
Text: "Take heed: you do not find what you do not seek.",
Author: "English proverb",
},
{
Text: "Give it all you've got because you never know if there's going to be a next time.",
Author: "Danielle Ingrum",
},
{
Text: "No day in which you learn something is a complete loss.",
Author: "David Eddings",
},
{
Text: "Reviewing what you have learned and learning anew, you are fit to be a teacher.",
Author: "Confucius",
},
{
Text: "Sadness flies away on the wings of time.",
Author: "Jean de la Fontaine",
},
{
Text: "I love my past. I love my present. Im not ashamed of what Ive had, and Im not sad because I have it no longer.",
Author: "Colette",
},
{
Text: "One of the advantages of being disorderly is that one is constantly making exciting discoveries.",
Author: "A. A. Milne",
},
{
Text: "The final proof of greatness lies in being able to endure criticism without resentment.",
Author: "Elbert Hubbard",
},
{
Text: "Promises are the uniquely human way of ordering the future, making it predictable and reliable to the extent that this is humanly possible.",
Author: "Hannah Arendt",
},
{
Text: "Better to have loved and lost, than to have never loved at all.",
Author: "St. Augustine",
},
{
Text: "An invasion of armies can be resisted, but not an idea whose time has come.",
Author: "Victor Hugo",
},
{
Text: "Whatever happens, take responsibility.",
Author: "Tony Robbins",
},
{
Text: "The moment one gives close attention to anything, it becomes a mysterious, awesome, indescribably magnificent world in itself.",
Author: "Henry Miller",
},
{
Text: "Cherish your visions and your dreams as they are the children of your soul, the blueprints of your ultimate achievements.",
Author: "Napoleon Hill",
},
{
Text: "This world, after all our science and sciences, is still a miracle; wonderful, inscrutable, magical and more, to whosoever will think of it.",
Author: "Thomas Carlyle",
},
{
Text: "You block your dream when you allow your fear to grow bigger than your faith.",
Author: "Mary Morrissey",
},
{
Text: "We can only learn to love by loving.",
Author: "Iris Murdoch",
},
{
Text: "The best thing in every noble dream is the dreamer...",
Author: "Moncure Conway",
},
{
Text: "Opportunity often comes disguised in the form of misfortune, or temporary defeat.",
Author: "Napoleon Hill",
},
{
Text: "Don't be dismayed by good-byes. A farewell is necessary before you can meet again. And meeting again, after moments or lifetimes, is certain for those who are friends.",
Author: "Richard Bach",
},
{
Text: "The truth you believe and cling to makes you unavailable to hear anything new.",
Author: "Pema Chodron",
},
{
Text: "Though no one can go back and make a brand new start, anyone can start from now and make a brand new ending.",
Author: "Someone",
},
{
Text: "Meaning is not what you start with but what you end up with.",
Author: "Peter Elbow",
},
{
Text: "To be able to give away riches is mandatory if you wish to possess them. This is the only way that you will be truly rich.",
Author: "Mahummad Ali",
},
{
Text: "Life shrinks or expands in proportion to one's courage.",
Author: "Anais Nin",
},
{
Text: "In seed time learn, in harvest teach, in winter enjoy.",
Author: "William Blake",
},
{
Text: "If you spend your whole life waiting for the storm, you'll never enjoy the sunshine.",
Author: "Morris West",
},
{
Text: "Thousands of candles can be lit from a single, and the life of the candle will not be shortened. Happiness never decreases by being shared.",
Author: "Buddha",
},
{
Text: "Don't ruin the present with the ruined past.",
Author: "Ellen Gilchrist",
},
{
Text: "Love is the master key that opens the gates of happiness.",
Author: "Oliver Holmes",
},
{
Text: "The superior man acts before he speaks, and afterwards speaks according to his action.",
Author: "Confucius",
},
{
Text: "If A is success in life, then A equals x plus y plus z. Work is x; y is play; and z is keeping your mouth shut.",
Author: "Albert Einstein",
},
{
Text: "The least of things with a meaning is worth more in life than the greatest of things without it.",
Author: "Carl Jung",
},
{
Text: "Better be ignorant of a matter than half know it.",
Author: "Publilius Syrus",
},
{
Text: "Arriving at one point is the starting point to another.",
Author: "John Dewey",
},
{Text: "The world is always in movement.", Author: "V. Naipaul"},
{
Text: "When performance exceeds ambition, the overlap is called success.",
Author: "Cullen Hightower",
},
{
Text: "The greatest pleasure I know is to do a good action by stealth, and to have it found out by accident.",
Author: "Charles Lamb",
},
{
Text: "If we could learn to like ourselves, even a little, maybe our cruelties and angers might melt away.",
Author: "John Steinbeck",
},
{
Text: "Life a culmination of the past, an awareness of the present, an indication of the future beyond knowledge, the quality that gives a touch of divinity to matter.",
Author: "Charles A. Lindbergh",
},
{
Text: "The only real valuable thing is intuition.",
Author: "Albert Einstein",
},
{
Text: "Kind words do not cost much. Yet they accomplish much.",
Author: "Blaise Pascal",
},
{
Text: "Don't be pushed by your problems; be led by your dreams.",
Author: "Someone",
},
{
Text: "Love is the flower you've got to let grow.",
Author: "John Lennon",
},
{
Text: "Most folks are as happy as they make up their minds to be.",
Author: "Abraham Lincoln",
},
{
Text: "He that never changes his opinions, never corrects his mistakes, and will never be wiser on the morrow than he is today.",
Author: "Tryon Edwards",
},
{
Text: "Smile, breathe, and go slowly.",
Author: "Thich Nhat Hanh",
},
{
Text: "Never bend your head. Always hold it high. Look the world right in the eye.",
Author: "Helen Keller",
},
{
Text: "There is nothing in a caterpillar that tells you it's going to be a butterfly.",
Author: "Buckminster Fuller",
},
{
Text: "If you think you can, you can. And if you think you can't, you're right.",
Author: "Henry Ford",
},
{
Text: "I'm not afraid of storms, for Im learning how to sail my ship.",
Author: "Louisa Alcott",
},
{
Text: "In the sky, there is no distinction of east and west; people create distinctions out of their own minds and then believe them to be true.",
Author: "Buddha",
},
{
Text: "Until you make peace with who you are, you'll never be content with what you have.",
Author: "Doris Mortman",
},
{
Text: "Action may not always bring happiness, but there is no happiness without action.",
Author: "Benjamin Disraeli",
},
{
Text: "A good plan today is better than a perfect plan tomorrow.",
Author: "Someone",
},
{
Text: "Smile, breathe, and go slowly.",
Author: "Thich Nhat Hanh",
},
{
Text: "We can only be said to be alive in those moments when our hearts are conscious of our treasures.",
Author: "Thornton Wilder",
},
{
Text: "Do not turn back when you are just at the goal.",
Author: "Publilius Syrus",
},
{
Text: "Keep your eyes on the stars and your feet on the ground.",
Author: "Theodore Roosevelt",
},
{
Text: "When you are content to be simply yourself and don't compare or compete, everybody will respect you.",
Author: "Laozi",
},
{
Text: "Freedom is what you do with what's been done to you.",
Author: "Jean-Paul Sartre",
},
{Text: "All things change; nothing perishes.", Author: "Ovid"},
{
Text: "Courage is what it takes to stand up and speak; courage is also what it takes to sit down and listen.",
Author: "Winston Churchill",
},
{
Text: "It is not uncommon for people to spend their whole life waiting to start living.",
Author: "Eckhart Tolle",
},
{
Text: "Liberty, taking the word in its concrete sense, consists in the ability to choose.",
Author: "Simone Weil",
},
{
Text: "He who fears being conquered is sure of defeat.",
Author: "Napoleon Bonaparte",
},
{
Text: "Arrogance and rudeness are training wheels on the bicycle of life � for weak people who cannot keep their balance without them.",
Author: "Laura Teresa Marquez",
},
{
Text: "Living at risk is jumping off the cliff and building your wings on the way down.",
Author: "Ray Bradbury",
},
{
Text: "Let us resolve to be masters, not the victims, of our history, controlling our own destiny without giving way to blind suspicions and emotions.",
Author: "John Kennedy",
},
{
Text: "How far that little candle throws its beams! So shines a good deed in a naughty world.",
Author: "William Shakespeare",
},
{
Text: "Well done is better than well said.",
Author: "Benjamin Franklin",
},
{
Text: "If you don't design your own life plan, chances are you'll fall into someone else's plan. And guess what they have planned for you? Not much.",
Author: "Jim Rohn",
},
{
Text: "You were not born a winner, and you were not born a loser. You are what you make yourself be.",
Author: "Lou Holtz",
},
{
Text: "Smile, breathe, and go slowly.",
Author: "Thich Nhat Hanh",
},
{
Text: "When it is obvious that the goals cannot be reached, don't adjust the goals, adjust the action steps.",
Author: "Confucius",
},
{
Text: "What you give is what you get.",
Author: "Byron Pulsifer",
},
{
Text: "Forget about all the reasons why something may not work. You only need to find one good reason why it will.",
Author: "Robert Anthony",
},
{
Text: "If you are patient in one moment of anger, you will escape one hundred days of sorrow.",
Author: "Chinese proverb",
},
{
Text: "There is only one success � to be able to spend your life in your own way.",
Author: "Christopher Morley",
},
{
Text: "The greatest way to live with honour in this world is to be what we pretend to be.",
Author: "Socrates",
},
{
Text: "Life is the flower for which love is the honey.",
Author: "Victor Hugo",
},
{
Text: "We are all something, but none of us are everything.",
Author: "Blaise Pascal",
},
{
Text: "The personal life deeply lived always expands into truths beyond itself.",
Author: "Anais Nin",
},
{
Text: "I believe that we are solely responsible for our choices, and we have to accept the consequences of every deed, word, and thought throughout our lifetime.",
Author: "Elisabeth Kubler-Ross",
},
{
Text: "Nothing in life is to be feared. It is only to be understood.",
Author: "Marie Curie",
},
{
Text: "If you love someone, set them free. If they come back they're yours; if they don't they never were.",
Author: "Richard Bach",
},
{