-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathquotes.json
943 lines (942 loc) · 37.5 KB
/
quotes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
[
{
"quote": "Life isn’t about getting and having, it’s about giving and being.",
"author": "Kevin Kruse"
},
{
"quote": "Whatever the mind of man can conceive and believe, it can achieve.",
"author": "Napoleon Hill"
},
{
"quote": "Strive not to be a success, but rather to be of value.",
"author": "Albert Einstein"
},
{
"quote": "Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference.",
"author": "Robert Frost"
},
{
"quote": "I attribute my success to this: I never gave or took any excuse.",
"author": "Florence Nightingale"
},
{
"quote": "You miss 100% of the shots you don’t take.",
"author": "Wayne Gretzky"
},
{
"quote": "I’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.",
"author": "Michael Jordan"
},
{
"quote": "The most difficult thing is the decision to act, the rest is merely tenacity.",
"author": "Amelia Earhart"
},
{
"quote": "Every strike brings me closer to the next home run.",
"author": "Babe Ruth"
},
{
"quote": "Definiteness of purpose is the starting point of all achievement.",
"author": "W. Clement Stone"
},
{
"quote": "We must balance conspicuous consumption with conscious capitalism.",
"author": "Kevin Kruse"
},
{
"quote": "Life is what happens to you while you’re busy making other plans.",
"author": "John Lennon"
},
{
"quote": "We become what we think about.",
"author": "Earl Nightingale"
},
{
"quote": "Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do, so throw off the bowlines, sail away from safe harbor, catch the trade winds in your sails. Explore, Dream, Discover.",
"author": "Mark Twain"
},
{
"quote": "Life is 10% what happens to me and 90% of how I react to it.",
"author": "Charles Swindoll"
},
{
"quote": "The most common way people give up their power is by thinking they don’t have any.",
"author": "Alice Walker"
},
{
"quote": "The mind is everything. What you think you become.",
"author": "Buddha"
},
{
"quote": "The best time to plant a tree was 20 years ago. The second best time is now.",
"author": "Chinese Proverb"
},
{
"quote": "An unexamined life is not worth living.",
"author": "Socrates"
},
{
"quote": "Eighty percent of success is showing up.",
"author": "Woody Allen"
},
{
"quote": "Your time is limited, so don’t waste it living someone else’s life.",
"author": "Steve Jobs"
},
{
"quote": "Winning isn’t everything, but wanting to win is.",
"author": "Vince Lombardi"
},
{
"quote": "I am not a product of my circumstances. I am a product of my decisions.",
"author": "Stephen Covey"
},
{
"quote": "Every child is an artist. The problem is how to remain an artist once he grows up.",
"author": "Pablo Picasso"
},
{
"quote": "You can never cross the ocean until you have the courage to lose sight of the shore.",
"author": "Christopher Columbus"
},
{
"quote": "I’ve learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel.",
"author": "Maya Angelou"
},
{
"quote": "Either you run the day, or the day runs you.",
"author": "Jim Rohn"
},
{
"quote": "Whether you think you can or you think you can’t, you’re right.",
"author": "Henry Ford"
},
{
"quote": "The two most important days in your life are the day you are born and the day you find out why.",
"author": "Mark Twain"
},
{
"quote": "Whatever you can do, or dream you can, begin it. Boldness has genius, power and magic in it.",
"author": "Johann Wolfgang von Goethe"
},
{
"quote": "The best revenge is massive success.",
"author": "Frank Sinatra"
},
{
"quote": "People often say that motivation doesn’t last. Well, neither does bathing. That’s why we recommend it daily.",
"author": "Zig Ziglar"
},
{
"quote": "Life shrinks or expands in proportion to one’s courage.",
"author": "Anais Nin"
},
{
"quote": "If you hear a voice within you say “you cannot paint,” then by all means paint and that voice will be silenced.",
"author": "Vincent Van Gogh"
},
{
"quote": "There is only one way to avoid criticism: do nothing, say nothing, and be nothing.",
"author": "Aristotle"
},
{
"quote": "Ask and it will be given to you; search, and you will find; knock and the door will be opened for you.",
"author": "Jesus"
},
{
"quote": "The only person you are destined to become is the person you decide to be.",
"author": "Ralph Waldo Emerson"
},
{
"quote": "Go confidently in the direction of your dreams. Live the life you have imagined.",
"author": "Henry David Thoreau"
},
{
"quote": "When I stand before God at the end of my life, I would hope that I would not have a single bit of talent left and could say, I used everything you gave me.",
"author": "Erma Bombeck"
},
{
"quote": "Few things can help an individual more than to place responsibility on him, and to let him know that you trust him.",
"author": "Booker T. Washington"
},
{
"quote": "Certain things catch your eye, but pursue only those that capture the heart.",
"author": " Ancient Indian Proverb"
},
{
"quote": "Believe you can and you’re halfway there.",
"author": "Theodore Roosevelt"
},
{
"quote": "Everything you’ve ever wanted is on the other side of fear.",
"author": "George Addair"
},
{
"quote": "We can easily forgive a child who is afraid of the dark; the real tragedy of life is when men are afraid of the light.",
"author": "Plato"
},
{
"quote": "Teach thy tongue to say, “I do not know,” and thous shalt progress.",
"author": "Maimonides"
},
{
"quote": "Start where you are. Use what you have. Do what you can.",
"author": "Arthur Ashe"
},
{
"quote": "When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up. I wrote down ‘happy’. They told me I didn’t understand the assignment, and I told them they didn’t understand life.",
"author": "John Lennon"
},
{
"quote": "Fall seven times and stand up eight.",
"author": "Japanese Proverb"
},
{
"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"
},
{
"quote": "Everything has beauty, but not everyone can see.",
"author": "Confucius"
},
{
"quote": "How wonderful it is that nobody need wait a single moment before starting to improve the world.",
"author": "Anne Frank"
},
{
"quote": "When I let go of what I am, I become what I might be.",
"author": "Lao Tzu"
},
{
"quote": "Life is not measured by the number of breaths we take, but by the moments that take our breath away.",
"author": "Maya Angelou"
},
{
"quote": "Happiness is not something readymade. It comes from your own actions.",
"author": "Dalai Lama"
},
{
"quote": "If you’re offered a seat on a rocket ship, don’t ask what seat! Just get on.",
"author": "Sheryl Sandberg"
},
{
"quote": "First, have a definite, clear practical ideal; a goal, an objective. Second, have the necessary means to achieve your ends; wisdom, money, materials, and methods. Third, adjust all your means to that end.",
"author": "Aristotle"
},
{
"quote": "If the wind will not serve, take to the oars.",
"author": "Latin Proverb"
},
{
"quote": "You can’t fall if you don’t climb. But there’s no joy in living your whole life on the ground.",
"author": "Unknown"
},
{
"quote": "We must believe that we are gifted for something, and that this thing, at whatever cost, must be attained.",
"author": "Marie Curie"
},
{
"quote": "Too many of us are not living our dreams because we are living our fears.",
"author": "Les Brown"
},
{
"quote": "Challenges are what make life interesting and overcoming them is what makes life meaningful.",
"author": "Joshua J. Marine"
},
{
"quote": "If you want to lift yourself up, lift up someone else.",
"author": "Booker T. Washington"
},
{
"quote": "I have been impressed with the urgency of doing. Knowing is not enough; we must apply. Being willing is not enough; we must do.",
"author": "Leonardo da Vinci"
},
{
"quote": "Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless.",
"author": "Jamie Paolinetti"
},
{
"quote": "You take your life in your own hands, and what happens? A terrible thing, no one to blame.",
"author": "Erica Jong"
},
{
"quote": "What’s money? A man is a success if he gets up in the morning and goes to bed at night and in between does what he wants to do.",
"author": "Bob Dylan"
},
{
"quote": "I didn’t fail the test. I just found 100 ways to do it wrong.",
"author": "Benjamin Franklin"
},
{
"quote": "In order to succeed, your desire for success should be greater than your fear of failure.",
"author": "Bill Cosby"
},
{
"quote": "A person who never made a mistake never tried anything new.",
"author": " Albert Einstein"
},
{
"quote": "The person who says it cannot be done should not interrupt the person who is doing it.",
"author": "Chinese Proverb"
},
{
"quote": "There are no traffic jams along the extra mile.",
"author": "Roger Staubach"
},
{
"quote": "It is never too late to be what you might have been.",
"author": "George Eliot"
},
{
"quote": "You become what you believe.",
"author": "Oprah Winfrey"
},
{
"quote": "I would rather die of passion than of boredom.",
"author": "Vincent van Gogh"
},
{
"quote": "A truly rich man is one whose children run into his arms when his hands are empty.",
"author": "Unknown"
},
{
"quote": "It is not what you do for your children, but what you have taught them to do for themselves, that will make them successful human beings.",
"author": "Ann Landers"
},
{
"quote": "If you want your children to turn out well, spend twice as much time with them, and half as much money.",
"author": "Abigail Van Buren"
},
{
"quote": "Build your own dreams, or someone else will hire you to build theirs.",
"author": "Farrah Gray"
},
{
"quote": "The battles that count aren’t the ones for gold medals. The struggles within yourself–the invisible battles inside all of us–that’s where it’s at.",
"author": "Jesse Owens"
},
{
"quote": "Education costs money. But then so does ignorance.",
"author": "Sir Claus Moser"
},
{
"quote": "I have learned over the years that when one’s mind is made up, this diminishes fear.",
"author": "Rosa Parks"
},
{
"quote": "It does not matter how slowly you go as long as you do not stop.",
"author": "Confucius"
},
{
"quote": "If you look at what you have in life, you’ll always have more. If you look at what you don’t have in life, you’ll never have enough.",
"author": "Oprah Winfrey"
},
{
"quote": "Remember that not getting what you want is sometimes a wonderful stroke of luck.",
"author": "Dalai Lama"
},
{
"quote": "You can’t use up creativity. The more you use, the more you have.",
"author": "Maya Angelou"
},
{
"quote": "Dream big and dare to fail.",
"author": "Norman Vaughan"
},
{
"quote": "Our lives begin to end the day we become silent about things that matter.",
"author": "Martin Luther King Jr."
},
{
"quote": "Do what you can, where you are, with what you have.",
"author": "Teddy Roosevelt"
},
{
"quote": "If you do what you’ve always done, you’ll get what you’ve always gotten.",
"author": "Tony Robbins"
},
{
"quote": "Dreaming, after all, is a form of planning.",
"author": "Gloria Steinem"
},
{
"quote": "It’s your place in the world; it’s your life. Go on and do all you can with it, and make it the life you want to live.",
"author": "Mae Jemison"
},
{
"quote": "You may be disappointed if you fail, but you are doomed if you don’t try.",
"author": "Beverly Sills"
},
{
"quote": "Remember no one can make you feel inferior without your consent.",
"author": "Eleanor Roosevelt"
},
{
"quote": "Life is what we make it, always has been, always will be.",
"author": "Grandma Moses"
},
{
"quote": "The question isn’t who is going to let me; it’s who is going to stop me.",
"author": "Ayn Rand"
},
{
"quote": "When everything seems to be going against you, remember that the airplane takes off against the wind, not with it.",
"author": "Henry Ford"
},
{
"quote": "It’s not the years in your life that count. It’s the life in your years.",
"author": "Abraham Lincoln"
},
{
"quote": "Change your thoughts and you change your world.",
"author": "Norman Vincent Peale"
},
{
"quote": "Either write something worth reading or do something worth writing.",
"author": "Benjamin Franklin"
},
{
"quote": "Nothing is impossible, the word itself says, “I’m possible!”",
"author": "–Audrey Hepburn"
},
{
"quote": "The only way to do great work is to love what you do.",
"author": "Steve Jobs"
},
{
"quote": "If you can dream it, you can achieve it.",
"author": "Zig Ziglar"
},
{
"quote": "The only person you are destined to become is the person you decide to be.",
"author": "Ralph Waldo Emerson"
},
{
"quote": "We can’t help everyone, but everyone can help someone.",
"author": "Ronald Reagan"
},
{
"quote": "Success is not final, failure is not fatal: It is the courage to continue that counts.",
"author": "Winston Churchill"
},
{
"quote": "The future belongs to those who believe in the beauty of their dreams.",
"author": "Eleanor Roosevelt"
},
{
"quote": "The only limit to our realization of tomorrow will be our doubts of today.",
"author": "Franklin D. Roosevelt"
},
{
"quote": "In the middle of every difficulty lies opportunity.",
"author": "Albert Einstein"
},
{
"quote": "The greatest glory in living lies not in never falling, but in rising every time we fall.",
"author": "Nelson Mandela"
},
{
"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"
},
{
"quote": "The only way to do great work is to love what you do.",
"author": "Steve Jobs"
},
{
"quote": "Believe you can and you're halfway there.",
"author": "Theodore Roosevelt"
},
{
"quote": "The greatest pleasure in life is doing what people say you cannot do.",
"author": "Walter Bagehot"
},
{
"quote": "Success usually comes to those who are too busy to be looking for it.",
"author": "Henry David Thoreau"
},
{
"quote": "People’s lives don’t end when they die, it ends when they lose faith.",
"author": "Itachi Uchiha"
},
{
"quote": "If you don’t take risks, you can’t create a future!",
"author": "Monkey D Luffy"
},
{
"quote": "If you don’t like your destiny, don’t accept it.",
"author": "Naruto Uzumaki"
},
{
"quote": "When you give up, that’s when the game ends.",
"author": "Mitsuyoshi Anzai"
},
{
"quote": "All we can do is live until the day we die. Control what we can…and fly free.",
"author": "Deneil Young"
},
{
"quote": "Forgetting is like a wound. The wound may heal, but it has already left a scar.",
"author": "Monkey D Luffy"
},
{
"quote": "It’s just pathetic to give up on something before you even give it a shot.",
"author": "Reiko Mikami"
},
{
"quote": "If you don’t share someone’s pain, you can never understand them.",
"author": "Nagato"
},
{
"quote": "Whatever you lose, you’ll find it again. But what you throw away you’ll never get back.",
"author": "Himura Kenshin"
},
{
"quote": "We don’t have to know what tomorrow holds! That’s why we can live for everything we’re worth today!",
"author": "Natsu Dragneel"
},
{
"quote": "Why should I apologize for being a monster? Has anyone ever apologized for turning me into one?",
"author": "Juuzou Suzuya"
},
{
"quote": "People become stronger because they have memories they can’t forget.",
"author": "Tsunade"
},
{
"quote": "I’ll leave tomorrow’s problems to tomorrow’s me.",
"author": "Saitama"
},
{
"quote": "If you wanna make people dream, you’ve gotta start by believing in that dream yourself!",
"author": "Seiya Kanie"
},
{
"quote": "Being lonely is more painful then getting hurt.",
"author": "Monkey D Luffy"
},
{
"quote": "There’s no shame in falling down! True shame is to not stand up again!",
"author": "Shintar Midorima"
},
{
"quote": "Simplicity is the easiest path to true beauty.",
"author": "Seishuu Handa"
},
{
"quote": "If you can’t do something, then don’t. Focus on what you can.",
"author": "Shiroe"
},
{
"quote": "Giving up kills people. When people reject giving up… they finally win the right to transcend humanity.",
"author": "Alucard"
},
{
"quote": "You can die anytime, but living takes true courage.",
"author": "Kenshin Himura"
},
{
"quote": "Every journey begins with a single step. We just have to have patience.",
"author": "Milly Thompson"
},
{
"quote": "It doesn’t do any good to pretend you can’t see what’s going on.",
"author": "Yuuya Mochizuki"
},
{
"quote": "Being weak is nothing to be ashamed of… Staying weak is !!",
"author": "Fuegoleon Vermillion"
},
{
"quote": "To act is not necessarily compassion. True compassion sometimes comes from inaction.",
"author": "Hinata Miyake"
},
{
"quote": "A dropout will beat a genius through hard work.",
"author": "Rock Lee"
},
{
"quote": "Reject common sense to make the impossible possible.",
"author": "Simon"
},
{
"quote": "Whatever you lose, you’ll find it again. But what you throw away you’ll never get back.",
"author": "Kenshin Himura"
},
{
"quote": "If you really want to be strong… Stop caring about what your surrounding thinks of you!",
"author": "Saitama"
},
{
"quote": "Vision is not what your eyes see, but an image that your brain comprehends.",
"author": "Touko Aozaki"
},
{
"quote": "Sometimes, people are just mean. Don’t fight mean with mean. Hold your head high.",
"author": "Hinata Miyake"
},
{
"quote": "The ticket to the future is always open.",
"author": "Vash The Stampede"
},
{
"quote": "Hard work is worthless for those that don’t believe in themselves.",
"author": "Naruto Uzumaki"
},
{
"quote": "A place where someone still thinks about you is a place you can call home.",
"author": "Jiraiya"
},
{
"quote": "Life comes at a cost. Wouldn’t it be arrogant to die before you’ve repaid that debt?",
"author": "Yuuji Kazami"
},
{
"quote": "You can die anytime, but living takes true courage.",
"author": "Himura Kenshin"
},
{
"quote": "Every journey begins with a single step. We just have to have patience.",
"author": "Milly Thompson"
},
{
"quote": "If you just submit yourself to fate, then that’s the end of it.",
"author": "Keiichi Maebara"
},
{
"quote": "It is at the moment of death that humanity has value.",
"author": "Archer"
},
{
"quote": "People, who can’t throw something important away, can never hope to change anything.",
"author": "Armin Arlert"
},
{
"quote": "Whatever you do, enjoy it to the fullest. That is the secret of life.",
"author": "Rider"
},
{
"quote": "Power comes in response to a need, not a desire. You have to create that need.",
"author": "Goku"
},
{
"quote": "There are no regrets. If one can be proud of one’s life, one should not wish for another chance.",
"author": "Saber"
},
{
"quote": "You can’t always hold on to the things that are important. By letting them go we gain something else.",
"author": "Kunio Yaobi"
},
{
"quote": "If you don’t like your destiny, don’t accept it. Instead, have the courage to change it the way you want it to be.",
"author": "Naruto Uzumaki"
},
{
"quote": "Don’t beg for things. Do it yourself, or else you won’t get anything.",
"author": "Renton Thurston"
},
{
"quote": "I refuse to let my fear control me anymore.",
"author": "Maka Albarn"
},
{
"quote": "If you can’t find a reason to fight, then you shouldn’t be fighting.",
"author": "Akame"
},
{
"quote": "You should never give up on life, no matter how you feel. No matter how badly you want to give up.",
"author": "Canaan"
},
{
"quote": "People who can’t throw something important away, can never hope to change anything.",
"author": "Armin Arlelt"
},
{
"quote": "We can’t waste time worrying about the what if’s.",
"author": "Ichigo Kurosaki"
},
{
"quote": "Fools who don’t respect the past are likely to repeat it.",
"author": "Nico Robin"
},
{
"quote": "That’s why I can’t make a change. Everything I do is so… Half-assed.",
"author": "Hiroshi Kido"
},
{
"quote": "Sometimes it’s necessary to do unnecessary things.",
"author": "Kanade Jinguuji"
},
{
"quote": "An excellent leader must be passionate because it’s their duty to keep everyone moving forward.",
"author": "Nico Yazawa"
},
{
"quote": "Protecting someone means giving them a place to belong. Giving them a place where they can be happy.",
"author": "Princess Lenessia"
},
{
"quote": "Thinking you’re no-good and worthless is the worst thing you can do",
"author": "Nobito"
},
{
"quote": "Sometimes I do feel like I’m a failure. Like there’s no hope for me. But even so, I’m not gonna give up. Ever!",
"author": "Izuku Midoriya"
},
{
"quote": "If you can’t do something, then don’t. Focus on what you can do.",
"author": "Shiroe"
},
{
"quote": "When you lose sight of your path, listen for the destination in your heart.",
"author": "Allen Walker"
},
{
"quote": "The moment you think of giving up, think of the reason why you held on so long.",
"author": "Natsu Dragneel"
},
{
"quote": "Don’t give up, there’s no shame in falling down! True shame is to not stand up again!",
"author": "Shintaro Midorima"
},
{
"quote": "No matter how hard or impossible it is, never lose sight of your goal.",
"author": "Monkey D Luffy"
},
{
"quote": "Life is not a game of luck. If you wanna win, work hard.",
"author": "Sora"
},
{
"quote": "The world isn’t perfect. But it’s there for us, doing the best it can….that’s what makes it so damn beautiful.",
"author": "Roy Mustang"
},
{
"quote": "Fear is not evil. It tells you what your weakness is. And once you know your weakness, you can become stronger as well as kinder.",
"author": "Gildarts Clive"
},
{
"quote": "To know sorrow is not terrifying. What is terrifying is to know you can’t go back to happiness you could have.",
"author": "Matsumoto Rangiku"
},
{
"quote": "Knowing you’re different is only the beginning. If you accept these differences you’ll be able to get past them and grow even closer.",
"author": "Miss Kobayashi"
},
{
"quote": "Don’t be so quick to throw away your life. No matter how disgraceful or embarrassing it may be, you need to keep struggling to find your way out until the very end.",
"author": "Clare"
},
{
"quote": "The world’s not perfect, but it’s there for us trying the best it can. That’s what makes it so damn beautiful.",
"author": "Roy Mustang"
},
{
"quote": "We are all like fireworks: we climb, we shine and always go our separate ways and become further apart. But even when that time comes, let’s not disappear like a firework and continue to shine.. forever.",
"author": "Hitsugaya Toshiro"
},
{
"quote": "If nobody cares to accept you and wants you in this world, accept yourself and you will see that you don’t need them and their selfish ideas.",
"author": "Alibaba Saluja"
},
{
"quote": "When you hit the point of no return, that’s the moment it truly becomes a journey. If you can still turn back, it’s not really a journey.",
"author": "Hinata Miyake"
},
{
"quote": "Those who stand at the top determine what’s wrong and what’s right! This very place is neutral ground! Justice will prevail, you say? But of course it will! Whoever wins this war becomes justice!",
"author": "Don Quixote Doflamingo"
},
{
"quote": "A person grows up when he’s able to overcome hardships. Protection is important, but there are some things that a person must learn on his own.",
"author": "Jiraiya"
},
{
"quote": "Who decides limits? And based on what? You said you worked hard? Well, maybe you need to work a little harder. Is that really the limit of your strength? Could you of tomorrow beat you today? Instead of giving in, move forward.",
"author": "Saitama"
},
{
"quote": "Mistakes are not shackles that halt one from stepping forward. Rather, they are that which sustain and grow one’s heart.",
"author": "Mavis Vermillion"
},
{
"quote": "Fear is freedom! Subjugation is liberation! Contradiction is the truth! Those are the facts of this world! And you will all surrender to them, you pigs in human clothing!",
"author": "Satsuki Kiryuuin"
},
{
"quote": "Hatred and Sorrow are power. They are yours to control. All you have to do is to turn them into strength and use that strength to move forward.",
"author": "Sebastian Michaelis"
},
{
"quote": "It’s not always possible to do what we want to do, but it’s important to believe in something before you actually do it.",
"author": "Might Guy"
},
{
"quote": "Life and death are like light and shadow. They’re both always there. But people don’t like thinking about death, so subconsciously, they always look away from it.",
"author": "Yato"
},
{
"quote": "It’s more important to master the cards you’re holding than to complain about the ones your opponent was dealt.",
"author": "Grimsley"
},
{
"quote": "I am the hope of the universe. I am the answer to all living things that cry out for peace. I am the protector of the innocent. I am the light in the darkness. I am the truth. Ally to good! Nightmare to you!",
"author": "Son Goku"
},
{
"quote": "If you’re gonna insist on gambling and then complain when you lose, you had better work on your game.",
"author": "Hatsu Kominato"
},
{
"quote": "Moving on doesn’t mean you forget about things. It just means you have to accept what’s happened and continue living.",
"author": "Erza Scarlet"
},
{
"quote": "If nobody cares to accept you and wants you in this world, accept yourself and you will see that you don’t need them and their selfish ideas.",
"author": "Alibaba Saluja"
},
{
"quote": "If you keep on hiding your true feelings, who is going to be happy? If you are sad, you should say it out loud!",
"author": "Haruhi Fujioka"
},
{
"quote": "Religion, ideology, resources, land, spite, love or just because… No matter how pathetic the reason, it’s enough to start a war. War will never cease to exist… reasons can be thought up after the fact… Human nature pursues strife.",
"author": "Paine"
},
{
"quote": "Don’t be upset because of what you can’t do. Do what you do best, live as carefree and optimistically as you can, because some people aren’t able to do that.",
"author": "Keima Katsuragi"
},
{
"quote": "If you begin to regret, you’ll dull your future decisions and let others make your choices for you. All that’s left for you then is to die. Nobody can foretell the outcome. Each decision you make holds meaning only by affecting your next decision.",
"author": "Erwin Smith"
},
{
"quote": "Everything has a beginning and an end. Life is just a cycle of starts and stops. There are ends we don’t desire, but they’re inevitable, we have to face them. It’s what being human is all about.",
"author": "Jet Black"
},
{
"quote": "Anything can happen. No one ever thinks it will until it does. What will happen, happens. That’s how the world is. The most important thing is to not let the tragedy defeat you. To believe that you can get through it.",
"author": "Kyousuke Natsume"
},
{
"quote": "You’ll only realize that you truly love someone if they already caused you enormous pain. Your enemies can never hurt you the way your loved ones can. It’s the people close to your heart that can give you the most piercing wound. Love is a double-edged sword, it can heal the wound faster or it can sink the blade even deeper.",
"author": "Himura Kenshin"
},
{
"quote": "I want you to be happy. I want you to laugh a lot. I don’t know what exactly I’ll be able to do for you, but I’ll always be by your side.",
"author": "Kagome"
},
{
"quote": "“A lesson without pain is meaningless. That’s because no one can gain without sacrificing something. But by enduring that pain and overcoming it, he shall obtain a powerful, unmatched heart.",
"author": "Edward Elric "
},
{
"quote": "You need to accept the fact that you’re not the best and have all the will to strive to be better than anyone you face.",
"author": "Roronoa Zoro"
},
{
"quote": "I too will obtain everything that I desire. Not because someone asked me to do it, but because I know in my heart that I have something worth fighting for.",
"author": "Julis Alexia Van Riessfeld"
},
{
"quote": "You can’t win a game by doing nothing. And if someone else wins it for you then you haven’t accomplished anything. Life is the same way.",
"author": "Junichirou Kagami"
},
{
"quote": "Do not think about other things, there is only one thing you can do. So master that one thing. Do not forget. What you must imagine is always that you, yourself, are the strongest. You do not need outside enemies. For you, the one you have to fight is none other than your own image.",
"author": "Archer"
},
{
"quote": "Life is like a tube of toothpaste. When you’ve used all the toothpaste down to the last squeeze, that’s when you’ve really lived. Live with all your might, and struggle as long as you have life.",
"author": "Mion Sonozaki"
},
{
"quote": "Just like games, no matter how well you have things lined up in your life, there’s always something to keep you on your toes.",
"author": "Junichirou Kagami"
},
{
"quote": "Do exactly as you like. That is the true meaning of pleasure. Pleasure leads to joy and joy leads to happiness.",
"author": "Gilgamesh"
},
{
"quote": "It Doesn t Matter How Strong The Opposition Is It Doesn t Matter How Fearsome The World Is It Doesn t Matter How Cruel The World Is Fight",
"author": "Eren"
},
{
"quote": "If There Are Humans Who Can Bring About Change They re Those Who Are Capable Of Abandoning Everything People Who When Required To Surpass Even Monsters Are Capable Of Tossing Aside Their Very Humanity",
"author": "Armin Arlert"
},
{
"quote": "I Don t Like The Terms Good Person or Bad Person It Is Impossible To Be Entirely Good To Everyone To Some You Are A Good Person While To Others You Are A Bad Person",
"author": "Armin Arlert"
},
{
"quote": "As Long As We Continue To Fight We Are Not Defeated",
"author": "Miche Zacharius"
},
{
"quote": "If You Win You Live If You Lose You Die If You Don t Fight You Can t Win",
"author": "Eren"
},
{
"quote": "You Understand Don t You One Day Or Another Everyone You Care About Eventually Dies It s Something We Simply Can t Accept It s A Realization That Could Drive You Insane",
"author": "Hange Zoë"
},
{
"quote": "You re Gonna Care What Other People Think And Be Someone You re Not Your Whole Life You re Fine As You Are So Talk In Your Own Words",
"author": "Ymir"
},
{
"quote": "Everyone Had To Be Drunk On Somethin To Keep Pushing On Everyone Was A Slave To Somethin",
"author": "Kenny Ackerman"
},
{
"quote": "This World Is Cruel And It s Also Very Beautiful",
"author": "Mikasa"
},
{
"quote": "No One Knows What The Outcome Will Be So Choose Whatever You ll Regret The Least",
"author": "Levi Ackerman"
},
{
"quote": "Do you need a reason to not want to lose",
"author": "Shoyo Hinata"
},
{
"quote": "Being the best decoy ever is as cool as being the ace",
"author": "Tobio Kageyama"
},
{
"quote": "You can fly even higher",
"author": "Tobio Kageyama"
},
{
"quote": "If they adjust to me I have to adjust in turn Whoever stops adjusting won t be able to continue forward",
"author": "Tobio Kageyama"
},
{
"quote": "The last ones standing are the victors Only the strongest If you want to be the last one standing become strong",
"author": "Tobio Kageyama"
},
{
"quote": "Life s a bore if you don t challenge yourself",
"author": "Yuu Nishinoya"
},
{
"quote": "There are some flowers you only see when you take detours",
"author": "Tanaka Saeko"
},
{
"quote": "Being weak means that there is room to grow",
"author": "Ittetsu Takeda"
},
{
"quote": "Today might be the chance to grasp the chance to let your talent bloom",
"author": "Tooru Oikawa"
},
{
"quote": "If you re gonna hit it hit it until it breaks",
"author": "Tooru Oikawa"
}
]