-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
11376 lines (11376 loc) · 625 KB
/
db.json
File metadata and controls
11376 lines (11376 loc) · 625 KB
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
{
"_default": {
"1": {
"quote": "Morality is simply the attitude we adopt towards people we personally dislike.",
"author": "Oscar Wilde"
},
"2": {
"quote": "I just want to be wonderful.",
"author": "Marilyn Monroe"
},
"3": {
"quote": "If you want to get laid, go to college. If you want an education, go to the library.",
"author": "Frank Zappa"
},
"4": {
"quote": "A question that sometimes drives me hazy: am I or are the others crazy?",
"author": "Albert Einstein"
},
"5": {
"quote": "A room without books is like a body without a soul.",
"author": "Marcus Tullius Cicero"
},
"6": {
"quote": "Be who you are and say what you feel, because those who mind don't matter, and those who matter don't mind.",
"author": "Bernard M. Baruch"
},
"7": {
"quote": "You've gotta dance like there's nobody watching,\nLove like you'll never be hurt,\nSing like there's nobody listening,\nAnd live like it's heaven on earth.",
"author": "William W. Purkey"
},
"8": {
"quote": "I'm afraid that sometimes you'll play lonely games too. Games you can't win 'cause you'll play against you.",
"author": "Dr. Seuss"
},
"9": {
"quote": "When I'm good, I'm very good, but when I'm bad, I'm better.",
"author": "Mae West"
},
"10": {
"quote": "Each night, when I go to sleep, I die. And the next morning, when I wake up, I am reborn.",
"author": "Mahatma Gandhi"
},
"11": {
"quote": "Half the world is composed of people who have something to say and can't, and the other half who have nothing to say and keep on saying it.",
"author": "Robert Frost"
},
"12": {
"quote": "If you want to know what a man's like, take a good look at how he treats his inferiors, not his equals.",
"author": "J.K. Rowling"
},
"13": {
"quote": "Real generosity towards the future lies in giving all to the present.",
"author": "Albert Camus"
},
"14": {
"quote": "The easy confidence with which I know another man's religion is folly teaches me to suspect that my own is also.",
"author": "Mark Twain"
},
"15": {
"quote": "Friendship ... is born at the moment when one man says to another \"What! You too? I thought that no one but myself . . .",
"author": "C.S. Lewis"
},
"16": {
"quote": "If I am not good to myself, how can I expect anyone else to be good to me?",
"author": "Maya Angelou"
},
"17": {
"quote": "God will not look you over for medals, degrees or diplomas but for scars.",
"author": "Elbert Hubbard"
},
"18": {
"quote": "Morality is simply the attitude we adopt towards people we personally dislike.",
"author": "Oscar Wilde"
},
"19": {
"quote": "Morality is simply the attitude we adopt towards people we personally dislike.",
"author": "Oscar Wilde"
},
"20": {
"quote": "Darkness cannot drive out darkness: only light can do that. Hate cannot drive out hate: only love can do that.",
"author": "Martin Luther King Jr."
},
"21": {
"quote": "Each night, when I go to sleep, I die. And the next morning, when I wake up, I am reborn.",
"author": "Mahatma Gandhi"
},
"22": {
"quote": "We accept the love we think we deserve.",
"author": "Stephen Chbosky"
},
"23": {
"quote": "Without music, life would be a mistake.",
"author": "Friedrich Nietzsche"
},
"24": {
"quote": "I am so clever that sometimes I don't understand a single word of what I am saying.",
"author": "Oscar Wilde"
},
"25": {
"quote": "Whatever you do, you need courage. Whatever course you decide upon, there is always someone to tell you that you are wrong. There are always difficulties arising that tempt you to believe your critics are right. To map out a course of action and follow it to an end requires some of the same courage that a soldier needs. Peace has its victories, but it takes brave men and women to win them.",
"author": "Ralph Waldo Emerson"
},
"26": {
"quote": "Being the richest man in the cemetery doesn't matter to me. Going to bed at night saying we've done something wonderful... that's what matters to me.",
"author": "Steve Jobs"
},
"27": {
"quote": "Insanity is doing the same thing, over and over again, but expecting different results.",
"author": "Narcotics Anonymous"
},
"28": {
"quote": "I just want to be wonderful.",
"author": "Marilyn Monroe"
},
"29": {
"quote": "It is better to be hated for what you are than to be loved for what you are not.",
"author": "Andre Gide"
},
"30": {
"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 the safe harbor. Catch the trade winds in your sails. Explore. Dream. Discover.",
"author": "H. Jackson Brown Jr."
},
"31": {
"quote": "Better to die fighting for freedom then be a prisoner all the days of your life.",
"author": "Bob Marley"
},
"32": {
"quote": "All that is gold does not glitter,\nNot all those who wander are lost;\nThe old that is strong does not wither,\nDeep roots are not reached by the frost.\n\nFrom the ashes a fire shall be woken,\nA light from the shadows shall spring;\nRenewed shall be blade that was broken,\nThe crownless again shall be king.",
"author": "J.R.R. Tolkien"
},
"33": {
"quote": "The person, be it gentleman or lady, who has not pleasure in a good novel, must be intolerably stupid.",
"author": "Jane Austen"
},
"34": {
"quote": "It is our choices, Harry, that show what we truly are, far more than our abilities.",
"author": "J.K. Rowling"
},
"35": {
"quote": "I just want to be wonderful.",
"author": "Marilyn Monroe"
},
"36": {
"quote": "A question that sometimes drives me hazy: am I or are the others crazy?",
"author": "Albert Einstein"
},
"37": {
"quote": "It does not do to dwell on dreams and forget to live.",
"author": "J.K. Rowling"
},
"38": {
"quote": "The easy confidence with which I know another man's religion is folly teaches me to suspect that my own is also.",
"author": "Mark Twain"
},
"39": {
"quote": "As he read, I fell in love the way you fall asleep: slowly, and then all at once.",
"author": "John Green"
},
"40": {
"quote": "We are all in the gutter, but some of us are looking at the stars.",
"author": "Oscar Wilde"
},
"41": {
"quote": "Fairy tales are more than true: not because they tell us that dragons exist, but because they tell us that dragons can be beaten.",
"author": "Neil Gaiman"
},
"42": {
"quote": "The fool doth think he is wise, but the wise man knows himself to be a fool.",
"author": "William Shakespeare"
},
"43": {
"quote": "It is better to remain silent at the risk of being thought a fool, than to talk and remove all doubt of it.",
"author": "Maurice Switzer"
},
"44": {
"quote": "The easy confidence with which I know another man's religion is folly teaches me to suspect that my own is also.",
"author": "Mark Twain"
},
"45": {
"quote": "Life is what happens to us while we are making other plans.",
"author": "Allen Saunders"
},
"46": {
"quote": "Yesterday is history, tomorrow is a mystery, today is a gift of God, which is why we call it the present.",
"author": "Bill Keane"
},
"47": {
"quote": "I have not failed. I've just found 10,000 ways that won't work.",
"author": "Thomas A. Edison"
},
"48": {
"quote": "I am a forest, and a night of dark trees: but he who is not afraid of my darkness, will find banks full of roses under my cypresses.",
"author": "Friedrich Nietzsche"
},
"49": {
"quote": "Friendship marks a life even more deeply than love. Love risks degenerating into obsession, friendship is never anything but sharing.",
"author": "Elie Wiesel"
},
"50": {
"quote": "Many people will walk in and out of your life, but only true friends will leave footprints in your heart",
"author": "Eleanor Roosevelt"
},
"51": {
"quote": "The easy confidence with which I know another man's religion is folly teaches me to suspect that my own is also.",
"author": "Mark Twain"
},
"52": {
"quote": "I love you without knowing how, or when, or from where. I love you simply, without problems or pride: I love you in this way because I do not know any other way of loving but this, in which there is no I or you, so intimate that your hand upon my chest is my hand, so intimate that when I fall asleep your eyes close.",
"author": "Pablo Neruda"
},
"53": {
"quote": "I may not have gone where I intended to go, but I think I have ended up where I needed to be.",
"author": "douglas adams"
},
"54": {
"quote": "If you don't stand for something you will fall for anything.",
"author": "Gordon A. Eadie"
},
"55": {
"quote": "Outside of a dog, a book is man's best friend. Inside of a dog it's too dark to read.",
"author": "Groucho Marx"
},
"56": {
"quote": "I solemnly swear that I am up to no good.",
"author": "J.K. Rowling"
},
"57": {
"quote": "A question that sometimes drives me hazy: am I or are the others crazy?",
"author": "Albert Einstein"
},
"58": {
"quote": "Love all, trust a few,\nDo wrong to none: be able for thine enemy\nRather in power than use; and keep thy friend\nUnder thy own life's key: be check'd for silence,\nBut never tax'd for speech.",
"author": "William Shakespeare"
},
"59": {
"quote": "Have you ever been in love? Horrible isn't it? It makes you so vulnerable. It opens your chest and it opens up your heart and it means that someone can get inside you and mess you up.",
"author": "Neil Gaiman"
},
"60": {
"quote": "I'm afraid that sometimes you'll play lonely games too. Games you can't win 'cause you'll play against you.",
"author": "Dr. Seuss"
},
"61": {
"quote": "Some people have a way with words, and other people...oh, uh, not have way.",
"author": "Steve Martin"
},
"62": {
"quote": "A reader lives a thousand lives before he dies, said Jojen. The man who never reads lives only one.",
"author": "George R.R. Martin"
},
"63": {
"quote": "The easy confidence with which I know another man's religion is folly teaches me to suspect that my own is also.",
"author": "Mark Twain"
},
"64": {
"quote": "When you are content to be simply yourself and don't compare or compete, everyone will respect you.",
"author": "Lao Tzu"
},
"65": {
"quote": "<b>\n<i>The Paradoxical Commandments</i>\n</b>\n\nPeople are illogical, unreasonable, and self-centered.\nLove them anyway.\n\nIf you do good, people will accuse you of selfish ulterior motives.\nDo good anyway.\n\nIf you are successful, you will win false friends and true enemies.\nSucceed anyway.\n\nThe good you do today will be forgotten tomorrow.\nDo good anyway.\n\nHonesty and frankness make you vulnerable.\nBe honest and frank anyway.\n\nThe biggest men and women with the biggest ideas can be shot down by the smallest men and women with the smallest minds.\nThink big anyway.\n\nPeople favor underdogs but follow only top dogs.\nFight for a few underdogs anyway.\n\nWhat you spend years building may be destroyed overnight.\nBuild anyway.\n\nPeople really need help but may attack you if you do help them.\nHelp people anyway.\n\nGive the world the best you have and you'll get kicked in the teeth.\nGive the world the best you have anyway.",
"author": "Kent M. Keith"
},
"66": {
"quote": "You have brains in your head. You have feet in your shoes. You can steer yourself any direction you choose. You're on your own. And you know what you know. And YOU are the one who'll decide where to go...",
"author": "Dr. Seuss"
},
"67": {
"quote": "I am a forest, and a night of dark trees: but he who is not afraid of my darkness, will find banks full of roses under my cypresses.",
"author": "Friedrich Nietzsche"
},
"68": {
"quote": "What do we live for, if it is not to make life less difficult for each other?",
"author": "George Eliot"
},
"69": {
"quote": "Whatever you do, you need courage. Whatever course you decide upon, there is always someone to tell you that you are wrong. There are always difficulties arising that tempt you to believe your critics are right. To map out a course of action and follow it to an end requires some of the same courage that a soldier needs. Peace has its victories, but it takes brave men and women to win them.",
"author": "Ralph Waldo Emerson"
},
"70": {
"quote": "I just want to be wonderful.",
"author": "Marilyn Monroe"
},
"71": {
"quote": "It takes a great deal of bravery to stand up to our enemies, but just as much to stand up to our friends.",
"author": "J.K. Rowling"
},
"72": {
"quote": "I love deadlines. I love the whooshing noise they make as they go by.",
"author": "Douglas Adams"
},
"73": {
"quote": "If we have no peace, it is because we have forgotten that we belong to each other.",
"author": "Mother Teresa"
},
"74": {
"quote": "There is never a time or place for true love. It happens accidentally, in a heartbeat, in a single flashing, throbbing moment.",
"author": "Sarah Dessen"
},
"75": {
"quote": "I am a forest, and a night of dark trees: but he who is not afraid of my darkness, will find banks full of roses under my cypresses.",
"author": "Friedrich Nietzsche"
},
"76": {
"quote": "There is no greater agony than bearing an untold story inside you.",
"author": "Maya Angelou"
},
"77": {
"quote": "A question that sometimes drives me hazy: am I or are the others crazy?",
"author": "Albert Einstein"
},
"78": {
"quote": "If you only read the books that everyone else is reading, you can only think what everyone else is thinking.",
"author": "Haruki Murakami"
},
"79": {
"quote": "Love is that condition in which the happiness of another person is essential to your own.",
"author": "Robert A. Heinlein"
},
"80": {
"quote": "Anyone who thinks sitting in church can make you a Christian must also think that sitting in a garage can make you a car.",
"author": "Garrison Keillor"
},
"81": {
"quote": "I cannot sleep unless I am surrounded by books.",
"author": "Jorge Luis Borges"
},
"82": {
"quote": "Others have seen what is and asked why. I have seen what could be and asked why not.",
"author": "Pablo Picasso"
},
"83": {
"quote": "Happiness consists in getting enough sleep. Just that, nothing more.",
"author": "Robert A. Heinlein"
},
"84": {
"quote": "I'm afraid that sometimes you'll play lonely games too. Games you can't win 'cause you'll play against you.",
"author": "Dr. Seuss"
},
"85": {
"quote": "You love me. Real or not real?\"\nI tell him, \"Real.",
"author": "Suzanne Collins"
},
"86": {
"quote": "Never trust anyone who has not brought a book with them.",
"author": "Lemony Snicket"
},
"87": {
"quote": "It would seem that Our Lord finds our desires not too strong, but too weak. We are half-hearted creatures, fooling about with drink and sex and ambition when infinite joy is offered us, like an ignorant child who wants to go on making mud pies in a slum because he cannot imagine what is meant by the offer of a holiday at the sea. We are far too easily pleased.",
"author": "C.S. Lewis"
},
"88": {
"quote": "We read to know we're not alone.",
"author": "William Nicholson"
},
"89": {
"quote": "Sometimes, you read a book and it fills you with this weird evangelical zeal, and you become convinced that the shattered world will never be put back together unless and until all living humans read the book.",
"author": "John Green"
},
"90": {
"quote": "Those who cannot change their minds cannot change anything.",
"author": "George Bernard Shaw"
},
"91": {
"quote": "Nothing takes the taste out of peanut butter quite like unrequited love.",
"author": "Charles M. Schulz"
},
"92": {
"quote": "Beauty is in the eye of the beholder and it may be necessary from time to time to give a stupid or misinformed beholder a black eye.",
"author": "Jim Henson"
},
"93": {
"quote": "Of course it is happening inside your head, Harry, but why on earth should that mean that it is not real?",
"author": "J.K. Rowling"
},
"94": {
"quote": "Today you are You, that is truer than true. There is no one alive who is Youer than You.",
"author": "Dr. Seuss"
},
"95": {
"quote": "Life doesn't imitate art, it imitates bad television.",
"author": "Woody Allen"
},
"96": {
"quote": "Morality is simply the attitude we adopt towards people we personally dislike.",
"author": "Oscar Wilde"
},
"97": {
"quote": "To the well-organized mind, death is but the next great adventure.",
"author": "J.K. Rowling"
},
"98": {
"quote": "A question that sometimes drives me hazy: am I or are the others crazy?",
"author": "Albert Einstein"
},
"99": {
"quote": "I'm in love with you,\" he said quietly.\n\n\"Augustus,\" I said.\n\n\"I am,\" he said. He was staring at me, and I could see the corners of his eyes crinkling. \"I'm in love with you, and I'm not in the business of denying myself the simple pleasure of saying true things. I'm in love with you, and I know that love is just a shout into the void, and that oblivion is inevitable, and that we're all doomed and that there will come a day when all our labor has been returned to dust, and I know the sun will swallow the only earth we'll ever have, and I am in love with you.",
"author": "John Green"
},
"100": {
"quote": "A question that sometimes drives me hazy: am I or are the others crazy?",
"author": "Albert Einstein"
},
"101": {
"quote": "Have you fallen in love with the wrong person yet?'\nJace said, \"Unfortunately, Lady of the Haven, my one true love remains myself.\"\n...\"At least,\" she said, \"you don't have to worry about rejection, Jace Wayland.\"\n\"Not necessarily. I turn myself down occasionally, just to keep it interesting.",
"author": "Cassandra Clare"
},
"102": {
"quote": "Whenever I feel the need to exercise, I lie down until it goes away.",
"author": "Paul Terry"
},
"103": {
"quote": "I am nothing special, of this I am sure. I am a common man with common thoughts and I've led a common life. There are no monuments dedicated to me and my name will soon be forgotten, but I've loved another with all my heart and soul, and to me, this has always been enough..",
"author": "Nicholas Sparks"
},
"104": {
"quote": "Sometimes people are beautiful.\nNot in looks.\nNot in what they say.\nJust in what they are.",
"author": "Markus Zusak"
},
"105": {
"quote": "Better to die fighting for freedom then be a prisoner all the days of your life.",
"author": "Bob Marley"
},
"106": {
"quote": "Love looks not with the eyes, but with the mind; And therefore is wing'd Cupid painted blind. Nor hath love's mind of any judgment taste; Wings and no eyes figure unheedy haste: And therefore is love said to be a child, Because in choice he is so oft beguil'd.",
"author": "William Shakespeare"
},
"107": {
"quote": "You don't get to choose if you get hurt in this world...but you do have some say in who hurts you. I like my choices.",
"author": "John Green"
},
"108": {
"quote": "When I do good, I feel good. When I do bad, I feel bad. That's my religion.",
"author": "Abraham Lincoln"
},
"109": {
"quote": "The more that you read, the more things you will know. The more that you learn, the more places you'll go.",
"author": "Dr. Seuss"
},
"110": {
"quote": "It is not the critic who counts; not the man who points out how the strong man stumbles, or where the doer of deeds could have done them better. The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood; who strives valiantly; who errs, who comes short again and again, because there is no effort without error and shortcoming; but who does actually strive to do the deeds; who knows great enthusiasms, the great devotions; who spends himself in a worthy cause; who at the best knows in the end the triumph of high achievement, and who at the worst, if he fails, at least fails while daring greatly, so that his place shall never be with those cold and timid souls who neither know victory nor defeat.",
"author": "Theodore Roosevelt"
},
"111": {
"quote": "All thinking men are atheists.",
"author": "Ernest Hemingway"
},
"112": {
"quote": "The story so far:\nIn the beginning the Universe was created.\nThis has made a lot of people very angry and been widely regarded as a bad move.",
"author": "Douglas Adams"
},
"113": {
"quote": "Better to die fighting for freedom then be a prisoner all the days of your life.",
"author": "Bob Marley"
},
"114": {
"quote": "Success is stumbling from failure to failure with no loss of enthusiasm.",
"author": "Winston S. Churchill"
},
"115": {
"quote": "I never forget a face, but in your case I'll be glad to make an exception.",
"author": "Groucho Marx"
},
"116": {
"quote": "Love is like the wind, you can't see it but you can feel it.",
"author": "Nicholas Sparks"
},
"117": {
"quote": "Life is either a daring adventure or nothing at all.",
"author": "Helen Keller"
},
"118": {
"quote": "If we have no peace, it is because we have forgotten that we belong to each other.",
"author": "Mother Teresa"
},
"119": {
"quote": "So, this is my life. And I want you to know that I am both happy and sad and I'm still trying to figure out how that could be.",
"author": "Stephen Chbosky"
},
"120": {
"quote": "There is nothing I would not do for those who are really my friends. I have no notion of loving people by halves, it is not my nature.",
"author": "Jane Austen"
},
"121": {
"quote": "I cannot go to school today\"\nSaid little Peggy Ann McKay.\n\"I have the measles and the mumps,\nA gash, a rash and purple bumps.\n\nMy mouth is wet, my throat is dry.\nI'm going blind in my right eye.\nMy tonsils are as big as rocks,\nI've counted sixteen chicken pox.\n\nAnd there's one more - that's seventeen,\nAnd don't you think my face looks green?\nMy leg is cut, my eyes are blue,\nIt might be the instamatic flu.\n\nI cough and sneeze and gasp and choke,\nI'm sure that my left leg is broke.\nMy hip hurts when I move my chin,\nMy belly button's caving in.\n\nMy back is wrenched, my ankle's sprained,\nMy 'pendix pains each time it rains.\nMy toes are cold, my toes are numb,\n\nI have a sliver in my thumb.\n\nMy neck is stiff, my voice is weak,\nI hardly whisper when I speak.\nMy tongue is filling up my mouth,\n\nI think my hair is falling out.\n\nMy elbow's bent, my spine ain't straight,\nMy temperature is one-o-eight.\nMy brain is shrunk, I cannot hear,\n\nThere's a hole inside my ear.\n\nI have a hangnail, and my heart is ...\nWhat? What's that? What's that you say?\nYou say today is .............. Saturday?\n\nG'bye, I'm going out to play!",
"author": "Shel Silverstein"
},
"122": {
"quote": "A question that sometimes drives me hazy: am I or are the others crazy?",
"author": "Albert Einstein"
},
"123": {
"quote": "If you live to be a hundred, I want to live to be a hundred minus one day so I never have to live without you.",
"author": "Joan Powers"
},
"124": {
"quote": "Poetry is what happens when nothing else can.",
"author": "Charles Bukowski"
},
"125": {
"quote": "People think a soul mate is your perfect fit, and that's what everyone wants. But a true soul mate is a mirror, the person who shows you everything that is holding you back, the person who brings you to your own attention so you can change your life. \n\nA true soul mate is probably the most important person you'll ever meet, because they tear down your walls and smack you awake. But to live with a soul mate forever? Nah. Too painful. Soul mates, they come into your life just to reveal another layer of yourself to you, and then leave. \n\nA soul mates purpose is to shake you up, tear apart your ego a little bit, show you your obstacles and addictions, break your heart open so new light can get in, make you so desperate and out of control that you have to transform your life, then introduce you to your spiritual master...",
"author": "Elizabeth Gilbert"
},
"126": {
"quote": "You don't love someone because they're perfect, you love them in spite of the fact that they're not.",
"author": "Jodi Picoult"
},
"127": {
"quote": "What really knocks me out is a book that, when you're all done reading it, you wish the author that wrote it was a terrific friend of yours and you could call him up on the phone whenever you felt like it. That doesn't happen much, though.",
"author": "J.D. Salinger"
},
"128": {
"quote": "Throw your dreams into space like a kite, and you do not know what it will bring back, a new life, a new friend, a new love, a new country.",
"author": "Anais Nin"
},
"129": {
"quote": "It is easy to forget how full the world is of people, full to bursting, and each of them imaginable and consistently misimagined.",
"author": "John Green"
},
"130": {
"quote": "It matters not what someone is born, but what they grow to be.",
"author": "J.K. Rowling"
},
"131": {
"quote": "The difference between genius and stupidity is: genius has its limits.",
"author": "Alexandre Dumas-fils"
},
"132": {
"quote": "I just want to be wonderful.",
"author": "Marilyn Monroe"
},
"133": {
"quote": "Not all those who wander are lost.",
"author": "J.R.R. Tolkien"
},
"134": {
"quote": "Morality is simply the attitude we adopt towards people we personally dislike.",
"author": "Oscar Wilde"
},
"135": {
"quote": "If I had a flower for every time I thought of you...I could walk through my garden forever.",
"author": "Alfred Tennyson"
},
"136": {
"quote": "The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it.",
"author": "Terry Pratchett"
},
"137": {
"quote": "Many people will walk in and out of your life, but only true friends will leave footprints in your heart",
"author": "Eleanor Roosevelt"
},
"138": {
"quote": "You don't <i>have</i> a soul, Doctor. You <i>are</i> a soul. You <i>have</i> a body, temporarily.",
"author": "Walter M. Miller Jr."
},
"139": {
"quote": "I would venture to guess that Anon, who wrote so many poems without signing them, was often a woman.",
"author": "Virginia Woolf"
},
"140": {
"quote": "Some infinities are bigger than other infinities.",
"author": "John Green"
},
"141": {
"quote": "One must always be careful of books,\" said Tessa, \"and what is inside them, for words have the power to change us.",
"author": "Cassandra Clare"
},
"142": {
"quote": "Reality continues to ruin my life.",
"author": "Bill Watterson"
},
"143": {
"quote": "Time you enjoy wasting is not wasted time.",
"author": "Marthe Troly-Curtin"
},
"144": {
"quote": "Things change. And friends leave. Life doesn't stop for anybody.",
"author": "Stephen Chbosky"
},
"145": {
"quote": "I wish it need not have happened in my time,\" said Frodo.\n\"So do I,\" said Gandalf, \"and so do all who live to see such times. But that is not for them to decide. All we have to decide is what to do with the time that is given us.",
"author": "J.R.R. Tolkien"
},
"146": {
"quote": "There is no pretending,\" Jace said with absolute clarity. \"I love you, and I will love you until I die, and if there is life after that, I'll love you then.",
"author": "Cassandra Clare"
},
"147": {
"quote": "You think because he doesn't love you that you are worthless. You think that because he doesn't want you anymore that he is right -- that his judgement and opinion of you are correct. If he throws you out, then you are garbage. You think he belongs to you because you want to belong to him. Don't. It's a bad word, 'belong.' Especially when you put it with somebody you love. Love shouldn't be like that. Did you ever see the way the clouds love a mountain? They circle all around it; sometimes you can't even see the mountain for the clouds. But you know what? You go up top and what do you see? His head. The clouds never cover the head. His head pokes through, beacuse the clouds let him; they don't wrap him up. They let him keep his head up high, free, with nothing to hide him or bind him. You can't own a human being. You can't lose what you don't own. Suppose you did own him. Could you really love somebody who was absolutely nobody without you? You really want somebody like that? Somebody who falls apart when you walk out the door? You don't, do you? And neither does he. You're turning over your whole life to him. Your whole life, girl. And if it means so little to you that you can just give it away, hand it to him, then why should it mean any more to him? He can't value you more than you value yourself.",
"author": "Toni Morrison"
},
"148": {
"quote": "Better to die fighting for freedom then be a prisoner all the days of your life.",
"author": "Bob Marley"
},
"149": {
"quote": "To love at all is to be vulnerable. Love anything and your heart will be wrung and possibly broken. If you want to make sure of keeping it intact you must give it to no one, not even an animal. Wrap it carefully round with hobbies and little luxuries; avoid all entanglements. Lock it up safe in the casket or coffin of your selfishness. But in that casket, safe, dark, motionless, airless, it will change. It will not be broken; it will become unbreakable, impenetrable, irredeemable. To love is to be vulnerable.",
"author": "C.S. Lewis"
},
"150": {
"quote": "I just want to be wonderful.",
"author": "Marilyn Monroe"
},
"151": {
"quote": "I declare after all there is no enjoyment like reading! How much sooner one tires of any thing than of a book! -- When I have a house of my own, I shall be miserable if I have not an excellent library.",
"author": "Jane Austen"
},
"152": {
"quote": "The only way out of the labyrinth of suffering is to forgive.",
"author": "John Green"
},
"153": {
"quote": "When someone loves you, the way they talk about you is different. You feel safe and comfortable.",
"author": "Jess C. Scott"
},
"154": {
"quote": "Go to heaven for the climate and hell for the company.",
"author": "Benjamin Franklin Wade"
},
"155": {
"quote": "I like it when a flower or a little tuft of grass grows through a crack in the concrete. It's so fuckin' heroic.",
"author": "George Carlin"
},
"156": {
"quote": "Piglet sidled up to Pooh from behind. \n\"Pooh!\" he whispered.\n\"Yes, Piglet?\"\n\"Nothing,\" said Piglet, taking Pooh's paw. \"I just wanted to be sure of you.",
"author": "A.A. Milne"
},
"157": {
"quote": "He's like a drug for you, Bella.",
"author": "Stephenie Meyer"
},
"158": {
"quote": "And, when you want something, all the universe conspires in helping you to achieve it.",
"author": "Paulo Coelho"
},
"159": {
"quote": "Do not pity the dead, Harry. Pity the living, and, above all those who live without love.",
"author": "J.K. Rowling"
},
"160": {
"quote": "The books that the world calls immoral are books that show the world its own shame.",
"author": "Oscar Wilde"
},
"161": {
"quote": "I just want to be wonderful.",
"author": "Marilyn Monroe"
},
"162": {
"quote": "All thinking men are atheists.",
"author": "Ernest Hemingway"
},
"163": {
"quote": "Dumbledore watched her fly away, and as her silvery glow faded he turned back to Snape, and his eyes were full of tears.\n\"After all this time?\"\n\"Always,\" said Snape.",
"author": "J.K. Rowling"
},
"164": {
"quote": "You should date a girl who reads.\nDate a girl who reads. Date a girl who spends her money on books instead of clothes, who has problems with closet space because she has too many books. Date a girl who has a list of books she wants to read, who has had a library card since she was twelve.\n\nFind a girl who reads. You'll know that she does because she will always have an unread book in her bag. She's the one lovingly looking over the shelves in the bookstore, the one who quietly cries out when she has found the book she wants. You see that weird chick sniffing the pages of an old book in a secondhand book shop? That's the reader. They can never resist smelling the pages, especially when they are yellow and worn.\n\nShe's the girl reading while waiting in that coffee shop down the street. If you take a peek at her mug, the non-dairy creamer is floating on top because she's kind of engrossed already. Lost in a world of the author's making. Sit down. She might give you a glare, as most girls who read do not like to be interrupted. Ask her if she likes the book.\n\nBuy her another cup of coffee.\n\nLet her know what you really think of Murakami. See if she got through the first chapter of Fellowship. Understand that if she says she understood James Joyce's Ulysses she's just saying that to sound intelligent. Ask her if she loves Alice or she would like to be Alice.\n\nIt's easy to date a girl who reads. Give her books for her birthday, for Christmas, for anniversaries. Give her the gift of words, in poetry and in song. Give her Neruda, Pound, Sexton, Cummings. Let her know that you understand that words are love. Understand that she knows the difference between books and reality but by god, she's going to try to make her life a little like her favorite book. It will never be your fault if she does.\n\nShe has to give it a shot somehow.\n\nLie to her. If she understands syntax, she will understand your need to lie. Behind words are other things: motivation, value, nuance, dialogue. It will not be the end of the world.\n\nFail her. Because a girl who reads knows that failure always leads up to the climax. Because girls who read understand that all things must come to end, but that you can always write a sequel. That you can begin again and again and still be the hero. That life is meant to have a villain or two.\n\nWhy be frightened of everything that you are not? Girls who read understand that people, like characters, develop. Except in the Twilight series.\n\nIf you find a girl who reads, keep her close. When you find her up at 2 AM clutching a book to her chest and weeping, make her a cup of tea and hold her. You may lose her for a couple of hours but she will always come back to you. She'll talk as if the characters in the book are real, because for a while, they always are.\n\nYou will propose on a hot air balloon. Or during a rock concert. Or very casually next time she's sick. Over Skype.\n\nYou will smile so hard you will wonder why your heart hasn't burst and bled out all over your chest yet. You will write the story of your lives, have kids with strange names and even stranger tastes. She will introduce your children to the Cat in the Hat and Aslan, maybe in the same day. You will walk the winters of your old age together and she will recite Keats under her breath while you shake the snow off your boots.\n\nDate a girl who reads because you deserve it. You deserve a girl who can give you the most colorful life imaginable. If you can only give her monotony, and stale hours and half-baked proposals, then you're better off alone. If you want the world and the worlds beyond it, date a girl who reads.\n\nOr better yet, date a girl who writes.",
"author": "Rosemarie Urquico"
},
"165": {
"quote": "I can never read all the books I want; I can never be all the people I want and live all the lives I want. I can never train myself in all the skills I want. And why do I want? I want to live and feel all the shades, tones and variations of mental and physical experience possible in my life. And I am horribly limited.",
"author": "Sylvia Plath"
},
"166": {
"quote": "I believe in God, but not as one thing, not as an old man in the sky. I believe that what people call God is something in all of us. I believe that what Jesus and Mohammed and Buddha and all the rest said was right. It's just that the translations have gone wrong.",
"author": "John Lennon"
},
"167": {
"quote": "I just want to be wonderful.",
"author": "Marilyn Monroe"
},
"168": {
"quote": "You don't forget the face of the person who was your last hope.",
"author": "Suzanne Collins"
},
"169": {
"quote": "I've been making a list of the things they don't teach you at school. They don't teach you how to love somebody. They don't teach you how to be famous. They don't teach you how to be rich or how to be poor. They don't teach you how to walk away from someone you don't love any longer. They don't teach you how to know what's going on in someone else's mind. They don't teach you what to say to someone who's dying. They don't teach you anything worth knowing.",
"author": "Neil Gaiman"
},
"170": {
"quote": "It ain't what they call you, it's what you answer to.",
"author": "W.C. Fields"
},
"171": {
"quote": "He has achieved success who has lived well, laughed often, and loved much;\nWho has enjoyed the trust of pure women, the respect of intelligent men and the love of little children;\nWho has filled his niche and accomplished his task;\nWho has never lacked appreciation of Earth's beauty or failed to express it;\nWho has left the world better than he found it,\nWhether an improved poppy, a perfect poem, or a rescued soul;\nWho has always looked for the best in others and given them the best he had;\nWhose life was an inspiration;\nWhose memory a benediction.",
"author": "Bessie Anderson Stanley"
},
"172": {
"quote": "Nothing takes the taste out of peanut butter quite like unrequited love.",
"author": "Charles M. Schulz"
},
"173": {
"quote": "Whatever you do, you need courage. Whatever course you decide upon, there is always someone to tell you that you are wrong. There are always difficulties arising that tempt you to believe your critics are right. To map out a course of action and follow it to an end requires some of the same courage that a soldier needs. Peace has its victories, but it takes brave men and women to win them.",
"author": "Ralph Waldo Emerson"
},
"174": {
"quote": "You never really understand a person until you consider things from his point of view... Until you climb inside of his skin and walk around in it.",
"author": "Harper Lee"
},
"175": {
"quote": "The easy confidence with which I know another man's religion is folly teaches me to suspect that my own is also.",
"author": "Mark Twain"
},
"176": {
"quote": "The marks humans leave are too often scars.",
"author": "John Green"
},
"177": {
"quote": "Remember, we're madly in love, so it's all right to kiss me anytime you feel like it.",
"author": "Suzanne Collins"
},
"178": {
"quote": "A lady's imagination is very rapid; it jumps from admiration to love, from love to matrimony in a moment.",
"author": "Jane Austen"
},
"179": {
"quote": "It would seem that Our Lord finds our desires not too strong, but too weak. We are half-hearted creatures, fooling about with drink and sex and ambition when infinite joy is offered us, like an ignorant child who wants to go on making mud pies in a slum because he cannot imagine what is meant by the offer of a holiday at the sea. We are far too easily pleased.",
"author": "C.S. Lewis"
},
"180": {
"quote": "We are what we pretend to be, so we must be careful about what we pretend to be.",
"author": "Kurt Vonnegut"
},
"181": {
"quote": "Our deepest fear is not that we are inadequate. Our deepest fear is that we are powerful beyond measure. It is our light, not our darkness that most frightens us. We ask ourselves, 'Who am I to be brilliant, gorgeous, talented, fabulous?' Actually, who are you not to be? You are a child of God. Your playing small does not serve the world. There is nothing enlightened about shrinking so that other people won't feel insecure around you. We are all meant to shine, as children do. We were born to make manifest the glory of God that is within us. It's not just in some of us; it's in everyone. And as we let our own light shine, we unconsciously give other people permission to do the same. As we are liberated from our own fear, our presence automatically liberates others.",
"author": "Marianne Williamson"
},
"182": {
"quote": "To die will be an awfully big adventure.",
"author": "J.M. Barrie"
},
"183": {
"quote": "A question that sometimes drives me hazy: am I or are the others crazy?",
"author": "Albert Einstein"
},
"184": {
"quote": "And in that moment, I swear we were infinite.",
"author": "Stephen Chbosky"
},
"185": {
"quote": "Books are a uniquely portable magic.",
"author": "Stephen King"
},
"186": {
"quote": "What a slut time is. She screws everybody.",
"author": "John Green"
},
"187": {
"quote": "One of the deep secrets of life is that all that is really worth the doing is what we do for others.",
"author": "Lewis Carroll"
},
"188": {
"quote": "The truth is rarely pure and never simple.",
"author": "Oscar Wilde"
},
"189": {
"quote": "I'm the one that's got to die when it's time for me to die, so let me live my life the way I want to.",
"author": "Jimi Hendrix"
},
"190": {
"quote": "I will take the sun in my mouth\nand leap into the ripe air \nAlive \nwith closed eyes\nto dash against darkness",
"author": "E.E. Cummings"
},
"191": {
"quote": "Marriage can wait, education cannot.",
"author": "Khaled Hosseini"
},
"192": {
"quote": "A book, too, can be a star, a living fire to lighten the darkness, leading out into the expanding universe.",
"author": "Madeleine L'Engle"
},
"193": {
"quote": "So it's not gonna be easy. It's going to be really hard; we're gonna have to work at this everyday, but I want to do that because I want you. I want all of you, forever, everyday. You and me... everyday.",
"author": "Nicholas Sparks"
},
"194": {
"quote": "We believe in ordinary acts of bravery, in the courage that drives one person to stand up for another.",
"author": "Veronica Roth"
},
"195": {
"quote": "Books are the ultimate Dumpees: put them down and they'll wait for you forever; pay attention to them and they always love you back.",
"author": "John Green"
},
"196": {
"quote": "It would seem that Our Lord finds our desires not too strong, but too weak. We are half-hearted creatures, fooling about with drink and sex and ambition when infinite joy is offered us, like an ignorant child who wants to go on making mud pies in a slum because he cannot imagine what is meant by the offer of a holiday at the sea. We are far too easily pleased.",
"author": "C.S. Lewis"
},
"197": {
"quote": "... a mind needs books as a sword needs a whetstone, if it is to keep its edge.",
"author": "George R.R. Martin"
},
"198": {
"quote": "There is nothing better than a friend, unless it is a friend with chocolate.",
"author": "Linda Grayson"
},
"199": {
"quote": "The easy confidence with which I know another man's religion is folly teaches me to suspect that my own is also.",
"author": "Mark Twain"
},
"200": {
"quote": "[Dean] My dear fellow, who will let you?\n\n[Roark] That's not the point. The point is, who will stop me?",
"author": "Ayn Rand"
},
"201": {
"quote": "There are infinite numbers between 0 and 1. There's .1 and .12 and .112 and an infinite collection of others. Of course, there is a bigger infinite set of numbers between 0 and 2, or between 0 and a million. Some infinities are bigger than other infinities. A writer we used to like taught us that. There are days, many of them, when I resent the size of my unbounded set. I want more numbers than I'm likely to get, and God, I want more numbers for Augustus Waters than he got. But, Gus, my love, I cannot tell you how thankful I am for our little infinity. I wouldn't trade it for the world. You gave me a forever within the numbered days, and I'm grateful.",
"author": "John Green"
},
"202": {
"quote": "Memories warm you up from the inside. But they also tear you apart.",
"author": "Haruki Murakami"
},
"203": {
"quote": "The truth.\" Dumbledore sighed. \"It is a beautiful and terrible thing, and should therefore be treated with great caution.",
"author": "J.K. Rowling"
},
"204": {
"quote": "The easy confidence with which I know another man's religion is folly teaches me to suspect that my own is also.",
"author": "Mark Twain"
},
"205": {
"quote": "The easy confidence with which I know another man's religion is folly teaches me to suspect that my own is also.",
"author": "Mark Twain"
},
"206": {
"quote": "Remember, if the time should come when you have to make a choice between what is right and what is easy, remember what happened to a boy who was good, and kind, and brave, because he strayed across the path of Lord Voldemort. Remember Cedric Diggory.",
"author": "J.K. Rowling"
},
"207": {
"quote": "No great mind has ever existed without a touch of madness.",
"author": "Aristotle"
},
"208": {
"quote": "I love you as certain dark things are to be loved, \nin secret, between the shadow and the soul.",
"author": "Pablo Neruda"
},
"209": {
"quote": "Tis better to have loved and lost\nThan never to have loved at all.",
"author": "Alfred Lord Tennyson"
},
"210": {
"quote": "Just when you think it can't get any worse, it can. And just when you think it can't get any better, it can.",
"author": "Nicholas Sparks"
},
"211": {
"quote": "Only the very weak-minded refuse to be influenced by literature and poetry.",
"author": "Cassandra Clare"
},
"212": {
"quote": "It's the possibility of having a dream come true that makes life interesting.",
"author": "Paulo Coelho"
},
"213": {
"quote": "It's so hard to forget pain, but it's even harder to remember sweetness. We have no scar to show for happiness. We learn so little from peace.",
"author": "Chuck Palahniuk"
},
"214": {
"quote": "Be nice to nerds. You may end up working for them. We all could.",
"author": "Charles J. Sykes"
},
"215": {
"quote": "Perhaps one did not want to be loved so much as to be understood.",
"author": "George Orwell"
},
"216": {
"quote": "Be not afraid of greatness. Some are born great, some achieve greatness, and others have greatness thrust upon them.",
"author": "William Shakespeare"
},
"217": {
"quote": "Do you remember me telling you we are practicing non-verbal spells, Potter?\"\n\"Yes,\" said Harry stiffly.\n\"Yes, sir.\"\n\"There's no need to call me \"sir\" Professor.\"\nThe words had escaped him before he knew what he was saying.",
"author": "J.K. Rowling"
},
"218": {
"quote": "What you're supposed to do when you don't like a thing is change it. If you can't change it, change the way you think about it. Don't complain.",
"author": "Maya Angelou"
},
"219": {
"quote": "There is only one good, knowledge, and one evil, ignorance.",
"author": "Socrates"
},
"220": {
"quote": "Happiness in intelligent people is the rarest thing I know.",
"author": "Ernest Hemingway"
},
"221": {
"quote": "The most wasted of all days is one without laughter.",
"author": "Nicolas Chamfort"
},
"222": {
"quote": "Better to die fighting for freedom then be a prisoner all the days of your life.",
"author": "Bob Marley"
},
"223": {
"quote": "I must not fear. Fear is the mind-killer. Fear is the little-death that brings total obliteration. I will face my fear. I will permit it to pass over me and through me. And when it has gone past I will turn the inner eye to see its path. Where the fear has gone there will be nothing. Only I will remain.",
"author": "Frank Herbert"
},
"224": {
"quote": "Yes: I am a dreamer. For a dreamer is one who can only find his way by moonlight, and his punishment is that he sees the dawn before the rest of the world.",
"author": "Oscar Wilde"
},
"225": {
"quote": "A person's a person, no matter how small.",
"author": "Dr. Seuss"
},
"226": {
"quote": "Thomas Edison's last words were \"<i>It's very beautiful over there</i>\". I don't know where there is, but I believe it's somewhere, and I hope it's beautiful.",
"author": "John Green"
},
"227": {
"quote": "Morality is simply the attitude we adopt towards people we personally dislike.",
"author": "Oscar Wilde"
},
"228": {
"quote": "From childhood's hour I have not been. As others were, I have not seen. As others saw, I could not awaken. My heart to joy at the same tone. And all I loved, I loved alone.",
"author": "Edgar Allan Poe"
},
"229": {
"quote": "When we honestly ask ourselves which person in our lives mean the most to us, we often find that it is those who, instead of giving advice, solutions, or cures, have chosen rather to share our pain and touch our wounds with a warm and tender hand. The friend who can be silent with us in a moment of despair or confusion, who can stay with us in an hour of grief and bereavement, who can tolerate not knowing, not curing, not healing and face with us the reality of our powerlessness, that is a friend who cares.",
"author": "Henri Nouwen"
},
"230": {
"quote": "When adults say, \"Teenagers think they are invincible\" with that sly, stupid smile on their faces, they don't know how right they are. We need never be hopeless, because we can never be irreparably broken. We think that we are invincible because we are. We cannot be born, and we cannot die. Like all energy, we can only change shapes and sizes and manifestations. They forget that when they get old. They get scared of losing and failing. But that part of us greater than the sum of our parts cannot begin and cannot end, and so it cannot fail.",
"author": "John Green"
},
"231": {
"quote": "Oh, I wouldn't mind, Hazel Grace. It would be a privilege to have my heart broken by you.",
"author": "John Green"
},
"232": {
"quote": "Numbing the pain for a while will make it worse when you finally feel it.",
"author": "J.K. Rowling"
},
"233": {
"quote": "It is one of the blessings of old friends that you can afford to be stupid with them.",
"author": "Ralph Waldo Emerson"
},
"234": {
"quote": "I finally understood what true love meant...love meant that you care for another person's happiness more than your own, no matter how painful the choices you face might be.",
"author": "Nicholas Sparks"
},
"235": {
"quote": "The one you love and the one who loves you are never, ever the same person.",
"author": "Chuck Palahniuk"
},
"236": {
"quote": "Books are the quietest and most constant of friends; they are the most accessible and wisest of counselors, and the most patient of teachers.",
"author": "Charles W. Eliot"
},
"237": {
"quote": "Have you tried talking to her?\" \n\"No. We've been punching her in the face repeatedly. What? You don't think that will work?",
"author": "Cassandra Clare"
},
"238": {
"quote": "Be careful about reading health books. Some fine day you'll die of a misprint.",
"author": "Markus Herz"
},
"239": {
"quote": "A person who has good thoughts cannot ever be ugly. You can have a wonky nose and a crooked mouth and a double chin and stick-out teeth, but if you have good thoughts they will shine out of your face like sunbeams and you will always look lovely.",
"author": "Roald Dahl"
},
"240": {
"quote": "Just because you have the emotional range of a teaspoon doesn't mean we all have.",
"author": "J.K. Rowling"
},
"241": {
"quote": "Anti-intellectualism has been a constant thread winding its way through our political and cultural life, nurtured by the false notion that democracy means that <i>'my ignorance is just as good as your knowledge.'</i>",
"author": "Isaac Asimov"
},
"242": {
"quote": "Music expresses that which cannot be put into words and that which cannot remain silent",
"author": "Victor hugo"
},
"243": {
"quote": "Each night, when I go to sleep, I die. And the next morning, when I wake up, I am reborn.",
"author": "Mahatma Gandhi"
},
"244": {
"quote": "You can't live your life for other people. You've got to do what's right for you, even if it hurts some people you love.",
"author": "Nicholas Sparks"
},
"245": {
"quote": "Real generosity towards the future lies in giving all to the present.",
"author": "Albert Camus"
},
"246": {
"quote": "Until I feared I would lose it, I never loved to read. One does not love breathing.",
"author": "Harper Lee"
},
"247": {
"quote": "When we love, we always strive to become better than we are. When we strive to become better than we are, everything around us becomes better too.",
"author": "Paulo Coelho"
},
"248": {
"quote": "I just want to be wonderful.",
"author": "Marilyn Monroe"
},
"249": {
"quote": "A question that sometimes drives me hazy: am I or are the others crazy?",
"author": "Albert Einstein"
},
"250": {
"quote": "Do you hate people?\n\nI don't hate them...I just feel better when they're not around.",