-
Notifications
You must be signed in to change notification settings - Fork 1
/
.jokes.json
2270 lines (2270 loc) · 55.6 KB
/
.jokes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": 1,
"type": "general",
"setup": "What did the fish say when it hit the wall?",
"punchline": "Dam."
},
{
"id": 2,
"type": "general",
"setup": "How do you make a tissue dance?",
"punchline": "You put a little boogie on it."
},
{
"id": 3,
"type": "general",
"setup": "What's Forrest Gump's password?",
"punchline": "1Forrest1"
},
{
"id": 4,
"type": "general",
"setup": "What do you call a belt made out of watches?",
"punchline": "A waist of time."
},
{
"id": 5,
"type": "general",
"setup": "Why can't bicycles stand on their own?",
"punchline": "They are two tired"
},
{
"id": 6,
"type": "general",
"setup": "How does a train eat?",
"punchline": "It goes chew, chew"
},
{
"id": 7,
"type": "general",
"setup": "What do you call a singing Laptop",
"punchline": "A Dell"
},
{
"id": 8,
"type": "general",
"setup": "How many lips does a flower have?",
"punchline": "Tulips"
},
{
"id": 9,
"type": "general",
"setup": "How do you organize an outer space party?",
"punchline": "You planet"
},
{
"id": 10,
"type": "general",
"setup": "What kind of shoes does a thief wear?",
"punchline": "Sneakers"
},
{
"id": 11,
"type": "general",
"setup": "What's the best time to go to the dentist?",
"punchline": "Tooth hurty."
},
{
"id": 12,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n A broken pencil. \n A broken pencil who?",
"punchline": "Never mind. It's pointless."
},
{
"id": 13,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n Cows go. \n Cows go who?",
"punchline": "No, cows go moo."
},
{
"id": 14,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n Little old lady. \n Little old lady who?",
"punchline": "I didn't know you could yodel!"
},
{
"id": 15,
"type": "programming",
"setup": "What's the best thing about a Boolean?",
"punchline": "Even if you're wrong, you're only off by a bit."
},
{
"id": 16,
"type": "programming",
"setup": "What's the object-oriented way to become wealthy?",
"punchline": "Inheritance"
},
{
"id": 17,
"type": "programming",
"setup": "Where do programmers like to hangout?",
"punchline": "The Foo Bar."
},
{
"id": 18,
"type": "programming",
"setup": "Why did the programmer quit his job?",
"punchline": "Because he didn't get arrays."
},
{
"id": 19,
"type": "general",
"setup": "Did you hear about the two silk worms in a race?",
"punchline": "It ended in a tie."
},
{
"id": 20,
"type": "general",
"setup": "What do you call a laughing motorcycle?",
"punchline": "A Yamahahahaha."
},
{
"id": 21,
"type": "general",
"setup": "A termite walks into a bar and says...",
"punchline": "'Where is the bar tended?'"
},
{
"id": 22,
"type": "general",
"setup": "What does C.S. Lewis keep at the back of his wardrobe?",
"punchline": "Narnia business!"
},
{
"id": 23,
"type": "programming",
"setup": "Why do programmers always mix up Halloween and Christmas?",
"punchline": "Because Oct 31 == Dec 25"
},
{
"id": 24,
"type": "programming",
"setup": "A SQL query walks into a bar, walks up to two tables and asks...",
"punchline": "'Can I join you?'"
},
{
"id": 25,
"type": "programming",
"setup": "How many programmers does it take to change a lightbulb?",
"punchline": "None that's a hardware problem"
},
{
"id": 26,
"type": "programming",
"setup": "If you put a million monkeys at a million keyboards, one of them will eventually write a Java program",
"punchline": "the rest of them will write Perl"
},
{
"id": 27,
"type": "programming",
"setup": "['hip', 'hip']",
"punchline": "(hip hip array)"
},
{
"id": 28,
"type": "programming",
"setup": "To understand what recursion is...",
"punchline": "You must first understand what recursion is"
},
{
"id": 29,
"type": "programming",
"setup": "There are 10 types of people in this world...",
"punchline": "Those who understand binary and those who don't"
},
{
"id": 30,
"type": "general",
"setup": "What did the duck say when he bought lipstick?",
"punchline": "Put it on my bill"
},
{
"id": 31,
"type": "general",
"setup": "What happens to a frog's car when it breaks down?",
"punchline": "It gets toad away"
},
{
"id": 32,
"type": "general",
"setup": "did you know the first French fries weren't cooked in France?",
"punchline": "they were cooked in Greece"
},
{
"id": 33,
"type": "programming",
"setup": "Which song would an exception sing?",
"punchline": "Can't catch me - Avicii"
},
{
"id": 34,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n Opportunity.",
"punchline": "That is impossible. Opportunity doesn’t come knocking twice!"
},
{
"id": 35,
"type": "programming",
"setup": "Why do Java programmers wear glasses?",
"punchline": "Because they don't C#"
},
{
"id": 36,
"type": "general",
"setup": "Why did the mushroom get invited to the party?",
"punchline": "Because he was a fungi."
},
{
"id": 37,
"type": "general",
"setup": "Why did the mushroom get invited to the party?",
"punchline": "Because he was a fungi."
},
{
"id": 38,
"type": "general",
"setup": "I'm reading a book about anti-gravity...",
"punchline": "It's impossible to put down"
},
{
"id": 39,
"type": "general",
"setup": "If you're American when you go into the bathroom, and American when you come out, what are you when you're in there?",
"punchline": "European"
},
{
"id": 40,
"type": "general",
"setup": "Want to hear a joke about a piece of paper?",
"punchline": "Never mind...it's tearable"
},
{
"id": 41,
"type": "general",
"setup": "I just watched a documentary about beavers.",
"punchline": "It was the best dam show I ever saw"
},
{
"id": 42,
"type": "general",
"setup": "If you see a robbery at an Apple Store...",
"punchline": "Does that make you an iWitness?"
},
{
"id": 43,
"type": "general",
"setup": "A ham sandwhich walks into a bar and orders a beer. The bartender says...",
"punchline": "I'm sorry, we don't serve food here"
},
{
"id": 44,
"type": "general",
"setup": "Why did the Clydesdale give the pony a glass of water?",
"punchline": "Because he was a little horse"
},
{
"id": 45,
"type": "general",
"setup": "If you boil a clown...",
"punchline": "Do you get a laughing stock?"
},
{
"id": 46,
"type": "general",
"setup": "Finally realized why my plant sits around doing nothing all day...",
"punchline": "He loves his pot."
},
{
"id": 47,
"type": "general",
"setup": "Don't look at the eclipse through a colander.",
"punchline": "You'll strain your eyes."
},
{
"id": 48,
"type": "general",
"setup": "I bought some shoes from a drug dealer.",
"punchline": "I don't know what he laced them with, but I was tripping all day!"
},
{
"id": 49,
"type": "general",
"setup": "Why do chicken coops only have two doors?",
"punchline": "Because if they had four, they would be chicken sedans"
},
{
"id": 50,
"type": "general",
"setup": "What do you call a factory that sells passable products?",
"punchline": "A satisfactory"
},
{
"id": 51,
"type": "general",
"setup": "When a dad drives past a graveyard: Did you know that's a popular cemetery?",
"punchline": "Yep, people are just dying to get in there"
},
{
"id": 52,
"type": "general",
"setup": "Why did the invisible man turn down the job offer?",
"punchline": "He couldn't see himself doing it"
},
{
"id": 53,
"type": "general",
"setup": "How do you make holy water?",
"punchline": "You boil the hell out of it"
},
{
"id": 54,
"type": "general",
"setup": "I had a dream that I was a muffler last night.",
"punchline": "I woke up exhausted!"
},
{
"id": 55,
"type": "general",
"setup": "Why is peter pan always flying?",
"punchline": "Because he neverlands"
},
{
"id": 56,
"type": "programming",
"setup": "How do you check if a webpage is HTML5?",
"punchline": "Try it out on Internet Explorer"
},
{
"id": 57,
"type": "general",
"setup": "What do you call a cow with no legs?",
"punchline": "Ground beef!"
},
{
"id": 58,
"type": "general",
"setup": "I dropped a pear in my car this morning.",
"punchline": "You should drop another one, then you would have a pair."
},
{
"id": 59,
"type": "general",
"setup": "Lady: How do I spread love in this cruel world?",
"punchline": "Random Dude: [...💘]"
},
{
"id": 60,
"type": "programming",
"setup": "A user interface is like a joke.",
"punchline": "If you have to explain it then it is not that good."
},
{
"id": 61,
"type": "knock-knock",
"setup": "Knock knock. \n Who's there? \n Hatch. \n Hatch who?",
"punchline": "Bless you!"
},
{
"id": 62,
"type": "general",
"setup": "What do you call sad coffee?",
"punchline": "Despresso."
},
{
"id": 63,
"type": "general",
"setup": "Why did the butcher work extra hours at the shop?",
"punchline": "To make ends meat."
},
{
"id": 64,
"type": "general",
"setup": "Did you hear about the hungry clock?",
"punchline": "It went back four seconds."
},
{
"id": 65,
"type": "general",
"setup": "Well...",
"punchline": "That’s a deep subject."
},
{
"id": 66,
"type": "general",
"setup": "Did you hear the story about the cheese that saved the world?",
"punchline": "It was legend dairy."
},
{
"id": 67,
"type": "general",
"setup": "Did you watch the new comic book movie?",
"punchline": "It was very graphic!"
},
{
"id": 68,
"type": "general",
"setup": "I started a new business making yachts in my attic this year...",
"punchline": "The sails are going through the roof."
},
{
"id": 69,
"type": "general",
"setup": "I got hit in the head by a soda can, but it didn't hurt that much...",
"punchline": "It was a soft drink."
},
{
"id": 70,
"type": "general",
"setup": "I can't tell if i like this blender...",
"punchline": "It keeps giving me mixed results."
},
{
"id": 71,
"type": "general",
"setup": "I couldn't get a reservation at the library...",
"punchline": "They were fully booked."
},
{
"id": 72,
"type": "programming",
"setup": "I was gonna tell you a joke about UDP...",
"punchline": "...but you might not get it."
},
{
"id": 73,
"type": "programming",
"setup": "The punchline often arrives before the set-up.",
"punchline": "Do you know the problem with UDP jokes?"
},
{
"id": 74,
"type": "programming",
"setup": "Why do C# and Java developers keep breaking their keyboards?",
"punchline": "Because they use a strongly typed language."
},
{
"id": 75,
"type": "general",
"setup": "What do you give to a lemon in need?",
"punchline": "Lemonaid."
},
{
"id": 76,
"type": "general",
"setup": "Never take advice from electrons.",
"punchline": "They are always negative."
},
{
"id": 78,
"type": "general",
"setup": "Hey, dad, did you get a haircut?",
"punchline": "No, I got them all cut."
},
{
"id": 79,
"type": "general",
"setup": "What time is it?",
"punchline": "I don't know... it keeps changing."
},
{
"id": 80,
"type": "general",
"setup": "A weasel walks into a bar. The bartender says, \"Wow, I've never served a weasel before. What can I get for you?\"",
"punchline": "Pop,goes the weasel."
},
{
"id": 81,
"type": "general",
"setup": "Bad at golf?",
"punchline": "Join the club."
},
{
"id": 82,
"type": "general",
"setup": "Can a kangaroo jump higher than the Empire State Building?",
"punchline": "Of course. The Empire State Building can't jump."
},
{
"id": 83,
"type": "general",
"setup": "Can February march?",
"punchline": "No, but April may."
},
{
"id": 84,
"type": "general",
"setup": "Can I watch the TV?",
"punchline": "Yes, but don’t turn it on."
},
{
"id": 85,
"type": "general",
"setup": "Dad, can you put my shoes on?",
"punchline": "I don't think they'll fit me."
},
{
"id": 86,
"type": "general",
"setup": "Did you hear about the bread factory burning down?",
"punchline": "They say the business is toast."
},
{
"id": 87,
"type": "general",
"setup": "Did you hear about the chameleon who couldn't change color?",
"punchline": "They had a reptile dysfunction."
},
{
"id": 88,
"type": "general",
"setup": "Did you hear about the cheese factory that exploded in France?",
"punchline": "There was nothing left but de Brie."
},
{
"id": 89,
"type": "general",
"setup": "Did you hear about the cow who jumped over the barbed wire fence?",
"punchline": "It was udder destruction."
},
{
"id": 90,
"type": "general",
"setup": "Did you hear about the guy who invented Lifesavers?",
"punchline": "They say he made a mint."
},
{
"id": 91,
"type": "general",
"setup": "Did you hear about the guy whose whole left side was cut off?",
"punchline": "He's all right now."
},
{
"id": 92,
"type": "general",
"setup": "Did you hear about the kidnapping at school?",
"punchline": "It's ok, he woke up."
},
{
"id": 93,
"type": "general",
"setup": "Did you hear about the Mexican train killer?",
"punchline": "He had loco motives"
},
{
"id": 94,
"type": "general",
"setup": "Did you hear about the new restaurant on the moon?",
"punchline": "The food is great, but there’s just no atmosphere."
},
{
"id": 95,
"type": "general",
"setup": "Did you hear about the runner who was criticized?",
"punchline": "He just took it in stride"
},
{
"id": 96,
"type": "general",
"setup": "Did you hear about the scientist who was lab partners with a pot of boiling water?",
"punchline": "He had a very esteemed colleague."
},
{
"id": 97,
"type": "general",
"setup": "Did you hear about the submarine industry?",
"punchline": "It really took a dive..."
},
{
"id": 98,
"type": "general",
"setup": "Did you hear that David lost his ID in prague?",
"punchline": "Now we just have to call him Dav."
},
{
"id": 99,
"type": "general",
"setup": "Did you hear that the police have a warrant out on a midget psychic ripping people off?",
"punchline": "It reads \"Small medium at large.\""
},
{
"id": 100,
"type": "general",
"setup": "Did you hear the joke about the wandering nun?",
"punchline": "She was a roman catholic."
},
{
"id": 101,
"type": "general",
"setup": "Did you hear the news?",
"punchline": "FedEx and UPS are merging. They’re going to go by the name Fed-Up from now on."
},
{
"id": 102,
"type": "general",
"setup": "Did you hear the one about the guy with the broken hearing aid?",
"punchline": "Neither did he."
},
{
"id": 103,
"type": "general",
"setup": "Did you know crocodiles could grow up to 15 feet?",
"punchline": "But most just have 4."
},
{
"id": 104,
"type": "general",
"setup": "What do ghosts call their true love?",
"punchline": "Their ghoul-friend"
},
{
"id": 105,
"type": "general",
"setup": "Did you know that protons have mass?",
"punchline": "I didn't even know they were catholic."
},
{
"id": 106,
"type": "general",
"setup": "Did you know you should always take an extra pair of pants golfing?",
"punchline": "Just in case you get a hole in one."
},
{
"id": 107,
"type": "general",
"setup": "Do I enjoy making courthouse puns?",
"punchline": "Guilty"
},
{
"id": 108,
"type": "general",
"setup": "Do you know where you can get chicken broth in bulk?",
"punchline": "The stock market."
},
{
"id": 109,
"type": "general",
"setup": "Do you want a brief explanation of what an acorn is?",
"punchline": "In a nutshell, it's an oak tree."
},
{
"id": 110,
"type": "general",
"setup": "Ever wondered why bees hum?",
"punchline": "It's because they don't know the words."
},
{
"id": 111,
"type": "general",
"setup": "Have you ever heard of a music group called Cellophane?",
"punchline": "They mostly wrap."
},
{
"id": 112,
"type": "general",
"setup": "Have you heard of the band 1023MB?",
"punchline": "They haven't got a gig yet."
},
{
"id": 113,
"type": "general",
"setup": "Have you heard the rumor going around about butter?",
"punchline": "Never mind, I shouldn't spread it."
},
{
"id": 114,
"type": "general",
"setup": "How are false teeth like stars?",
"punchline": "They come out at night!"
},
{
"id": 115,
"type": "general",
"setup": "How can you tell a vampire has a cold?",
"punchline": "They start coffin."
},
{
"id": 116,
"type": "general",
"setup": "How come a man driving a train got struck by lightning?",
"punchline": "He was a good conductor."
},
{
"id": 117,
"type": "general",
"setup": "How come the stadium got hot after the game?",
"punchline": "Because all of the fans left."
},
{
"id": 118,
"type": "general",
"setup": "How did Darth Vader know what Luke was getting for Christmas?",
"punchline": "He felt his presents."
},
{
"id": 119,
"type": "general",
"setup": "How did the hipster burn the roof of his mouth?",
"punchline": "He ate the pizza before it was cool."
},
{
"id": 120,
"type": "general",
"setup": "How do hens stay fit?",
"punchline": "They always egg-cercise!"
},
{
"id": 121,
"type": "general",
"setup": "How do locomotives know where they're going?",
"punchline": "Lots of training"
},
{
"id": 122,
"type": "general",
"setup": "How do the trees get on the internet?",
"punchline": "They log on."
},
{
"id": 123,
"type": "general",
"setup": "How do you find Will Smith in the snow?",
"punchline": " Look for fresh prints."
},
{
"id": 124,
"type": "general",
"setup": "How do you fix a broken pizza?",
"punchline": "With tomato paste."
},
{
"id": 125,
"type": "general",
"setup": "How do you fix a damaged jack-o-lantern?",
"punchline": "You use a pumpkin patch."
},
{
"id": 126,
"type": "general",
"setup": "How do you get a baby alien to sleep?",
"punchline": " You rocket."
},
{
"id": 127,
"type": "general",
"setup": "How do you get two whales in a car?",
"punchline": "Start in England and drive West."
},
{
"id": 128,
"type": "general",
"setup": "How do you know if there’s an elephant under your bed?",
"punchline": "Your head hits the ceiling!"
},
{
"id": 129,
"type": "general",
"setup": "How do you make a hankie dance?",
"punchline": "Put a little boogie in it."
},
{
"id": 130,
"type": "general",
"setup": "How do you make holy water?",
"punchline": "You boil the hell out of it."
},
{
"id": 131,
"type": "general",
"setup": "How do you organize a space party?",
"punchline": "You planet."
},
{
"id": 132,
"type": "general",
"setup": "How do you steal a coat?",
"punchline": "You jacket."
},
{
"id": 133,
"type": "general",
"setup": "How do you tell the difference between a crocodile and an alligator?",
"punchline": "You will see one later and one in a while."
},
{
"id": 134,
"type": "general",
"setup": "How does a dyslexic poet write?",
"punchline": "Inverse."
},
{
"id": 135,
"type": "general",
"setup": "How does a French skeleton say hello?",
"punchline": "Bone-jour."
},
{
"id": 136,
"type": "general",
"setup": "How does a penguin build it’s house?",
"punchline": "Igloos it together."
},
{
"id": 137,
"type": "general",
"setup": "How does a scientist freshen their breath?",
"punchline": "With experi-mints!"
},
{
"id": 138,
"type": "general",
"setup": "How does the moon cut his hair?",
"punchline": "Eclipse it."
},
{
"id": 139,
"type": "general",
"setup": "How many apples grow on a tree?",
"punchline": "All of them!"
},
{
"id": 140,
"type": "general",
"setup": "How many bones are in the human hand?",
"punchline": "A handful of them."
},
{
"id": 141,
"type": "general",
"setup": "How many hipsters does it take to change a lightbulb?",
"punchline": "Oh, it's a really obscure number. You've probably never heard of it."
},
{
"id": 142,
"type": "general",
"setup": "How many kids with ADD does it take to change a lightbulb?",
"punchline": "Let's go ride bikes!"
},
{
"id": 143,
"type": "general",
"setup": "How many optometrists does it take to change a light bulb?",
"punchline": "1 or 2? 1... or 2?"
},
{
"id": 144,
"type": "general",
"setup": "How many seconds are in a year?",
"punchline": "12. January 2nd, February 2nd, March 2nd, April 2nd.... etc"
},
{
"id": 145,
"type": "general",
"setup": "How many South Americans does it take to change a lightbulb?",
"punchline": "A Brazilian"
},
{
"id": 146,
"type": "general",
"setup": "How many tickles does it take to tickle an octopus?",
"punchline": "Ten-tickles!"
},
{
"id": 147,
"type": "general",
"setup": "How much does a hipster weigh?",
"punchline": "An instagram."
},
{
"id": 148,
"type": "general",
"setup": "How was the snow globe feeling after the storm?",
"punchline": "A little shaken."
},
{
"id": 149,
"type": "general",
"setup": "Is the pool safe for diving?",
"punchline": "It deep ends."
},
{
"id": 150,
"type": "general",
"setup": "Is there a hole in your shoe?",
"punchline": "No… Then how’d you get your foot in it?"
},
{
"id": 151,
"type": "general",
"setup": "What did the spaghetti say to the other spaghetti?",
"punchline": "Pasta la vista, baby!"
},
{
"id": 152,
"type": "general",
"setup": "What’s 50 Cent’s name in Zimbabwe?",
"punchline": "200 Dollars."
},
{
"id": 153,
"type": "general",
"setup": "Want to hear a chimney joke?",
"punchline": "Got stacks of em! First one's on the house"
},
{
"id": 154,
"type": "general",
"setup": "Want to hear a joke about construction?",
"punchline": "Nah, I'm still working on it."
},
{
"id": 155,
"type": "general",
"setup": "Want to hear my pizza joke?",
"punchline": "Never mind, it's too cheesy."
},
{
"id": 156,
"type": "general",
"setup": "What animal is always at a game of cricket?",
"punchline": "A bat."
},
{
"id": 157,
"type": "general",
"setup": "What are the strongest days of the week?",
"punchline": "Saturday and Sunday...the rest are weekdays."
},
{
"id": 158,
"type": "general",
"setup": "What biscuit does a short person like?",
"punchline": "Shortbread. "
},
{
"id": 159,
"type": "general",
"setup": "What cheese can never be yours?",
"punchline": "Nacho cheese."
},
{
"id": 160,
"type": "general",
"setup": "What creature is smarter than a talking parrot?",
"punchline": "A spelling bee."
},
{
"id": 161,
"type": "general",
"setup": "What did celery say when he broke up with his girlfriend?",
"punchline": "She wasn't right for me, so I really don't carrot all."
},
{
"id": 162,
"type": "general",
"setup": "What did Michael Jackson name his denim store?",
"punchline": " Billy Jeans!"
},
{
"id": 163,
"type": "general",
"setup": "What did one nut say as he chased another nut?",
"punchline": " I'm a cashew!"
},
{
"id": 164,
"type": "general",
"setup": "What did one plate say to the other plate?",
"punchline": "Dinner is on me!"
},
{
"id": 165,
"type": "general",
"setup": "What did one snowman say to the other snow man?",
"punchline": "Do you smell carrot?"
},
{
"id": 166,
"type": "general",
"setup": "What did one wall say to the other wall?",
"punchline": "I'll meet you at the corner!"
},
{
"id": 167,
"type": "general",
"setup": "What did Romans use to cut pizza before the rolling cutter was invented?",
"punchline": "Lil Caesars"
},
{
"id": 168,
"type": "general",