forked from msramalho/json-tv-quotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquotes.json
More file actions
3581 lines (3579 loc) · 116 KB
/
quotes.json
File metadata and controls
3581 lines (3579 loc) · 116 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
[{
"type": "tv",
"language": "eng",
"source": "Avatar the Last Airbender",
"quote": "Sometimes the best way to help yourself is to help someone else",
"author": "Iroh"
},
{
"type": "tv",
"language": "eng",
"source": "Avatar the Last Airbender",
"quote": "This tea is nothing more than hot leaf juice!",
"author": "Iroh"
},
{
"type": "tv",
"language": "eng",
"source": "Avatar the Last Airbender",
"quote": "This guy is too good he shoots fire from his brain",
"author": "Sokka"
},
{
"type": "tv",
"language": "eng",
"source": "Person Of Interest",
"quote": "Pain tethers me to the world",
"author": "Finch"
},
{
"type": "tv",
"language": "eng",
"source": "Person Of Interest",
"quote": "Intentions can be a fickle business.",
"author": "Finch"
},
{
"type": "tv",
"language": "eng",
"source": "Person Of Interest",
"quote": "I missed on purpose, jackass.",
"author": "Shaw"
},
{
"type": "movie",
"language": "eng",
"source": "Matrix",
"quote": "Never send a human to do a machine's job.",
"author": "Agent Smith"
},
{
"type": "movie",
"language": "eng",
"source": "Gone With the Wind",
"quote": "Frankly, my dear, I don't give a damn.",
"author": "Rhett Butler"
},
{
"type": "movie",
"language": "eng",
"source": "Matrix",
"quote": "Dodge this.",
"author": "Trinity"
},
{
"type": "movie",
"language": "eng",
"source": "Matrix",
"quote": "Stop trying to hit me and hit me.",
"author": "Morpheus"
},
{
"type": "movie",
"language": "eng",
"source": "Matrix",
"quote": "Do you think that's air you're breathing now?",
"author": "Morpheus"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "We're two different people. We can't have the same left.",
"author": "Charlie"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "You think I wouldn't know if the guy I'm dating is retarded?",
"author": "Dee"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "You gotta pay the troll toll, if you wanna get into that boy's soul.",
"author": "Frank"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "Storm comin', hatchet comin'!",
"author": "Charlie"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "I'm not fat. I'm cultivating mass.",
"author": "Mac"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "Cat in the wall, eh?! Okay, now you're talking my language.",
"author": "Charlie"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "Oh, shit. Look at that door, dude. See that door right there? The one marked 'pirate?' You think a pirate lives in there?",
"author": "Charlie"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "Fight Milk! The first alcoholic dairy based protein drink for bodyguards!",
"author": "Mac"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "Dayman, fighter of the Nightman, champion of the sun, you're a master of karate and friendship for everyone!",
"author": "Dennis and Charlie"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "See, I've always got an A, B and C strike plan to get us out of any potentially life-threatening situation.",
"author": "Mac"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "If you're in my room, you're always being filmed.",
"author": "Dennis"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "I'm not gonna be buried in a grave. When I'm dead, just throw me in the trash.",
"author": "Frank"
},
{
"type": "tv",
"language": "eng",
"source": "Person Of Interest",
"quote": "I looked for an 'I'm-sorry-I-got-you-shot' card, but they were all out.",
"author": "Joss Carter"
},
{
"type": "tv",
"language": "eng",
"source": "Person Of Interest",
"quote": "If you really need a mystery, I recommend the human heart.",
"author": "Harold Finch"
},
{
"type": "tv",
"language": "eng",
"source": "Mr. Robot",
"quote": "The world is a dangerous place, Elliott, not because of those who do evil, but because of those who look on and do nothing.",
"author": "Mr. Robot"
},
{
"type": "tv",
"language": "eng",
"source": "The IT Crowd",
"quote": "Did you see that ludicrous display last night?",
"author": "Moss"
},
{
"type": "tv",
"language": "eng",
"source": "The IT Crowd",
"quote": "0118 999 881 999 119 7253",
"author": "Moss"
},
{
"type": "tv",
"language": "eng",
"source": "The IT Crowd",
"quote": "The Elders of the Internet know who I am?!",
"author": "Jen"
},
{
"type": "movie",
"language": "eng",
"source": "The Prestige",
"quote": "They'll beg you and they'll flatter you for the secret, but as soon as you give it up... you'll be nothing to them",
"author": "Alfred Borden"
},
{
"type": "tv",
"language": "eng",
"source": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb",
"quote": "They have neither the time, the training, nor the inclination for strategic thought. I can no longer sit back and allow Communist infiltration, Communist indoctrination, Communist subversion and the international Communist conspiracy to sap and impurify all of our precious bodily fluids.",
"author": "Jack D. Ripper"
},
{
"type": "tv",
"language": "eng",
"source": "Game of Thrones",
"quote": "When you play the game of thrones, you win or you die. There is no middle ground.",
"author": "Cersei Lannister"
},
{
"type": "movie",
"language": "eng",
"source": "Creator",
"quote": "The Love Formula: Add up the number of times you think about the lady each day. Subtract from the total the number of times you think about yourself each day.If the remainder is more lady, and less yourself, then it's love.",
"author": "Dr. Harry Wolper"
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "If I stop drinking all at once, I'm afraid the cumulative hangover will kill me."
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "Hey, proposition: first person to untie me—guy or gal—I will let him or her give me a handy. Come on, let's share the milk of human kindness!"
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "Oh, I'm sorry. I guess I skipped the Emily Post chapter on how to introduce your mother to a hooker."
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "He's not coming back from that. That chick was, like, the Pele of anal."
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "I'm not saying I invented the turtleneck, but I was the first person to realize its potential as a tactical garment. The tactical turtleneck! The … tactleneck."
},
{
"type": "movie",
"language": "eng",
"source": "The Dark Knight Rises",
"quote": "I do fear death. I fear dying in here while my city burns. And there's no one there to save it.",
"author": "Bruce Wayne"
},
{
"type": "tv",
"language": "eng",
"source": "The IT Crowd",
"quote": "Have you tried turning it off and on again?",
"author": "Roy"
},
{
"type": "tv",
"language": "eng",
"source": "Game of Thrones",
"quote": "Tears aren't a woman's only weapon. The best one's between your legs.",
"author": "Cersei Lannister"
},
{
"type": "tv",
"language": "eng",
"source": "Game of Thrones",
"quote": "Never forget what you are, the rest of the world will not. Wear it like armor and it can never be used to hurt you.",
"author": "Tyrion Lannister"
},
{
"type": "tv",
"language": "eng",
"source": "Game of Thrones",
"quote": "You know nothing, Jon Snow.",
"author": "Ygritte"
},
{
"type": "tv",
"language": "eng",
"source": "Game of Thrones",
"quote": "Winter is coming.",
"author": "The Starks"
},
{
"type": "tv",
"language": "eng",
"source": "Game of Thrones",
"quote": "Hodor.",
"author": "Hodor"
},
{
"type": "tv",
"language": "eng",
"source": "Game of Thrones",
"quote": "Any man who must say \"I am the king\" is no true king.",
"author": "Tyrion Lannister"
},
{
"type": "tv",
"language": "eng",
"source": "Game of Thrones",
"quote": "A Lannister always pays his debts.",
"author": "Tyrion Lannister"
},
{
"type": "tv",
"language": "eng",
"source": "Rick and Morty",
"quote": "They're just robots, Morty! It's OK to shoot them! They're robots!",
"author": "Rick Sanchez"
},
{
"type": "tv",
"language": "eng",
"source": "Dexter",
"quote": "Suprise, motherfucker!!",
"author": "Doakes"
},
{
"type": "tv",
"language": "eng",
"source": "Dexter",
"quote": "Shut up, cunt!!",
"author": "The trinity killer"
},
{
"type": "movie",
"language": "eng",
"source": "Fight Club",
"quote": "You met me at a very strange time in my life."
},
{
"type": "movie",
"language": "eng",
"source": "Taken",
"quote": "I will look for you, I will find you, and I will kill you.",
"author": "Bryan Mills"
},
{
"type": "movie",
"language": "eng",
"source": "Kingsman: Secret Service",
"quote": "There is nothing noble in being superior to your fellow man; true nobility is being superior to your former self.",
"author": "Harry Hart"
},
{
"type": "movie",
"language": "eng",
"source": "Into The Wild",
"quote": "You are wrong if you think joy emanates only or principally from human relationships. God has placed it all around us. It is in everything and anything we might experience. We just have to have the courage to turn against our habitual lifestyle and engage in unconventional living.",
"author": "Jon Krakauer"
},
{
"type": "movie",
"language": "eng",
"source": "X-Men: Days of Future Past",
"quote": "Just because someone stumbles and loses their path, doesn't mean they're lost forever.",
"author": "Charles Xavier/Professor X"
},
{
"type": "movie",
"language": "eng",
"source": "Titanic",
"quote": "Jack! Come back! Come back! Come back!.",
"author": "Rose"
},
{
"type": "tv",
"language": "eng",
"source": "Red Dwarf",
"quote": "They're all dead. Everybody's dead, Dave.",
"author": "Holly"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "Hello fellow American. This you should vote me. I leave power. Good. Thank you, thank you.",
"author": "Dennis"
},
{
"type": "tv",
"language": "eng",
"source": "Always Sunny in Philadelphia",
"quote": "I'm a-- full-on rapist, you know? Uh, Africans, dyslexics, children, that sorta thing. ",
"author": "Charlie"
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "If I stop drinking all at once, I'm afraid the cumulative hangover will kill me.",
"author": "Sterling Archer"
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "Hey, proposition: first person to untie me—guy or gal—I will let him or her give me a handy. Come on, let's share the milk of human kindness!",
"author": "Sterling Archer"
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "He's not coming back from that. That chick was, like, the Pele of anal.",
"author": "Sterling Archer"
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "I'm not saying I invented the turtleneck, but I was the first person to realize its potential as a tactical garment. The tactical turtleneck! The … tactleneck.",
"author": "Sterling Archer"
},
{
"type": "movie",
"language": "eng",
"source": "Zoolander",
"quote": "I'm pretty sure there's a lot more to life than being really, really good looking. And I plan on finding out what that is.",
"author": "Derek Zoolander"
},
{
"type": "tv",
"language": "eng",
"source": "Westworld",
"quote": "You can't play God without being acquainted with the devil.",
"author": "Dr. Robert Ford"
},
{
"type": "tv",
"language": "eng",
"source": "Grey's Anatomy",
"quote": "Oh, screw beautiful. I'm brilliant. If you want to appease me, compliment my brain!",
"author": "Christina Yang"
},
{
"type": "movie",
"language": "eng",
"source": "Dark Knight Rises",
"quote": "Ah yes, I was wondering what would break first. Your spirit, or your body?",
"author": "Bane"
},
{
"type": "movie",
"language": "eng",
"source": "Raising Arizona",
"quote": "I'll be taking these Huggies and-uh-whatever cash ya got.",
"author": "H.I. McDonnough"
},
{
"type": "movie",
"language": "eng",
"source": "Raising Arizona",
"quote": "Aw, it ain't armed robbery if the gun ain't loaded.",
"author": "H.I. McDonnough"
},
{
"type": "movie",
"language": "eng",
"source": "Glengarry Glen Ross",
"quote": "You see this watch? That watch cost more than your car.",
"author": "Blake"
},
{
"type": "movie",
"language": "eng",
"source": "The Dark Knight",
"quote": "Why So Serious?",
"author": "Joker"
},
{
"type": "movie",
"language": "eng",
"source": "The Dark Knight",
"quote": "You either die a hero or live long enough to see yourself become the villian.",
"author": "Harvey Dent"
},
{
"type": "movie",
"language": "eng",
"source": "Glengarry Glen Ross",
"quote": "Put that coffee down! Coffee is for closers only.",
"author": "Blake"
},
{
"type": "movie",
"language": "eng",
"source": "Avengers: Infinity War",
"quote": "Mr. Stark, I don't feel so good",
"author": "Peter Parker/Spiderman"
},
{
"type": "movie",
"language": "eng",
"source": "Dark Knight Rises",
"quote": "I AM the League of Shadows, and I'm here to fulfill Ra's al Ghul's destiny!",
"author": "Bane"
},
{
"type": "movie",
"language": "eng",
"source": "Iron Man",
"quote": "Get ready to fight",
"author": "Stan Lee"
},
{
"type": "movie",
"language": "eng",
"source": "Dark Knight Rises",
"quote": "Calm down, Doctor! Now's not the time for fear. That comes later.",
"author": "Bane"
},
{
"type": "movie",
"language": "eng",
"source": "Love Story (1970)",
"quote": "Love means never having to say you're sorry.",
"author": "Erich Segal"
},
{
"type": "tv",
"language": "eng",
"source": "Westworld",
"quote": "These violent delights have violent ends.",
"author": "Dolores Abernathy"
},
{
"type": "tv",
"language": "eng",
"source": "Rick and Morty",
"quote": "I'm sorry, but your opinion means very little to me",
"author": "Rick Sanchez"
},
{
"type": "movie",
"language": "eng",
"source": "Thor: Ragnarok",
"quote": "Another day another Doug",
"author": "Korg"
},
{
"type": "movie",
"language": "eng",
"source": "Avengers: Infinity War",
"quote": "Bring me Thanos!",
"author": "Thor"
},
{
"type": "movie",
"language": "eng",
"source": "To Kill a Mockingbird",
"quote": "The one thing that doesn't abide by majority rule is a person's conscience.",
"author": "Atticus Finch"
},
{
"type": "movie",
"language": "eng",
"source": "Vanilla Sky",
"quote": "Just remember, the sweet is never as sweet without the sour.",
"author": "Brian"
},
{
"type": "movie",
"language": "eng",
"source": "Acid",
"quote": "What can you give the world besides an iPhone charger?",
"author": "Alexander"
},
{
"type": "movie",
"language": "eng",
"source": "The Wolf of Wall Street",
"quote": "You gonna have to excuse my friend",
"author": "Jordan"
},
{
"type": "tv",
"language": "eng",
"source": "M*A*S*H",
"quote": "Ladies and Gentlemen take my advice, pull do your pants and slide on the ice",
"author": "Dr. Sidney Friedman"
},
{
"type": "tv",
"language": "eng",
"source": "M*A*S*H",
"quote": "I do one thing at a time, I do it very well. And then, I move on",
"author": "Dr. Charles Emmerson-Winchester III"
},
{
"type": "movie",
"language": "eng",
"source": "The Green Mile",
"quote": "We each owe a death - there are no exceptions - but, oh God, sometimes the Green Mile seems so long",
"author": "Paul Edgecomb"
},
{
"type": "movie",
"language": "eng",
"source": "Young Frankenstein",
"quote": "There wolf; there castle",
"author": "Igor"
},
{
"type": "tv",
"language": "eng",
"source": "A Bit of Fry & Laurie",
"quote": "Hold the newsreader's nose squarely, waiter, or friendly milk will countermand my trousers",
"author": "Stephen Fry"
},
{
"type": "movie",
"language": "eng",
"source": "Forrest Gump",
"quote": "Run, Forrest, run!",
"author": "Genny Curran"
},
{
"type": "movie",
"language": "eng",
"source": "Iron Man 3",
"quote": "We create our own demons",
"author": "Tony Stark"
},
{
"type": "movie",
"language": "eng",
"source": "The Godfather",
"quote": "I'm gonna make him an offer he can't refuse.",
"author": "Don Corleone"
},
{
"type": "movie",
"language": "eng",
"source": "The Shawshank Redemption",
"quote": "Hope is a good thing, maybe the best of things, and no good thing ever dies.",
"author": "Andy Dufresne"
},
{
"type": "movie",
"language": "eng",
"source": "Pacific Rim",
"quote": "Today, at the edge of our hope, at the end of our time, we have chosen not only to believe in ourselves, but in each other. Today we face the monsters that are at our door. Today, we take the fight to them. Today we are canceling the apocalypse!",
"author": "Stacker Pentecost"
},
{
"type": "movie",
"language": "eng",
"source": "The Avengers",
"quote": "We have a hulk!",
"author": "Tony Stark"
},
{
"type": "tv",
"language": "eng",
"source": "Futurama",
"quote": "I say the whole world must learn of our peaceful ways... by force!",
"author": "Bender"
},
{
"type": "tv",
"language": "eng",
"source": "Tokyo Ghoul",
"quote": "Never trust anyone too much, remember the devil was once an angel.",
"author": "Kaneki Ken"
},
{
"type": "movie",
"language": "eng",
"source": "Star Wars Episode V: The Empire Strikes Back",
"quote": "No. Try not. Do… or do not. There is no try.",
"author": "Yoda"
},
{
"type": "movie",
"language": "eng",
"source": "Braveheart",
"quote": "They may take our lives, but they'll never take our freedom!",
"author": "William Wallace"
},
{
"type": "movie",
"language": "eng",
"source": "Scarface",
"quote": "The eyes, Chico. They never lie",
"author": "Tony Montana"
},
{
"type": "movie",
"language": "eng",
"source": "Kill Bill: Vol.1",
"quote": "Revenge is never a straight line. It's a forest. And like a forest, it's easy to lose your way...to get lost...to forget where you came in.",
"author": "Hattori Hanzo"
},
{
"type": "movie",
"language": "eng",
"source": "Dr. Strangelove",
"quote": "Gentlemen, you can't fight in here! This is the war room!",
"author": "President Merkin Muffley"
},
{
"type": "tv",
"language": "eng",
"source": "Naruto",
"quote": "If you do not like your destination, do not accept. Instead, have the courage to change it the way you want it to be.",
"author": "Naruto Uzumaki"
},
{
"type": "tv",
"language": "eng",
"source": "Naruto",
"quote": "If you have no reason to be alive, it is the same as being dead.",
"author": "Naruto Uzumaki"
},
{
"type": "tv",
"language": "eng",
"source": "Naruto",
"quote": "When a man learns to love, he has to bear the risk of hatred.",
"author": "Madara Uchiha"
},
{
"type": "movie",
"language": "eng",
"source": "Watchmen",
"quote": "I'm not locked in here with you. You're locked in here with me!",
"author": "Rorschach"
},
{
"type": "movie",
"language": "eng",
"source": "Avengers: Endgame",
"quote": "I Love You 3000",
"author": "Morgan"
},
{
"type": "movie",
"language": "eng",
"source": "As Good as It Gets",
"quote": "People who talk in metaphors oughta shampoo my crotch.",
"author": "Melvin Udall"
},
{
"type": "tv",
"language": "eng",
"source": "Naruto",
"quote": "There is no advantage to living life on the run.",
"author": "Shikamaru Nara"
},
{
"type": "tv",
"language": "eng",
"source": "Supernatural",
"quote": "Decide to be fine until the end of the week. Make yourself smile, because you're alive and that's your job. Then do it again the next week.",
"author": "Frank"
},
{
"type": "tv",
"language": "eng",
"source": "The Big Bang Theory",
"quote": "Scissors cuts paper, paper covers rock, rock crushes lizard, lizard poisons Spock, Spock smashes scissors, scissors decapitates lizard, lizard eats paper, paper disproves Spock, Spock vaporizes rock, and as it always has, rock crushes scissors.",
"author": "Sheldon"
},
{
"type": "games",
"language": "pt-br",
"source": "League of Legends",
"quote": "A morte é como o vento, está sempre ao meu lado.",
"author": "Yasuo"
},
{
"type": "tv",
"language": "eng",
"source": "Rick and Morty",
"quote": "Wubba lubba dub dub!",
"author": "Rick"
},
{
"type": "movie",
"language": "eng",
"source": "Star Wars. The Empire Strikes Back",
"quote": "No, I am your father",
"author": "Darth Vader"
},
{
"type": "tv",
"language": "eng",
"source": "The flintstones",
"quote": "yabadabadoo!",
"author": "Fred Flintstone"
},
{
"type": "movie",
"language": "eng",
"source": "Coach Carter",
"quote": "Our deepest fear is not that we are inadequate. Our deepest fear is that we are powerful beyond measure.",
"author": "Timo Cruz"
},
{
"type": "movie",
"language": "eng",
"source": "Avengers: Infinity War",
"quote": "The hardest choices require the strongest wills.",
"author": "Thanos"
},
{
"type": "tv",
"language": "eng",
"source": "Chernobyl",
"quote": "Every lie we tell incurs a debt to the truth. Sooner or later that debt is paid.",
"author": "Valery Legasov"
},
{
"type": "movie",
"language": "eng",
"source": "The Green Mile",
"quote": "People hurt the ones they love. That's how it is all around the world",
"author": "John Coffey"
},
{
"type": "tv",
"language": "eng",
"source": "Mr. Robot",
"quote": "Is that what God does? He helps? Tell me, why didn't God help my innocent friend who died for no reason while the guilty roam free? Okay, fine. Forget the one-offs. How about the countless wars declared in his name? Okay, fine. Let's skip the random, meaningless murder for a second, shall we? How about the racist, sexist, phobia soup we've all been drowning in because of him? And I'm not just talking about Jesus. I'm talking about all organized religion... exclusive groups created to manage control, a dealer getting people hooked on the drug of hope, his followers nothing but addicts who want their hit of bullshit to keep their... their dopamine of ignorance, addicts afraid to believe the truth...that there is no order, there's no power, that all religions are just metastasizing mind worms meant to divide us so it's easier to rule us by the charlatans that want to run us. All we are to them are paying fanboys of their poorly written sci-fi franchise. If I don't listen to my imaginary friend, why the f... should I listen to yours? People think their worship's some key to happiness. That's just how he owns you. Even I'm not crazy enough to believe that distortion of reality. So f... God. He's not a good enough scapegoat for me.",
"author": "Elliot Alderson"
},
{
"type": "tv",
"language": "eng",
"source": "Silicon Valley",
"quote": "People don't wanna follow an idea, they wanna follow a leader.",
"author": "Jared"
},
{
"type": "movie",
"language": "eng",
"source": "Harry Potter and the Order of the Phoenix",
"quote": "We've all got both light and dark inside us. What matters is the part we choose to act on...that's who we really are.",
"author": "Sirius Black"
},
{
"type": "movie",
"language": "eng",
"source": "Harry Potter and the Goblet of Fire",
"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": "Sirius Black"
},
{
"type": "movie",
"language": "eng",
"source": "Kung fu Panda",
"quote": "One often meets his destiny on the road he takes to avoid it.",
"author": "Master Oogway"
},
{
"type": "movie",
"language": "eng",
"source": "Pursuit of Happyness",
"quote": "People can't do somethin' themselves, they wanna tell you you can't do it. If you want somethin', go get it. Period.",
"author": "Chris Gardner (Will Smith)"
},
{
"type": "movie",
"language": "eng",
"source": "The Big Lebowski",
"quote": "That rug really tied the room together, did it not?",
"author": "The Dude (Jeff Bridges)"
},
{
"type": "movie",
"language": "eng",
"source": "The Great Gatsby",
"quote": "So we beat on, boats against the current, borne back ceaselessly into the past",
"author": "F. Scott Fitzgerald"
},
{
"type": "movie",
"language": "eng",
"source": "The Godfather Part II",
"quote": "Keep your friends close, but your enemies closer.",
"author": "Michael Corleone"
},
{
"type": "movie",
"language": "eng",
"source": "Star Wars",
"quote": "May the Force be with you.",
"author": "Han Solo"
},
{
"type": "movie",
"language": "eng",
"source": "The Hobbit",
"quote": "Loyalty, Honor, A willing heart, i can ask no more than that.",
"author": "J. R. R. Tolkien"
},
{
"type": "movie",
"language": "eng",
"source": "Avengers infinity war",
"quote": "“Dread it, run from it, destiny arrives all the same..",
"author": "Thanos"
},
{
"type": "movie",
"language": "eng",
"source": "the social network",
"quote": "A million dollars isn't cool. You know what's cool? A billion dollars..",
"author": "Ben Mezrich"
},
{
"type": "movie",
"language": "rus",
"source": "Anarchy",
"quote": "The film tells about the \"cruel games\" of prisoners and the important role of the administration, which controls them using a denunciation system.",
"author": "Igor Gostev"
},
{
"type": "movie",
"language": "eng",
"source": "The Fall",
"quote": "What a mystery this world, one day you love them and the next day you want to kill them a thousand times over.",
"author": "Blue Bandit"
},
{
"type": "movie",
"language": "eng",
"source": "The Mists of Avalon",
"quote": "No man or woman can live another's fate.",
"author": "Viviane"
},
{
"type": "tv",
"language": "eng",
"source": "12 Monkeys",
"quote": "All living things can travel through time. It's simple, really. Just wait a moment, and then another, and another. Do this often enough and you will have arrived at tomorrow. Enough tomorrows and you will be dead, adrift without power or patience. At the very end of time, you will ask yourself, \"Where am I right now, and what have I done?\" You will have grown old. You will have hoped, and you will have let go of hope. You will have tried, and you will have failed. Shaped by time and you are that you are not meant nor wish to be and you may be left with someone you loved and all the horrible things you've done for them until finally you will lose the very last thing you have left, yourself.",
"author": "Katarina Jones"
},
{
"type": "tv",
"language": "eng",
"source": "Point Break",
"quote": "We're all going to die. The only question is how.",
"author": "Bodhi"
},
{
"type": "tv",
"language": "eng",
"source": "Point Break",
"quote": "The man that pushes the boundaries tends to break.",
"author": "Bodhi"
},
{
"type": "tv",
"language": "eng",
"source": "Rick and Morty",
"quote": "Nobody exists on purpose. Nobody belongs anywhere. Everybody's gonna die. Come watch TV.",
"author": "Morty Smith"
},
{
"type": "tv",
"language": "eng",
"source": "Rick and Morty",
"quote": "Life is effort and I'll stop when I die!",
"author": "Jerry Smith"
},
{
"type": "tv",
"language": "eng",
"source": "F is for Family",
"quote": "Oh ho, you're lucky a priest is taking me into the woods!",
"author": "Frank Murphy"
},
{
"type": "tv",
"language": "eng",
"source": "Archer",
"quote": "I am not slurring my words, I'm talking in cursive.",