forked from JayShukla8/Quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
1266 lines (1263 loc) · 36.1 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
[
{
"quote": "Most of the important things in the world have been accomplished by people who have kept on trying when there seemed no hope at all.",
"author": "Dale Carnegie",
"source": "Good Reads",
"tags": [
"perseverance",
"hope",
"achievement"
]
},
{
"quote": "It's fine to celebrate success, but it is more important to heed the lessons of failure.",
"author": "Bill Gates",
"source": "Forbes India",
"tags": [
"hardwork",
"Learning",
"keep-pushing"
]
},
{
"quote": "The aim of life is no more to control the mind, but to develop it harmoniously; not to achieve salvation hereafter, but to make the best use of it here below.",
"author": "Bhagat Singh",
"source": "The Indian Express",
"tags": [
"goal",
"hope",
"life"
]
},
{
"quote": "If this isn't good enough, I don't know what is.",
"author": "Kurt Vonnegut",
"source": "Talk - The shape of stories",
"tags": [
"contentment",
"wisdom",
"perception"
]
},
{
"quote": "Failure is simply the opportunity to begin again, this time more intelligently.",
"author": "Henry Ford",
"source": "Shopify.com",
"tags": [
"learnings",
"inspiration",
"motivation"
]
},
{
"quote": "Be the change you want to see in the world.",
"author": "Mahatma Gandhi",
"source": "gandhiforchildren.org",
"tags": [
"wisdom",
"mindset",
"thoughts"
]
},
{
"quote": "To be everywhere is to be nowhere.",
"author": "Seneca",
"source": "The Letters of a Stoic",
"tags": [
"focus",
"stoicism",
"presence"
]
},
{
"quote": "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",
"source": "Reverence for Life",
"tags": [
"wisdom",
"balance",
"equanimity"
]
},
{
"quote": "The most wasted of all days is one without laughter.",
"author": "Nicolas Chamfort",
"source": "Maxims and Thoughts",
"tags": [
"laughter",
"wisdom",
"joy"
]
},
{
"quote": "In the midst of movement and chaos, keep stillness inside of you.",
"author": "Deepak Chopra",
"source": "The Book of Secrets: Unlocking the Hidden Dimensions of Your Life",
"tags": [
"stillness",
"peace",
"life",
"chaos"
]
},
{
"quote": "Professionals stick to the schedule; amateurs let life get in the way.",
"author": "James Clear",
"source": "Atomic Habits",
"tags": [
"discipline",
"productivity",
"professionalism"
]
},
{
"quote": "Adoration is the state furthest away from understanding.",
"author": "Aizen Sosuke",
"source": "Bleach",
"tags": [
"wisdom",
"understanding",
"perception"
]
},
{
"quote": "The mind is everything. What you think you become.",
"author": "Buddha",
"source": "The Dhammapada",
"tags": [
"mindset",
"thoughts",
"philosophy"
]
},
{
"quote": "When we hit our lowest point, we are open to the greatest change.",
"author": "Avatar Aang",
"source": "Legend of Korra",
"tags": [
"growth",
"resilience",
"change"
]
},
{
"quote": "What people call 'love' is just a chemical reaction that compels animals to breed. It hits hard, Morty, then it slowly fades, leaving you stranded in a failing marriage.",
"author": "Rick Sanchez",
"source": "Rick and Morty",
"tags": [
"love",
"chemistry",
"cynicism"
]
},
{
"quote": "Love is not about possession. Love is about appreciation.",
"author": "Osho",
"source": "Love, Freedom, Aloneness",
"tags": [
"love",
"freedom",
"appreciation"
]
},
{
"quote": "In three words I can sum up everything I've learned about life: it goes on.",
"author": "Robert Frost",
"source": "The Poetry of Robert Frost",
"tags": [
"life",
"resilience",
"acceptance"
]
},
{
"quote": "Winners are not afraid of losing. But losers are. Failure is part of the process of success. People who avoid failure also avoid success.",
"author": "Robert Kiyosaki",
"source": "Rich Dad, Poor Dad",
"tags": [
"success",
"failure",
"courage"
]
},
{
"quote": "Success is a lousy teacher. It seduces smart people into thinking they can't lose.",
"author": "Morgan Housel",
"source": "The Psychology Of Money",
"tags": [
"success",
"learning",
"humility"
]
},
{
"quote": "What's life without a little risk?",
"author": "Sirius Black",
"source": "Order of the Phoenix",
"tags": [
"risk",
"adventure",
"life"
]
},
{
"quote": "The only way to get ahead is to start.",
"author": "Steven Bartlett",
"source": "The Diary of a CEO",
"tags": [
"action",
"progress",
"motivation"
]
},
{
"quote": "Batter my heart, three-person'd God,",
"author": "John Donne",
"source": "Holy Sonnets",
"tags": [
"faith",
"struggle",
"spirituality"
]
},
{
"quote": "Most people are, Scout, when you finally see them.",
"author": "Atticus Finch",
"source": "To Kill a Mockingbird",
"tags": [
"empathy",
"understanding",
"human nature"
]
},
{
"quote": "No real change in history has ever been achieved by discussions.",
"author": "Netaji Subhas Chandra Bose",
"source": "The Indian Struggle, 1920-1942",
"tags": [
"action",
"change",
"history"
]
},
{
"quote": "Success is not final, failure is not fatal: It is the courage to continue that counts.",
"author": "Winston Churchill",
"source": "Speech, 1941",
"tags": [
"success",
"failure",
"courage"
]
},
{
"quote": "The mind acts like an enemy for those who do not control it.",
"author": "Shree Krishna",
"source": "Bhagavad Gita",
"tags": [
"mind",
"control",
"self-mastery"
]
},
{
"quote": "Arise, awake, and stop not till the goal is reached.",
"author": "Swami Vivekananda",
"source": "Katha Upanishad",
"tags": [
"determination",
"motivation",
"goals"
]
},
{
"quote": "The unexamined life is not worth living.",
"author": "Socrates",
"source": "Apology",
"tags": [
"philosophy",
"self-reflection",
"life"
]
},
{
"quote": "It is not in the stars to hold our destiny but in ourselves.",
"author": "William Shakespeare",
"source": "Julius Caesar",
"tags": [
"destiny",
"self-determination",
"fate"
]
},
{
"quote": "I have no special talent. I am only passionately curious.",
"author": "Albert Einstein",
"source": "Letter to Carl Seelig, 1952",
"tags": [
"curiosity",
"learning",
"humility"
]
},
{
"quote": "You only live once, but if you do it right, once is enough.",
"author": "Mae West",
"source": "Interview, 1937",
"tags": [
"life",
"living",
"wisdom"
]
},
{
"quote": "Happiness is not something ready made. It comes from your own actions.",
"author": "Dalai Lama",
"source": "The Art of Happiness",
"tags": [
"happiness",
"actions",
"mindfulness"
]
},
{
"quote": "To love and be loved is to feel the sun from both sides.",
"author": "David Viscott",
"source": "Finding Your Strength in Difficult Times",
"tags": [
"love",
"relationships",
"emotion"
]
},
{
"quote": "It does not matter how slowly you go as long as you do not stop.",
"author": "Confucius",
"source": "The Analects of Confucius",
"tags": [
"persistence",
"progress",
"determination"
]
},
{
"quote": "The best among you is the one who doesn’t harm others with his tongue and hands.",
"author": "Prophet Muhammad",
"source": "Sahih al-Bukhari",
"tags": [
"ethics",
"kindness",
"morality"
]
},
{
"quote": "Do not dwell in the past, do not dream of the future, concentrate the mind on the present moment.",
"author": "Buddha",
"source": "The Dhammapada",
"tags": [
"present",
"mindfulness",
"wisdom"
]
},
{
"quote": "The greatest glory in living lies not in never falling, but in rising every time we fall.",
"author": "Nelson Mandela",
"source": "Long Walk to Freedom",
"tags": [
"resilience",
"failure",
"perseverance"
]
},
{
"quote": "That's one small step for a man, one giant leap for mankind.",
"author": "Neil Armstrong",
"source": "Interview, July 20, 1969",
"tags": [
"achievement",
"history",
"progress"
]
},
{
"quote": "Thinking of Peace Whilst Spilling Blood Is Something Only Humans Could Do.",
"author": "Madara Uchiha",
"source": "Naruto Shippuden",
"tags": [
"peace",
"violence",
"human nature"
]
},
{
"quote": "No one saves us but ourselves. No one can and no one may. We ourselves must walk the path.",
"author": "Gautama Buddha",
"source": "The Dhammapada",
"tags": [
"self-reliance",
"wisdom",
"self-determination"
]
},
{
"quote": "Peace comes from within. Do not seek it without.",
"author": "Gautama Buddha",
"source": "The Dhammapada",
"tags": [
"peace",
"mindfulness",
"inner strength"
]
},
{
"quote": "The happiness of your life depends upon the quality of your thoughts.",
"author": "Marcus Aurelius",
"source": "Meditations, Book 4, Chapter 3",
"tags": [
"thoughts",
"happiness",
"stoicism"
]
},
{
"quote": "The world is a transient place, not a place of stay.",
"author": "Hazrat Ali",
"source": "Nahj Al-Balaghah Vol.2",
"tags": [
"life",
"transience",
"impermanence"
]
},
{
"quote": "If a man hasn't discovered something that he will die for, he isn't fit to live.",
"author": "Martin Luther King Jr.",
"source": "Martin Luther King Jr.'s Detroit speech",
"tags": [
"purpose",
"life",
"sacrifice"
]
},
{
"quote": "Reach high, for stars lie hidden in you. Dream deep, for every dream precedes the goal.",
"author": "Rabindranath Tagore",
"source": "Words of Rabindranath Tagore",
"tags": [
"dreams",
"aspiration",
"potential"
]
},
{
"quote": "Do not let circumstances control you. You change your circumstances.",
"author": "Jackie Chan",
"source": "Jackie Chan: My Stunts",
"tags": [
"self-reliance",
"circumstances",
"control"
]
},
{
"quote": "One who is equal in both success and failure is truly wise.",
"author": "Lord Krishna",
"source": "Bhagavad Gita - Chapter 2, Verse 48",
"tags": [
"wisdom",
"balance",
"equanimity"
]
},
{
"quote": "Words are, in my not so humble opinion, our most inexhaustible source of magic, capable of both influencing injury, and remedying it.",
"author": "Albus Dumbledore (JK Rowling)",
"source": "Harry Potter and the Deathly Hallows: Part 2",
"tags": [
"words",
"magic",
"power"
]
},
{
"quote": "Never Settle for Anything less than what you Deserve. It's not pride, it's Self Respect.",
"author": "Chanakya",
"source": "Chanakya Niti",
"tags": [
"self-respect",
"standards",
"dignity"
]
},
{
"quote": "A man is great by deeds. Not by birth.",
"author": "Chanakya",
"source": "Chanakya Niti",
"tags": [
"greatness",
"actions",
"merit"
]
},
{
"quote": "First say to yourself what you would be; and then do what you have to do.",
"author": "Epictetus",
"source": "The Discourses",
"tags": [
"self-awareness",
"action",
"philosophy"
]
},
{
"quote": "If you start out by promising what you don't even have yet, you'll lose your desire to work toward getting it.",
"author": "Melchizedek, the King of Salem",
"source": "The Alchemist",
"tags": [
"promises",
"effort",
"desire"
]
},
{
"quote": "It's the simple things in life that are the most extraordinary; only wise men are able to understand them.",
"author": "The Gypsy Woman",
"source": "The Alchemist",
"tags": [
"simplicity",
"wisdom",
"life"
]
},
{
"quote": "I measure the progress of a community by the degree of progress which women have achieved.",
"author": "B.R. Ambedkar",
"source": "Speech at the All-India Depressed Classes Women’s Conference",
"tags": [
"progress",
"women",
"society"
]
},
{
"quote": "It is not enough to be industrious; so are the ants. What are you industrious about?",
"author": "Henry David Thoreau",
"source": "Letter to H.G.O. Blake, 1857",
"tags": [
"purpose",
"work",
"reflection"
]
},
{
"quote": "When one door of happiness closes, another opens; but often we look so long at the closed door that we do not see the one that has been opened for us.",
"author": "Helen Keller",
"source": "We Bereaved, 1929",
"tags": [
"opportunity",
"happiness",
"perspective"
]
},
{
"quote": "He who has a why to live can bear almost any how.",
"author": "Friedrich Nietzsche",
"source": "Twilight of the Idols, 1889",
"tags": [
"purpose",
"resilience",
"life"
]
},
{
"quote": "We can know only that we know nothing. And that is the highest degree of human wisdom.",
"author": "Leo Tolstoy",
"source": "War and Peace, 1869",
"tags": [
"wisdom",
"humility",
"knowledge"
]
},
{
"quote": "The path to innovation is often hidden in the silence of moments we overlook.",
"author": "J.A. Sterling",
"source": "Original Thought",
"tags": [
"innovation",
"reflection",
"creativity"
]
},
{
"quote": "And those who were seen dancing were thought to be insane by those who could not hear the music.",
"author": "Friedrich Nietzsche",
"source": "Thus Spoke Zarathustra",
"tags": [
"creativity",
"individuality",
"perception"
]
},
{
"quote": "Difficulties increase the nearer we get to the goal.",
"author": "Johann Wolfgang von Goethe",
"source": "Meditations, Part X",
"tags": [
"struggle",
"goals",
"progress"
]
},
{
"quote": "The important thing is not to stop questioning. Curiosity has its own reason for existing.",
"author": "Albert Einstein",
"source": "brainyquote",
"tags": [
"curiosity",
"learning",
"inquiry"
]
},
{
"quote": "Comparison is the thief of joy.",
"author": "Theodore Roosevelt",
"source": "Roosevelt's documented speeches or writings",
"tags": [
"comparison",
"happiness",
"contentment"
]
},
{
"quote": "It takes a mighty good man to be better than no man at all.",
"author": "Dixie Carter",
"source": "Speech, 1941",
"tags": [
"integrity",
"standards",
"relationships"
]
},
{
"quote": "A truth can never be destroyed. One should not be afraid of doing good.",
"author": "Shree Krishna",
"source": "Bhagavad Gita",
"tags": [
"truth",
"morality",
"righteousness"
]
},
{
"quote": "You miss 100% of the shots you don’t take.",
"author": "Wayne Gretzky",
"source": "Interview with Sport Illustrated",
"tags": [
"action",
"opportunity",
"fear"
]
},
{
"quote": "Let the young man in his desperation go out and hunt. If he kills the elephant, his poverty ends. If the elephant kills him, his poverty ends.",
"author": "Pete Edochie",
"source": "Nigeria Stories",
"tags": [
"risk",
"poverty",
"adventure"
]
},
{
"quote": "Don't be the bare minimum guy.",
"author": "Harkirat Singh",
"source": "YouTube Video",
"tags": [
"effort",
"standards",
"self-respect"
]
},
{
"quote": "Your worst sin is that you have destroyed and betrayed yourself for nothing.",
"author": "Fyodor Dostoevsky",
"source": "Crime and Punishment",
"tags": [
"self-betrayal",
"regret",
"sin"
]
},
{
"quote": "It is not our abilities that show what we truly are... it is our choices.",
"author": "J.K. Rowling",
"source": "Harry Potter and the Chamber of Secrets (1998)",
"tags": [
"character",
"choices",
"abilities"
]
},
{
"quote": "You are only entitled to the action, never to its fruits.",
"author": "Shree Krishna",
"source": "Bhagavad Gita",
"tags": [
"action",
"detachment",
"duty"
]
},
{
"quote": "Life is like a box of chocolates. You never know what you're gonna get.",
"author": "Forrest Gump",
"source": "Forrest Gump (1994)",
"tags": [
"life",
"uncertainty",
"surprises"
]
},
{
"quote": "Whatever happened, happened for the good. Whatever is happening, is happening for the good. Whatever will happen will happen for good.",
"author": "Lord Krishna",
"source": "The Holy Geetā",
"tags": [
"acceptance",
"faith",
"trust"
]
},
{
"quote": "In the middle of every difficulty lies opportunity.",
"author": "Albert Einstein",
"source": "goodreads",
"tags": [
"opportunity",
"challenges",
"growth"
]
},
{
"quote": "Life can only be understood backwards; but it must be lived forwards.",
"author": "Søren Kierkegaard",
"source": "The Journals of Soren Kierkegaard (1844)",
"tags": [
"life",
"reflection",
"understanding"
]
},
{
"quote": "Never let your sense of morals prevent you from doing what is right.",
"author": "Isaac Asimov",
"source": "Foundation",
"tags": [
"morality",
"ethics",
"right vs wrong"
]
},
{
"quote": "I hold the world but as the world, Gratiano, A stage where every man must play a part, And mine a sad one.",
"author": "Antonio, Act 1 Scene 1",
"source": "The Merchant of Venice - William Shakespeare",
"tags": [
"life",
"theatre",
"fate"
]
},
{
"quote": "The only limit to our realization of tomorrow will be our doubts of today.",
"author": "Franklin D. Roosevelt",
"source": "Speech in 1945",
"tags": [
"doubt",
"potential",
"future"
]
},
{
"quote": "You pierce my soul. I'm half agony, half hope... I have loved none but you.",
"author": "Jane Austen",
"source": "Persuasion",
"tags": [
"love",
"soul",
"pain"
]
},
{
"quote": "If you can meet with Triumph and Disaster, And treat those two imposters just the same.",
"author": "Rudyard Kipling",
"source": "If",
"tags": [
"life",
"truth",
"actions"
]
},
{
"quote": "It is never too late to be what you might have been.",
"author": "George Eliot",
"source": "Unknown",
"tags": [
"inspiration",
"self-improvement",
"motivation"
]
},
{
"quote": "Not all those who wander are lost.",
"author": "J.R.R. Tolkien",
"source": "The Fellowship of the Ring",
"tags": [
"adventure",
"life",
"journey"
]
},
{
"quote": "Do not go where the path may lead, go instead where there is no path and leave a trail.",
"author": "Ralph Waldo Emerson",
"source": "Unknown",
"tags": [
"individuality",
"leadership",
"courage"
]
},
{
"quote": "The only way to do great work is to love what you do.",
"author": "Steve Jobs",
"source": "Stanford Commencement Speech",
"tags": [
"work",
"passion",
"success"
]
},
{
"quote": "In three words I can sum up everything I've learned about life: it goes on.",
"author": "Robert Frost",
"source": "Unknown",
"tags": [
"life",
"resilience",
"wisdom"
]
},
{
"quote": "I have never let my schooling interfere with my education.",
"author": "Mark Twain",
"source": "Shopify.com",
"tags": [
"inspiring",
"motivation",
"hope"
]
},
{
"quote": "It does not do to dwell on dreams and forget to live.",
"author": "J.K. Rowling",
"source": "Harry Potter and the Sorcerer's Stone",
"tags": [
"life",
"reality",
"wisdom"
]
},
{
"quote": "The future belongs to those who believe in the beauty of their dreams.",
"author": "Eleanor Roosevelt",
"source": "Unknown",
"tags": [
"dreams",
"future",
"hope"
]
},
{
"quote": "Life holds a potential meaning under any condition, even the most miserable ones. ",
"author": " Viktor Frankl",
"source": "Man's Search for Meaning- book",
"tags": [
"life",
"patience",
"survival"
]
},
{
"quote": "Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.",
"author": "Friedrich Nietzsche",
"source": "Beyond Good and Evil",
"tags": [
"philosophy",
"Nietzsche",
"self-reflection"
]
},
{
"quote": "The best way to predict your future is to create it.",
"author": "Abraham Lincoln",
"source": "Speech",
"tags": [
"future",
"self-determination",
"inspiration"
]
},
{
"quote": "If it's not in your hand then it deserves freedom from your mind as well.",
"author": "Ivan Nuru",
"source": "Unknown",
"tags": [
"letting go",
"freedom",
"reality"
]
},
{
"quote": "Wisdom is the reward for a lifetime of listening when you would have preferred to talk.",
"author": "Doug Larson",
"source": "Good Reads",
"tags": [
"listening",
"life",
"wisdom"
]
},
{
"quote": "The only way to do great work is to love what you do.",
"author": "Steve Jobs",
"source": "Standford University Commencement Address, 2005",
"tags": [
"reality",
"inspiration",
"future"
]
},
{
"quote": "Every man has his secret sorrows which the world knows not; and often times we call a man cold when he is only sad.",
"author": "Henry Wadsworth Longfellow",
"source": "Unknown",
"tags": ["depression", "sorrow", "empathy"]
},
{
"quote": "Mental pain is less dramatic than physical pain, but it is more common and also harder to bear.",
"author": "C.S. Lewis",
"source": "The Problem of Pain",
"tags": ["depression", "mental health", "pain"]
},
{
"quote": "The only thing more exhausting than being depressed is pretending that you’re not.",
"author": "Unknown",
"source": "Unknown",
"tags": ["depression", "mental health", "exhaustion"]
},
{
"quote": "You say you’re ‘depressed’ – all I see is resilience. You are allowed to feel messed up and inside out. It doesn’t mean you’re defective – it just means you’re human.",
"author": "David Mitchell",
"source": "Cloud Atlas",
"tags": ["depression", "resilience", "humanity"]
},
{
"quote": "I didn’t want to wake up. I was having a much better time asleep. And that’s really sad. It was almost like a reverse nightmare, like when you wake up from a nightmare you’re so relieved. I woke up into a nightmare.",
"author": "Ned Vizzini",
"source": "It's Kind of a Funny Story",
"tags": ["depression", "sadness", "mental health"]
},
{
"quote": "We cannot solve problems with the kind of thinking we employed when we came up with them.",
"author": "Albert Einstein",
"source": "Shopify - Motivational Quotes",
"tags": [
"reality",
"inspiration",
"wisdom"
]
},
{
"quote": "Learn as if you will live forever, live like you will die tomorrow.",
"author": "Mahatma Gandhi",
"source": "Shopify - Motivational Quotes",
"tags": [
"reality",
"learning",
"wisdom"
]
},
{
"quote": "It’s just a bad day, not a bad life.",
"author": "Ave Mateiu",
"source": "avemateiu.com/quotes",
"tags": [
"life",
"wisdom",