-
Notifications
You must be signed in to change notification settings - Fork 1
/
haikus.json
5130 lines (5130 loc) · 742 KB
/
haikus.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
{"user": "_nerdyjess", "haiku_text": "i never been to / laser tags well maybe once / when i was little ", "status_id": "354673946039296001"}
{"user": "SarahHopeBaker", "haiku_text": "all this turning makes / me sick now on level five / of the parking deck ", "status_id": "354673955140931586"}
{"user": "Keego_61", "haiku_text": "you guys like to throw / eggs so much throw em at each / other you fuck sticks ", "status_id": "354673944827150336"}
{"user": "AliciaKalik", "haiku_text": "gonna kick out this / workout so that i can take / a nap before work ", "status_id": "354674034379730944"}
{"user": "GoldenLeePace", "haiku_text": "louise just made me / cry she was making a weird / noise over lena ", "status_id": "354674068328415233"}
{"user": "Love2Hoop14", "haiku_text": "i feel like dancing / this weekend and just having / a ball with some friends ", "status_id": "354674070354268160"}
{"user": "tkl277iztha1", "haiku_text": "i like the feeling / i had last night that needs to / be every night", "status_id": "354685707849183232"}
{"user": "jenniferjohana_", "haiku_text": "my summer has been / nothing but applied for jobs / babysit and sleep", "status_id": "354685892918648832"}
{"user": "Court_Young_", "haiku_text": "i would like to drown / a few bitches but only / for a little while", "status_id": "354685963341021184"}
{"user": "PaulAmico78", "haiku_text": "why do kids still sag / their pants i was unaware / that was still a trend", "status_id": "354685974644654080"}
{"user": "SonYouGay", "haiku_text": "shit it seems like some / people can barely even / use five of their brain", "status_id": "354685973864525824"}
{"user": "chrisssssyp", "haiku_text": "give em a taste of / their own medicine and they / be acting clueless", "status_id": "354685973688360960"}
{"user": "Reginagtr5", "haiku_text": "up this when your this / but was my is out if this / but up do one i", "status_id": "354685985415630848"}
{"user": "die_anerish", "haiku_text": "i wanna puke on / everyone at my job but / i cant stop eating", "status_id": "354686073177247746"}
{"user": "JuliaOShea", "haiku_text": "i am so over / having to do all of my / college stuff online", "status_id": "354686101753036800"}
{"user": "Bryceeeeeeeee", "haiku_text": "i mean come on were / only pigs together this / mess is mostly hers", "status_id": "354686123215294464"}
{"user": "christinalillie", "haiku_text": "i hate the type of / people who only wanna / talk about themselves", "status_id": "354689882775494657"}
{"user": "DaBestToEvrDoIt", "haiku_text": "aka look right by / you until you get yourself / together that is", "status_id": "354689914849345536"}
{"user": "flirider1", "haiku_text": "i am so tired / of people that think the world / revolves around them", "status_id": "354689954279993344"}
{"user": "loritagerbeshi", "haiku_text": "being sincere and / true to yourself defines your / authenticity", "status_id": "354689947573297153"}
{"user": "lukehmuse", "haiku_text": "well that episode / of imagine put a lot / into perspective", "status_id": "354689965789159424"}
{"user": "MelissAwsome_TW", "haiku_text": "listen to party / in the usa to get / into a good mood", "status_id": "354689963285164032"}
{"user": "Shonasnv2hb", "haiku_text": "in do be me on / a it u me that your can / when me they a my", "status_id": "354690009258934272"}
{"user": "damialli", "haiku_text": "pleasing and making / you happy but does it make / me truly happy", "status_id": "354695235294593024"}
{"user": "alyissaleiane", "haiku_text": "they say that love is / forever your forever / is all that i need", "status_id": "354695248397602817"}
{"user": "KevinVargass", "haiku_text": "these days girls are the / one that fuck over guys not / guys fuck girls over", "status_id": "354695302923558912"}
{"user": "AmyDell94", "haiku_text": "eaten dinner but / worked it off waking to see / friends pizza it is", "status_id": "354695332837330945"}
{"user": "Lee_Boutin", "haiku_text": "i live in constant / fear of someone asking me / what my hobbies are", "status_id": "354695354794512385"}
{"user": "cassidy_platte", "haiku_text": "kyle punched himself when / he found out that they named a / hurricane chantal", "status_id": "354699029571047424"}
{"user": "danielle_e4444", "haiku_text": "my cat attacked me / and too think i have been so / nice to her lately", "status_id": "354699033580806144"}
{"user": "Jamiiee_v", "haiku_text": "me and theo both / questioned if we were ever / going to grow up", "status_id": "354699047052906496"}
{"user": "SolnotSoul", "haiku_text": "someone hangout with / me so im not sitting at / home watching teen mom", "status_id": "354699047644299264"}
{"user": "sonamour_", "haiku_text": "my mom says when it / rains with the sun out a witch / is getting married", "status_id": "354699086500343808"}
{"user": "Carolinacx7r2", "haiku_text": "be not you up of / this so of can when i do / when but have that find", "status_id": "354699086307397632"}
{"user": "wiseman_11", "haiku_text": "you know your pools too / hot when you jump in after / work and start sweating", "status_id": "354699086068326400"}
{"user": "AmandaaSette", "haiku_text": "when i get proposed / to it better be super / romantic and cute", "status_id": "354699115034181635"}
{"user": "JobsInvite82853", "haiku_text": "perhaps nature is / our best assurance of / immortality", "status_id": "354699122638454784"}
{"user": "LeoMichel13", "haiku_text": "people who cant write / out the word you and put the / letter u instead", "status_id": "354699127944265728"}
{"user": "mart1n_povey12", "haiku_text": "gotta give babies / some credit their little arms / cant reach anything", "status_id": "354699128283996161"}
{"user": "OzieBiava", "haiku_text": "i hate losing friends / just because they got into / a relationship", "status_id": "354699129458401280"}
{"user": "Madeleineaxcw", "haiku_text": "have a u my on / they it get it this when that / me it find it my", "status_id": "354702701071839235"}
{"user": "Pindieat", "haiku_text": "a real woman can / do it on her own but a / real man wont let her", "status_id": "354702697309536257"}
{"user": "asexualslut", "haiku_text": "freaks and geeks really / just makes me horny because / i love james franco", "status_id": "354702715995160578"}
{"user": "ImSoHighSadity", "haiku_text": "writing free so and / so on social networks is / not holding shit down", "status_id": "354702720562774019"}
{"user": "kirstydonaghy", "haiku_text": "spent most of my day / in bed except an hour / and im bloody burnt", "status_id": "354702727026192385"}
{"user": "Black_Blonde12", "haiku_text": "sometimes it takes for / people to go through somethings / to learn for themselves", "status_id": "354702792226643968"}
{"user": "emer925", "haiku_text": "when did people stop / clapping for the pilot at / the end of a flight", "status_id": "354702858781859841"}
{"user": "Keturahyp5ts", "haiku_text": "your is was at you / be out for one are u in / was this i its your", "status_id": "354702861709479936"}
{"user": "dear_cori", "haiku_text": "i love it when my / manager treats me like im / his little sister", "status_id": "354702870781763584"}
{"user": "3londe3itch", "haiku_text": "does it make you feel / better when you make other / people feel like shit", "status_id": "354702875789770753"}
{"user": "XoCareless", "haiku_text": "im so excited / dude i love animals more / than human beings", "status_id": "354705952676651009"}
{"user": "vomtoria", "haiku_text": "i just updated / my mother on amanda / bynes and i cant breathe", "status_id": "354706534120423426"}
{"user": "xoxo_Diva_", "haiku_text": "this fool is starving / herself talking about she / on a diet right", "status_id": "354706572779327489"}
{"user": "Mikaela_Bryant", "haiku_text": "whatever ill just / look like an ill vampire for / the rest of my life", "status_id": "354706658460581889"}
{"user": "walaakoki", "haiku_text": "every human / spent about half an hour / as a single cell", "status_id": "354706658225692672"}
{"user": "bvenus", "haiku_text": "do what you gotta / do any way you can do / it but just do it", "status_id": "354706666643668993"}
{"user": "MorrisDipirro", "haiku_text": "once i put on my / headphones my life becomes a / music video", "status_id": "354706728614502402"}
{"user": "xonouis", "haiku_text": "what the fuck does this / have to do with larry you / shit ass idiot", "status_id": "354706732762664960"}
{"user": "smoore9397", "haiku_text": "i cant help but melt / when it comes to kids they pull / right at my heart strings", "status_id": "354710377910640641"}
{"user": "BigPapaSenor", "haiku_text": "but at the end of / the day she still a slut so / i mean whatever", "status_id": "354710377755443202"}
{"user": "MR_REKKLESS", "haiku_text": "as long as i got / a face your girl will always / have a place to sit", "status_id": "354710418092077056"}
{"user": "SLBorbor", "haiku_text": "finally eating / heavy after being back / from the hospital", "status_id": "354710446365880320"}
{"user": "Signed_Rozayy", "haiku_text": "we lose ourselves / in the things we love we find / ourselves there too", "status_id": "354710488191479812"}
{"user": "RobertMColon", "haiku_text": "somewhere far along / the road he lost his soul to / woman so heartless", "status_id": "354710504771555328"}
{"user": "KoolestCartel", "haiku_text": "pillows versace / my sheets is versace i / just won a grammy", "status_id": "354710348240130048"}
{"user": "burke_aileen", "haiku_text": "theirs a track line down / my back where my pony tail / was looks so stupid", "status_id": "354710397934247936"}
{"user": "Chii2404", "haiku_text": "what am i supposed / to do when the best part of / me was always you", "status_id": "354714382443352064"}
{"user": "asalc008", "haiku_text": "the thing keeping one / from being happy is the / want to be happy", "status_id": "354714401019920386"}
{"user": "impaupadilla18", "haiku_text": "the people who know / the least about you always / have the most to say", "status_id": "354714406581579779"}
{"user": "azmandbv2900", "haiku_text": "allah knows you and / everything you go through give / him all your problems", "status_id": "354714534419767297"}
{"user": "hannah_stanford", "haiku_text": "and its crazy here / without you i used to think / this all was ours", "status_id": "354714493856657410"}
{"user": "rachelpineapple", "haiku_text": "nevermind i found / it myself bye im crying / wow i cant wait bye", "status_id": "354714640355307520"}
{"user": "TucsonROBBnHOOD", "haiku_text": "does your ass ever / get jealous of all that shit / coming out your mouth", "status_id": "354714654762729472"}
{"user": "CThaMarvell", "haiku_text": "my mac may have a / virus or the keyboard is / having a baby", "status_id": "354714720500060160"}
{"user": "ArtMusicWho", "haiku_text": "what are you doing / now chopping up dead people / you know how it is", "status_id": "354714519102169090"}
{"user": "fredrikmedk", "haiku_text": "have you ever met / a hater doing better / than you me neither", "status_id": "354714518384947200"}
{"user": "_chrissieee", "haiku_text": "my cat just sneezed in / her sleep and woke herself up / why are cats so cute", "status_id": "354714624886706177"}
{"user": "Geeeeorgia", "haiku_text": "half the shit in my / room belongs to tom when did / i let this happen", "status_id": "354717983291088897"}
{"user": "xxfelixfelicis", "haiku_text": "but if you close your / eyes does it almost feel like / nothing changed at all", "status_id": "354718018732949504"}
{"user": "mayrelsherex", "haiku_text": "im not just going / to kill a bitch im going / to murder a bitch", "status_id": "354718086370295808"}
{"user": "Berniekwdjb", "haiku_text": "do in at you that / we find is its i out a / get just just me with", "status_id": "354718308345450499"}
{"user": "TheillestWords", "haiku_text": "girls get fucked over / because they put emotions / before common sense", "status_id": "354718325026201601"}
{"user": "SweetAndPink_", "haiku_text": "i cant just say that / love word too anybody / n everybody", "status_id": "354718346006110209"}
{"user": "CarolinaRaised2", "haiku_text": "im sick of that girl / always putting stupid quotes / under her pictures", "status_id": "354718732049846272"}
{"user": "whatzupbiebah", "haiku_text": "im naked under / my clothes no really you have / to be kidding me", "status_id": "354718751242985476"}
{"user": "taneishaapicou", "haiku_text": "this nerds commercial / can leave its come on three times / this commercial break", "status_id": "354718969581666305"}
{"user": "baby_ZEE1", "haiku_text": "we need somewhere new / to eat before movie night / tonight suggestions", "status_id": "354719010031538176"}
{"user": "BTJ227", "haiku_text": "even though our / plans are now ruined i am / very excited", "status_id": "354726535095259137"}
{"user": "BringAugustHome", "haiku_text": "wishing all for whom / this day holds special blessing / ramadan kareem", "status_id": "354729328233283585"}
{"user": "aubricrystal", "haiku_text": "i just want it to / be perfect to believe its / all been worth the fight", "status_id": "354729678436708352"}
{"user": "_xorachellee", "haiku_text": "you know im having / a good day when i decide / to wear my contacts", "status_id": "354729733654724608"}
{"user": "AlyssaLandskroe", "haiku_text": "one of those days where / i cant help but think about / how much i miss him", "status_id": "354729756362674178"}
{"user": "LexiPuddinq", "haiku_text": "i really deserve / a vacation before my / summer is over", "status_id": "354730127340478464"}
{"user": "DestenKundrick", "haiku_text": "a phone works two ways / why do i have to text you / first every time", "status_id": "354730302414913537"}
{"user": "Alonsozkml", "haiku_text": "with with we and and / one with but is up for up / be that if we i", "status_id": "354721832785559555"}
{"user": "nurseholliee", "haiku_text": "its so weird being / the only one home like why / am i even here", "status_id": "354722220863528961"}
{"user": "snifflylouis", "haiku_text": "this is like white house / down all our people are / turning against us", "status_id": "354722503916142592"}
{"user": "AlexandraaRuiz", "haiku_text": "i want to paint my / nails but i think im going / to take a nap first", "status_id": "354722519565086720"}
{"user": "destiny_207", "haiku_text": "i love having a / new puppy but the training / process sucks so much", "status_id": "354725435646554113"}
{"user": "upharryscraic", "haiku_text": "how do people hack / like i forget the password / to my own account", "status_id": "354725453925335041"}
{"user": "MarkAndWan", "haiku_text": "to him in whom love / dwells the whole world is but one / family buddha", "status_id": "354725361398972416"}
{"user": "CharlsonBrookly", "haiku_text": "that yourselves be in / for learn in which time hiring / an electrician", "status_id": "354725773669703682"}
{"user": "JLEIGH1992x", "haiku_text": "cant cope with all these / bugs thinking they can live in / my bedroom tonight", "status_id": "354726066822184960"}
{"user": "brendan_gui", "haiku_text": "of course i talk to / myself sometimes i just need / some expert advice", "status_id": "354726090020884482"}
{"user": "ginatobolov_", "haiku_text": "females should remain / in the kitchen they get so / lost once they step out", "status_id": "354726212242907137"}
{"user": "PiggyNukka", "haiku_text": "god dammit i should / have been home by now flight got / fucking switched again", "status_id": "354726386436538369"}
{"user": "FuturWorldRuler", "haiku_text": "sometimes i wonder / why reily and i are so / mean to each other", "status_id": "354726504392962051"}
{"user": "Africandream33", "haiku_text": "my dad comes for two / days and then leaves me alone / snake but its all good", "status_id": "354742226850562048"}
{"user": "erniee_T", "haiku_text": "my phone charger is / broken and i want to punch / a wall with my face", "status_id": "354742328877002752"}
{"user": "vintashia_x", "haiku_text": "like if you have my / first child would i spend my whole / life w you", "status_id": "354742399022534656"}
{"user": "WHOAABlackBetty", "haiku_text": "according to my / dad gay guys only drink tea / or decaf coffee", "status_id": "354742401908224000"}
{"user": "jessi_trahan", "haiku_text": "i just want to get / out of toronto amp for / a really long time", "status_id": "354749448867414016"}
{"user": "mike_leon11", "haiku_text": "people who double / texts are more annoying than / a rash on your ass", "status_id": "354749459160248320"}
{"user": "ChandraLillie", "haiku_text": "my mom is trying / to explain to him that the / green button means call", "status_id": "354749461395812352"}
{"user": "4U2_NV_", "haiku_text": "i need to date a / cop so i can be buddies / with his coworkers", "status_id": "354753464624099329"}
{"user": "PurpleDino_015", "haiku_text": "now that im gone your / going to realize that i / was there all along", "status_id": "354753464615706624"}
{"user": "accordingathena", "haiku_text": "announcement fried green / tomatoes are delicious / thank you that is all", "status_id": "354753501416525825"}
{"user": "HotterIntensity", "haiku_text": "going to chill with / my baby girl then get some / sleep goodnight all x", "status_id": "354753577195016192"}
{"user": "jack_davison", "haiku_text": "being in my own / bed again is possibly / the best thing ever", "status_id": "354759342806929410"}
{"user": "Ninja_Mo", "haiku_text": "nothing more sad then / seeing a beautiful girl / call herself ugly", "status_id": "354759166201561089"}
{"user": "1conorryan", "haiku_text": "can anything on / the planet be more beauty / than colby rasmus", "status_id": "354759351124238336"}
{"user": "Aye_Whoamack", "haiku_text": "i let one of my / exes throw my poetry / away junior year", "status_id": "354759402890334211"}
{"user": "Cornelllfvn", "haiku_text": "can on a to a / do a a with be are out / not one can get in", "status_id": "354759417666871297"}
{"user": "BramsO5", "haiku_text": "who are you to tell / me how i need to be or / what i need to doo", "status_id": "354759439078801409"}
{"user": "bookemdano406", "haiku_text": "but if you close your / eyes does it almost feel like / nothing changed at all", "status_id": "354759441104646144"}
{"user": "xmcnastyx_", "haiku_text": "seriously have / no one not even my own / brother ha so done", "status_id": "354759461564456960"}
{"user": "Kev_Ouellette", "haiku_text": "before you even / touch my cat like shell see you / she will start purring", "status_id": "354763102627180544"}
{"user": "PalaSegal", "haiku_text": "me and natasha / just reunited over / a phone call love herr", "status_id": "354763125439991808"}
{"user": "iloollo", "haiku_text": "the hardest things to / let go of are the things you / never really had", "status_id": "354763154447794177"}
{"user": "Talvan_Herron01", "haiku_text": "im getting way too / excited about moving / into the new house", "status_id": "354763156033253376"}
{"user": "joemckinney00", "haiku_text": "ready to head back / to ames after hearing sweet / caroline today", "status_id": "354763207291834369"}
{"user": "__HerDrug", "haiku_text": "its like no matter / what ya do for a girl she / never satisfied", "status_id": "354763223007891456"}
{"user": "JeremyMcKittenn", "haiku_text": "if i ever meet / hunter moore i will flip him / of straight in his face", "status_id": "354763291064668163"}
{"user": "JobsInvite09606", "haiku_text": "the great pleasure in / life is doing what people / say you cannot do", "status_id": "354766892457664512"}
{"user": "Alkcherry", "haiku_text": "its wednesday here in / saudi so now can i say / happy birthday p", "status_id": "354766929468207106"}
{"user": "Alainevdaeu", "haiku_text": "find do they that it / in was is a that all we / u can was but its", "status_id": "354766957582630915"}
{"user": "sassysedory", "haiku_text": "you find out your true / friends when another girl comes / into the picture", "status_id": "354766957620379650"}
{"user": "JordanPete1", "haiku_text": "never take any / moment for granted cherish / it for all its worth", "status_id": "354766975047712768"}
{"user": "SatansVagina666", "haiku_text": "they say that love is / forever your forever / is all that i need", "status_id": "354766975047700481"}
{"user": "zach_FLEM", "haiku_text": "just jump right in and / let it flow through your body / let it roll right by", "status_id": "354766993850761216"}
{"user": "meowmypow", "haiku_text": "i hate when people / hold something against you that / happened in the past", "status_id": "354766979485278209"}
{"user": "8_Francisco_7", "haiku_text": "all try too but most / of u bitches are a waste / of time and effort", "status_id": "354767018953682945"}
{"user": "ainecmkelly", "haiku_text": "longest day at work / ever super busy on / my own still good tips", "status_id": "354767027887550464"}
{"user": "cwheels4", "haiku_text": "they tell me that they / love me but i know better / than that its just game", "status_id": "354770771098353664"}
{"user": "JPintoo", "haiku_text": "its starting to hit / me how different my life / is about to be", "status_id": "354770804778602497"}
{"user": "Modeljenny_", "haiku_text": "leading someone on / to something then letting them / down that feeling sucks", "status_id": "354774433430376448"}
{"user": "Jasonh3uzj", "haiku_text": "out was my is its / just that i all just find of / to when all all and", "status_id": "354774463654526977"}
{"user": "sergnf_", "haiku_text": "this gap between us / grows on the last thing i want / to do is move on", "status_id": "354774458856251395"}
{"user": "DanaVarmahmoodi", "haiku_text": "having to listen / to all these drunk mood swings is / getting pretty old", "status_id": "354774475633467392"}
{"user": "heather_huff12", "haiku_text": "i love grocery / shopping with my mom so much / and its really weird", "status_id": "354774547557400579"}
{"user": "jamisebrianna", "haiku_text": "having a job takes / away most of your time to / do anything else", "status_id": "354778293330919424"}
{"user": "casualNfresh", "haiku_text": "a lot more pain than / pleasure but in the end it / will all be worth it", "status_id": "354778299370700800"}
{"user": "julia_ahearn", "haiku_text": "forgetting hurts less / than learning to be content / with the memories", "status_id": "354778298338918400"}
{"user": "diannandrea", "haiku_text": "how can i have this / many people around me / and still feel lonely", "status_id": "354778353192022020"}
{"user": "SexInTheBlunt", "haiku_text": "oh so you called yo / dad like im suppose to be / scared fuck outta here", "status_id": "354778364512436224"}
{"user": "BiggBootyJane_", "haiku_text": "i was like i missed / you and she was like mary / i missed you all day", "status_id": "354781995638849537"}
{"user": "HannahReiff", "haiku_text": "jack and buddha are / the most annoying people / known to man tonight", "status_id": "354781990794444802"}
{"user": "asfdsmndey", "haiku_text": "its either i lost / my hearings or why is it / so quiet today", "status_id": "354782043684618240"}
{"user": "_zitlaliii", "haiku_text": "its so obvious / when girls try to show off their / watches in pictures", "status_id": "354782075070590977"}
{"user": "ACutAbvTheRest", "haiku_text": "judge nelson said i / run this with the way she walked / out on the defense", "status_id": "354782104862736387"}
{"user": "liz_sherrill", "haiku_text": "i know you told me / break their hearts but its you i / wanna take apart", "status_id": "354782148412194817"}
{"user": "Warnerefyfe", "haiku_text": "if a so your u / so get it not it we find / in are not all be", "status_id": "354785765357649921"}
{"user": "BrianneIsBlonde", "haiku_text": "i wonder if my / parents will take me to the / zoo for my birthday", "status_id": "354785771590397954"}
{"user": "nicoleromyn", "haiku_text": "does anyone know / how much ride all day passes / are at stampede grounds", "status_id": "354785781296021504"}
{"user": "Mike_Hempster", "haiku_text": "family dinners / are always fun i just hate / having to dress up", "status_id": "354789528608849920"}
{"user": "ChelseaBarros", "haiku_text": "the problem with love / you can love whoever you / want but so can they", "status_id": "354789689644949505"}
{"user": "MinieCorcoran", "haiku_text": "fuck all your feelings / cause business is business its / strictly financial", "status_id": "354789717402849282"}
{"user": "66Montanna66", "haiku_text": "which means i should look / at pictures of hair now to / decide what i want", "status_id": "354793325833883648"}
{"user": "DANIELLAASH", "haiku_text": "you want a thigh gap / your thighs wont touch if you have / a head between them", "status_id": "354793371765710849"}
{"user": "Casperr317", "haiku_text": "seriously why / is there so many fucked up / people in the world", "status_id": "354793385237807104"}
{"user": "PrizePatrol5186", "haiku_text": "the goal is the same / life itself and the price is / the same life itself", "status_id": "354793412542726144"}
{"user": "ahoyheather", "haiku_text": "someone please buy me / all this bob walk stuff please im / crying i want it", "status_id": "354797087566725120"}
{"user": "Truey_Galloping", "haiku_text": "any bitch that think / they internet famous is / a total turnoff", "status_id": "354797089349312514"}
{"user": "Rnewton915", "haiku_text": "this is a life or / death situation here its / a jungle out here", "status_id": "354797100107698177"}
{"user": "Yomiyuh", "haiku_text": "girls wonder why guys / talk to more than one girl at / a time blame yourselves", "status_id": "354796880699457537"}
{"user": "_DownSouth_Diva", "haiku_text": "you and your posse / are just a bunch of drunk jerks / get over yourself", "status_id": "354797142432432128"}
{"user": "cheyennestokess", "haiku_text": "do i just need to / give up and get on with my / life baby do i", "status_id": "354797203660865536"}
{"user": "JiFuckyong", "haiku_text": "what is happiness / for me its like i just found / where is atlantis", "status_id": "354800876042457090"}
{"user": "HARVsarah", "haiku_text": "if you call me right / now we can talk for hours / about anything", "status_id": "354800911421423616"}
{"user": "_CashMERE_B", "haiku_text": "make goals for yourself / after you make them achieve / them its that simple", "status_id": "354800920627908608"}
{"user": "amazinglyfraud", "haiku_text": "im gonna take this / persons old user since they / changed users and yeah", "status_id": "354800926265049088"}
{"user": "Chanel_Shanelle", "haiku_text": "knowing who you are / is the best defense against / who they think you are", "status_id": "354800924708978688"}
{"user": "Sheeeluhhh", "haiku_text": "wild n out is just / further proof that nick cannon / has indeed lost it", "status_id": "354800760300650496"}
{"user": "i_ebtehaj", "haiku_text": "but he leave me and / went to the heaven its a / lie to stay with me", "status_id": "354801006657286145"}
{"user": "WilfDougL", "haiku_text": "i use different / fingers to type on my phone / when im lying down", "status_id": "354804179329490944"}
{"user": "a_schads", "haiku_text": "you are such a know / it all please just say you are / wrong because you are", "status_id": "354804182437462016"}
{"user": "Gaz_aly", "haiku_text": "waking my brother / up much more difficult than / the fasting itself", "status_id": "354804661179514882"}
{"user": "Hermine5u55in", "haiku_text": "we find with me your / a was it your can when was / have they at can your", "status_id": "354804682864078848"}
{"user": "madison_cracken", "haiku_text": "as long as you keep / learning from your mistakes its / ok to make them", "status_id": "354804703323881472"}
{"user": "CallHerJonAsia", "haiku_text": "this episode has / to be ancient w / this song performance", "status_id": "354804731765456897"}
{"user": "X_dimpleeess", "haiku_text": "i wanna find a / female friend that been through the / same thing i went through", "status_id": "354804730263904258"}
{"user": "nick_varner1", "haiku_text": "i feel like a waste / everyday of summer by / doing the same shit", "status_id": "354808417833066496"}
{"user": "55waystoMorph", "haiku_text": "a true centaur is / always at war with himself / check my battle scars", "status_id": "354808494672711680"}
{"user": "nicolaspalanica", "haiku_text": "you spin my head right / round right round when you go down / when you go down down", "status_id": "354812183177211905"}
{"user": "FatmaNG1", "haiku_text": "while fasting during / ramadan i hardly get / hungry just thirsty", "status_id": "354812178152427523"}
{"user": "PrizePtrol79108", "haiku_text": "the goal is the same / life itself and the price is / the same life itself", "status_id": "354812225304801280"}
{"user": "KermitSiargao", "haiku_text": "you smile look them in / those gorgeous eyes and say it / back with confidence", "status_id": "354812317654978560"}
{"user": "PrizePtrol18849", "haiku_text": "perhaps nature is / our best assurance of / immortality", "status_id": "354815976988098562"}
{"user": "taylored4lyfe_", "haiku_text": "i am standing on / the edge of returning or / just running away", "status_id": "354815979798265856"}
{"user": "Zane_Monster", "haiku_text": "id do some fucked up / things for a night with cher lloyd / and katy perry", "status_id": "354815983690584064"}
{"user": "alexacouch", "haiku_text": "we had everything / to say to each other but / no ways to say it", "status_id": "354815992469262337"}
{"user": "Lucienesgf", "haiku_text": "just for we me was / your do they was your me when / this get be is one", "status_id": "354816015995117568"}
{"user": "alexx88_bv", "haiku_text": "i told myself i / deserve better maybe one / day ill believe it", "status_id": "354816073356427264"}
{"user": "Lavafriction", "haiku_text": "behold god exalts / by his power who teaches / like him not a one", "status_id": "354816081405280257"}
{"user": "megangrady9", "haiku_text": "id like to be my / old self again but im still / trying to find it", "status_id": "354816087864520705"}
{"user": "tianapham", "haiku_text": "friends with benefits / benefits as in they pay / for all my food right", "status_id": "354816100871049216"}
{"user": "_CamRonD", "haiku_text": "so if u get drunk / by yourself does that make u / am alcoholic", "status_id": "354816113391046660"}
{"user": "CLowboots", "haiku_text": "i was voted most / likely to win sex god of / the year by my peers", "status_id": "354816114213138433"}
{"user": "reginardz13", "haiku_text": "but its all the same / at the end of the day i / have myself to blame", "status_id": "354819729199857664"}
{"user": "dominiquelaren", "haiku_text": "i feel like crap i / feel like my body was ran / over by a truck", "status_id": "354819737508782080"}
{"user": "MJnot23", "haiku_text": "early morning work / out tomorrow then going / to hoop a lil bit", "status_id": "354819741916987394"}
{"user": "siiiiickharry", "haiku_text": "its my biggest fear / to have someone i follow / or talk to be fake", "status_id": "354819767368028161"}
{"user": "_MelissaGrant", "haiku_text": "when im upset i / get angry sorry if it / annoys you knew cap", "status_id": "354819787320332289"}
{"user": "Dana_Florencia", "haiku_text": "do you think well be / in love forever do you / think well be in love", "status_id": "354819791418175489"}
{"user": "Sara_Dodson", "haiku_text": "the memory of / that pain is stronger than the / possibilities", "status_id": "354819822451834883"}
{"user": "DianaRudan", "haiku_text": "why do i always / bump into people i know / when i look like crap", "status_id": "354819845143007233"}
{"user": "llgoonll", "haiku_text": "nearly lost a whole / hand via ceiling fan while / taking my shirt off", "status_id": "354823509077278720"}
{"user": "The_FotoVogue", "haiku_text": "if slaughterhouses / had glass walls we would all be / vegetarian", "status_id": "354823527502852096"}
{"user": "kelseyxxtaylor", "haiku_text": "the day that i can / smoke weed again my true few / know its going down", "status_id": "354823525086932992"}
{"user": "smithlouis09", "haiku_text": "i should get a job / as an accountant i love / handlin this cash flow", "status_id": "354823582272077825"}
{"user": "MaraPrehm", "haiku_text": "when two people are / meant for each other nothing / can keep them apart", "status_id": "354823609522454528"}
{"user": "MVOcontrols", "haiku_text": "the problem with masks / is that they can be ripped off / at any moment", "status_id": "354823617940422657"}
{"user": "MikeFCoyne", "haiku_text": "got the batman and / james bond card in cards against / humanity yeah", "status_id": "354823613645459459"}
{"user": "x___SoulRebel", "haiku_text": "i have no respect / for anyone that puts their / hands on a female", "status_id": "354827334622265345"}
{"user": "alyssavillagran", "haiku_text": "my mom will braid my / hair maybe once a year so / i feel special now", "status_id": "354827359934881792"}
{"user": "preece_9413", "haiku_text": "what am i supposed / to do when the best part of / me was always you", "status_id": "354827412439171073"}
{"user": "AnaaAtkinson", "haiku_text": "well then realize that / crap and quit putting me as / the bad person here", "status_id": "354827442281656321"}
{"user": "OhMyCilla", "haiku_text": "i gained a lot of / weight but im loosing it all / once again baby", "status_id": "354831046002475009"}
{"user": "marlene_machine", "haiku_text": "im worn out inside / and out worse part is i cant / even sleep how sad", "status_id": "354831077463949312"}
{"user": "spooninliam", "haiku_text": "they played moments guys / moment of silence i was / ruined after that", "status_id": "354831097172983808"}
{"user": "itsniena", "haiku_text": "lying is the most / fun a girl can have without / taking her clothes off", "status_id": "354831107742638081"}
{"user": "NicoleDressen", "haiku_text": "please lock and deadbolt / your door at all times it is / for your own safety", "status_id": "354831128579932160"}
{"user": "Julia_Smola", "haiku_text": "i turn into a / rambling giddy asshole when / im with my boyfriend", "status_id": "354831153775124480"}
{"user": "Face2Phace", "haiku_text": "you know how you can / tell if a girl insecure / about her body", "status_id": "354831170237763586"}
{"user": "micdrouillard_", "haiku_text": "running during storms / makes me feel like im in a / nike commercial", "status_id": "354831156367200256"}
{"user": "PrizePatrol6729", "haiku_text": "the goal is the same / life itself and the price is / the same life itself", "status_id": "354831158569209857"}
{"user": "KerryCherries", "haiku_text": "heat rash over both / feet from big toe to ankle / doing my head in", "status_id": "354831213690761217"}
{"user": "autumn_nicole_3", "haiku_text": "doing whatever / we want this is our house / this is our rules", "status_id": "354834867680317441"}
{"user": "Kenyettaozhscu", "haiku_text": "have with are its but / to my it on if to all / find of have not all", "status_id": "354834882955984896"}
{"user": "mia6415", "haiku_text": "no matter how much / of my heart i give you its / just not good enough", "status_id": "354834906788020224"}
{"user": "allylindholm", "haiku_text": "please just go away / disappear let all this just / be a memory", "status_id": "354834929202364416"}
{"user": "capping_ricky", "haiku_text": "you forgot he strolls / on the beach by himself i / laughed too hard at that", "status_id": "354834943710466048"}
{"user": "EloisaRamez", "haiku_text": "being with you feels / like i am home again home / is where one feels love", "status_id": "354834954720518145"}
{"user": "Marnagbfgr", "haiku_text": "and up this they all / at of on u they i when / one up i it so", "status_id": "354838616582795265"}
{"user": "coralljohnsonn", "haiku_text": "what hurts fingers back / neck wrists elbows ankles toes / knees the list goes on", "status_id": "354838656676151298"}
{"user": "_TheRealTrouble", "haiku_text": "once you stop doing / what you use to you get use / to stop doing it", "status_id": "354838681879724032"}
{"user": "Rachel_Shipston", "haiku_text": "we lose ourselves / in the things we love we find / ourselves there too", "status_id": "354842390009364480"}
{"user": "nuhhjellyy_", "haiku_text": "all the bad stuff has / been happening to me this / month and this week too", "status_id": "354842418534809600"}
{"user": "medaChuckNorris", "haiku_text": "irish people love / to fight so much because they / are part chuck norris", "status_id": "354842436788436992"}
{"user": "AyoKarlaaaa", "haiku_text": "every time i / hear any of his songs i / think of your bitch ass", "status_id": "354842461014736897"}
{"user": "Sara_Beth22", "haiku_text": "missing someone is / your hearts way of reminding / you that you love them", "status_id": "354842486847451136"}
{"user": "JalexTheSexy_", "haiku_text": "but if you close your / eyes does it almost feel like / nothing changed at all", "status_id": "354842504601944064"}
{"user": "kimpeluso12", "haiku_text": "how is it i was / exhausted all day and now / i cant sleep at all", "status_id": "354842508993363968"}
{"user": "Nenita21dc66", "haiku_text": "your find u your are / all was so a and but its / a is so but so", "status_id": "354842512667574273"}
{"user": "TheBieberFedora", "haiku_text": "i cant get over / how sweet he was never give / up on meeting him", "status_id": "354842516035604480"}
{"user": "kaylamariebxo", "haiku_text": "i should feel happy / we are talking again but / i still feel empty", "status_id": "354846152098725888"}
{"user": "jnguy11", "haiku_text": "just got home from my / trip to ax and las vegas / d home sweet texas", "status_id": "354846195589451776"}
{"user": "Nichole_ayee", "haiku_text": "to conclude me and / my dad will never fucking / get along never", "status_id": "354846200941383680"}
{"user": "Turisaina", "haiku_text": "when people have lost / their hope we rise and reshape / their forgotten dreams", "status_id": "354846210345021440"}
{"user": "karlinkeele", "haiku_text": "i really think im / gonna miss fewer people / than i thought i would", "status_id": "354846215902461953"}
{"user": "The_Real_Zach_", "haiku_text": "everyone has a / weakness i have two what u / say and what u do", "status_id": "354846221606719488"}
{"user": "ShadyKBG", "haiku_text": "first time i let her / in my bed she got wetter / then the perfect storm", "status_id": "354846226421788672"}
{"user": "LegitJayJay", "haiku_text": "i distance myself / from a lot of people but / i have my reasons", "status_id": "354846256180379648"}
{"user": "chaudiophile", "haiku_text": "i fall in love with / anyone who is skilled at / projecting themselves", "status_id": "354849898010640386"}
{"user": "PrizePtrol85151", "haiku_text": "the goal is the same / life itself and the price is / the same life itself", "status_id": "354849927949586433"}
{"user": "_Sallvador", "haiku_text": "i have alot of / packing to do but im too / lazy to do it", "status_id": "354849992327966720"}
{"user": "hollyboley", "haiku_text": "us girls hanging out / consist of us just sitting / around watching vines", "status_id": "354850000234229760"}
{"user": "amberyonker", "haiku_text": "im so bored wish i / could live in texas again / i love that state p", "status_id": "354849997000417283"}
{"user": "MsAnyastood", "haiku_text": "not ready to see / my brothers face i know this / is eating him up", "status_id": "354850031595028481"}
{"user": "Oscar2nuhx", "haiku_text": "at and for at when / and find be so me on was / you not you are have", "status_id": "354850048997203968"}
{"user": "Emily_Chalk", "haiku_text": "never knew it could / be so wicked hoping that / you would stay with me", "status_id": "354853705830510592"}
{"user": "Spalding_Life06", "haiku_text": "in this cold life the / more cold you are seen like the / more the hoes love you", "status_id": "354853732602757120"}
{"user": "Tracyc0hu", "haiku_text": "but be do your and / we this this with me but so / find if i in i", "status_id": "354853813687025664"}
{"user": "bahartender", "haiku_text": "sometimes good things fall / apart so that better things / can fall together", "status_id": "354853813548625921"}
{"user": "AyItsKimboslice", "haiku_text": "not being able / to help someone when they need / it feels terrible", "status_id": "354853826274148352"}
{"user": "K8_McKanna", "haiku_text": "you here right now so / i could cuddle the fuck out / of you all night long", "status_id": "354853837288386562"}
{"user": "SaamBaam25", "haiku_text": "why cant the past just / pick itself up and remove / itself from my life", "status_id": "354853689577570304"}
{"user": "_ILoveeYhuu143", "haiku_text": "damn damn damn what i / do to have u here here here / i wish u were here", "status_id": "354857487050092544"}
{"user": "IMakeItJuicy", "haiku_text": "gucci got bitches / eating each other out in / his video tho", "status_id": "354857481052241920"}
{"user": "lovezarry", "haiku_text": "i knew the boys were / going to be drunk when they / come to toronto", "status_id": "354857540607148034"}
{"user": "SincerelyAnna13", "haiku_text": "i love how these guys / that are in the band just show / up out of nowhere", "status_id": "354857557107544064"}
{"user": "Anenih", "haiku_text": "life is too short to / spend it with someone who makes / your days difficult", "status_id": "354857563327709185"}
{"user": "joshtodd6", "haiku_text": "feels so much better / getting up earlier puts / you in a good mood", "status_id": "354857576241967104"}
{"user": "PrizePatrol8449", "haiku_text": "to be successful / the first thing to do is fall / in love with your work", "status_id": "354857605685985282"}
{"user": "adamreid10", "haiku_text": "chances are if your / name is lindsey larsen im / whipped over you too", "status_id": "354857623331418112"}
{"user": "FullOn9tanki", "haiku_text": "i wanna see now / you see me but no late night / shows available", "status_id": "354861258786353152"}
{"user": "MrMachouuraaa", "haiku_text": "some things are meant to / be and it will happen just / be willing to wait", "status_id": "354861271516069888"}
{"user": "qyla_iyla", "haiku_text": "i think the perfect / hugs are when someone hugs me / without me asking", "status_id": "354861291673890816"}
{"user": "euphoriclarry", "haiku_text": "how did toothpaste end / up on my phone i was in / the fucking kitchen", "status_id": "354861354676531200"}
{"user": "Margrettknv7", "haiku_text": "on for with find on / of is if out we when are / not be of they can", "status_id": "354861378248523776"}
{"user": "KaileeGoglia", "haiku_text": "story of my life / searching for the right but it / keeps avoiding me", "status_id": "354865066975297536"}
{"user": "zarryclairey", "haiku_text": "why is everyone / talking about niall being / drunk what did i miss", "status_id": "354865090169815042"}
{"user": "Gyvlees", "haiku_text": "and instead listen / to what you yourselves want im / totally agree", "status_id": "354864738108313600"}
{"user": "HellaCoolJ", "haiku_text": "why do i feel like / not enough people listen / to classic rappers", "status_id": "354865111531393024"}
{"user": "iamrichbryan", "haiku_text": "im glad i got the / crib out the way that was the / most important thing", "status_id": "354865149376606209"}
{"user": "Madgewllxt", "haiku_text": "is find are was but / it your all we your get its / if one this one to", "status_id": "354865169467326465"}
{"user": "adambadli", "haiku_text": "of all the liars / in the world sometimes the worst / are our own fears", "status_id": "354865171526729728"}
{"user": "HalaAAmmar", "haiku_text": "goodmorning am i / mistaken or the weather / is lovely today", "status_id": "354868838250184704"}
{"user": "OnlinePsychics1", "haiku_text": "smiles escape from clouds / above and angels ring a / chorus of your love", "status_id": "354868901621932033"}
{"user": "MendozaZaria", "haiku_text": "here is the truth he / is not through with making a / masterpiece of you", "status_id": "354868923960791042"}
{"user": "ChinChinAlcanta", "haiku_text": "music is my own / free medicine to make me / feel okay again", "status_id": "354868949718007811"}
{"user": "LightSlander", "haiku_text": "cant waste a good tweet / at these hours gotta let / it flourish later", "status_id": "354872574045462529"}
{"user": "reyzando", "haiku_text": "it seem you really / make me blush and my life just / stop for a moment", "status_id": "354872583847550976"}
{"user": "Princess_Biebz", "haiku_text": "people stared at me / when i was crying only / you guys understand", "status_id": "354872608442941440"}
{"user": "Ashlyowzek", "haiku_text": "at it is its in / up it its it and not your / on my so so do", "status_id": "354872615824920579"}
{"user": "Ken_Got_Yen", "haiku_text": "i think i love trance / so much because the vocals / as so beautiful", "status_id": "354872647198322689"}
{"user": "xxStacey8xx", "haiku_text": "soo happy im off / and i get to enjoy the / weather today though", "status_id": "354872713757728769"}
{"user": "JASMlNEEE", "haiku_text": "this week has to be / the worse i nearly stopper / my phone this morning", "status_id": "354876367675981824"}
{"user": "Lew_isGil124", "haiku_text": "this was her ozark / way of telling me that i / would get what she cooked", "status_id": "354876373266989056"}
{"user": "Danaefapyb", "haiku_text": "its all out in do / can to with but its just that / up all they be just", "status_id": "354876376270110722"}
{"user": "RedHeartUnited", "haiku_text": "hopefully this means / that united will revamp / the website soon too", "status_id": "354876425460920321"}
{"user": "brinathebat", "haiku_text": "we also seen that / black bitch from shake it up at / santa monica", "status_id": "354876486823579649"}
{"user": "briaunaalexis1", "haiku_text": "the amount of times / i choke on my own air is / highly unhealthy", "status_id": "354876486311886848"}
{"user": "Ayoo_Bexzy", "haiku_text": "you can be my worst / enemy but if you need / someone ill be there", "status_id": "354876507082063872"}
{"user": "toriaaloves", "haiku_text": "sarcastic with a / low tolerance for people / who puts herself first", "status_id": "354880090066264066"}
{"user": "laydimarz", "haiku_text": "and i hope its soon / cause i need to go buy food / my fridge is empty", "status_id": "354880136732094465"}
{"user": "PookEveryday", "haiku_text": "its a diff between / living with somebody and / staying with someone", "status_id": "354880105958473728"}
{"user": "ericakrivera", "haiku_text": "let me tell you bout / a girl i know she likes hip / hop and rock n roll", "status_id": "354880157296754688"}
{"user": "Elizabeth3208", "haiku_text": "like if i wanted / people to know by business / id put it out there", "status_id": "354880183087534081"}
{"user": "Marylou8fls", "haiku_text": "out but just one in / with do out have u was we / it your have its me", "status_id": "354880185692192768"}
{"user": "a_rom13", "haiku_text": "this is the time of / night it would be nice to be / cuddling with someone", "status_id": "354880221448642562"}
{"user": "Aaliyahactiex", "haiku_text": "im actually / doing work in welsh today / somethings wrong with me", "status_id": "354880229296181248"}
{"user": "Sammys__World", "haiku_text": "oh and when the days / are getting darker id save / you from the thunder", "status_id": "354880280810635265"}
{"user": "Lauraleedpxvls", "haiku_text": "just of be and be / but but out if u up are / are so u this up", "status_id": "354883906996158464"}
{"user": "ObeyyNeock", "haiku_text": "hopefully before / summer ends i can go to / dallas or houston", "status_id": "354883913082085377"}
{"user": "Monikita209", "haiku_text": "still up and my mom / is going to wake me up / early tomorrow", "status_id": "354883912931086336"}
{"user": "ronaldp13", "haiku_text": "life is a maybe / death is for sure sin is the / cause christ is the cure", "status_id": "354883912834617345"}
{"user": "Allen_Darwin74", "haiku_text": "this was her ozark / way of telling me that i / would get what she cooked", "status_id": "354883924771618817"}
{"user": "Cleo_Fern2", "haiku_text": "other then pointless / drama high school is one of / the best memories", "status_id": "354883969487093761"}
{"user": "Dirty_Carlito", "haiku_text": "yo im gonna need / some of those kisses and then / ill be on my way", "status_id": "354883972985135106"}
{"user": "eileen3701", "haiku_text": "cherish the moments / you spend with the person who / makes you smile the most", "status_id": "354883977749856257"}
{"user": "tinynani", "haiku_text": "crazy but hey thank / you to davis for helping / my day be the best", "status_id": "354883994573225984"}
{"user": "Kindraoijf", "haiku_text": "in all so at get / up so u you at with is / a at can me are", "status_id": "354884046704226305"}
{"user": "summeerhill", "haiku_text": "need to get out of / this house right now cant handle / this any longer", "status_id": "354887681681010689"}
{"user": "Josieddmc32", "haiku_text": "one at just but a / on when that me it have it / of i and be they", "status_id": "354887757048455169"}
{"user": "GeorgeDC3", "haiku_text": "it seems so pointless / to have an opinion when / yours is never true", "status_id": "354887790514798592"}
{"user": "MykaSmilesBigg", "haiku_text": "i hate bitches that / hold grudges bitch its been a / year get over it", "status_id": "354887816292999169"}
{"user": "Marinajjrmg", "haiku_text": "all it this can do / if a up find one my if / you this to not it", "status_id": "354891454314840066"}
{"user": "cotter_kyle", "haiku_text": "so many weird things / being promoted on my / timeline this morning", "status_id": "354891457900978178"}
{"user": "Canadianswift21", "haiku_text": "she wakes me up each / morning with the beautiful / sound of my skin flute", "status_id": "354891549357772801"}
{"user": "TeishaGuadagno", "haiku_text": "i like how we talk / all the time and never get / bored of each other", "status_id": "354891543653527552"}
{"user": "Danyellbiesyy", "haiku_text": "in out my and u / your at my my not it was / just was if was if", "status_id": "354895231935713280"}
{"user": "Tyborough", "haiku_text": "i should start talking / in high vocabulary / to confuse people", "status_id": "354895252324233216"}
{"user": "diannnnnnnna_", "haiku_text": "guys should stop playing / there little games its really / old and annoying", "status_id": "354895320523603968"}
{"user": "zytweelf", "haiku_text": "why why why why has / it to be now is there a / meaning behind it", "status_id": "354895320389402626"}
{"user": "IamAmarranga", "haiku_text": "if you do something / right once someone will ask you / to do it again", "status_id": "354895362269515777"}
{"user": "dantestobby", "haiku_text": "criss angel must be / eating with the devil or / the devil himself", "status_id": "354895391386374144"}
{"user": "Fatimajuu5xk", "haiku_text": "have you so can they / you be in it your have are / was u this can in", "status_id": "354895398462169088"}
{"user": "_avalsi", "haiku_text": "my days are backwards / i wake up tired and go / to bed wide awake", "status_id": "354898994419351552"}
{"user": "Mr_SammyT", "haiku_text": "i hate that sleep where / it feels like you blinked and then / you have to wake up", "status_id": "354898991751761920"}
{"user": "gekabells", "haiku_text": "nobody is too / busy its just a matter / of priorities", "status_id": "354898997883830273"}
{"user": "Cdahlcutie", "haiku_text": "if your the mature / one why do you continue / to talk about us", "status_id": "354899003135115264"}
{"user": "PrizePtrol03224", "haiku_text": "the goal is the same / life itself and the price is / the same life itself", "status_id": "354898871928889344"}
{"user": "Pst_Krisss", "haiku_text": "sometimes silence guides / our minds so move to a / place so far away", "status_id": "354899026950361089"}
{"user": "WithTeamBieber", "haiku_text": "gonna go outside / i cant so anything else / when they leave me here", "status_id": "354899034638520322"}
{"user": "Angeliicaajeean", "haiku_text": "id rather work for / something than get it handed / to me on a plate", "status_id": "354899062794887168"}
{"user": "zvrrys", "haiku_text": "maggie and i are / the perfect two hence our / display names ok", "status_id": "354899065596674048"}
{"user": "Dt_Uin", "haiku_text": "i know theirs more too / you them what meets the eye when / im just stuck looking", "status_id": "354899058663505923"}
{"user": "JobsInvite14569", "haiku_text": "enjoy your own life / without comparing it with / that of another", "status_id": "354899055798784000"}
{"user": "heysazz", "haiku_text": "why are hotels in / paris so expensive i / just want a nice room", "status_id": "354899078942961664"}
{"user": "AXCTristan", "haiku_text": "i love the airport / because i get to fly and / to show off myself", "status_id": "354899102707879937"}
{"user": "_wolfeee_", "haiku_text": "all you had to do / was be there for me guess that / was too hard for you", "status_id": "354899156097171456"}
{"user": "alfafc", "haiku_text": "sweetie your face is / not a coloring book calm / down with the makeup", "status_id": "354902848720470019"}
{"user": "Raguelycg5sk", "haiku_text": "with up when not up / do we my me on i up / are with its is can", "status_id": "354906575024037888"}
{"user": "ottopriadi", "haiku_text": "what i am doing / now to see my class via / internet reload", "status_id": "354906569592422400"}
{"user": "AshlieMay13", "haiku_text": "you got me falling / all over again i love / waking up to you", "status_id": "354906595341246464"}
{"user": "mikelharry", "haiku_text": "things may come to those / who wait but only things left / by those who hustle", "status_id": "354906638869733377"}
{"user": "ohsebuns", "haiku_text": "too soon we had to / say goodbye the follow up / will be just as short", "status_id": "354906702283415552"}
{"user": "Randygglnbf", "haiku_text": "when but all are at / they my when of of up to / for is have for find", "status_id": "354906703122268161"}
{"user": "Paulqhsnoh", "haiku_text": "up not when can have / you if in have not one my / me for a get i", "status_id": "354910338350718976"}
{"user": "Sari8oopt", "haiku_text": "one can out be your / a and can of when is just / on if they up was", "status_id": "354910425038594049"}
{"user": "zieglering", "haiku_text": "fun story once i / had a betta fish and i / caught a train with it", "status_id": "354914090914807808"}
{"user": "Eldoran4c3", "haiku_text": "i in and if but / on not was up not with and / out when just that at", "status_id": "354914164680036354"}
{"user": "Brandenphvr", "haiku_text": "they out this it not / is you but up it for have / if can its can out", "status_id": "354914179142004737"}
{"user": "thatonesk8r", "haiku_text": "why cant you two just / talk to yourselves so no one / comes across your shit", "status_id": "354914100897267712"}
{"user": "lee_zzy", "haiku_text": "if you want it lets / do it ride it hump on it / come and jump on it", "status_id": "354917868409856000"}
{"user": "PrizePtrol23219", "haiku_text": "the goal is the same / life itself and the price is / the same life itself", "status_id": "354917797039587329"}
{"user": "Enid0kij2h", "haiku_text": "be i one u are / one it just get is they get / it in all at for", "status_id": "354918033438932994"}
{"user": "lovemedownniam", "haiku_text": "its so weird most of / the people i follow are / on the east coast too", "status_id": "354918051864514560"}
{"user": "diomiegi", "haiku_text": "the only people / you need in life are the ones / that need you in theirs", "status_id": "354921094291009536"}
{"user": "natholland1", "haiku_text": "my house is soo hot / i ache all over and i / have to go to work", "status_id": "354921672039596032"}
{"user": "razzkharka", "haiku_text": "it important to / be you than pretend to be / you which is not you", "status_id": "354921677563510784"}
{"user": "DoTheRHYthing", "haiku_text": "loyalty is rare / so value those that show you / that on the daily", "status_id": "354921731061846018"}
{"user": "leann1819", "haiku_text": "im done trying to / get your attention if you / want me come find me", "status_id": "354921762514931712"}
{"user": "AlanTuring2013", "haiku_text": "what if i want to / be just myself is there a / chance can i survive", "status_id": "354925455821914112"}
{"user": "anaghakumar2", "haiku_text": "its amazing how / small little conversations / change things forever", "status_id": "354925456463634433"}
{"user": "NatRehtse", "haiku_text": "all you know how to / do is threaten so yea that / where i learn from you", "status_id": "354925466676772864"}
{"user": "JobsInvite09606", "haiku_text": "he that wrestles with / us strengthens our nerves and / sharpens our skill", "status_id": "354925515909496833"}
{"user": "WRESTLE_PA__182", "haiku_text": "at least i become / a working man again on / this shitty morning", "status_id": "354925520133160960"}
{"user": "Caitlyn3jaz", "haiku_text": "just so in can me / when i are is one was your / be they and up this", "status_id": "354925555163996160"}
{"user": "Br_ownAbram940", "haiku_text": "this was her ozark / way of telling me that i / would get what she cooked", "status_id": "354925579511934976"}
{"user": "Tamrab9sxn", "haiku_text": "you is out be have / of out in it u have at / on get just do of", "status_id": "354929196910387202"}
{"user": "aidanhp", "haiku_text": "dad just handed me / a chicken breast while humming / written in the stars", "status_id": "354929226895474688"}
{"user": "Jodiemacdough", "haiku_text": "how is it still just / as awful the second time / round clementine ah", "status_id": "354929236575911937"}
{"user": "xoRoyalPrincess", "haiku_text": "how the hell some of / you lot get your license get / off the road like now", "status_id": "354929241047052288"}
{"user": "kimmy_maree", "haiku_text": "how sweet it must be / to feel all the pain at once / then never again", "status_id": "354929294121775104"}
{"user": "itzpipin", "haiku_text": "envy people that / know love that have someone who / takes them as they are", "status_id": "354929337230819329"}
{"user": "Josephkuemal", "haiku_text": "so of out its get / but can a of my a when / can not when of be", "status_id": "354932975814713344"}
{"user": "Breannadksvr", "haiku_text": "have its we you u / for was just all do can that / i with one when one", "status_id": "354932991237169152"}
{"user": "bexdrittler", "haiku_text": "only had my phone / case a couple of days and / its already cracked", "status_id": "354933005086765058"}
{"user": "Inocenciagrwvt", "haiku_text": "at we when get a / they a that all you so find / that a find just have", "status_id": "354933051723223041"}
{"user": "AdeleLoveQuotes", "haiku_text": "good things come to those / who wait but great things come to / those who act on it", "status_id": "354933053635821569"}
{"user": "deulhoon", "haiku_text": "but my grandma did / tell her off and gave her her / pills so she can leave", "status_id": "354933072145289217"}
{"user": "FLlRTATlONSHlP", "haiku_text": "sometimes when we say / im over it we really / mean im used to it", "status_id": "354933106639241217"}
{"user": "Shijeana_LV", "haiku_text": "some days my eyebrows / look thick the next they look thin / never do i win", "status_id": "354936748612136960"}
{"user": "Mahlun", "haiku_text": "letting us out of / philosophy early may / have been a mistake", "status_id": "354936790567751680"}
{"user": "Pdotdot91", "haiku_text": "fair enough if her / driving was good but hers is / shocking to be kind", "status_id": "354936204141150208"}
{"user": "Wardejyick", "haiku_text": "just u have they of / is that is but u for in / of they it a but", "status_id": "354936792379699202"}
{"user": "Real_babySHAQ", "haiku_text": "i hate waking up / early but id rather work / early than later", "status_id": "354936829339901953"}
{"user": "anitharisqan", "haiku_text": "when our friends talk / about you all that it does / is just tear me down", "status_id": "354936922214375425"}
{"user": "Vikkifyxl5", "haiku_text": "my its me we just / not have do have its a do / in when get just this", "status_id": "354940537876398082"}
{"user": "colesprsgf", "haiku_text": "i wish i could just / erase all those memories / of us from my mind", "status_id": "354940623696052224"}
{"user": "Elwandayykig", "haiku_text": "do me in out up / that was get u but my not / not in in your and", "status_id": "354940686736433152"}
{"user": "GieDaulay", "haiku_text": "what i did to you / its your choice not me well you / made me choose it d", "status_id": "354944312183762944"}
{"user": "AndrewAdamson12", "haiku_text": "is anybody / willing to come pick me up / at the hospital", "status_id": "354944321880989699"}
{"user": "Deprived_Girl", "haiku_text": "women get knocked down / too often lets try building / each other back up", "status_id": "354944321465757697"}
{"user": "emilywade_", "haiku_text": "fuck off shaun fuck off / ally fuck off fuck off fuck / off im so angry", "status_id": "354944367640850434"}
{"user": "TheRealAshLOYAL", "haiku_text": "ill be at home all / day getting some much needed / sleep with my phone off", "status_id": "354944365828898816"}
{"user": "ell_eysselinck", "haiku_text": "i actually / had a really good night last / night l love my friends", "status_id": "354944374456590336"}
{"user": "ikesylva", "haiku_text": "you may encounter / many defeats but you must / not be defeated", "status_id": "354944407704842240"}
{"user": "immybridges", "haiku_text": "cant be doing with / people that go on about / themselves all the time", "status_id": "354944403036585984"}
{"user": "arielscomedy", "haiku_text": "alarm clocks because / nothing says good morning like / a nice heart attack", "status_id": "354944415497859072"}
{"user": "JaceNugier", "haiku_text": "me and that dude race / down our gravel road of / course the civic won", "status_id": "354944432052768768"}
{"user": "KajolChaurasia", "haiku_text": "my dad just rang to / most obnoxious bells in my / ear to wake me up", "status_id": "354948127792435202"}
{"user": "Williamsanqd", "haiku_text": "it your one my but / in at out do i me all / your you its me u", "status_id": "354948199640858624"}
{"user": "glouisebell", "haiku_text": "i used to think i / was really indecisive / now im not so sure", "status_id": "354948231676952576"}
{"user": "BrendaThoka", "haiku_text": "can i call roadside / assistance to help me find / where i parked my car", "status_id": "354948242804457474"}
{"user": "Jaylacy23", "haiku_text": "i seriously / need an assistant this is / getting out of hand", "status_id": "354951884349521920"}
{"user": "Jixje", "haiku_text": "if i say ok / during an argument that / means shut the fuck up", "status_id": "354951921242603522"}
{"user": "Kirei__Nikole", "haiku_text": "going to the gym / in a few hopefully i / will relieve some stress", "status_id": "354951928511336448"}
{"user": "Viola_Shianne", "haiku_text": "i guess i should get / some work done i do have a / draft due tomorrow", "status_id": "354951926946865152"}
{"user": "Lani12ox", "haiku_text": "on my not and is / all of not not for is with / is you we for on", "status_id": "354955624041287681"}
{"user": "Char11Styles", "haiku_text": "kirsten there getting / strippers its vegas it comes / as a side order", "status_id": "354955677464141825"}
{"user": "lina_kp", "haiku_text": "when were you small did / you parents teach you to eat / with your mouth closed x", "status_id": "354955705847005184"}
{"user": "stylesavvy_bot", "haiku_text": "she entered and won / an archery tournament / to impress someone", "status_id": "354959396243116032"}
{"user": "itsdevinnn", "haiku_text": "smoking in my car / before i gotta go stick / people with needles", "status_id": "354959463318429696"}
{"user": "ashleyapproves", "haiku_text": "it sucks bigtime when / you have clogged nose and having / a hard time breathing", "status_id": "354959481240698881"}
{"user": "Windyyyczq", "haiku_text": "its but all do if / so in if all just with have / not was a its we", "status_id": "354963255929749504"}
{"user": "smile4mezxc", "haiku_text": "should girls choose a guy / she love or a guy that love / her more than herself", "status_id": "354963261885657088"}
{"user": "Emawee97", "haiku_text": "i wanna get this / over with so i can go / home and take a nap", "status_id": "354963292453744643"}
{"user": "nessayaw", "haiku_text": "just done with the hot / stone massage and i feel so / zen off to dreamland", "status_id": "354963329443307520"}
{"user": "lilly484", "haiku_text": "why is there a man / walking outside in the heat / while its fasting time", "status_id": "354963363182280704"}
{"user": "Arnettakn2igu", "haiku_text": "do at up are and / but do do one can its your / a they at to u", "status_id": "354967023480090624"}
{"user": "boohooforben", "haiku_text": "because you only / need yourself to be happy / and because you can", "status_id": "354967148151582721"}
{"user": "lesbianqOddess", "haiku_text": "i cant watch white porn / they do way too much talking / just shut the fuck up", "status_id": "354967364292460546"}
{"user": "Leolahqqc4", "haiku_text": "i if me you can / not do u when not when and / its but on they was", "status_id": "354967369342390273"}
{"user": "luhan_re", "haiku_text": "yah how did you know / that it was supposed to be / a top secret whines", "status_id": "354967404612292608"}
{"user": "DevanHawkins94", "haiku_text": "its funny how if / someone you care about is / sad you feel it too", "status_id": "354967416146628610"}
{"user": "MiraaaAnabella", "haiku_text": "my minds been playing / a lot of indonesian / songs lately weird much", "status_id": "354973453176156160"}
{"user": "ninananaBATMAN", "haiku_text": "band interviews will / always keep me up until / five in the morning", "status_id": "354973453788516352"}
{"user": "JoaniePhotos", "haiku_text": "up early and got / surprised by the wild parrots / doing a flyby", "status_id": "354973478413279232"}
{"user": "Guadalupesqaw", "haiku_text": "this all you out if / with its get for on get have / u can u out but", "status_id": "354973566476890113"}
{"user": "jellitoocold", "haiku_text": "the only lying / i would do would be in the / bed with you a lie", "status_id": "354982208123052033"}
{"user": "twinkling93", "haiku_text": "i just typed such a / long updates then this shitty / pad turn itself off", "status_id": "354982088933523457"}
{"user": "LucyKnight_", "haiku_text": "all she does is text / me dumb pointless things like i / actually care", "status_id": "354982260295991296"}
{"user": "dessy_d0pee", "haiku_text": "i wish i had just / one person to understand / what im dealing with", "status_id": "354982328503762946"}
{"user": "AnniePearch", "haiku_text": "like i built the bridge / crossed it and am on a new / path to see whats next", "status_id": "354982336582000642"}
{"user": "StupidClutch", "haiku_text": "always got to tell / people to get you something / before they go out", "status_id": "354988295073185792"}
{"user": "Kairaboo15", "haiku_text": "acid rain is in / my brain its been killing the / flowers in my heart", "status_id": "354988300274122755"}
{"user": "misscourtneylee", "haiku_text": "as much as i love / math it can go die in a / hole for all i care", "status_id": "354988320520015874"}
{"user": "Sanagccx", "haiku_text": "on can do on that / if at that they a with be / i me just for my", "status_id": "354988336298995712"}
{"user": "Lindseyvrio1", "haiku_text": "but to with find on / but up i you i one do / on have is to are", "status_id": "354988348483440642"}
{"user": "I_Am_Amari", "haiku_text": "i just need to clear / my mind now its been racing / since the sumner time", "status_id": "354988420977803264"}
{"user": "Ellieayxjt", "haiku_text": "your on it not so / out have and this u me and / with of was your when", "status_id": "354988428632399874"}
{"user": "sweezy_wife", "haiku_text": "i use to want him / so bad but he was the best / thing i never had", "status_id": "354993400723931136"}
{"user": "ClaraDelia_", "haiku_text": "pa this friday and / im not ready nor looking / forward to this drive", "status_id": "354993397943107584"}
{"user": "chikyPedia", "haiku_text": "i think i spend most / of the time in the kitchen / im such a woman", "status_id": "354993418889474048"}
{"user": "iancanfly", "haiku_text": "such a happy day / with so much good news im not / giving up just yet", "status_id": "354993418281299970"}
{"user": "BradieBrown7", "haiku_text": "gonna get my drink / when my mums in from work then / that should be me set", "status_id": "354993445615575040"}
{"user": "nmcilveen", "haiku_text": "why even look at / my phone no ones really been / up since last i checked", "status_id": "354993452531982336"}
{"user": "iSEEK_KNOWLEDGE", "haiku_text": "i want to go to / a legit carnival at / least once in my life", "status_id": "354993472157134849"}
{"user": "MadiBehindBars", "haiku_text": "doing whatever / we want this is our house / this is our rules", "status_id": "354993526452387840"}
{"user": "EchoesofBlack_", "haiku_text": "return of the mack / is one of the greatest songs / ever recorded", "status_id": "354997150054227969"}
{"user": "HersheyKissel", "haiku_text": "can they just like shut / everything down for one day / people will survive", "status_id": "354997197273698305"}
{"user": "sWitchDomme", "haiku_text": "i suppose i should / shower and shave before i / post any more ads", "status_id": "354997202025840640"}
{"user": "binacamason", "haiku_text": "females be looking / like a glass of water in / hell when im horny", "status_id": "354997241192255488"}
{"user": "PaytonGabrielle", "haiku_text": "i take that back im / not feeling being around / little boys today", "status_id": "354997242475720704"}
{"user": "ULRICHTRAVEL", "haiku_text": "browse my site for the / best travel deals on thew web / at the best prices", "status_id": "354997260100190208"}
{"user": "NeverInADream", "haiku_text": "okay my small rant / is over unless they say / anything again", "status_id": "354997306157830146"}
{"user": "Star0fTheSea", "haiku_text": "im always that one / person sitting by themselves / in a crowded room", "status_id": "354997330786795520"}
{"user": "Isadorainap", "haiku_text": "that so of at me / they just not are a be you / was if to all not", "status_id": "355000934826377216"}
{"user": "Yup_Im_Hers", "haiku_text": "my brother and i / is about to be out but / where we going to", "status_id": "355000895118905344"}
{"user": "daseotbyul", "haiku_text": "its getting late and / i think that im getting old / so good night people", "status_id": "355000949099597824"}
{"user": "SadityMommy_B", "haiku_text": "im the wrong person / to run with cause if i go / down we all go down", "status_id": "355001006737719296"}
{"user": "Kelsiun2mf", "haiku_text": "you all be a not / of was be a me up find / just with out of can", "status_id": "355001037788168193"}
{"user": "DarellUburnnJay", "haiku_text": "sometimes its better / to keep silent than to tell / others what you feel", "status_id": "355001098169352194"}
{"user": "SamanthaJuwayyi", "haiku_text": "not eating during / the day is the easiest / part about fasting", "status_id": "355004706298400768"}
{"user": "awags24", "haiku_text": "time to bite my tongue / constantly and not curse while / grandma is here x", "status_id": "355004705841229825"}
{"user": "ShotgunAnnie40", "haiku_text": "i love football but / athletes get paid way too much / its ridiculous", "status_id": "355004779027628033"}
{"user": "jenna6159", "haiku_text": "being yourself is / the best way to make someone / fall in love with you", "status_id": "355004803845337088"}
{"user": "sunshine_sabs", "haiku_text": "what the fuck is jake / doing at my house are you / fucking kidding me", "status_id": "355004805774712833"}
{"user": "mskaliku", "haiku_text": "doing what you like / is freedom liking what you / do is happiness", "status_id": "355004820932919296"}
{"user": "xo_saramarie", "haiku_text": "to be without love / is to be without grace what / matters most in life", "status_id": "355004823659225089"}
{"user": "natural_city", "haiku_text": "this is where you show / to the people that you guys / had a great talent", "status_id": "355004878029983744"}
{"user": "CasCrab4", "haiku_text": "i cant wait till im / working both jobs i wish i / could get more hours", "status_id": "355008462343770113"}
{"user": "Margueritaunsr", "haiku_text": "all so up in me / they this but so just i do / get i out in a", "status_id": "355008481729851393"}
{"user": "RocketRush", "haiku_text": "better to have it / and not need it than to need / it and not have it", "status_id": "355008516731318272"}
{"user": "jeremyzachary74", "haiku_text": "i hate that feeling / where you have no idea / what to say or do", "status_id": "355008533831483392"}
{"user": "GirIFacts", "haiku_text": "fuck excuses learn / to admit that you fucked up / and made a mistake", "status_id": "355008581868863488"}
{"user": "warrenladd", "haiku_text": "this is now bad from / cook over bowling both of / these guys is stupid", "status_id": "355008577888452608"}
{"user": "itsss_Dani", "haiku_text": "i need your love i / need your time when everythings / wrong you make it right", "status_id": "355008609324765184"}
{"user": "lynne2835", "haiku_text": "i love you because / you make me feel like i mean / something to someone", "status_id": "355008634180214784"}
{"user": "ParisWithAShhh", "haiku_text": "my problem i fall / fast and hard and then i leave / like nothing happened", "status_id": "355012248198053889"}
{"user": "daisylovee", "haiku_text": "why would you have chips / in front of me when you know / i cant have any", "status_id": "355012270016835584"}
{"user": "Kai_XYLOTO", "haiku_text": "fuck a diet ill / eat what i want and do some / crunches and be straight", "status_id": "355012330154770432"}
{"user": "Sheena_McG", "haiku_text": "did i already / say how cute michael was last / night cause he was cute", "status_id": "355012399406923777"}
{"user": "Hyou5to4l", "haiku_text": "and that my one to / up its at it and all one / find u it when can", "status_id": "355012440624336898"}
{"user": "Maritaadz8w", "haiku_text": "have this can out so / they me it not when can but / it do i be at", "status_id": "355016066918920192"}
{"user": "TyreeHudson", "haiku_text": "i suck at cooking / but i can order takeout / with the best of them", "status_id": "355016074636427266"}
{"user": "BcPressley", "haiku_text": "confused as to why / theirs a mexican working / at panda express", "status_id": "355015740958584833"}
{"user": "paigeewing13", "haiku_text": "let me love you and / i will love you until you / learn to love yourself", "status_id": "355016161655668737"}
{"user": "trueblood1201", "haiku_text": "i hate when army / guys call me asking how im / paying for college", "status_id": "355016193641418754"}
{"user": "ParadoxicalMike", "haiku_text": "should i answer the / questions in my ask box or / save them for later", "status_id": "355016199257595906"}
{"user": "RealAciq", "haiku_text": "everytime i see / you its like having a crush / all over again", "status_id": "355019868673818624"}
{"user": "CantStopTheFunk", "haiku_text": "i stink of success / because you cant say gucci / without saying gooch", "status_id": "355019884922548224"}
{"user": "EmmaHartline", "haiku_text": "if mark really wants / his cd back we should hang / out sometime today", "status_id": "355019886625435650"}
{"user": "Lucy_Shanners", "haiku_text": "that would explain why / id never seen very much / if any before", "status_id": "355019938165043200"}
{"user": "_abbie_prince_", "haiku_text": "my sister is such / a selfish bitch all she cares / about is herself", "status_id": "355023546608648192"}
{"user": "leann1819", "haiku_text": "being yourself is / the best way to make someone / fall in love with you", "status_id": "355023597380710401"}
{"user": "selecta_denex", "haiku_text": "i need your love i / need your time when everythings / wrong you make it right", "status_id": "355023611528101888"}
{"user": "_ihatethatbxtch", "haiku_text": "all he can do is / tweet about crab legs on his / value meal budget", "status_id": "355023611406450689"}
{"user": "Clayton_Boso69", "haiku_text": "if you want something / done do it yourself no one / else is going to", "status_id": "355023609489653760"}
{"user": "Girls_on_Ps3", "haiku_text": "gamer rule never / run in front of a team mate / while they are shooting", "status_id": "355023621162418176"}
{"user": "LareeParolini", "haiku_text": "once i put on my / headphones my life becomes a / music video", "status_id": "355023652292542465"}
{"user": "Lashawnoubxs", "haiku_text": "we be its me u / they have you but this out to / but have and out can", "status_id": "355023661729714176"}
{"user": "caseyLhaddock", "haiku_text": "oh why am in the / mood to watch eat pray love why / why why cry cry cry", "status_id": "355023684580286469"}
{"user": "AdrianWalsh20", "haiku_text": "are you afraid of / being alone cos i am / im lost without you", "status_id": "355023762258796544"}
{"user": "tahkeylaah", "haiku_text": "fuck all those nights i / moaned real loud fuck it i faked / it arent you proud", "status_id": "355023764477583360"}
{"user": "mwahh_xoxoxoxo", "haiku_text": "i was just told that / i needed to get over / myself oh okay", "status_id": "355023764209152000"}
{"user": "Rich__qk", "haiku_text": "my mom is so rude / sometimes these people are not / going to help her", "status_id": "355027420870488064"}
{"user": "1001AYMH", "haiku_text": "max meets a girl max / goes on a date max goes back / to hers max factor", "status_id": "355027202275942401"}
{"user": "6honey6bar3", "haiku_text": "if zimmerman had / stayed in his truck martin would / be alive today", "status_id": "355027514470572033"}
{"user": "ivanperezzz", "haiku_text": "i need to learn how / to cook and im not talking / about sandwiches", "status_id": "355027535060418560"}
{"user": "alicia_ebubbles", "haiku_text": "you should all have a / friend with whom you send pictures / of cats back and forth", "status_id": "355031051028008961"}
{"user": "Sabraya_", "haiku_text": "i cant wait to be / on my own and having my / own car my own place", "status_id": "355031197837037568"}
{"user": "cjosepine", "haiku_text": "i wish i were in / long island so i could see / counterparts tonight", "status_id": "355031224382795777"}
{"user": "StevenAlynGibbs", "haiku_text": "and ere their limbs grew / stiff and cold their hearts blood dyed / its every fold", "status_id": "355031256817348608"}
{"user": "1SAVMOM", "haiku_text": "how the hell are there / going to be thunderstorms / today with no rain", "status_id": "355031306352082947"}
{"user": "chelsea_smiles7", "haiku_text": "he needs to get out / of the shower already / so i can rape him", "status_id": "355031314291896322"}
{"user": "KJanosx33", "haiku_text": "even if the sky / is falling down i know that / well be safe and sound", "status_id": "355034914426589187"}
{"user": "kaitiemarie15", "haiku_text": "leave the beach because / its pouring and when i get / home its beautiful", "status_id": "355034929698050048"}
{"user": "fetus_zayn", "haiku_text": "its so hard to see / that probably harry will / never notice me", "status_id": "355034966469509120"}
{"user": "_AdamKent", "haiku_text": "women football is / so shit to watch but some of / them are pretty hot", "status_id": "355035086376288258"}
{"user": "Owens_Era", "haiku_text": "before i take you / back i probably go run / track in some church clothes", "status_id": "355038680546684928"}
{"user": "Hilllix", "haiku_text": "everytime i see / lala i think chris has got / himself a woman", "status_id": "355038678839599104"}
{"user": "mbeezytbaby", "haiku_text": "a daughter is one / of the most beautiful gifts / this world has to give", "status_id": "355038701644021761"}
{"user": "HowILikeWomen", "haiku_text": "i like my women / how i like my mother a / virgin jesus christ", "status_id": "355038747261272065"}
{"user": "JobsInvite11314", "haiku_text": "the trouble with rat / race is that even if you / win you are still rat", "status_id": "355038760766939138"}
{"user": "RashaadPB4L", "haiku_text": "mom off work lets see / if she gone take to get this / phone probably wont", "status_id": "355038794782744576"}
{"user": "QuietLee_Spoken", "haiku_text": "all i want is an / explanation on why you / act the way you do", "status_id": "355038825275326464"}
{"user": "emmfarmer", "haiku_text": "maybe i should have / been a doctor cause they are / always fucking late", "status_id": "355042449590206465"}
{"user": "stephuhknee_x", "haiku_text": "like why does my mind / have to do this i was in / such a good mood ha", "status_id": "355042474303033344"}
{"user": "CroftsGeorgie", "haiku_text": "find it cute that when / me and my bessie leave it / each we say love you", "status_id": "355042523263139840"}
{"user": "BigTimeLautie", "haiku_text": "i need to go and / lay down for few minutes ill / be back later guys", "status_id": "355042520348110848"}
{"user": "Courrrtneybby", "haiku_text": "were just gonna eat / ourselves into a food / coma probably", "status_id": "355042510143361027"}
{"user": "DBRoasters", "haiku_text": "even bad coffee / is better than no coffee / at all david lynch", "status_id": "355042543613911040"}
{"user": "lilianaag", "haiku_text": "this weather makes me / tired and sad and all i / wanna do is sleep", "status_id": "355042626946347009"}
{"user": "Kristenskye_", "haiku_text": "like are we still in / middle school i thought we were / seniors in highschool", "status_id": "355042636161232897"}
{"user": "RSzambor", "haiku_text": "everytime i see / your name i want to hit my / head against a wall", "status_id": "355042619925086208"}
{"user": "GoAUpher", "haiku_text": "hey a regent who / remembered the stadium / fundraising tie ins", "status_id": "355046227022327809"}
{"user": "lamborghiniMACY", "haiku_text": "all you got is some / years on me so fuck you and / your time difference", "status_id": "355046239257112576"}
{"user": "Gioc_14", "haiku_text": "nothing is promised / to me and you so why would / we let this thing go", "status_id": "355046334258085889"}
{"user": "DavidNathanLowe", "haiku_text": "had a dream my front / teeth fell out last night thank fuck / it was just a dream", "status_id": "355046353468010496"}
{"user": "josealaniz5", "haiku_text": "man why do the law / always got to fuck with me / like what did i do", "status_id": "355049993515708417"}
{"user": "naturesthrill", "haiku_text": "then she throws the hood / over her head and does a / thug pose i was dead", "status_id": "355050041481760768"}
{"user": "stfumishy", "haiku_text": "there is no word to / appropriately describe / how stupid you are", "status_id": "355050123090337793"}
{"user": "Marcellawmijnt", "haiku_text": "so its its if be / me at be one find up up / up on u all up", "status_id": "355050131852247040"}
{"user": "_TAYLORRmadeee", "haiku_text": "why zimmerman not / testifying cause he know / what he did was wrong", "status_id": "355050196025098240"}
{"user": "Jon_D_96", "haiku_text": "i want to know what / ill be doing with my life / in the future d", "status_id": "355050201616105472"}
{"user": "LeaLrt", "haiku_text": "let me love you and / i will love you until you / learn to love yourself", "status_id": "355053766489288704"}
{"user": "BethyyCampbell", "haiku_text": "its been a while but / i still feel the same maybe / i should let you go", "status_id": "355053803818582016"}
{"user": "JoeDorgali", "haiku_text": "i fucking hate it / when my parents ask if i / have any guy friends", "status_id": "355053806121259008"}
{"user": "BoyBrat4life", "haiku_text": "i hate trying to / look for a drum stuck when you / have alot of them", "status_id": "355053831802990593"}
{"user": "_hannahaltman7", "haiku_text": "would like to know where / virginia senators stand / on student loan bill", "status_id": "355053916624396290"}
{"user": "BewareVinales", "haiku_text": "im saying tho if / someone comes through ill make them / a tuna sandwich", "status_id": "355053946076798978"}
{"user": "SharylHerman2", "haiku_text": "most businesses want / to promote themselves in the / best possible way", "status_id": "355057564515434497"}
{"user": "lilkintz23magic", "haiku_text": "they are making a / movie called planes its like cars / but planes so stupid", "status_id": "355057665661083649"}
{"user": "YourBoiJerry", "haiku_text": "people tell you you / cant follow your dreams because / they cant follow theirs", "status_id": "355061271198056448"}
{"user": "coryathompson1", "haiku_text": "its been raining so / much that im starting to turn / into rain itself", "status_id": "355061300604321793"}
{"user": "gaybums", "haiku_text": "i cant do it now / because laptop overheats / and turns itself off", "status_id": "355061263660875776"}
{"user": "Kaitlyn5SOS", "haiku_text": "you take the breath right / outta me you left a hole / where my heart should be", "status_id": "355061362185089024"}
{"user": "edleguizamon", "haiku_text": "its forcing you down / and its grinding against you / let the war nerve break", "status_id": "355061365926408193"}
{"user": "ronakjain_9", "haiku_text": "that moment when you / have everything and nothing / at the same time that", "status_id": "355061533207838721"}
{"user": "chloeelainex", "haiku_text": "over thinking is / possible the worst thing you / can do to yourself", "status_id": "355065157627547648"}
{"user": "wesleyrcrusher", "haiku_text": "it was then when i / realized i have nothing to / wear for comic con", "status_id": "355065248811728897"}
{"user": "jessickauhhlove", "haiku_text": "if i put light brown / dye on my pink hair is the / pink still gonna show", "status_id": "355065263948967939"}
{"user": "TheLaurenAshlie", "haiku_text": "i want to take up / dancing but i cant dance nor / am i flexible", "status_id": "355068829728120832"}
{"user": "AyeKayye_47", "haiku_text": "there are daft punk get / lucky condoms for all you / high schoolers out there", "status_id": "355069021529456641"}
{"user": "C_Babyox", "haiku_text": "im loving getting / all these hours at work this / week keep it coming", "status_id": "355069078597148672"}
{"user": "bbykyla", "haiku_text": "i hate when i tell / someone to come here and they / fucking ignore me", "status_id": "355072640626606080"}
{"user": "Drops_of_time", "haiku_text": "can you feel it in / your soul under your skin just / let it take control", "status_id": "355072821824720896"}
{"user": "leeesalonzo", "haiku_text": "too bad my other / one broke they should really make / them more durable", "status_id": "355072826161631233"}
{"user": "geecaps", "haiku_text": "the way some girls draw / their eyebrows on makes them look / constantly upset", "status_id": "355072825666711553"}
{"user": "Younger_Jeezy", "haiku_text": "just got off the phone / with my boo aka michael / from dell tech support", "status_id": "355076468331642880"}
{"user": "c4tcherintherye", "haiku_text": "its fairly shitty / when everyone goes for your / friends instead of you", "status_id": "355076483800236032"}
{"user": "its_annalisa", "haiku_text": "take advantage of / an opportunity when / it presents itself", "status_id": "355076469753516032"}
{"user": "PeytonMcCool", "haiku_text": "when i have a full / tank of gas i feel like i / can conquer the world", "status_id": "355076574254604288"}
{"user": "georgeizzie_", "haiku_text": "you think opinions / make you savvy your running / mouth falls on deaf ears", "status_id": "355076580084695040"}
{"user": "et1243", "haiku_text": "faith love and hope r / some good things god gave us but / the greatest is love", "status_id": "355076581737250818"}
{"user": "caprisuncalum", "haiku_text": "bye im going to / drive around in my car and / listen to music", "status_id": "355076583834402816"}
{"user": "ChristinaaEvans", "haiku_text": "soo the boys still have / a game at the highschool but / ours is canceled", "status_id": "355076579237445632"}
{"user": "BornAtAParty", "haiku_text": "a toast to all those / that quit the social network / and then come right back", "status_id": "355076638532317185"}
{"user": "httpudd", "haiku_text": "home is where the heart / is its where we started where / we belong singing", "status_id": "355080261542756352"}
{"user": "MaryAnneCalora", "haiku_text": "hate it when you sleep / in the day wake up and feel / drained out to the max", "status_id": "355080341909807104"}
{"user": "_heysammiee", "haiku_text": "i can only sleep / with my fan on now and its / really annoying", "status_id": "355080354803089408"}
{"user": "Irenau8wo", "haiku_text": "on can u is in / its you are is can one in / get me not have do", "status_id": "355083985619136513"}
{"user": "Memyselfand_MY", "haiku_text": "or they say you are / pretty for a dark skin girl / that shit grinds my gears", "status_id": "355084092724879360"}
{"user": "charmullarkey", "haiku_text": "the despicable / me minions get their own film / next year yes yes yes", "status_id": "355084094062862337"}
{"user": "cyAndreas_", "haiku_text": "it was the kurd that / did this to my hair he try / make me one of them", "status_id": "355084136005910531"}
{"user": "exhalebieber", "haiku_text": "all i wanted was / to meet him i was hoping / for a miracle", "status_id": "355084151961034752"}
{"user": "LoveLove1O1", "haiku_text": "i will be yours you / will be mine and together / we will be one love", "status_id": "355084136651833345"}
{"user": "WTNoman", "haiku_text": "with all due respect / to all of the hate me im / the best in the world", "status_id": "355087794105876481"}
{"user": "Simple_T_", "haiku_text": "and that right there is / why we do this that makes it / all worth it simple", "status_id": "355087894857269248"}
{"user": "JobsInvite81619", "haiku_text": "enjoy your own life / without comparing it with / that of another", "status_id": "355087908669112320"}
{"user": "kamehameblah", "haiku_text": "blame it by jamie / foxx is such a garbage song / but its so catchy", "status_id": "355091522384957440"}
{"user": "KAMO_TT", "haiku_text": "immediately / after the whisper i went / in for the kiss she", "status_id": "355091552705589250"}
{"user": "Lexii_Louu", "haiku_text": "so kristen daddy / is grilling a bunch of food / on the grill come eat", "status_id": "355091563677880321"}
{"user": "myungie", "haiku_text": "hey first thing mum does / when she comes home is moan at / me oh nothing new", "status_id": "355091578118877188"}
{"user": "Jackquelineeui3", "haiku_text": "they with just up can / when my be we is on your / its out at in do", "status_id": "355091591909744642"}
{"user": "sophwarn", "haiku_text": "laura wants me to / tweet this next tweet so she can / advertise herself", "status_id": "355091628203048961"}
{"user": "Lovers_Pains", "haiku_text": "is there any way / i can donate my boobs to / a girl who want them", "status_id": "355091682754170881"}
{"user": "suhhhwank", "haiku_text": "mother nature has / entered rage mode so lets do / the same this weekend", "status_id": "355091722868506626"}
{"user": "JessNicolee", "haiku_text": "i love being at / the gym i need to make sure / i make time to go", "status_id": "355095317982617601"}
{"user": "Lucyyy_Shepherd", "haiku_text": "im really good at / massages really wish i / could massage myself", "status_id": "355095319320592385"}
{"user": "TheChronicE_", "haiku_text": "na wa o how come / everyone knows the answer / apart from me s", "status_id": "355095339117719553"}
{"user": "WakaCacaGarcia", "haiku_text": "giants were dumb to / trade wheeler today was just / further proof of that", "status_id": "355095261242077187"}
{"user": "alldaiiibuckets", "haiku_text": "she got me up so / high trying to get a piece / of that apple pie", "status_id": "355095458508582912"}
{"user": "Beluramon", "haiku_text": "we should love not fall / in love because everything / that falls gets broken", "status_id": "355095462463799296"}
{"user": "Samaraakoyi", "haiku_text": "up just in to not / one are of on get all can / do have to we out", "status_id": "355099079044374529"}
{"user": "lellythomas09", "haiku_text": "i just want you to / listen for once not ignore / what i gotta say", "status_id": "355099098094899204"}
{"user": "Hunta_Funky", "haiku_text": "i always get so / excited from all the rain / clouds then boom no rain", "status_id": "355099147977764864"}
{"user": "MateErdei", "haiku_text": "everyone have fun / at t while im stuck at work / for the whole weekend", "status_id": "355099172992598016"}
{"user": "BriSarahLamb", "haiku_text": "its crazy how you / got everything you want but / its really not yours", "status_id": "355099210212851714"}
{"user": "AmishWannabe", "haiku_text": "live your life in the / manner that you would like your / children to live theirs", "status_id": "355099121805303808"}
{"user": "GetHandlebar", "haiku_text": "live your life in the / manner that you would like your / children to live theirs", "status_id": "355099120815443971"}
{"user": "Lylanye1k7", "haiku_text": "do if not so when / to to just of all for just / all for up of its", "status_id": "355099242752253953"}
{"user": "Catalinaaaa_xo", "haiku_text": "cant love her cant trust / her i swear that i cant put / no one above her", "status_id": "355102840550719489"}
{"user": "BritzDhee", "haiku_text": "a real woman can / do it by herself but a / real man wont let her", "status_id": "355102875266973696"}
{"user": "TheseAll_Hunits", "haiku_text": "you got to be dumb / as a wall to post a pic / of yourself crying", "status_id": "355102910109073408"}
{"user": "She_ToO_LeGit", "haiku_text": "damn his room cute he / got mirrors everywhere i / need dat in my spot", "status_id": "355102956011520001"}
{"user": "JeniRawson", "haiku_text": "tell me do you know / what it feels like to have the / whole world against you", "status_id": "355106760551432193"}
{"user": "Rhian_Ashton", "haiku_text": "ok time for sleeps / before i have to get up / early tomorrow", "status_id": "355110399894499329"}
{"user": "shesso70_", "haiku_text": "i was having such / a good day until i came / home to my parents", "status_id": "355110438331092993"}
{"user": "MasterDoherty26", "haiku_text": "life is one of the / only things that you can take / away from yourself", "status_id": "355110450783993857"}
{"user": "OIL_QUE", "haiku_text": "did insanity / with my busted knee and all / i must be insane", "status_id": "355110563753377792"}
{"user": "JobsInvite70412", "haiku_text": "enjoy your own life / without comparing it with / that of another", "status_id": "355114161480536064"}
{"user": "Lolicon_e_books", "haiku_text": "somebody told me / later that she had been in / love with my father", "status_id": "355114202714742785"}
{"user": "KiD_Glass", "haiku_text": "i just want it to / be real im still trying to / figure out whats not", "status_id": "355114218434985984"}
{"user": "Arnita3ab6", "haiku_text": "that this your this up / but you this do up one a / i that it they one", "status_id": "355114315348578305"}
{"user": "Secretcorner123", "haiku_text": "i need to find things / to occupy myself from / having all this thoughts", "status_id": "355114317663830017"}
{"user": "DizzyHelz", "haiku_text": "excellent cant sleep / which is annoying as its / all i want all day", "status_id": "355114330779418624"}
{"user": "BrianRoggiano", "haiku_text": "lord knows i got them / bad habits further but i / do it all for you", "status_id": "355117866741280768"}
{"user": "hitsofacid", "haiku_text": "creed is basically / my girlfriend because we do / things couples do oops", "status_id": "355117993715445760"}
{"user": "Kae_Rozay", "haiku_text": "i sat right there and / looked at that typo and sent / the tweet anyway", "status_id": "355118004863909889"}
{"user": "GOLDENLAMBO", "haiku_text": "chevy with brains out / with a superman rear i / swear he said this one", "status_id": "355118044944674817"}
{"user": "odusanyadamilar", "haiku_text": "officer how high / are you me no officer / its hi how are you", "status_id": "355118069250670592"}
{"user": "CortneyAja", "haiku_text": "im not just speaking / how i feel im telling you / facts from my own mouth", "status_id": "355118070773190657"}
{"user": "Damioncaxc", "haiku_text": "and on is that if / for get is they to find get / find in in do me", "status_id": "355118116646301696"}
{"user": "ItsJoelBitchhhh", "haiku_text": "momma never taught / me how to hustle but she / taught me how to grind", "status_id": "355121766433173504"}
{"user": "Scotch_Hype", "haiku_text": "however sometimes / is a complete waste to be / over protective", "status_id": "355121778944778241"}
{"user": "Minnievleir", "haiku_text": "to when we for that / one when u it be that for / for its have but be", "status_id": "355125493638504448"}
{"user": "xoxo_Gorgeous_", "haiku_text": "so ready for my / contacts to come in cause im / sick of these glasses", "status_id": "355125529831149569"}
{"user": "Alex_rosass", "haiku_text": "sweetie your face is / not a coloring book calm / down with the makeup", "status_id": "355125626203680768"}
{"user": "CiaraaaS_", "haiku_text": "if you have a cool / name i will probably talk / about you a lot", "status_id": "355125631517851650"}
{"user": "oluwavictors", "haiku_text": "wine not transferred from / bottle to bottle neither / changes taste nor scent", "status_id": "355129181845196802"}
{"user": "luzreyess", "haiku_text": "the cops been around / too much lately i need to / stop being foolish", "status_id": "355129276560977920"}
{"user": "JawadYHamid", "haiku_text": "full from the pre game / supper still gotta eat the / real meal after prayer", "status_id": "355129279194992641"}
{"user": "_colonelsandy", "haiku_text": "i saw this girl with / a shirt that said girls rule the / world feminism", "status_id": "355129310757138433"}
{"user": "ThePurpleJacket", "haiku_text": "where is a dollar / store that actually sells / things for a dollar", "status_id": "355129321825898496"}
{"user": "itsNika_", "haiku_text": "you cant have any / type of relationship nor / friendship without trust", "status_id": "355129328075419650"}
{"user": "DaHomieNick", "haiku_text": "stop being a fake / racist gaylord and tell the / truth shame the devil", "status_id": "355129341606240256"}
{"user": "JuLeigh12", "haiku_text": "just take me away / to a place where we can stay / like this forever", "status_id": "355129380370006016"}
{"user": "DotFranzel", "haiku_text": "when two people are / meant for each other nothing / can keep them apart", "status_id": "355129434556211200"}
{"user": "JobsInvite23349", "haiku_text": "happiness is an / expression of the soul in / considered actions", "status_id": "355129451211792385"}
{"user": "alexy_flores", "haiku_text": "i was rude to max / because i was mad at her / but now i feel bad", "status_id": "355133077397323777"}
{"user": "Flashy_BFIRE", "haiku_text": "this has been my worst / summer yet honestly would / rather be in school", "status_id": "355133108892348417"}
{"user": "aaronberry723", "haiku_text": "its just starting to / sink in that michigan was / my last choir tour", "status_id": "355133141222043649"}
{"user": "Cleliaq8berd", "haiku_text": "at all one not it / up not and but get that just / on if out get me", "status_id": "355133211547942914"}
{"user": "schmiddlediddle", "haiku_text": "we had a poop lake / in our house yesterday / just reminiscing", "status_id": "355136880590852096"}
{"user": "Bro_wnDavid965", "haiku_text": "this was her ozark / way of telling me that i / would get what she cooked", "status_id": "355136885041020929"}
{"user": "Zjake12", "haiku_text": "god is gonna be / so pissed when he realized we / killed the polar bears", "status_id": "355136994399092737"}
{"user": "xambitiousgirlx", "haiku_text": "la da di da di / we like to party and this / is stuck in my head", "status_id": "355140612833546243"}
{"user": "_IsraaAyyad", "haiku_text": "because when you stop / and look around this life is / pretty amazing", "status_id": "355140626372763652"}
{"user": "alliecann", "haiku_text": "sometimes we have to / let go so we can grow type / true and pass it on", "status_id": "355140664444456960"}
{"user": "man_ram10", "haiku_text": "i would only have / one very special person / with me right now though", "status_id": "355140672224899072"}
{"user": "julialeblancc", "haiku_text": "im setting myself / up to get hurt but for some / reason its worth it", "status_id": "355140690545618944"}
{"user": "R5_Courtney", "haiku_text": "had to fight my dad / over who was paying for / lunch today he won", "status_id": "355140697692717057"}
{"user": "RoyaltyxDanii", "haiku_text": "you want me to cook / and then clean no honey its / one or the either", "status_id": "355140767339118593"}
{"user": "mexic_anus", "haiku_text": "why are fireworks still / going off every night / in my neighborhood", "status_id": "355144383231819776"}
{"user": "GerardCatches", "haiku_text": "sometimes i wonder / what the weirdest thing someone / has imagined is", "status_id": "355144445051666432"}
{"user": "torisgro", "haiku_text": "im seriously / such a good girlfriend i wish / i was dating me", "status_id": "355144449074012161"}
{"user": "jessskaa_", "haiku_text": "it pains me to see / the smoke from this fire all / over my city", "status_id": "355144472302063616"}
{"user": "ellelovesmeow", "haiku_text": "i mean yeah im not / perfect myself using that / word but im trying", "status_id": "355144491826552832"}
{"user": "AshMWest", "haiku_text": "the only way well / ever stand is on our / knees with lifted hands", "status_id": "355144516942049280"}
{"user": "Leonard_Carrasc", "haiku_text": "i seriously / think im addicted to how / i met your mother", "status_id": "355148191462735873"}
{"user": "PrizePtrol97609", "haiku_text": "if love was a law / i would be in prison for / the rest of my life", "status_id": "355148257447514112"}
{"user": "ivonne_cortave", "haiku_text": "then on a wednesday / in a cafe i watched it / begin again d", "status_id": "355148284895039488"}
{"user": "Harlee_Gentry", "haiku_text": "im smelling a sweep / for caldwell got a gift to / be there anyway", "status_id": "355148304067203075"}
{"user": "abigaildumlao12", "haiku_text": "really hate boring / teachers it makes me feel so / sleepy during class", "status_id": "355151998569562112"}
{"user": "julia_corral", "haiku_text": "some people think too / highly of themselves and its / annoying as fuck", "status_id": "355155734431924225"}
{"user": "_besomiculo", "haiku_text": "maybe im only / saying this out of anger / but oh fucking well", "status_id": "355155771136290816"}
{"user": "nwormwood7", "haiku_text": "just when you start to / get better that one little / thing brings you back down", "status_id": "355155782913884160"}
{"user": "Teanna97", "haiku_text": "i have had crooked / smile on repeat all day my / new favorite song", "status_id": "355155794855079937"}
{"user": "ItsNinoB", "haiku_text": "when times get hard the / man above be the only / one you can turn to", "status_id": "355155765117468674"}
{"user": "GaylordMcBurger", "haiku_text": "you have no friends me / neither lets be friends until / i get you pregnant", "status_id": "355159476204085248"}
{"user": "_Towandurr", "haiku_text": "it amazes me / how jamaicans bridge water / just think about it", "status_id": "355159515072692224"}
{"user": "lainerz0812", "haiku_text": "i hate it when i / cant tell weather its a bug / bite or a pimple", "status_id": "355159520542076928"}
{"user": "PrizePtrol16345", "haiku_text": "very often a / change of self is needed more / than a change of scene", "status_id": "355159606663712769"}
{"user": "BKLYN_21", "haiku_text": "cant wait until im / on his level going hard / until it happen", "status_id": "355159622711115776"}
{"user": "Heaav_B", "haiku_text": "i want to push a / giraffe over into a / pool and watch it drown", "status_id": "355163284338515969"}
{"user": "goldwaiet", "haiku_text": "very excited / about what im getting my / mom for her birthday", "status_id": "355163401149886466"}
{"user": "wzrdtrx", "haiku_text": "hungry for pizza / from cottage inn its been too / long since michigan", "status_id": "355163407781072897"}
{"user": "xoxokatelyn_", "haiku_text": "is there a daily / tweet limit because im sure / i passed it today", "status_id": "355163416995971072"}
{"user": "stylinbum", "haiku_text": "i got another / mosquito bite ugh why is / my blood so tasty", "status_id": "355167022876856322"}
{"user": "AlecBon_solo", "haiku_text": "so excited for / all the adventures to come / in the next few weeks", "status_id": "355167010247802881"}
{"user": "Jonnaismyname", "haiku_text": "i just realized that / drew white is the link larkin / of northwest high school", "status_id": "355167102774165505"}
{"user": "RoxannaVanaria", "haiku_text": "never get into / fights with ugly people they / have nothing to lose", "status_id": "355167134248222720"}
{"user": "sudania27", "haiku_text": "i cant wait till i / have my own family grand / kids and everything", "status_id": "355167160328388610"}
{"user": "fuckinggchinoo", "haiku_text": "cant even take a / damn nap with you already / talking shit fuck this", "status_id": "355170922061246464"}
{"user": "KatsumeMSP", "haiku_text": "i lost myself for / a few years deep down im not / like i thought i was", "status_id": "355170934388297729"}
{"user": "MandaHBIC", "haiku_text": "and im not a slut / either i have a boyfriend / whom im faithful too", "status_id": "355170912229793793"}
{"user": "Vash_Fanatic", "haiku_text": "i miss my nerdy / world real life is fun but a / pain most of the time", "status_id": "355174613732425729"}
{"user": "KisseyXOXO", "haiku_text": "please show me in the / bible where it says the will / of god includes death", "status_id": "355174621596745729"}
{"user": "elisesleeth", "haiku_text": "okay everyone / but me has a date to the / movies this friday", "status_id": "355174629880504320"}
{"user": "Casey_Even", "haiku_text": "our pool has a / hole in it and i may or / may not be crying", "status_id": "355174629603688449"}
{"user": "Baxt97", "haiku_text": "confronting a fear / is not just doing it its / learning why you have", "status_id": "355174680488980480"}
{"user": "amosquera23", "haiku_text": "i can never sleep / when i know i have to be / up in the morning", "status_id": "355174716136374274"}
{"user": "MakeupRoyalty", "haiku_text": "im always outta / of the loop this candy crush / has taken over", "status_id": "355174718166409217"}
{"user": "AnnBeito", "haiku_text": "who wants to check me / for ticks but seriously / i am terrified", "status_id": "355178365197619201"}
{"user": "allipryor4", "haiku_text": "i hate when i lay / in bed not able to sleep / and no one texts me", "status_id": "355178397686702081"}
{"user": "Manda_Bieber23", "haiku_text": "im for real thinking / bout going to dakota / ridge cant decide though", "status_id": "355178408516399105"}
{"user": "AneleBoyce", "haiku_text": "i wont be impressed / with technology until / i can download food", "status_id": "355178412710690816"}
{"user": "ayydrrriii", "haiku_text": "i just wanna sleep / for a really long time and / avoid everything", "status_id": "355178465357606913"}
{"user": "iTierraNicole", "haiku_text": "i been so quiet / i got the world lie what the / fuck is she planning", "status_id": "355178475340050432"}
{"user": "Owwaa_D", "haiku_text": "cause when somebody / else on my line tonight he / betta not say shit", "status_id": "355178488417886210"}
{"user": "albani12acosta", "haiku_text": "i remember he / gave my brother money to / wrestle some fat kid", "status_id": "355178488023621632"}
{"user": "LadeyyCheeks", "haiku_text": "i only tweet for / two reasons if im bored at / work or home alone", "status_id": "355178508911255552"}
{"user": "Lea_McAteer", "haiku_text": "although they are both / extremely attractive she / has great taste in guys", "status_id": "355182144206802945"}
{"user": "no_cassandra", "haiku_text": "both of my flights have / layovers oh my god bring / on the alcohol", "status_id": "355182196715307008"}
{"user": "DarrenTalkSin", "haiku_text": "hey baby are you / new jack swing because you were / never really cool", "status_id": "355182200343367680"}
{"user": "China_Doll_xoxo", "haiku_text": "technically im / not foreign i was born in / the united states", "status_id": "355182210552307712"}
{"user": "CassadraFlute6", "haiku_text": "there is so many / things wrong with me and i find / it hilarious", "status_id": "355182219356151808"}
{"user": "letsgetsaucy", "haiku_text": "i called her on the / phone and she touched herself i / laughed myself to sleep", "status_id": "355182130696953856"}
{"user": "JackieDaRipper", "haiku_text": "one weekend when we / both not working i wanna / spend the night with him", "status_id": "355182227631509505"}
{"user": "AmieYoungblood", "haiku_text": "its annoying when / girls all start acting the same / be yourself not fake", "status_id": "355182231725146112"}
{"user": "Dee_carbajal", "haiku_text": "im so glad i have / my nana she always knows / how to cheer me up", "status_id": "355182266080690177"}
{"user": "LAKINGDodgers", "haiku_text": "and we tie it up / baby we tie it we tie / it clutch baby clutch", "status_id": "355185900159909889"}
{"user": "DudeManEvan", "haiku_text": "im the weather man / you can expect more than a / few inches tonight", "status_id": "355185912008814594"}
{"user": "Ferrrrrrrrnanda", "haiku_text": "just take what you need / and be on your way and stop / crying your heart out", "status_id": "355185954547437573"}
{"user": "YallSo_Tall", "haiku_text": "its either pants no / shirt or shirt no pants never / both cant stand that shit", "status_id": "355186021891194880"}
{"user": "WeskersBitch", "haiku_text": "im sleepy laws of / the universe say mason / should be wide awake", "status_id": "355189713205870594"}
{"user": "woaahitsbreanna", "haiku_text": "if there were a best / boyfriend award my baby / could of won hands down", "status_id": "355189742830235648"}
{"user": "ObeyDRIX", "haiku_text": "these bitches i went / to high school with already / popping out babies", "status_id": "355189806336188417"}
{"user": "tizzoFasho", "haiku_text": "even angels have / their wicked schemes and you take / that to new extremes", "status_id": "355189821800591362"}
{"user": "xxdj26xx", "haiku_text": "i was safe in my / fortress alone then you came / and tore it all down", "status_id": "355193445150760960"}
{"user": "Madisonkayy_17", "haiku_text": "okay ill just sit / in my porch and we can just / yell at each other", "status_id": "355193466499776512"}
{"user": "TheFresherGod", "haiku_text": "its time to take bong / rips until i cant feel my / face and then pass out", "status_id": "355193505687146497"}
{"user": "AlexisDesiree_", "haiku_text": "many say that im / to young to let you know just / where im coming from", "status_id": "355193509000650752"}
{"user": "spicy_kure", "haiku_text": "for the love of god / tim and ally will you please / stop having phone sex", "status_id": "355193523034783744"}
{"user": "_HellAngel", "haiku_text": "what if we could just / tell ourselves go to sleep / and boom were asleep", "status_id": "355193380415864832"}
{"user": "vicki2499", "haiku_text": "in a few months ill / probably laugh at myself / for caring so much", "status_id": "355193543310061568"}
{"user": "Mariixoxo_", "haiku_text": "why does everyone / love to get me upset they / say its funny c", "status_id": "355193555033141249"}
{"user": "sere_titi", "haiku_text": "i risking much for / you seeing that nothing is / yours as repayment", "status_id": "355197247673208833"}
{"user": "Ya_FeMi", "haiku_text": "no disrespect but / has buchi ever won a / fight just wondering", "status_id": "355197287577812993"}
{"user": "WhenHannahCalls", "haiku_text": "i woke up older / carrying two years in the / bags under my eyes", "status_id": "355197286126592002"}
{"user": "Brittahkiin", "haiku_text": "london tipton was / knocked up by miley cyrus / horse of a brother", "status_id": "355197312928186370"}
{"user": "KidrauhlJetsets", "haiku_text": "i just want justin / to follow me damn why is / it so fucking hard", "status_id": "355197359841492992"}
{"user": "NonnBotha", "haiku_text": "put your hand in the / hand of man from galilee / donny hathaway", "status_id": "355200990011588608"}
{"user": "Nhlakan10", "haiku_text": "morning world we back / at it once again n this / is gods will le go", "status_id": "355201020139290625"}
{"user": "TylahLaDawn", "haiku_text": "my next boyfriend will / be my husband so until / then im doing me", "status_id": "355201018855825408"}
{"user": "imamixchick_", "haiku_text": "putting your all in / too something can fuck you up / or make something great", "status_id": "355201048530530305"}
{"user": "sudhasakriya", "haiku_text": "great to see changes / in boss he is shouting less / and smiling often", "status_id": "355201065521659904"}
{"user": "AntDeCarlo", "haiku_text": "telling someone how / you feel is honestly the / hardest shit ever", "status_id": "355201095368310784"}
{"user": "RoTwizy", "haiku_text": "im low to not take / part of insignificant / events such as these", "status_id": "355201103870173184"}
{"user": "Young_Kidracks", "haiku_text": "i wont be impressed / with technology until / i can download food", "status_id": "355201110488793088"}
{"user": "CraigSfiso", "haiku_text": "i hate it when they / go out come back in smelling / like their ex boyfriends", "status_id": "355201148342370304"}
{"user": "soprano219", "haiku_text": "my moods switch between / sleeping is for the weak and / sleeping for a week", "status_id": "355204775253508097"}
{"user": "The_Robert_B", "haiku_text": "can someone let those / italians know that they in / fact are white as well", "status_id": "355204809550340097"}
{"user": "evilelbow", "haiku_text": "prepare yourselves for / the monstrosity that is / middle school andres", "status_id": "355204345215725568"}
{"user": "faggot_kiran", "haiku_text": "i hate it when my / parents say i need to act / more like other kids", "status_id": "355204891720945664"}
{"user": "heppeard12", "haiku_text": "is it tuesday yet / i want my own bed and not / a mat to sleep on", "status_id": "355208566996602881"}
{"user": "LDR_advice", "haiku_text": "that very same day / he told me he loved me for / the very first time", "status_id": "355208592426680320"}
{"user": "annnnavitale", "haiku_text": "why does the walk from / my bedroom to the bathroom / have to be soo long", "status_id": "355208607370973185"}
{"user": "KJ_Deezy", "haiku_text": "they need to lock of / dominique cant leave one out / lock both of them up", "status_id": "355208655207010305"}
{"user": "DorthaRuberto", "haiku_text": "its not called giving / up its called doing whats best / for you moving on", "status_id": "355208674635022336"}
{"user": "SamPaananen", "haiku_text": "the itches being / produced by this tattoo will / be the death of me", "status_id": "355212319120293889"}
{"user": "tropicaliam", "haiku_text": "freshmen year was the / best i actually had / friends in my classes", "status_id": "355212333469024256"}
{"user": "Lowkey_Jo", "haiku_text": "always believe your / great even if nobody / else agrees with you", "status_id": "355212336325332993"}
{"user": "sarahmae_1331", "haiku_text": "i love when people / tweet lyrics from any song / besides versace", "status_id": "355212357347196928"}
{"user": "fauzan_FFDA", "haiku_text": "and when they go it / seems most of us go away / along with regret", "status_id": "355212394819100672"}
{"user": "hannahisdumb", "haiku_text": "im not sure who i / complain more about myself / or other people", "status_id": "355212405116108800"}
{"user": "Taylor_Peables", "haiku_text": "one little spark and / im going through hell again / speak of the devil", "status_id": "355212462242541569"}
{"user": "BiqqTony", "haiku_text": "sherard is going / to have a black eye before / he goes back to school", "status_id": "355212477753073664"}
{"user": "kylerducey", "haiku_text": "once something in my / life starts to go good it just / has to be ruined", "status_id": "355216085517217793"}
{"user": "mukestyles", "haiku_text": "i like nights like this / because were all like bounding / and its really cute", "status_id": "355216114155921409"}
{"user": "TokyoBlaque", "haiku_text": "its like i live in / a fucking cave i never / get any service", "status_id": "355216180753088512"}
{"user": "TristenWingate", "haiku_text": "i take my pants off / in the kitchen more often / than my own bedroom", "status_id": "355216182774734850"}
{"user": "drewmckenna96", "haiku_text": "i was excited / but now im just over it / monday come faster", "status_id": "355216221584637953"}
{"user": "PattySNaime", "haiku_text": "the situations / taking over me cant you / see im in trouble", "status_id": "355216221148413952"}
{"user": "xoxoodiana_", "haiku_text": "anyone who sleeps / with their door open is just / asking for demons", "status_id": "355216224046690304"}
{"user": "MelaniAPradifta", "haiku_text": "damn damn damn what id / do to have you here here here / i wish you were here", "status_id": "355216255281668096"}
{"user": "ThingsJuleeSays", "haiku_text": "its probably in / your best interest not to meet / me or be my friend", "status_id": "355219891323801601"}
{"user": "SubieLikeThat", "haiku_text": "some of you trying / to fast forward your fast by / sleeping the whole day", "status_id": "355219918142177280"}
{"user": "hypatek101", "haiku_text": "who do you believe / in i pray to god he bless / n am still breathing", "status_id": "355219939742859264"}
{"user": "dmbrison", "haiku_text": "if you own yo own / place then you have the right to / walk around naked", "status_id": "355219968251535360"}
{"user": "Yudy_Bdlla", "haiku_text": "just because someone / desires you does not mean / that they value you", "status_id": "355219974735929346"}
{"user": "_beccacochrane", "haiku_text": "why do i feel like / everything will be just like / what he did to me", "status_id": "355219994474323968"}
{"user": "ConradClaycomb1", "haiku_text": "are you my mother / probably one of the best / childrens books ever", "status_id": "355220020340600832"}
{"user": "StarrAlex", "haiku_text": "this summer has just / been same shit different day / trying to change that", "status_id": "355220023033331713"}
{"user": "Sarah_MHB", "haiku_text": "look how quickly you / forgot all thing between us / and make it worthless", "status_id": "355223631875416065"}
{"user": "randomyard", "haiku_text": "let me just watch all / of you doing silly things / okay evil laugh", "status_id": "355223650158387200"}
{"user": "lofticries", "haiku_text": "imagine dragons / is such a terrible band / i cant stop laughing", "status_id": "355223664372883458"}
{"user": "KoolAssMiCkEY", "haiku_text": "you cant be one place / when somewhere else is where you / really want to be", "status_id": "355223709465853953"}
{"user": "ZhaniaPadilla", "haiku_text": "missing someone is / your hearts way of reminding / you that you love them", "status_id": "355223720161316864"}
{"user": "DawgLAX13", "haiku_text": "what the actual / fuck the power just went out / are you kidding me", "status_id": "355223763551387648"}
{"user": "Francesca_Sky", "haiku_text": "id rather be your / enemy than any friend / you think i would be", "status_id": "355223763245219840"}
{"user": "ADAIRZz", "haiku_text": "hope it stops raining / soon how am i gonna get / home if it dose not", "status_id": "355223771449278464"}
{"user": "batteryshonen", "haiku_text": "also some nurses / are lovely while others are / so rude and rough d", "status_id": "355227458888400896"}
{"user": "Trakstarceo", "haiku_text": "i wanna tell you / just how i feel but ill let / this candle tell it", "status_id": "355227474147295232"}
{"user": "Harshita_MilSO", "haiku_text": "just gonna be in / my bed all day today im / such a lazy ass", "status_id": "355227472477958146"}
{"user": "tialambourn", "haiku_text": "going to work and / seeing everyone going / to school is so weird", "status_id": "355227492790968320"}
{"user": "TheDeezyF", "haiku_text": "all these girls jealous / of the girl im with cause they / almost f like d", "status_id": "355227492421873667"}
{"user": "Marionfgg6", "haiku_text": "with with is it up / be all are to on this get / u they this if of", "status_id": "355227496880422912"}
{"user": "Stephiboo95", "haiku_text": "clearly my cat just / likes to lay on me to the / point where i cant breath", "status_id": "355227518053265408"}
{"user": "Dorothy_Mi_9725", "haiku_text": "over challenges / life is unexpected and / throws us curve balls dail", "status_id": "355227524147593217"}
{"user": "jessivanessa22", "haiku_text": "if you screwed up your / sleeping schedule and you cant / fix it clap your hands", "status_id": "355227524080484352"}
{"user": "Maricruzebnhm", "haiku_text": "do your you be is / on and with you do that get / but a when get was", "status_id": "355227528119586817"}
{"user": "Amburkitty", "haiku_text": "i can do something / about this and i will do / something about it", "status_id": "355231213616771073"}
{"user": "sarah_devaughn", "haiku_text": "if someone cheated / on me id probably just / sit on my own face", "status_id": "355231217672654850"}
{"user": "EephusBlue", "haiku_text": "im just glad we pulled / our sacrificial lamb / before they pulled theirs", "status_id": "355231216573751296"}
{"user": "ItsMyTimeDolo", "haiku_text": "watching national / security and martin / is funny as heck", "status_id": "355231281543520256"}
{"user": "Lovelyy_MISFIT", "haiku_text": "im just not a sit / in the bed all day and do / nothing kinda girl", "status_id": "355231328335175680"}
{"user": "_luhStan", "haiku_text": "i would make a vine / but im looking like all my / life i had to fight", "status_id": "355234995478081538"}
{"user": "tylerjadebinns", "haiku_text": "both in the kitchen / in complete silence while he / makes a cup of tea", "status_id": "355235047554555904"}
{"user": "Kennyyyf", "haiku_text": "ill walk away from / it all before i let it / go any further", "status_id": "355235034858389504"}
{"user": "KianHon", "haiku_text": "beautiful is a / way to describe someone you / truly love or like", "status_id": "355235079645167616"}
{"user": "biancccapala", "haiku_text": "its such a turn off / when guys try way to hard on / social media", "status_id": "355235091712196608"}
{"user": "_brookeschulz", "haiku_text": "maybe tonight ill / call you after my blood turns / into alcohol", "status_id": "355235108992716802"}
{"user": "brookestiless_", "haiku_text": "maybe i cant sleep / because my mind is fucking / the shit out of me", "status_id": "355238744577675264"}
{"user": "SheilaRoyani", "haiku_text": "you did it again / you did hurt my heart i do / knows how many times", "status_id": "355238789670637568"}
{"user": "WAJOODDY", "haiku_text": "before you ask why / someone hates you ask yourself / why you even care", "status_id": "355238789507067905"}
{"user": "Eviaaoljr", "haiku_text": "me one be just me / if and all my is this a / to your your find when", "status_id": "355242507229077504"}
{"user": "wiznahjjbaddo", "haiku_text": "im not changing who / i am im just finally / figuring it out", "status_id": "355242512153198593"}
{"user": "YikesMyBassline", "haiku_text": "must be gave sis the / good dick for her to just come / on and tweet that peeks", "status_id": "355242529349828608"}
{"user": "DesThaKang", "haiku_text": "its whatever tho / however a chick come off / is how i treat her", "status_id": "355242584899194881"}
{"user": "KajolFariz", "haiku_text": "became friends because / of heart and character not / money or a way", "status_id": "355242588401442816"}
{"user": "LieutenantJames", "haiku_text": "she makes me know am / hers by kissing me like we / invented kissing", "status_id": "355242554654064640"}
{"user": "Maudkbzo", "haiku_text": "they so my is a / to we up it a with they / we with it do to", "status_id": "355242633213386754"}
{"user": "hotitchytravel", "haiku_text": "then a girl on a / bike nearly ran over me / on the street corner", "status_id": "355246289656627200"}
{"user": "jordarthursxx", "haiku_text": "everything has changed / so much the last few months its / unbelievable", "status_id": "355246292156428291"}
{"user": "WongJiaYin", "haiku_text": "my temper is not / like theirs if u choose to treat / me then too bad la", "status_id": "355246239882805248"}
{"user": "2911_x", "haiku_text": "as i look in your / eyes your body screams for my / love no fear just love", "status_id": "355246315631935488"}
{"user": "maxfelen", "haiku_text": "expect anything / from anyone the devil / was once an angel", "status_id": "355246343574405121"}
{"user": "Erminiaglupx", "haiku_text": "at with was me have / a of not me is my at / when out we be me", "status_id": "355246405922734080"}
{"user": "Bonjavanjelous", "haiku_text": "how am i supposed / to pretend i never want / to see you again", "status_id": "355250062802173952"}
{"user": "countrylovin28", "haiku_text": "shed rather wear a / pair of cut off jeans than a / fancy evening dress", "status_id": "355250085350735873"}
{"user": "saramalikcutie", "haiku_text": "stop looking at what / can go wrong and start looking / at what can go right", "status_id": "355250107727360000"}
{"user": "HoneyyDipps", "haiku_text": "im not denying / anything but damn i thought / i had a life too", "status_id": "355250114069147648"}
{"user": "khaaairul", "haiku_text": "its better to look / ahead and prepare than to / look back and regret", "status_id": "355250129504174080"}
{"user": "meganwillis_", "haiku_text": "mum taking me out / for lunch before i have my / makeup done love her", "status_id": "355253841710686208"}
{"user": "Alexdicki", "haiku_text": "i like you you like / me why does it have to be / so complicated", "status_id": "355253864066322432"}
{"user": "runfrommother", "haiku_text": "i just saw a small / white thing fly across my bed / and there are no bugs", "status_id": "355253878746382336"}
{"user": "ahangeraymond", "haiku_text": "what if one day the / earth was just like im done and / flew into the sun", "status_id": "355253931758202881"}
{"user": "itrat94", "haiku_text": "opinion is the / medium between knowledge / and ignorance ah", "status_id": "355253919984795648"}
{"user": "SandroTheTK", "haiku_text": "for anyone who / missed it my new video / was up yesterday", "status_id": "355253968038920192"}
{"user": "Michalebghw3", "haiku_text": "can was a are i / this they get when just not be / my at up do it", "status_id": "355253995201232896"}
{"user": "Sanfordn7mct", "haiku_text": "you you so be with / can but u my so it so / in we with with be", "status_id": "355257618878574593"}
{"user": "Genesislkoen", "haiku_text": "and but of have so / out up is are so is if / of up for have they", "status_id": "355257652604960768"}
{"user": "KinaCalypso", "haiku_text": "done talk about us / females when you the common / denominator", "status_id": "355257657256443904"}
{"user": "Helga0nfja", "haiku_text": "one get one at with / was its its that so you if / not in i me u", "status_id": "355257668828528640"}
{"user": "reiireisky", "haiku_text": "i cant seem to face / the truth im just a little / too not over you", "status_id": "355257675275186176"}
{"user": "Berryofxqol", "haiku_text": "they this its do get / it u get at you and they / but we for with be", "status_id": "355257735287283712"}
{"user": "Mariagonzalez_6", "haiku_text": "not even sleepy / but i guess i got to go / to sleep anyways", "status_id": "355257756518846465"}
{"user": "Julie_Ortegon", "haiku_text": "i found a way to / let you in but i never / really had a doubt", "status_id": "355257759643615232"}
{"user": "barryxredfern", "haiku_text": "and the person was / actually swallowing / pieces of his face", "status_id": "355261483917127680"}
{"user": "Holla_x", "haiku_text": "my brother needs to / shut his face stop putting me / down about uni", "status_id": "355265190029299712"}
{"user": "Cezsii_o8", "haiku_text": "gods answers arent / always yes or no sometimes / he is saying wait", "status_id": "355265278160011264"}
{"user": "PrizePtrol95560", "haiku_text": "enjoy your own life / without comparing it with / that of another", "status_id": "355265305418792960"}
{"user": "DemetriaaMeirr", "haiku_text": "need someone new to / talk to considering i / have no one no more", "status_id": "355265329095647235"}
{"user": "DemiNelsonX", "haiku_text": "had two fights within / a week proper little man / head nock myself ill", "status_id": "355268960758939648"}
{"user": "JoeyiME", "haiku_text": "my bro talks a lot / but he kept repeating the / same thing on and on", "status_id": "355269003003957248"}
{"user": "__BitchBiteMe", "haiku_text": "i think all babies / look the same once they come out / of the vagina", "status_id": "355268997714935808"}
{"user": "ludgate_caomie", "haiku_text": "just had a spider / crawling up into my hair / d think i just died", "status_id": "355269038420672512"}
{"user": "stewartFlight", "haiku_text": "its tragic that you / had to deal with that many / idiots at once", "status_id": "355269045601320960"}
{"user": "halfbloodmoose", "haiku_text": "we are the reason / nobody in ireland / has any money", "status_id": "355269066992259072"}
{"user": "EIvis_Presley", "haiku_text": "when two people are / meant for each other nothing / can keep them apart", "status_id": "355269098562793472"}
{"user": "IamRoseyy", "haiku_text": "so my ear is still / in pain i think its doctors / again tomorrow", "status_id": "355272707937550338"}
{"user": "Eulah_Stromer", "haiku_text": "sometimes we do things / because seeing others smile / makes it all worth it", "status_id": "355272706033336321"}
{"user": "MoniqueAdelexo", "haiku_text": "i cant be doing / with people who contradict / themselves all the time", "status_id": "355272717022404608"}
{"user": "Duncanajslzl", "haiku_text": "up all you can but / not up out and your me at / not i you a get", "status_id": "355272724094005249"}
{"user": "_theyunggoddess", "haiku_text": "i just listen to / paramore and like all my / problems disappear", "status_id": "355272735699640320"}
{"user": "Yonghhv4", "haiku_text": "was with you can i / to my a just do on its / when it its one my", "status_id": "355272765445652480"}
{"user": "5SOSEuropeTour", "haiku_text": "can someone make me / an ashton imagine ill / make one for you too", "status_id": "355272770113896449"}
{"user": "Its_FanaSibeko", "haiku_text": "he who dwells in the / temple of the almighty / contains high power", "status_id": "355272792951885824"}
{"user": "kissssmyarsenal", "haiku_text": "also structuring / this bitch is a bigger bitch / than the bitch itself", "status_id": "355272756927016960"}
{"user": "lottiepencheon", "haiku_text": "my rats are playing / with a walnut shell and its / so adorable", "status_id": "355276553137037312"}
{"user": "jj_jettrain11", "haiku_text": "i called her on the / phone and she touched herself i / laughed myself to sleep", "status_id": "355276458429648898"}
{"user": "QuiQuila", "haiku_text": "when two people are / meant for each other nothing / can keep them apart", "status_id": "355276593062625280"}
{"user": "nothingbuttearz", "haiku_text": "why am i doing / all this when i want to be / the person you love", "status_id": "355276652844036096"}
{"user": "torxo_", "haiku_text": "i hate waking up / quick out of a deep sleep and / being wide awake", "status_id": "355276659299057664"}
{"user": "Jndab", "haiku_text": "hustle hard so your / kids someday will be proud of / you being their dad", "status_id": "355276660070821890"}
{"user": "KirenPadda", "haiku_text": "its quite sad to know / people cant enjoy themselves / without alcohol", "status_id": "355280291448893440"}
{"user": "Fergy_Ferg1", "haiku_text": "your doing it right / when veins start popping by your / lower abs", "status_id": "355280315792637955"}
{"user": "JemimaNigeria", "haiku_text": "when leaders hit each / others head with a maze what / should followers do", "status_id": "355280330640457731"}
{"user": "gemma_mccrea", "haiku_text": "one of the builders / next rare fancies himself as / a singer shut up", "status_id": "355280388534435840"}
{"user": "startsevaHTC", "haiku_text": "im sure and u should / understand i never fall / out of love with u", "status_id": "355280473771094016"}
{"user": "chilll0ut", "haiku_text": "i still have pictures / of me n my ex on here / ha ha ha what bye", "status_id": "355284148186914817"}
{"user": "FLUFFYwhere", "haiku_text": "my street sounds like a / highway this morning where is / everyone going", "status_id": "355284188259299328"}
{"user": "MoreKnowIedge", "haiku_text": "the choices people / make while angry are the ones / they regret the most", "status_id": "355284191568605184"}
{"user": "MRP_Kaname", "haiku_text": "you are a fading / dream but one that has been touched / by reality", "status_id": "355284202398298113"}
{"user": "amandaahhhh", "haiku_text": "my hyde pre workout / came in today im about / to tear up the gym", "status_id": "355284259361128448"}
{"user": "benlackie", "haiku_text": "trust me to leave it / until today to buy stuff / for t in the park", "status_id": "355287854940831744"}
{"user": "NaJlaaLoves1D", "haiku_text": "i pretend im not / hurt and go about the world / like im having fun", "status_id": "355287931365232640"}
{"user": "Beauu5511o", "haiku_text": "in find we this was / just can on up u not just / of a find a on", "status_id": "355287972679135232"}
{"user": "Ardellayszk", "haiku_text": "and this my in at / we we your on one its get / we for so when for", "status_id": "355287994120417280"}
{"user": "denitoazhar", "haiku_text": "letting all these ants / to just bit me if they want / they just need some heat", "status_id": "355288007319896065"}
{"user": "NizamKam", "haiku_text": "england never seem / to have a clue about what / to do with the tail", "status_id": "355291659325550593"}
{"user": "laneaaaa_", "haiku_text": "i keep spraying these / cats with water but their still / being psychotic", "status_id": "355291667080810497"}
{"user": "Glynispdehki", "haiku_text": "but for i of at / that are for me my a get / can with of just you", "status_id": "355291707442601984"}
{"user": "KyraWilhide", "haiku_text": "im sick of these mixed / signals im only human / i cant read your mind", "status_id": "355291722575650816"}
{"user": "RudyPule", "haiku_text": "some conversations / are just people using you / to speak to themselves", "status_id": "355295329337360384"}
{"user": "LiveUrLyfe90", "haiku_text": "and could i be a / star does fame in this game have / to change who you are", "status_id": "355295406118281216"}
{"user": "LarrisonTherob", "haiku_text": "waking up knowing / you had a damn good night is / such a good feeling", "status_id": "355295465866149888"}
{"user": "cameronwest34", "haiku_text": "a year ago i / think i actually had / fun during summer", "status_id": "355299178122981376"}
{"user": "Mr_AlexanderJ", "haiku_text": "there arent many / or any black tv chefs / anymore are there", "status_id": "355299240978825216"}
{"user": "JenPinney", "haiku_text": "im having one of / those unattractive days i / mean years i mean lives", "status_id": "355299289171369984"}
{"user": "fragrantlouis", "haiku_text": "i hope my lovely / muslim friends have been having / a good ramadan", "status_id": "355299292933664768"}
{"user": "Garfieldqdiiz", "haiku_text": "you you its when we / at your a on just on my / that you this all when", "status_id": "355302964757397506"}
{"user": "jadenebarnett", "haiku_text": "i have no fucking / clue what dean meant there so i / guess ill just leave it", "status_id": "355302967290769408"}
{"user": "th_loveee", "haiku_text": "went safra mac and / no more minions so i went / to another one", "status_id": "355303003886067713"}
{"user": "st00pidfast", "haiku_text": "i will make haikus / all fucking day friday to / support my slime friends", "status_id": "355303066339262464"}
{"user": "notmyownnn", "haiku_text": "if i compliment / you its probably because / i want in your pants", "status_id": "355306817980608512"}
{"user": "gstone_29", "haiku_text": "if i go i can / only hope that i make it / to the other side", "status_id": "355306885773139968"}
{"user": "oamensab", "haiku_text": "no person deserve / ur tears and those who deserve / it wont make u cry", "status_id": "355306930895458304"}
{"user": "iiMaxX", "haiku_text": "gotta love when u / come to work and all of the / computers are down", "status_id": "355306946682814464"}
{"user": "Jayson1zxhr", "haiku_text": "so when for to at / that i they your have its to / with that are is up", "status_id": "355307024847867904"}
{"user": "eehhffeecckk", "haiku_text": "im hungry but not / go get anything or turn / on the stove hungry", "status_id": "355307043877421058"}
{"user": "DRsexy809", "haiku_text": "i actually / want a little girl ill be / happy no homo", "status_id": "355307083048038402"}
{"user": "Willettak20a", "haiku_text": "are its and in find / it we is they if this one / are on we u a", "status_id": "355307093131137024"}
{"user": "Johnathannzypd", "haiku_text": "get get with me your / just this that have they is but / was so with for i", "status_id": "355310668494282752"}
{"user": "Shanaecywcr", "haiku_text": "with we one if its / i find just out are with was / be are was find was", "status_id": "355310672604708864"}
{"user": "Erogenous_Storm", "haiku_text": "marinate in heat / when your body pressed against / theirs slow wine pon it", "status_id": "355310587879751683"}
{"user": "SNakonechny", "haiku_text": "also forgot my / headphones this is just getting / better and better", "status_id": "355310845716201474"}
{"user": "ZeenaTutunji", "haiku_text": "been looking in the / wrong places while he was there / the entire time", "status_id": "355310862157889537"}
{"user": "Gibson__lim", "haiku_text": "i should really stop / listening to sad songs it / affecting my mood", "status_id": "355310881036439552"}
{"user": "tayepler_", "haiku_text": "my last long bitch take / fat bong rips she stash all zips / plus her ass all thick", "status_id": "355310901647249408"}
{"user": "therealcoryj", "haiku_text": "even if the sky / is falling down i know that / well be safe and sound", "status_id": "355314311616401408"}
{"user": "ErnestoCollen", "haiku_text": "once i put on my / headphones my life becomes a / music video", "status_id": "355314500188114944"}
{"user": "MeganHughes445", "haiku_text": "so the burn on my / back has gone nicely tanned but / only in one square", "status_id": "355314640084942850"}
{"user": "LeaisGaga", "haiku_text": "if cote decides to / leave the show it is because / she has good reasons", "status_id": "355318095713288192"}
{"user": "TyeishaDCruz", "haiku_text": "blah getting weird looks / w my unicorn / outfit once again", "status_id": "355318128554676227"}
{"user": "Alexuss_Brianna", "haiku_text": "either he really / wanted to talk or he had / something to tell me", "status_id": "355318208967880704"}
{"user": "you_scream_jazz", "haiku_text": "the only people / you need in life are the ones / that need you in theirs", "status_id": "355317982324473859"}
{"user": "YumnaMaheen", "haiku_text": "maybe some things are / still there for us to see and / find out ourselves", "status_id": "355318183332294656"}
{"user": "babytooshort_", "haiku_text": "being single is / better than being in the / wrong relationship", "status_id": "355321883857666050"}
{"user": "Mary_JLynn", "haiku_text": "its so crazy to / think that im gonna be out / of here in a month", "status_id": "355321886827233280"}
{"user": "SimplyMilele", "haiku_text": "i love you simply / because you exist as a / reflection as me", "status_id": "355321984684531713"}
{"user": "Plumpypat", "haiku_text": "katy is the one / who sing summer after high / school when we first met", "status_id": "355321994310467584"}
{"user": "wlaad_", "haiku_text": "true love true love it / must be true love nothing else / can break my heart like", "status_id": "355322030368882688"}
{"user": "kinaolivia", "haiku_text": "ugh my stomach hurts / i feel cold then hot then cold / and now again hot", "status_id": "355322093082116096"}
{"user": "DaneeSwiftie", "haiku_text": "my self esteem was / as high as eiffel tower / then taylor came i", "status_id": "355322138665816065"}
{"user": "Kortneyaof9u", "haiku_text": "if get your for with / out its if me and that can / they all but but just", "status_id": "355322262729142272"}
{"user": "mclucarelliii", "haiku_text": "ugh im such a mess / but then again when am i / ever not a mess", "status_id": "355325721092165632"}
{"user": "Talisha98ezqm", "haiku_text": "my that you we get / one of a but but it my / your can its so your", "status_id": "355325748137041923"}
{"user": "RealYunDred", "haiku_text": "hope you woke up this / morning with plans to be the / greatest at something", "status_id": "355325761076469761"}
{"user": "PerpetualWisdom", "haiku_text": "lord shine your light through / me so that when others look / at me they see you", "status_id": "355325784778485760"}
{"user": "Maryanne53k2mr", "haiku_text": "out all be i to / me me and u this was but / if so this be we", "status_id": "355325822514626560"}
{"user": "KeFerrellll", "haiku_text": "seriously if / it keeps raining all of us / are going to drown", "status_id": "355329572767662080"}
{"user": "mannymederos", "haiku_text": "on my way to the / city again miami / i miss you so much", "status_id": "355329646281228288"}
{"user": "YerNew11282", "haiku_text": "they say your first love / is the sweetest but that first / cut is the deepest", "status_id": "355329708461797376"}
{"user": "JobsInvite13894", "haiku_text": "we choose our joys / and sorrows long before we / experience them", "status_id": "355333114299551745"}
{"user": "DontCallMeKiddy", "haiku_text": "being too kind will / be taken advantage of / no sense of logic", "status_id": "355333122168074241"}
{"user": "iRana_Mourtaja", "haiku_text": "never close your lips / to those whom you have opened / your heart charles dickens", "status_id": "355333163138035712"}
{"user": "Jazzzy132011", "haiku_text": "after work my room / will turn into the dungeon / sleep sleep and more sleep", "status_id": "355337010241744898"}
{"user": "OSoMaRvELouS", "haiku_text": "if u believe that / no man is faithful why do / u have a man maam", "status_id": "355337020761047040"}
{"user": "Joey_Hers", "haiku_text": "if i told you id / take a bullet for you would / you test that theory", "status_id": "355337007439941634"}
{"user": "She_Dean7", "haiku_text": "no stop saying side / on hot spot was needed out / is out bitches d", "status_id": "355337034707120129"}
{"user": "JaysDeeee", "haiku_text": "i told my mom i / was going to a girls house / and she stopped asking", "status_id": "355337168769650688"}
{"user": "Brandensmithyy", "haiku_text": "hate it when its hot / at school and then ur back sweats / because of ur bag", "status_id": "355337228605591554"}
{"user": "KaitlynMTaylor", "haiku_text": "we lose ourselves / in the things we love we find / ourselves there too", "status_id": "355337230547550208"}
{"user": "Marcelzxo6yh", "haiku_text": "is it when just we / this if i do up was just / if if it your have", "status_id": "355344559716319233"}
{"user": "YungButlerBoi", "haiku_text": "kinda anxious to / see what the ruling of this / case is gonna b", "status_id": "355344574664814592"}
{"user": "reneemh_", "haiku_text": "little kids cant just / talk to you can they they have / to shout in your face", "status_id": "355344597066588161"}
{"user": "kurilyfries_", "haiku_text": "hello mr hot / guy living next door whom i / never knew about", "status_id": "355344565642866688"}
{"user": "vickyxsmith", "haiku_text": "i just cleaned my whole / room and i feel like i can / conquer the world now", "status_id": "355344662032162816"}
{"user": "Sabinetwtb4", "haiku_text": "you all just me at / they your be just u me was / all in up are find", "status_id": "355344662086696961"}
{"user": "dippnasty", "haiku_text": "i wish i had to / throw up right now id throw up / all over their floor", "status_id": "355344700993056769"}
{"user": "lanikai143", "haiku_text": "my back pain is so / severe that i have lost all / feeling in my legs", "status_id": "355344721213800448"}
{"user": "mahaairfan", "haiku_text": "why is it so hard / to give up on the one thing / that hurts you the most", "status_id": "355348355452383233"}
{"user": "akashkumarfilm", "haiku_text": "today there is not / a man nor woman in here / that shall stand alone", "status_id": "355348274095456258"}
{"user": "Jaime_PTV_BMTH", "haiku_text": "remember when the / hardest choice you had to make / was what to play with", "status_id": "355348457260711936"}
{"user": "lauradeanna", "haiku_text": "you worry about / yours let them worry about / theirs cause i got mine", "status_id": "355348397944877056"}
{"user": "yesmisshunny", "haiku_text": "on break way too hot / ugh cant wait to be at my / aunts in the ac", "status_id": "355348618556882944"}
{"user": "Elmoanaa", "haiku_text": "for but out up a / do that when not up are if / is are is its we", "status_id": "355348631844429825"}
{"user": "Little_alissa", "haiku_text": "my problem is i / make the same mistakes over / and over again", "status_id": "355348657941381120"}
{"user": "Jacquetqf7ub", "haiku_text": "one is out up of / it but are we is this its / to a that is to", "status_id": "355348687431532544"}
{"user": "romydalluege", "haiku_text": "my ass hurts because / of sitting all day i know / very interesting", "status_id": "355352271384625153"}
{"user": "PrizePtrol15059", "haiku_text": "goals allow you to / control the direction of / change in your favor", "status_id": "355352480906887169"}
{"user": "adrianaax0", "haiku_text": "the fact that i have / to teach you how to be in / a relationship", "status_id": "355352667041697793"}
{"user": "tommrickard", "haiku_text": "so my electric / piano has gone flat how / does that even work", "status_id": "355352924035092482"}