-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjokes.json
More file actions
942 lines (892 loc) · 27.3 KB
/
jokes.json
File metadata and controls
942 lines (892 loc) · 27.3 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
{
"jokes": [
{
"setup": "Did you know you should always take an extra pair of pants golfing?",
"punchline": "Just in case you get a hole in one.",
"likes": 0,
"user_id": 1
},
{
"setup": "What is bread's favorite number?",
"punchline": "Leaven",
"likes": 0,
"user_id": 1
},
{
"setup": "What kind of tree fits in your hand?",
"punchline": "A palm tree!",
"likes": 0,
"user_id": 1
},
{
"setup": "Did you hear about the chameleon who couldn't change color?",
"punchline": "They had a reptile dysfunction.",
"likes": 0,
"user_id": 1
},
{
"setup": "I was thinking about moving to Moscow but...",
"punchline": "There is no point Russian into things.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the shy pebble wish for?",
"punchline": "That she was a little boulder.",
"likes": 0,
"user_id": 1
},
{
"setup": "They tried to make a diamond shaped like a duck.",
"punchline": "It quacked under the pressure.",
"likes": 0,
"user_id": 1
},
{
"setup": "Did you hear about the bread factory burning down?",
"punchline": "They say the business is toast.",
"likes": 0,
"user_id": 1
},
{
"setup": "Past, present, and future walked into a bar....",
"punchline": "It was tense.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the left eye say to the right eye?",
"punchline": "Between us, something smells!",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a cow on a trampoline?",
"punchline": "A milk shake!",
"likes": 0,
"user_id": 1
},
{
"setup": "Why are basketball players messy eaters?",
"punchline": "Because they are always dribbling.",
"likes": 0,
"user_id": 1
},
{
"setup": "When does a joke become a dad joke?",
"punchline": "When it becomes apparent.",
"likes": 0,
"user_id": 1
},
{
"setup": "What does a pirate pay for his corn?",
"punchline": "A buccaneer!",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did the policeman go to the Lebanese restaurant?",
"punchline": "He was following up reports of a possible hummus side.",
"likes": 0,
"user_id": 1
},
{
"setup": "Some people eat light bulbs.",
"punchline": "They say it's a nice light snack.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do bees do after they are married?",
"punchline": "They go on a honeymoon.",
"likes": 0,
"user_id": 1
},
{
"setup": "I went to the doctor today and he told me I had type A blood but...",
"punchline": "It was a type O.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why was ten scared of seven?",
"punchline": "Because seven eight nine.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why do bees have sticky hair?",
"punchline": "Because they use honey combs!",
"likes": 0,
"user_id": 1
},
{
"setup": "What biscuit does a short person like?",
"punchline": "Shortbread.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why was the robot angry?",
"punchline": "Because someone kept pressing his buttons!",
"likes": 0,
"user_id": 1
},
{
"setup": "Man, I really love my furniture...",
"punchline": "Me and my recliner go way back.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a dog that can do magic tricks?",
"punchline": "A labracadabrador.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why was Pavlov's beard so soft?",
"punchline": "Because he conditioned it.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did the A go to the bathroom and come out as an E?",
"punchline": "Because he had a vowel movement.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why didn't the skeleton cross the road?",
"punchline": "Because he had no guts.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did one wall say to the other wall?",
"punchline": "I'll meet you at the corner!",
"likes": 0,
"user_id": 1
},
{
"setup": "Why are fish so smart?",
"punchline": " Because they live in schools!",
"likes": 0,
"user_id": 1
},
{
"setup": "What is a vampire's favorite fruit?",
"punchline": "A blood orange.",
"likes": 0,
"user_id": 1
},
{
"setup": "What kind of award did the dentist receive?",
"punchline": "A little plaque.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why do valley girls hang out in odd numbered groups?",
"punchline": "Because they can't even.",
"likes": 0,
"user_id": 1
},
{
"setup": "Did you hear about the Mexican train killer?",
"punchline": "He had loco motives.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did the half blind man fall in the well?",
"punchline": "Because he couldn't see that well!",
"likes": 0,
"user_id": 1
},
{
"setup": "What's the worst thing about ancient history class?",
"punchline": "The teachers tend to Babylon.",
"likes": 0,
"user_id": 1
},
{
"setup": "How does Darth Vader like his toast?",
"punchline": "On the dark side.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why do bananas have to put on sunscreen before they go to the beach?",
"punchline": "Because they might peel!",
"likes": 0,
"user_id": 1
},
{
"setup": "What animal is always at a game of cricket?",
"punchline": "A bat.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did one plate say to the other plate?",
"punchline": "Dinner is on me!",
"likes": 0,
"user_id": 1
},
{
"setup": "Why is it so windy inside an arena?",
"punchline": "All those fans.",
"likes": 0,
"user_id": 1
},
{
"setup": "Do you know where you can get chicken broth in bulk?",
"punchline": "The stock market.",
"likes": 0,
"user_id": 1
},
{
"setup": "To the guy who invented zero...",
"punchline": "thanks for nothing.",
"likes": 0,
"user_id": 1
},
{
"setup": "What has ears but cannot hear?",
"punchline": "A field of corn.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call your friend who stands in a hole?",
"punchline": "Phil.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the beaver say to the tree?",
"punchline": "It's been nice gnawing you.",
"likes": 0,
"user_id": 1
},
{
"setup": "What is the best time on a clock?",
"punchline": "6:30-hands down.",
"likes": 0,
"user_id": 1
},
{
"setup": "Did you hear about the cheese who saved the world?",
"punchline": "It was Legend-dairy!",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you do when your bunny gets wet?",
"punchline": "You get your hare dryer.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why don't you find hippopotamuses hiding in trees?",
"punchline": "They're really good at it.",
"likes": 0,
"user_id": 1
},
{
"setup": "What's the difference between a seal and a sea lion?",
"punchline": "An ion!",
"likes": 0,
"user_id": 1
},
{
"setup": "Why do fish live in salt water?",
"punchline": "Because pepper makes them sneeze!",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the judge say to the dentist?",
"punchline": "Do you swear to pull the tooth, the whole tooth and nothing but the tooth?",
"likes": 0,
"user_id": 1
},
{
"setup": "A steak pun is...",
"punchline": "a rare medium well done.",
"likes": 0,
"user_id": 1
},
{
"setup": "Did you hear about the kidnapping at school?",
"punchline": "It's ok, he woke up.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a cow with no legs?",
"punchline": "Ground beef.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did one nut say as he chased another nut?",
"punchline": "I'm a cashew!",
"likes": 0,
"user_id": 1
},
{
"setup": "Where did Captain Hook get his hook?",
"punchline": "From a second hand store.",
"likes": 0,
"user_id": 1
},
{
"setup": "What's the best thing about elevator jokes?",
"punchline": "They work on so many levels.",
"likes": 0,
"user_id": 1
},
{
"setup": "Don't trust atoms.",
"punchline": "They make up everything.",
"likes": 0,
"user_id": 1
},
{
"setup": "Did you hear about the runner who was criticized?",
"punchline": "He just took it in stride.",
"likes": 0,
"user_id": 1
},
{
"setup": "What was a more important invention than the first telephone?",
"punchline": "The second one.",
"likes": 0,
"user_id": 1
},
{
"setup": "What creature is smarter than a talking parrot?",
"punchline": "A spelling bee.",
"likes": 0,
"user_id": 1
},
{
"setup": "How was the snow globe feeling after the storm?",
"punchline": "A little shaken.",
"likes": 0,
"user_id": 1
},
{
"setup": "Two satellites decided to get married.",
"punchline": "The wedding wasn't much, but the reception was incredible.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call an alligator in a vest?",
"punchline": "An in-vest-igator!",
"likes": 0,
"user_id": 1
},
{
"setup": "How come the stadium got hot after the game?",
"punchline": "Because all of the fans left.",
"likes": 0,
"user_id": 1
},
{
"setup": "What's the difference between a poorly dressed man on a tricycle and a well dressed man on a bicycle?",
"punchline": "Attire.",
"likes": 0,
"user_id": 1
},
{
"setup": "What time did the man go to the dentist?",
"punchline": "Tooth hurt-y.",
"likes": 0,
"user_id": 1
},
{
"setup": "How does the moon cut his hair?",
"punchline": "Eclipse it.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why do wizards clean their teeth three times a day?",
"punchline": "To prevent bat breath!",
"likes": 0,
"user_id": 1
},
{
"setup": "How are false teeth like stars?",
"punchline": "They come out at night!",
"likes": 0,
"user_id": 1
},
{
"setup": "Why does Norway have barcodes on their battleships?",
"punchline": "So when they get back to port, they can Scandinavian.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the ocean say to the shore?",
"punchline": "Nothing, it just waved.",
"likes": 0,
"user_id": 1
},
{
"setup": "How did Darth Vader know what Luke was getting for Christmas?",
"punchline": "He felt his presents.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the Red light say to the Green light?",
"punchline": "Don't look at me I'm changing!",
"likes": 0,
"user_id": 1
},
{
"setup": "Why do bears have hairy coats?",
"punchline": "Fur protection.",
"likes": 0,
"user_id": 1
},
{
"setup": "How does a scientist freshen their breath?",
"punchline": "With experi-mints!",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did the worker get fired from the orange juice factory?",
"punchline": "Lack of concentration.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why can't eggs have love?",
"punchline": "They will break up too soon.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why are mummies scared of vacation?",
"punchline": "They are afraid to unwind.",
"likes": 0,
"user_id": 1
},
{
"setup": "Did you hear the one about the giant pickle?",
"punchline": "He was kind of a big dill.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the father tomato say to the baby tomato while on a family walk?",
"punchline": "Ketchup!",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a duck that gets all A's?",
"punchline": "A wise quacker.",
"likes": 0,
"user_id": 1
},
{
"setup": "What is the hardest part about sky diving?",
"punchline": "The ground.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did the girl smear peanut butter on the road?",
"punchline": "To go with the traffic jam.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you get when you cross a chicken with a skunk?",
"punchline": "A fowl smell.",
"likes": 0,
"user_id": 1
},
{
"setup": "Did you know the first French fries weren't actually cooked in France?",
"punchline": "They were cooked in Greece.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why was Santa's little helper feeling depressed?",
"punchline": "Because she has low elf esteem.",
"likes": 0,
"user_id": 1
},
{
"setup": "How do you steal a coat?",
"punchline": "You jacket.",
"likes": 0,
"user_id": 1
},
{
"setup": "Where do hamburgers go to dance?",
"punchline": "The meat-ball.",
"likes": 0,
"user_id": 1
},
{
"setup": "How do you follow Will Smith in the snow?",
"punchline": "You follow the fresh prints.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a fish wearing a bowtie?",
"punchline": "Sofishticated.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a factory that makes okay products?",
"punchline": "A satisfactory.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why do seagulls fly over the ocean?",
"punchline": "Because if they flew over the bay, we'd call them bagels.",
"likes": 0,
"user_id": 1
},
{
"setup": "What's the best thing about Switzerland?",
"punchline": "I don't know, but the flag is a big plus.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call someone with no body and no nose? ",
"punchline": "Nobody knows.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why can't a nose be 12 inches long?",
"punchline": "Because then it would be a foot.",
"likes": 0,
"user_id": 1
},
{
"setup": "How does a taco say grace?",
"punchline": "Lettuce pray.",
"likes": 0,
"user_id": 1
},
{
"setup": "How many tickles does it take to make an octopus laugh?",
"punchline": "Ten tickles.",
"likes": 0,
"user_id": 1
},
{
"setup": "What concert costs just 45 cents?",
"punchline": "50 Cent featuring Nickelback!",
"likes": 0,
"user_id": 1
},
{
"setup": "What kind of shoes do ninjas wear?",
"punchline": "Sneakers.",
"likes": 0,
"user_id": 1
},
{
"setup": "How does a penguin build its house? ",
"punchline": "Igloos it together.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call cheese that isn't yours?",
"punchline": "Nacho cheese.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a fake noodle?",
"punchline": "An impasta.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call two monkeys that share an Amazon account?",
"punchline": "Prime mates.",
"likes": 0,
"user_id": 1
},
{
"setup": "Where do math teachers go on vacation?",
"punchline": "Times Square.",
"likes": 0,
"user_id": 1
},
{
"setup": "What does garlic do when it gets hot?",
"punchline": "It takes its cloves off.",
"likes": 0,
"user_id": 1
},
{
"setup": "How much does it cost Santa to park his sleigh?",
"punchline": "Nothing, it's on the house.",
"likes": 0,
"user_id": 1
},
{
"setup": "Mountains aren't just funny...",
"punchline": "They're hill areas.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why are piggy banks so wise?",
"punchline": "They're filled with common cents.",
"likes": 0,
"user_id": 1
},
{
"setup": "Did you hear about the circus fire?",
"punchline": "It was in tents.",
"likes": 0,
"user_id": 1
},
{
"setup": "What's the best way to watch a fly fishing tournament?",
"punchline": "Live stream.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the fish say when he hit the wall?",
"punchline": "Dam.",
"likes": 0,
"user_id": 1
},
{
"setup": "If you see a crime happen at the Apple store, what does it make you?",
"punchline": "An iWitness.",
"likes": 0,
"user_id": 1
},
{
"setup": "What is the tallest building in the world?",
"punchline": "The library-it's got the most stories!",
"likes": 0,
"user_id": 1
},
{
"setup": "What kind of tree fits in your hand?",
"punchline": "A palm tree.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the beaver say to the tree?",
"punchline": "It's been nice gnawing you.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why do choirs keep buckets handy?",
"punchline": "So they can carry their tune.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why does Waldo only wear stripes?",
"punchline": "Because he doesn't want to be spotted.",
"likes": 0,
"user_id": 1
},
{
"setup": "What kind of bagel can fly?",
"punchline": "A plain bagel.",
"likes": 0,
"user_id": 1
},
{
"setup": "Where did Captain Hook get his hook?",
"punchline": "From a second hand store.",
"likes": 0,
"user_id": 1
},
{
"setup": "What kind of bagel can fly?",
"punchline": "A plain bagel.",
"likes": 0,
"user_id": 1
},
{
"setup": "I thought about going on an all-almond diet.",
"punchline": "But that's just nuts.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did the cookie cry?",
"punchline": "It was feeling crumby.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why are fish easy to weigh?",
"punchline": "Because they have their own scales.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did the belt go to prison?",
"punchline": "It held up a pair of pants!",
"likes": 0,
"user_id": 1
},
{
"setup": "How much does a hipster weigh?",
"punchline": "An Instagram.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did the opera singer go sailing?",
"punchline": "They wanted to hit the high Cs.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why are skeletons so calm?",
"punchline": "Because nothing gets under their skin.",
"likes": 0,
"user_id": 1
},
{
"setup": "What did the grape do when he got stepped on?",
"punchline": "He let out a little wine.",
"likes": 0,
"user_id": 1
},
{
"setup": "What kind of magic do cows believe in?",
"punchline": "MOODOO.",
"likes": 0,
"user_id": 1
},
{
"setup": "Where do programmers like to hang out?",
"punchline": "The Foo Bar.",
"likes": 0,
"user_id": 1
},
{
"setup": "Where do bees stay while on vacation?",
"punchline": "Air Bee and Bee.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did Pluto have such a terrible vacation?",
"punchline": "Because he didn't planet well.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why are leopards so bad at hiding?",
"punchline": "No matter where they hide, they're always spotted",
"likes": 0,
"user_id": 1
},
{
"setup": "Never talk to a girl about pregnancy, periods or 'women problems'.",
"punchline": "She'll ovary act.",
"likes": 0,
"user_id": 1
},
{
"setup": "What sort of scientists does Soda Stream employ?",
"punchline": "Fizzyscists.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why does a Moon-rock taste better than an Earth-rock?",
"punchline": " Because it's a little meteor.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do prisoners use to call each other?",
"punchline": "Cell phones.",
"likes": 0,
"user_id": 1
},
{
"setup": "What's the difference between a poorly dressed man on a tricycle and a well dressed man on a bicycle?",
"punchline": "Attire.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a pile of cats?",
"punchline": "A Meowtain.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a dictionary on drugs?",
"punchline": "High definition.",
"likes": 0,
"user_id": 1
},
{
"setup": "How do you organize a space party?",
"punchline": "You planet.",
"likes": 0,
"user_id": 1
},
{
"setup": "Why did the man put his money in the freezer?",
"punchline": "He wanted cold hard cash!",
"likes": 0,
"user_id": 1
},
{
"setup": "Two silk worms had a race.",
"punchline": "They ended up in a tie.",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a magician who has lost their magic?",
"punchline": "Ian",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call an Argentinian with a rubber toe?",
"punchline": "Roberto",
"likes": 0,
"user_id": 1
},
{
"setup": "What do you call a monkey in a mine field?",
"punchline": "A babooooom!",
"likes": 0,
"user_id": 1
}
]
}