forked from Shariar-Hasan/QuoteVerse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuotes.js
2500 lines (2479 loc) · 67.7 KB
/
Quotes.js
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
window.quotes = [
{
quote: "To teach is to learn twice.",
category: "Educational",
author: "Joseph Joubert",
addedBy: "Hardik2972",
},
{
quote: "The true purpose of education is to make minds, not careers.",
category: "Educational",
author: "William Deresiewicz",
addedBy: "Hardik2972",
},
{
quote: "Teaching is the greatest act of optimism.",
category: "Educational",
author: "Colleen Wilcox",
addedBy: "Hardik2972",
},
{
quote: "The art of teaching is the art of assisting discovery.",
category: "Educational",
author: "Mark Van Doren",
addedBy: "Hardik2972",
},
{
quote: "Education is a journey, not a destination.",
category: "Educational",
author: "Joe Greene",
addedBy: "Hardik2972",
},
{
quote: "Teach with all your heart, learn from every student.",
category: "Educational",
author: "Danielle Chua",
addedBy: "Hardik2972",
},
{
quote: "In learning, you will teach, and in teaching, you will learn.",
category: "Educational",
author: "Phil Collins",
addedBy: "Hardik2972",
},
{
quote: "Learning is a treasure that will follow its owner everywhere.",
category: "Educational",
author: "Chinese Proverb",
addedBy: "Hardik2972",
},
{
quote: "Education is the key that unlocks the golden door to freedom.",
category: "Educational",
author: "George Washington Carver",
addedBy: "himanshirana2403",
},
{
quote:
"Give a man a fish and you feed him for a day; teach a man to fish and you feed him for a lifetime.",
category: "Educational",
author: "Maimonides",
addedBy: "himanshirana2403",
},
{
quote: "Education purpose is to replace an empty mind with an open one.",
category: "Educational",
author: "Malcolm Forbes",
addedBy: "himanshirana2403",
},
{
quote:
"Education is what remains after one has forgotten what one has learned in school.",
category: "Educational",
author: "Albert Einstein",
addedBy: "himanshirana2403",
},
{
quote:
"The aim of education is the knowledge, not of facts, but of values.",
category: "Educational",
author: "William S. Burroughs",
addedBy: "himanshirana2403",
},
{
quote:
"Dream is not that you see in the sleep; dreams is that does not allow you to sleep.",
category: "Motivation",
author: "APJ Abdul Kalam",
addedBy: "abhi7745",
},
{
quote: "You have to dream before your dreams can come true.",
category: "Motivation",
author: "APJ Abdul Kalam",
addedBy: "abhayVershwal",
},
{
quote:"You can't cross the sea merely by standing and staring at the water.",
category: "Life",
author: "Rabindranath Tagore",
addedBy: "abhayvershwal"
},
{
quote:"Keep your face always toward the sunshine, and shadows will fall behind you.",
category: "Life",
author: "Rabindranath Tagore",
addedBy: "abhayvershwal"
},
{
quote:"Defeat and failure are sometimes necessary steps of victory.",
category: "Motivational",
author: "Lala Lajpat Rai",
addedBy: "abhayvershwal"
},
{
quote:"Don't limit your challenges. Challenge your limits.",
category: "Motivational",
author: "Rabindranath Tagore",
addedBy: "abhayvershwal"
},
{
quote:"Love is an endless mystery because there is no reasonable cause that could explain it.",
category: "Love",
author: "Rabindranath Tagore",
addedBy: "abhayvershwal"
},
{
quote:"You can't cross the sea merely by standing and staring at the water.",
category: "Life",
author: "Rabindranath Tagore",
addedBy: "abhayvershwal"
},
{
quote:"You can't cross the sea merely by standing and staring at the water.",
category: "Life",
author: "Rabindranath Tagore",
addedBy: "abhayvershwal"
},
{
quote: "In a gentle way, you can shake the world.",
category: "Motivation",
author: "Mahatma Gandhi",
addedBy: "abhayVershwal",
},
{
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.",
category: "Motivation",
author: "Albert Schweitzer",
addedBy: "abhayVershwal",
},
{
quote: "The future depends on what you do today.",
category: "Motivation",
author: "Mahatma Gandhi",
addedBy: "abhayVershwal",
},
{
quote: "In the middle of every difficulty lies opportunity.",
category: "Motivation",
author: "Albert Einstein",
addedBy: "abhayVershwal",
},
{
quote:
"If you still look good at the end of your workout, you didn't train hard enough.",
category: "Gym",
author: "Joe Weider",
addedBy: "abhayVershwal",
},
{
quote: "Train insane or remain the same.",
category: "Gym",
author: "Jillian Michaels",
addedBy: "abhayVershwal",
},
{
quote: "No pain, no gain.",
category: "Gym",
author: "Jane Fonda",
addedBy: "abhayVershwal",
},
{
quote: "Suffer the pain of discipline or suffer the pain of regret.",
category: "Gym",
author: "Jim Rohn",
addedBy: "abhayVershwal",
},
{
quote: "The body achieves what the mind believes.",
category: "Gym",
author: "Arnold Schwarzenegger",
addedBy: "abhayVershwal",
},
{
quote: "If you still look good at the end of your workout, you didn't train hard enough.",
category: "Gym",
author: "Joe Weider",
addedBy: "abhayVershwal"
},
{
quote: "Train insane or remain the same.",
category: "Gym",
author: "Jillian Michaels",
addedBy: "abhayVershwal"
},
{
quote: "No pain, no gain.",
category: "Gym",
author: "Jane Fonda",
addedBy: "abhayVershwal"
},
{
quote: "Suffer the pain of discipline or suffer the pain of regret.",
category: "Gym",
author: "Jim Rohn",
addedBy: "abhayVershwal"
},
{
quote: "The body achieves what the mind believes.",
category: "Gym",
author: "Arnold Schwarzenegger",
addedBy: "abhayVershwal"
},
{
quote: "Love is all, it gives all, and it takes all.",
category: "Love",
author: "Soren Kirkegaard",
addedBy: "abhi7745",
},
{
quote: "Don't forget to love yourself.",
category: "Love",
author: "Soren Kirkegaard",
addedBy: "abhi7745",
},
{
quote: "Love is composed of a single soul inhabiting two bodies.",
category: "Love",
author: "Aristotle",
addedBy: "Himangshi",
},
{
quote: "Love is not just looking at each other; it's looking in the same direction.",
category: "Love",
author: "Antoine de Saint-Exupéry",
addedBy: "Himangshi",
},
{
quote: "Life without love is like a tree without blossoms or fruit.",
category: "Love",
author: "Khalil Gibran",
addedBy: "Himangshi",
},
{
quote: "In the garden of life, family is the most beautiful flower of all.",
category: "Love",
author: "Michael J. Sullivan",
addedBy: "Himangshi",
},
{
quote: "Family is not an important thing. It's everything.",
category: "Love",
author: "Michael J. Fox",
addedBy: "Himangshi",
},
{
quote: "The purpose of our lives is to be happy.",
category: "Happiness",
author: "Dalai Lama",
addedBy: "abhi7745",
},
{
quote:
"Happiness is not something ready made. It comes from your own actions.",
category: "Happiness",
author: "Dalai Lama",
addedBy: "abhi7745",
},
{
quote: "My best friend is the one who brings out the best in me.",
category: "Friendship",
author: "Henry Ford",
addedBy: "abhi7745",
},
{
quote:
"Education is not the filling of a pail, but the lighting of a fire.",
category: "Educational",
author: "W.B. Yeats",
addedBy: "Kratin Aggarwal",
},
{
quote: "The best way to predict the future is to create it.",
category: "Educational",
author: "Peter Drucker",
addedBy: "Kratin Aggarwal",
},
{
quote: "The key to success is to keep growing in all areas of life",
category: "Gym",
author: "Brian Tracy",
addedBy: "yasarlabib",
},
{
quote: "The road to success is always under construction",
category: "Life",
author: "Lily Tomlin",
addedBy: "yasarlabib",
},
{
quote:
"It's not about perfect It's about effort And when you bring that effort every single day, that's where transformation happens That's how change occurs",
category: "Life",
author: "Jen Widerstrom",
addedBy: "yasarlabib",
},
{
quote: "You are never too old to set another goal or to dream a new dream",
category: "Life",
author: "C.S. Lewis",
addedBy: "yasarlabib",
},
{
quote:
"Successful people do what unsuccessful people are not willing to do Don't wish it were easier, wish you were better",
category: "Life",
author: "Jim Rohn",
addedBy: "yasarlabib",
},
{
quote: "Education is not preparation for life; education is life itself.",
category: "Educational",
author: "John Dewey",
addedBy: "Kratin Aggarwal",
},
{
quote:
"It is what we think we know already that often prevents us from learning",
category: "Educational",
author: "Claude Bernard",
addedBy: "Kratin Aggarwal",
},
{
quote:
"The beautiful thing about learning is that no one can take it away from you",
category: "Educational",
author: "B.B. King",
addedBy: "Kratin Aggarwal",
},
{
quote: "No one can make you feel inferior without your consent.",
category: "Life",
author: "Eleanor Roosevelt",
addedBy: "cryptic-pr03",
},
{
quote: "Some things break our hearts but fix our vision.",
category: "Life",
author: "Billie Eidson Music",
addedBy: "cryptic-pr03",
},
{
quote:
"You must be stronger than your emotions or else you'll lose yourself.",
category: "Life",
author: "Mike Tyson",
addedBy: "cryptic-pr03",
},
{
quote: "It's not what happens to you, but how you react to it that matters",
category: "Life",
author: "Epictetus",
addedBy: "cryptic-pr03",
},
{
quote: "The only way to do great work is to love what you do.",
category: "Motivational",
author: "Steve Jobs",
addedBy: "Shariar-Hasan",
},
{
quote: "The best way to predict the future is to invent it.",
category: "Inspirational",
author: "Alan Kay",
addedBy: "Shariar-Hasan",
},
{
quote: "The only true wisdom is in knowing you know nothing.",
category: "Philosophical",
author: "Socrates",
addedBy: "Shariar-Hasan",
},
{
quote: "The only thing we have to fear is fear itself.",
category: "Historical",
author: "Franklin D. Roosevelt",
addedBy: "Shariar-Hasan",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "John Lennon",
addedBy: "git-create-devben",
},
{
quote:
"The best and most beautiful things in the world cannot be seen or even touched.",
category: "Inspirational",
author: "Helen Keller",
addedBy: "git-create-devben",
},
{
quote: "Code is poetry.",
category: "Programming",
author: "David Heinemeier Hansson",
addedBy: "git-create-devben",
},
{
quote:
"The future belongs to those who believe in the beauty of their dreams.",
category: "Inspirational",
author: "Eleanor Roosevelt",
addedBy: "git-create-devben",
},
{
quote: "The only way to predict the future is to create it.",
category: "Programming",
author: "Peter Drucker",
addedBy: "git-create-devben",
},
{
quote:
"The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart.",
category: "Inspirational",
author: "Helen Keller",
addedBy: "Shariar-Hasan",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "Allen Sanders",
addedBy: "Shariar-Hasan",
},
{
quote:
"Success is not final, failure is not fatal It is the courage to continue that counts.",
category: "Motivation",
author: "Winston Churchill",
addedBy: "Shariar-Hasan",
},
{
quote:
"In the end, we will remember not the words of our enemies, but the silence of our friends.",
category: "Friendship",
author: "Martin Luther King Jr.",
addedBy: "Shariar-Hasan",
},
{
quote: "The best preparation for tomorrow is doing your best today.",
category: "Motivation",
author: "H. Jackson Brown Jr.",
addedBy: "Shariar-Hasan",
},
{
quote: "Believe you can and you're halfway there.",
category: "Inspiration",
author: "Theodore Roosevelt",
addedBy: "Shariar-Hasan",
},
{
quote: "It does not matter how slowly you go as long as you do not stop.",
category: "Persistence",
author: "Confucius",
addedBy: "Shariar-Hasan",
},
{
quote:
"Description begins in the writer's imagination but should finish in the reader's.",
category: "Motivation",
author: "Stephen King",
addedBy: "Skb08",
},
{
quote: "Half my life is an act of revision.",
category: "Motivation",
author: "John Irving",
addedBy: "Skb08",
},
{
quote: "You can always edit a bad page. You can't edit a blank page",
category: "Motivation",
author: "Jodi Picoult",
addedBy: "Skb08",
},
{
quote:
"Education is the most powerful weapon which you can use to change the world.",
category: "Inspirational",
author: "Nelson Mandela",
addedBy: "Shariar-Hasan",
},
{
quote: "If you want to lift yourself up, lift up someone else.",
category: "Inspirational",
author: "Booker T. Washington",
addedBy: "Skb08",
},
{
quote:
"You're braver than you believe, stronger than you seem, and smarter than you think.",
category: "Inspirational",
author: "A.A. Milne",
addedBy: "Skb08",
},
{
quote: "History will be kind to me for I intend to write it.",
category: "Historical",
author: "Winston S. Churchill",
addedBy: "Skb08",
},
{
quote: "Study the past and you would define the future",
category: "Historical",
author: "Confucius",
addedBy: "Skb08",
},
{
quote: "A generation which ignores history has no past—and no future.",
category: "Historical",
author: "Robert A. Heinlein",
addedBy: "Skb08",
},
{
quote: "Be the change that you wish to see in the world.",
category: "Philosophical",
author: "Mahatma Gandhi",
addedBy: "Skb08",
},
{
quote:
"Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.",
category: "Philosophical",
author: " Albert Einstein",
addedBy: "Skb08",
},
{
quote: "Man is the only creature who refuses to be what he is.",
category: "Philosophical",
author: " Albert Camus",
addedBy: "Skb08",
},
{
quote: "True friendship is a plant of slow growth…",
category: "Friendship",
author: "George Washington",
addedBy: "Skb08",
},
{
quote:
"I would rather walk with a friend in the dark than walk alone in the light.",
category: "Friendship",
author: "Helen Keller",
addedBy: "Skb08",
},
{
quote:
"Success is not final, failure is not fatal: It is the courage to continue that counts.",
category: "Inspirational",
author: "Winston Churchill",
addedBy: "iqbalcodes6602",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "John Lennon",
addedBy: "iqbalcodes6602",
},
{
quote:
"The only limit to our realization of tomorrow will be our doubts of today.",
category: "Inspirational",
author: "Franklin D. Roosevelt",
addedBy: "Thanush19",
},
{
quote:
"The only thing that stands between you and your dream is the will to try and the belief that it is actually possible.",
category: "Motivational",
author: "Joel Brown",
addedBy: "Thanush19",
},
{
quote: "Success is not in what you have, but who you have become.",
category: "Success",
author: "Bo Bennett",
addedBy: "Thanush19",
},
{
quote: "Life is short, and it is up to you to make it sweet.",
category: "Life",
author: "Sarah Louise Delany",
addedBy: "Thanush19",
},
{
quote:
"In the end, it's not the years in your life that count. It's the life in your years.",
category: "Life",
author: "Abraham Lincoln",
addedBy: "Thanush19",
},
{
quote: "Don't watch the clock; do what it does. Keep going.",
category: "Success",
author: "Sam Levenson",
addedBy: "izabela-marcinkowska",
},
{
quote: "Opportunities don't happen. You create them.",
category: "Success",
author: "Chris Grosser",
addedBy: "izabela-marcinkowska",
},
{
quote: "Your time is limited, don't waste it living someone else's life.",
category: "Success",
author: "Steve Jobs",
addedBy: "izabela-marcinkowska",
},
{
quote:
"It's not that I'm so smart, it's just that I stay with problems longer.",
category: "Persistence",
author: "Albert Einstein",
addedBy: "izabela-marcinkowska",
},
{
quote:
"Perseverance is not a long race; it is many short races one after the other.",
category: "Persistence",
author: "Walter Elliot",
addedBy: "izabela-marcinkowska",
},
{
quote:
"Success is stumbling from failure to failure with no loss of enthusiasm.",
category: "Persistence",
author: "Winston S. Churchill",
addedBy: "izabela-marcinkowska",
},
{
quote: "The best way out is always through.",
category: "Persistence",
author: "Robert Frost",
addedBy: "izabela-marcinkowska",
},
{
quote: "The only way to do great work is to love what you do.",
category: "Motivational",
author: "Steve Jobs",
addedBy: "Shariar-Hasan",
},
{
quote: "The best way to predict the future is to invent it.",
category: "Inspirational",
author: "Alan Kay",
addedBy: "Shariar-Hasan",
},
{
quote: "The only true wisdom is in knowing you know nothing.",
category: "Philosophical",
author: "Socrates",
addedBy: "Shariar-Hasan",
},
{
quote: "The only thing we have to fear is fear itself.",
category: "Historical",
author: "Franklin D. Roosevelt",
addedBy: "Shariar-Hasan",
},
{
quote:
"The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart.",
category: "Inspirational",
author: "Helen Keller",
addedBy: "Shariar-Hasan",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "Allen Sanders",
addedBy: "Shariar-Hasan",
},
{
quote:
"Success is not final, failure is not fatal It is the courage to continue that counts.",
category: "Motivation",
author: "Winston Churchill",
addedBy: "Shariar-Hasan",
},
{
quote:
"In the end, we will remember not the words of our enemies, but the silence of our friends.",
category: "Friendship",
author: "Martin Luther King Jr.",
addedBy: "Shariar-Hasan",
},
{
quote: "The best preparation for tomorrow is doing your best today.",
category: "Motivation",
author: "H. Jackson Brown Jr.",
addedBy: "Shariar-Hasan",
},
{
quote: "Believe you can and you're halfway there.",
category: "Inspiration",
author: "Theodore Roosevelt",
addedBy: "Shariar-Hasan",
},
{
quote: "It does not matter how slowly you go as long as you do not stop.",
category: "Persistence",
author: "Confucius",
addedBy: "Shariar-Hasan",
},
{
quote:
"Description begins in the writer's imagination but should finish in the reader's.",
category: "Motivation",
author: "Stephen King",
addedBy: "Skb08",
},
{
quote: "Half my life is an act of revision.",
category: "Motivation",
author: "John Irving",
addedBy: "Skb08",
},
{
quote: "You can always edit a bad page. You can't edit a blank page",
category: "Motivation",
author: "Jodi Picoult",
addedBy: "Skb08",
},
{
quote:
"Education is the most powerful weapon which you can use to change the world.",
category: "Inspirational",
author: "Nelson Mandela",
addedBy: "Shariar-Hasan",
},
{
quote: "If you want to lift yourself up, lift up someone else.",
category: "Inspirational",
author: "Booker T. Washington",
addedBy: "Skb08",
},
{
quote:
"You're braver than you believe, stronger than you seem, and smarter than you think.",
category: "Inspirational",
author: "A.A. Milne",
addedBy: "Skb08",
},
{
quote: "History will be kind to me for I intend to write it.",
category: "Historical",
author: "Winston S. Churchill",
addedBy: "Skb08",
},
{
quote: "Study the past and you would define the future",
category: "Historical",
author: "Confucius",
addedBy: "Skb08",
},
{
quote: "A generation which ignores history has no past—and no future.",
category: "Historical",
author: "Robert A. Heinlein",
addedBy: "Skb08",
},
{
quote: "Be the change that you wish to see in the world.",
category: "Philosophical",
author: "Mahatma Gandhi",
addedBy: "Skb08",
},
{
quote:
"Two things are infinite: the universe and human stupidity; and I'm not sure about the universe.",
category: "Philosophical",
author: " Albert Einstein",
addedBy: "Skb08",
},
{
quote: "Man is the only creature who refuses to be what he is.",
category: "Philosophical",
author: " Albert Camus",
addedBy: "Skb08",
},
{
quote: "True friendship is a plant of slow growth…",
category: "Friendship",
author: "George Washington",
addedBy: "Skb08",
},
{
quote:
"I would rather walk with a friend in the dark than walk alone in the light.",
category: "Friendship",
author: "Helen Keller",
addedBy: "Skb08",
},
{
quote:
"Success is not final, failure is not fatal: It is the courage to continue that counts.",
category: "Inspirational",
author: "Winston Churchill",
addedBy: "iqbalcodes6602",
},
{
quote: "Life is what happens when you're busy making other plans.",
category: "Life",
author: "John Lennon",
addedBy: "iqbalcodes6602",
},
{
quote:
"If you always make the right decision, the safe decision, the one most people make, you will be the same as everyone else.",
category: "College",
author: "Patrick Bet-David",
addedBy: "rohits-web03",
},
{
quote:
"The downside is that a person spends $20 to watch that hero instead of being that hero himself.",
category: "Life",
author: "Patrick Bet-David",
addedBy: "rohits-web03",
},
{
quote:
"There is unpanned gold in every soul you run into, no matter what walk of life they are from.",
category: "Life",
author: "Robert Downey Jr.",
addedBy: "rohits-web03",
},
{
quote:
"Change will come ONLY when the pain of staying the same is greater than the pain of change.",
category: "Life",
author: "Dora Lee Scott",
addedBy: "rohits-web03",
},
{
quote: "When you have something to say, silence is a lie",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote:
"If experts say you have ADHD use that God-given gift to ignore naysayers. Learn to use your crutches in life as secret weapons",
category: "Entrepreneurship",
author: "Patrick Bet-David",
addedBy: "rohits-web03",
},
{
quote:
"And if you think tough men are dangerous, wait until you see what weak men are capable of",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote: "In order to be able to think, you have to risk being offensive.",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote:
"A talented entrepreneur with bad habits eventually becomes an employee. An average employee with great habits can eventually become a great entrepreneur",
category: "Entrepreneurship",
author: "Patrick Bet-David",
addedBy: "rohits-web03",
},
{
quote:
"I am not afraid of an army of lions led by a sheep; I am afraid of an army of sheep led by a lion. ",
category: "Motivation",
author: "Alexander the Great",
addedBy: "rohits-web03",
},
{
quote: "To suffer terribly and to know yourself as the cause: that is Hell",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote:
"My happiness is my reflection on the suffering during my journey and knowing that I never quit nor was I guided by anybody on this earth.",
category: "Life",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"Perhaps you are overvaluing what you don't have and undervaluing what you do",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote: "If you are not willing to be a fool, you can't become a master.",
category: "Life",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote:
"Always be ready to adjust, recalibrate, and stay after it to become better, somehow.",
category: "Life",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"If you fulfill your obligations everyday you don't need to worry about the future",
category: "Inspiration",
author: "Jordan B. Peterson",
addedBy: "rohits-web03",
},
{
quote: "We're either getting better or we're getting worse.",
category: "Life",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"Everyone fails sometimes and life isn't supposed to be fair, much less bend to your every whim.",
category: "Inspiration",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"You must recognize what you are about to do, highlight what you do not like about it, and spend time visualizing each and every obstacle you can.",
category: "Motivation",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"The ticket to victory often comes down to bringing your very best when you feel your worst.",
category: "Motivation",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote: "Most wars are won or lost in our own heads.",
category: "Life",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"Everyone fails sometimes and life isn't supposed to be fair, much less bend to your every whim.",
category: "Inspiration",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote: "It may be satisfactory, but that's another word for mediocrity.",
category: "Inspiration",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote: "Don't stop when you're tired. Stop when you're done.",
category: "Inspiration",
author: "David Goggins",
addedBy: "rohits-web03",
},
{
quote:
"Pain unlocks a secret doorway in the mind, one that leads to both peak performance and beautiful silence.",