-
Notifications
You must be signed in to change notification settings - Fork 1
/
sentiment.ldjson
2000 lines (2000 loc) · 188 KB
/
sentiment.ldjson
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
{"text":"@_constantstatic why arent you answering me on skype ","target":-1}
{"text":" I just ran out of my favorite cologne...Who wants to buy me some more??","target":-1}
{"text":"@macitout what's the 1st date? can you bring nkotb to kfest?? I'm trying to go to Scranton but can't find someone to go with me ","target":-1}
{"text":"@Svillebaby23 that truee haha! i knoww im sure u can","target":-1}
{"text":"i dunno what to do might do some homework when mum goes downstairs xoxox lol i hate my new hair cut xoxox","target":-1}
{"text":"Sarah won't let me kidnap a baby duck ","target":-1}
{"text":"My last day in Germany But I miss CA !","target":-1}
{"text":"@zizekspeaks Slavoj Zizek! You DM me to join you on spymaster game, have you gone senile? Re-read ur book:'Violence' duhhhh ","target":-1}
{"text":"I don't think we'd be able to check out Orfus Road anymore. Not even the Roots outlet store in Eglinton. Oh, well...","target":-1}
{"text":"is burnt like mad ","target":-1}
{"text":"ive missed desperate housewives! bummeeer!","target":-1}
{"text":"@TronjanHorse they SHOULD, but I'm selfish and don't want to wait that long. I wont cave. ","target":-1}
{"text":"@LuciLifeLover yeah, i already figured it out. i don't think that the setting will improve your english. damn,muss noch kunst machen ","target":-1}
{"text":"@dellydel44 awww.. its okay.. so is the CAVALIERS SEASON!... ugh.. OH EM EFFING GEE!.. I can't beileve we lost..! ","target":-1}
{"text":"Still got a hangover from hell but it was so worth it!","target":-1}
{"text":"can you guys keep giving me the updates on the MTV movie awards pls!i can't watch it .. i have to study ","target":-1}
{"text":"@if_i_fell i know itd be horrible when its finished aswell & having nobody to get all excited over it with ","target":-1}
{"text":"RIP Dr. George #Tiller. There are some actions that I'll never understand. I get the rationalization, yes; can I empathize? No. ","target":-1}
{"text":"I wish i could be at E3 ","target":-1}
{"text":"Watching the hills / getting ready for work . Missing the season finale tonight ","target":-1}
{"text":"talking online with my friends .. i miss they ","target":-1}
{"text":"@ScarlemNocturne just got your messages now would have been sweet","target":-1}
{"text":"@caliprodigy i know. Cleveland choked","target":-1}
{"text":"@Ray_Marie have you talked to Ree? I heard she was a mess ","target":-1}
{"text":"@designerbrent Well, I needed a day off and I'm not getting it. haha. I say "yes" to doing too many outside projects!","target":-1}
{"text":"Still feeling yucky! And I'm workin an 8 hour shift I think I might pass out. Blah","target":-1}
{"text":"lifeeee sucksz! ","target":-1}
{"text":"Omg a baby shitz zut passed out cuz of his reaction to his shot poor baby","target":-1}
{"text":"ppppfffffffffffffffffffffffffttttt fiona's not amused tbh","target":-1}
{"text":"is at the Bridge, as usual. I want transportation! sad face for my car Bonita","target":-1}
{"text":"Has a rotten cold. Can't breathe out my nose at all! had a fun day of mini golf though x","target":-1}
{"text":"@thevowel i can haz E3 too? Memphis, TN Fail","target":-1}
{"text":"@Dannymcfly dont go guys come back soon . we really like. im angry because in the stage i cant kiss u ","target":-1}
{"text":"@iaingilmour We have two cars, plus a new company car, so one has to go. Shame to lose my Mazda but makes sense ","target":-1}
{"text":"Created a nice personal mashup to follow everything about pinkpop. Livestream, twitter and pictures. Couldn't be there #pp09","target":-1}
{"text":"@Official_Leon Omg I'm so jealous, I wanna go to the park with you ","target":-1}
{"text":"But I dont think it gets shown in England ","target":-1}
{"text":"@LaurenConrad That sucks Oh well, you're gonna look gorgeous in whatever you're wearing!","target":-1}
{"text":"Goodnight Twitter, School Tomorrow so i suppose i better go to bed!!! ","target":-1}
{"text":"@winggirl oh, honey. ","target":-1}
{"text":"Can't figure out how to make form options that you select show after you submit the form... ","target":-1}
{"text":"fuck my life im too nice to people ","target":-1}
{"text":"@galaxydazzle aww, I hope you got the tickets! Wish I could have seen them ","target":-1}
{"text":"Night At The museum FTW! And oh so ever so tired ","target":-1}
{"text":"I don't feel well, and I don't mean physically. ","target":-1}
{"text":"going on this fun trip down memory lane! I almost want to crawl up in a ball and not do this. Getting rid of childhood toys is hard ","target":-1}
{"text":"@Cashstwit you always go on saynow when i can't call ","target":-1}
{"text":"Boo i have a cold.","target":-1}
{"text":"@misskrisha @fiercebanana it's goya yellow rice never had arroz con gandules","target":-1}
{"text":"Grabbing a bite @ Heartland Brewery on Union Square. My time in NYC is quickly drawing to a close. ","target":-1}
{"text":"6.5 hrs left still to drive... brighter side -> I have a samuri sword and half a bottle of patron in my trunk! ","target":-1}
{"text":"Really sun burnt lay in bed ","target":-1}
{"text":"mmmm.....so bored and sad still about not going. mmm.....sad ","target":-1}
{"text":"@faitaccompli Time sucks! I don't want to go back to work already ","target":-1}
{"text":"Retweet from @RepliesPetition: Was hoping we'd have more followers by now #Fixreplies","target":-1}
{"text":"Just watched marathon session of 24. Over for another year ","target":-1}
{"text":"my twitterberry hasn't been working haven't been able to update","target":-1}
{"text":"Eating a whole bag of sour gummy worms was not smart...I feel like I'm going to die ","target":-1}
{"text":"@beverleycuddy My weakness is chocolate and crisps.... I follow Weightwatchers - now need to get back to it after my visitor goes ","target":-1}
{"text":"partying tonight!!! can't see mtv movie awards must be youtube tomorrow then but Party!!!!!!!!!!!! wooooooooooooooo ","target":-1}
{"text":"Oh summer is here and now I have no communication with anyone... ","target":-1}
{"text":"where's plec ? ","target":-1}
{"text":"trying to get my iPod to work ","target":-1}
{"text":"@stevebiscuit im going to the zoo so might get some good sun, but i burn and peel... ","target":-1}
{"text":" sometimes I 2nd guess my decisions... Like now.","target":-1}
{"text":"hello everyone. been out most of the weekend, i'm shattered. and have a sore head ","target":-1}
{"text":"I'm really depressed that the Hills is ending tonight. ","target":-1}
{"text":"easter sunday and updating other people's good times - europavox - http://bit.ly/UqIto & http://bit.ly/YasY4","target":-1}
{"text":"@crosshatches Think happy thoughts! ","target":-1}
{"text":"Sunburn is a bitch! I cant get comfy at all! x","target":-1}
{"text":"Aaah! no cigs again ","target":-1}
{"text":"Im tired of acting like it doesnt bother me and im also beginning to question my friends "actions". i wish i had someone to talk to. ","target":-1}
{"text":"I'm super sick and I'm at work I feel like I'm about to pass out ","target":-1}
{"text":"Sitting poolside reading trashy novels sippin on...water ","target":-1}
{"text":"@buckhollywood I Changed my twitter name now....dont ask why....its a LONG Story....i bet you think im weird now I'M SORRY (wow..so emo)","target":-1}
{"text":"Elly has a fever for the first time...very scary ","target":-1}
{"text":"really miss's my baby <3","target":-1}
{"text":"@KimKardashian its sunday and your show isn't on i already miss it haha can't wait til ur sisters show... will u be making appearances?","target":-1}
{"text":"I really dislike trying for formal pictures of my kids! They are super uncooperative! ","target":-1}
{"text":"@leannenufc Silly man pissing you off, grrr Will it cheer you up at all to know I just ordered S3 of West Wing?","target":-1}
{"text":"Finds living with a diabetic very stressful sometimes ","target":-1}
{"text":"and now into overgeneralising and scaremongering mode. What a shame. ","target":-1}
{"text":"@CherylH77 don't say that... please... this week will be long... since the guy i picked up last night, wont be there next sunday... ","target":-1}
{"text":"I just want to show you she don't even know you she's never gonna love you like I want to ","target":-1}
{"text":"@rawr_megasur im so so confused are you comin on msn o.o.i? xx","target":-1}
{"text":"@carlybuns99 ","target":-1}
{"text":"Ahh i just missed my lover ","target":-1}
{"text":"5 more day for my brand new toy the Palm Pre in my hands!! I cannot wait!!!! and 1 more day for my wifes Nextel BB Curve ","target":-1}
{"text":"wish i had a pool i don't i almost ran out while the spriklers where on oops...","target":-1}
{"text":"i think i broke my retainer ","target":-1}
{"text":"@Peter_Nehem Darn it..Andrew says its canada only ","target":-1}
{"text":"@funkyfairy24 yeah not bad am a bit gutted had to spend my nk fund today! but never mind i'll get saving again lol","target":-1}
{"text":"Attended kickboxing yesterday...Didnt know, human body has so many muscles, given that each one of them hurts now ","target":-1}
{"text":"@Elle202 stuck n efin del by myself my sisters comin back 2mrw to get me cuz lani lost her car keys so they took jen car to get her spare ","target":-1}
{"text":"but i thimk i may have lost my first mini project-has an auto save function which apparently is a bit dodgy according to google ","target":-1}
{"text":"Nooo... Washburne will probably be gone by the end of June, probably more around July. ","target":-1}
{"text":"@ChiefHava that place looks awesome. If I wanna smoke, gotta hit the porch. 90 degrees right now ","target":-1}
{"text":"Just gave myself an electric shock from my iphone wire never noticed the rubber came off it. ","target":-1}
{"text":"What happened? It was such a beautiful day.. its raining now. my bike is going to get rusty! ","target":-1}
{"text":"Now I have a stomach ache ","target":-1}
{"text":"my computers messed up!!! HELP!!! ","target":-1}
{"text":"@ArchAngelica17 I'm disappearing from the top! ","target":-1}
{"text":"@djsampson : No, where? I may have conflict though ","target":-1}
{"text":"so bored, happy, sad school almost over!! freinds leaving for the summr ","target":-1}
{"text":"my dad and mom talk to me about to buy shoes and raincoat , i'm gonna be here in 30min or 15 but i'm going to come back SOON","target":-1}
{"text":"Is trying to study. End sems in fricking ONE day! ","target":-1}
{"text":"workworkwork throught the sun and i wasnt at NFG yesterday or polar bear club on friday ! this is... http://tumblr.com/xsp1x01dz","target":-1}
{"text":"@youngmoneyfly hey love! hope yu not mad @ me still.. ","target":-1}
{"text":"interest. I kinda feel like I'm going to end up in the same category as ppl hu think sticking a photocopy in a sketchbook is gd reasearch ","target":-1}
{"text":"Welcome to all my new followers - will start tweeting again tomorrow after I catch up from Shavuos and another computer virus ","target":-1}
{"text":"studying chemistry its so not fun","target":-1}
{"text":"@davidsmalley np, don't think they were raw unfortunately ","target":-1}
{"text":"Watching college softball! Hoping bama goes all the way! Sad about season finale of the hills tonight ","target":-1}
{"text":"At baccalaureate ceremony baking my ass off!! Ah not diggin this cap thing.. Flattening my hair ","target":-1}
{"text":"@JulieBanderas - Julie, please go back to wearing your mid-thigh skirts and dresses. I don't think I'll make it through the show today. ","target":-1}
{"text":"got sunburn but dont mind cos thats rare in dumfries! ha","target":-1}
{"text":"Didn't get to go on the boat; apparently there's a leak lobbying for jakes for dinner","target":-1}
{"text":"lone night ","target":-1}
{"text":"@siana_mia It came on 10-15 times while I was watching baseball. ","target":-1}
{"text":"@Caitermonster Yep, sadly. ","target":-1}
{"text":"i wish it would stop raining, i only have a little bit of vacation left ","target":-1}
{"text":"ready for summmmer ","target":-1}
{"text":"@eastcoaster1237 I don't know Plattsburgh; I'm heading to the belly of the beast (DC) this week, which I know all too well ","target":-1}
{"text":"wish i could see the New Moon trailor ","target":-1}
{"text":"DC SHOES IN THE BODY AWNNNNNNNNNNNNNN mtmtmtmtmt felixxxxxxx ","target":-1}
{"text":"Shadow ran away... ","target":-1}
{"text":"@WaywardAllen hahaha that is NOT sexual. i ask that all the time! ","target":-1}
{"text":"Nooooo I have to reinstall windows bang goes my wow time ","target":-1}
{"text":"@chilli2722 damn i forgot that was on they will repeat it i'm sure","target":-1}
{"text":"knowing i'm miles away from the place i need to be ilyy <|3","target":-1}
{"text":"I wish I could watch the awards.. But I wasn't invited, ","target":-1}
{"text":"@timmmmehh omg timmy what a waste it was beautiful today I went to the beach ^^, was awesome","target":-1}
{"text":"House sad ","target":-1}
{"text":"Time to pass out ","target":-1}
{"text":"Romantic weekend just came to an end. Sir has left for work. ","target":-1}
{"text":"Chris won't make me no food ","target":-1}
{"text":"@tomer no vista here. have dual boot, Linux& XP. unfortunately most of the ppl I work with want .doc and will not do with .pdfs ","target":-1}
{"text":"Damn this is beautiful...A lil lonely tho, guess this is what happens when your not missed ","target":-1}
{"text":"I could really use some pick-me-up sex right about now. ","target":-1}
{"text":"Im crying because im missing hannah and my clock isnt helping me! ","target":-1}
{"text":"My LC is in three days I;m scared, I wanna get into college so much!","target":-1}
{"text":"hit her elbow really hard last night - still hurts and tingles ","target":-1}
{"text":"@reneengstrom did they seriously JUST send this out because that's completely ridiculous I'm supposed to have a table with some friends","target":-1}
{"text":"@AmyStar92 Yeah, you coming? coolies. Aww ","target":-1}
{"text":"@Jchawes what happened to his law?? ","target":-1}
{"text":"@kathrynmercer: this is exactly what I thought earlier! I made myself boiled egg&soldiers for tea and just lamented impending adulthood x","target":-1}
{"text":"@Icklesal oh yes. Don't get me started on anxiety we could defo be a double act!! LOL","target":-1}
{"text":"Hmmm boobs are a little too big. I'm popping out all over. http://yfrog.com/15keazj","target":-1}
{"text":"oooh noo the weekend is almost over school tomorrow ... that sounds terrible :/","target":-1}
{"text":"@mundah oh the things we would do for pens tickets.","target":-1}
{"text":"@_emeline poor Katee too I was so sad about Amy and Miracle!","target":-1}
{"text":"@emsimmons enjoying Sunday Funday? I'm back at work today ","target":-1}
{"text":"@ShawnKing well you could be doing home improvement chores like me all weekend ","target":-1}
{"text":"how come my burns last for weeks? ","target":-1}
{"text":"grocery store ","target":-1}
{"text":"Don't make me go back to workkkkk ","target":-1}
{"text":"Really bored ","target":-1}
{"text":"@shadowfish Oh no that girlie giving you trouble again? ","target":-1}
{"text":"Watching tattoo hwy right now on cable, its soooo sad right now I wanna cry ","target":-1}
{"text":"hungry hungry hungry ! there is no food on the table ","target":-1}
{"text":"@MissSimone32 mhm ain't coming soon enough i'ma bout to lose it....","target":-1}
{"text":"dang brandy you've always been skinny but DANG, your hella skinny now ","target":-1}
{"text":"http://twitpic.com/6cxmy please view full size. why do people not like my answer? (i am andrew ryan)","target":-1}
{"text":"I hope I didn't lose any of PJ's equip. Wake up to message from him. ","target":-1}
{"text":"so twitpic is being an asshole and doesn't seem to post what i send from my phone ","target":-1}
{"text":"@Steffi__x my computer wont let me back on MSN!!! ","target":-1}
{"text":"no baseball that is next sunday if darren didnt mumble on the phone i would have gotten it the first time","target":-1}
{"text":"@leannehartland (thumbs up) maths friday really havent revised enough","target":-1}
{"text":"has a cold and a sore nose needs tlc x","target":-1}
{"text":"@roleeta why is that? I've been sick for 2 days myself. Couldn't sleep ","target":-1}
{"text":"@MikeChaneyNews wha?? ... oh no.... ","target":-1}
{"text":"wish I could stay up to watch the MTV Movie Awards lol .. got to get up way too early.. ","target":-1}
{"text":"@Hedgewytch I might plant an oak where the rowan once stood. I want my birds back ","target":-1}
{"text":"Gotta wake up early and study really hard because today I haven't done a thing. SMH Why do I always do that ","target":-1}
{"text":"@sjc0815 Well, 2605 Briana Shay is officially gone Our first house is sold","target":-1}
{"text":"@Justine_xxx cannn't put on weight too ","target":-1}
{"text":"Noticed my work unblocked Gamespot.com yesterday. I hate the site but sadly my only way to read E3 goodness. ","target":-1}
{"text":"Feelin kind of icky thai not as good as I thought it would be","target":-1}
{"text":"Had a 2 hour nap. It was not enough Drinking coffee now on our way back to church. Hope it helps!","target":-1}
{"text":"@billyraycyrus hey daddy ;) (jk miley!) wooh where I am it's so ugly cuz there's a lot of garbage have a great day daddy ;) xD (again jk)","target":-1}
{"text":"@prmack student tickets are sold out I think fella ","target":-1}
{"text":"@mikeyway Wanted to see MCR for ages..never had the chance to though ","target":-1}
{"text":"NXNE wristbands are nearly sixty bucks this year. ","target":-1}
{"text":"oh got to go the kid is out of the shower will twitt' later bye my twitt's time is up ","target":-1}
{"text":"@wishingonstars text me baaack ","target":-1}
{"text":"@SandyCalico we live near Startrite factory shop. woohoo. That said bought my girls Clarks sandals yesterday- £58. Ds still needs shoes ","target":-1}
{"text":"'Late at night when all the world is sleeping, I stay up and think of you.' ","target":-1}
{"text":"I wanna survive ","target":-1}
{"text":"eating chocolate and missing scott ","target":-1}
{"text":"They are putting my bestfriend to sleep today I can't stop crying http://twitpic.com/6cxr2","target":-1}
{"text":"at SF pool & waterpark. What were people thinking when they decided to bare all?!?! Scarred for life!!!","target":-1}
{"text":"@bigsmooth32 im sure it will, it'l have a bunch of sweet stuff. but no hacking i got dibs on your old one if you get a new one","target":-1}
{"text":"@Courbs I'm so far behind on It's Always Sunny... I'm only midway through the second season! Shame, shame, I know. Hilarious, though!","target":-1}
{"text":"At schoolio...only three days to go ","target":-1}
{"text":"i hate overcast rainy days ","target":-1}
{"text":"can't believe i've not spoke to emily today! what if she's not on tomorrow either? ","target":-1}
{"text":"@cocacolin me too baby threeee weeks from today I'll be there! love you.xx","target":-1}
{"text":"@Dachelle it tasted nice, but this damn milk allergy means i feel awful now am almost done with boybanders","target":-1}
{"text":"cant wait til play practice 2moro wish i didnt have to go to jr fair board farmgirl@<3","target":-1}
{"text":"@cyounes ÙÙاسÙ? Ùا Ù?ÙØ· اÙخطÙØ· اÙعربÙØ© اÙÙ
Ùتة ","target":-1}
{"text":"Bye bye Baltimore back to the Big Apple I go","target":-1}
{"text":"okay have to go now. and im gonna see the trailer 2morrow instead... ","target":-1}
{"text":"Its pouring over here ","target":-1}
{"text":"@sexidance ugh ive wanted to make a mixtape too but im not really into music right now for some reason ","target":-1}
{"text":"@buckhollywood I Changed my twitter name now....dont ask why....its a LONG Story....i bet you think im weird now I'M SORRY (wow..so emo)","target":-1}
{"text":"About to perform with the Southwest Washington Wind Symphony! Might be my last concert with them for a while (thanks to MBA in the fall) ","target":-1}
{"text":"i'm enjoying the disco now...know? hauhauh ","target":-1}
{"text":"@xthemusic don't joke about that, I am praying we get something better than a 15 min presentation of Wii Fit Plus ;_;","target":-1}
{"text":"@Camper_Bob My character kind of accidentally shot someone last campaign ","target":-1}
{"text":"@pirrofina not much progress ","target":-1}
{"text":"been sooo tirrrred!!! so over studying i want it to be summer!!","target":-1}
{"text":"just dropped my family from england to the airport, miss them already an sad to see them go ","target":-1}
{"text":" she just plain freaks me out.....","target":-1}
{"text":"Wow here is now 11 pm. so I must wait a whole night to see the MTV awards ","target":-1}
{"text":"@carolinejjordan everyone's talkign pets tonight i have pics but not of pets cos i have no pets x","target":-1}
{"text":"I'm feeling low.. ","target":-1}
{"text":"@sulphate yes pls i need to get out of here and away from every single person i know","target":-1}
{"text":"tummy hurts ","target":-1}
{"text":"I would much rather play games than program them... ","target":-1}
{"text":"caught in the rain on the way home... and without daisy of love... booo ","target":-1}
{"text":"Gosh i'm going to miss LC on the hills. tonight is the last night. Britlee <3","target":-1}
{"text":"wishing @max17r0n would come over ","target":-1}
{"text":"@sydney180 damn I wish u were here toni too ","target":-1}
{"text":"@JasmineMcGregor Well yes, I get that part. but that cartoon was a total slam on him. Poor kid. ","target":-1}
{"text":"i don't wanna go to school tomorrow...it means no twitter for 6 hours oh|! and my mom's computer is dead...damn it! ","target":-1}
{"text":"has a school cricket match tomorrow ","target":-1}
{"text":"It's still raining ","target":-1}
{"text":"@ikklePickle I know, is muchos sucky ","target":-1}
{"text":"I should've stayed in bed until tomorrow. I feel so so bad ","target":-1}
{"text":"no one ever likes to wake me up. ugh. i feel like im dying over here. this cough is just ridic. couldnt even see the boyfriend today ","target":-1}
{"text":"My headache has returned. ","target":-1}
{"text":"get got teeth pulled ","target":-1}
{"text":"@kat_rivera KAATTTTT I be passing by your page but I don't add ever how's Florida??","target":-1}
{"text":"i'm so Disappointed ! ","target":-1}
{"text":"Ugh everything i can possibly try that doesn't cost money has failed. My laptop has forsaken me. I have no idea what to do next ","target":-1}
{"text":"@benrlr the shelves are all nice + clean now..except they're really not. All the bloody dust falls straight back on.. Clock in okay?=]","target":-1}
{"text":"Just woke up. I'm bored and theres nothing to do. Swap meet was canceled due to the rain. Next weekend I guess.","target":-1}
{"text":"@kismet1990 sorry to have missed you!!! ","target":-1}
{"text":"@RichardNapalan I see. Save me bored","target":-1}
{"text":"left my cereal at @moochoo's ","target":-1}
{"text":"@simonrim prepare to scratch!!! But the hard part starts now ","target":-1}
{"text":"@jaybrannan was gonna get tickets to ur show in Dallas until i saw it's on 7/19, I'll be in Cancun that weekend! ","target":-1}
{"text":"Im cleaning my aquarium and 3 fish died instantly in the container I put them in. Guess they didn't like the change. ","target":-1}
{"text":"My head hurts. ","target":-1}
{"text":"One more stop then back home to finish up yard ","target":-1}
{"text":"@surlyshirley sorry to disspoint you honestly, many tweets are typed while stopped, then sent. too busy messing w/iPod while driving ;)","target":-1}
{"text":"@marcthom A bit but now the flu has travelled into my chest and I've got the fleghmy cough from hell! ","target":-1}
{"text":"superrr boredd...all my friends aree busyy or havee basketball ","target":-1}
{"text":"I was at the beach all day today I'm so burnt ","target":-1}
{"text":"I want to play ","target":-1}
{"text":"@EL3G email me your number, because the one I have is not you ","target":-1}
{"text":"@if_i_fell me to i really don't want it to end & yeah i cried aswell i guess nothing lasts forever tho booohooo","target":-1}
{"text":"http://twitpic.com/6cxwr - Why'd he have to go an ruin it?","target":-1}
{"text":"watching tennis on tv. I really want to play ","target":-1}
{"text":"OMFG. I can't even avoid the Rafa stuff on ONTD. Crushed. ","target":-1}
{"text":"@TheFreditor I'll start now : went to the etnies jam at bay66 they threw out free stuff, I got nothing ","target":-1}
{"text":"im bored while watchin nascar ","target":-1}
{"text":"@Senaida I work all day ","target":-1}
{"text":"@TillyRossetti i just had some too- but unfortunately i didnt get magically transported back to the nineties as i had hoped.. ","target":-1}
{"text":"Ugh. Been having tummy aches all day. ","target":-1}
{"text":"got a huge gash on my toe from the escalator ","target":-1}
{"text":"@headphonaught soz 2 hear @littlelaughalot's quit Twitter.Frm comments I take it somethin unpleasant happend. pls pass on my love. .x","target":-1}
{"text":"@ChadMichMurray OTH's no OTH without Lucas ! ","target":-1}
{"text":"@Kouneli Be happy you have low voltage then. ","target":-1}
{"text":"@mileycyrus MTV wont let me vote!! i have to sign up, and it says im "ineligible"!! UGHF!","target":-1}
{"text":"Susan Boyle lost what made everyone love her, diversity deseved it! Why dont I feel better yet xxx","target":-1}
{"text":"@nessie_111 tried that, int working for me ","target":-1}
{"text":"haven't seen @triishh all day ","target":-1}
{"text":"The date was terrible... Would rather have gone to my parents for a BBQ. What a waste of a lovely evening ","target":-1}
{"text":"@SaruhMai sorry im grounded ","target":-1}
{"text":"THE LAST SURIVIVOR OF THE TITANIC DIED moment of silence..everyone! god bless leo and kate <3","target":-1}
{"text":"wow apparently wings and beer on sunday aint hoppin in Murrells iNlet... ","target":-1}
{"text":"wishing my fellow skydiver (TS) a speedy recovery after a bad accident....... ","target":-1}
{"text":"hate when i feel like this ","target":-1}
{"text":"@babydolldress lucky you, going to the beach!! i have to be at home studying for exams! ","target":-1}
{"text":"I'm loving how I haven't gained any followers since yesterday lol","target":-1}
{"text":"ughh i feel like crap...i shouldnt drink i miss my phone...its lost","target":-1}
{"text":"Damn my IPOD wont charge for me grrrrrrrrrrrrrrrrrrr hate that & I have to work tomorrow bank holiday, hate that 2 ","target":-1}
{"text":"So early to work and still nervous too ","target":-1}
{"text":"Left Lafayette and I miss it already Ready to start my new job tomorrow. I need that money.","target":-1}
{"text":"@lucecannon unfortunately we dont have a beach like you ","target":-1}
{"text":"Guess I can just go tomorrow... ","target":-1}
{"text":"Is worried bout my step dad. ","target":-1}
{"text":".@catawu we are trying. as recently as this morning, which is why it's disappointing to be locked down in the old stereotype. ","target":-1}
{"text":"@laurenbroadway I agree. Just wish I had a ball to go to. ","target":-1}
{"text":"I wish I was at home taking a nap ","target":-1}
{"text":"aww, rafa is so upset ...haven't seen him this mad at himself this year","target":-1}
{"text":"My Talbot shirt and my Prince of Wales shirt are missing. I'm about to freak out! I have no idea where I put them last. ","target":-1}
{"text":"Signing off until #Miami. Please do a rain dance. Thanks San Francisco! P.U. somebody farted! Gross!! This is gonna be a long flight!!! ","target":-1}
{"text":"feels sick, wish i was off 2moro schoooool D: getting up at 7am D: exams D: aaarrghhhhh, supposed to be going to bed @ 10 :S will do soon","target":-1}
{"text":"@TWLOHA wow.... ","target":-1}
{"text":"is enjoying the fast transition from spring to summer. Dumped pool water, and patiently waiting on the pool to fill back up. ","target":-1}
{"text":"@thenewpsies where did YOU go ","target":-1}
{"text":"@LATL lol i don't want to ","target":-1}
{"text":"Graduation today @ 5 its gonna be so weird to say goodbye to all the people that are leaving.","target":-1}
{"text":"@FSSouthwest Yes, however I can't get added as a friend ","target":-1}
{"text":"@wethekelsey meh misssessss youhhh ","target":-1}
{"text":"@ms5chw4r7z curry sounds great to me... wife doesn't like it ","target":-1}
{"text":"@Chibi_rizzy i love you!","target":-1}
{"text":"Not feeling good at all ","target":-1}
{"text":"Why do i always go after girls that have boyfriends?? ","target":-1}
{"text":"Mobile phones allow those not physically present to interrupt conversations with those who have bothered to be physically present. ","target":-1}
{"text":"Why wont my picture upload!! ","target":-1}
{"text":"mcfly fans are so annoying nowadays in 2006 they were all sweet and nice and polite, not just obnoxious fangirls. the band is ok tho","target":-1}
{"text":"Im hot too ","target":-1}
{"text":"I burned my tongue ","target":-1}
{"text":" twilightnewmoon","target":-1}
{"text":"I miss my internet at church ","target":-1}
{"text":"@ericamerrin now I'm jealous ","target":-1}
{"text":"@supajulz omg!! you should see my face! My nose n head are proper bright red! And there's big gaps where I was wearing sunglasses!! Arghh ","target":-1}
{"text":"@ladollyvita omg i'm not there lol thanks for telling us ","target":-1}
{"text":"i am so tireeeeed, i feel so bad ","target":-1}
{"text":"Eek. My tummy hurts. ","target":-1}
{"text":"SO bored. should be studying but dont want to LOL. HELP!!!!!!!!!! ","target":-1}
{"text":"can anyone tell me why girls THRIVE off of drama? hmm.. wish i was born a boy ","target":-1}
{"text":"Jays lost. All You Can Eat section was great, stuffed my face full of food. Sat next to the grossest people ever, they smelled like shit.","target":-1}
{"text":"@ALisHERE would luv to...but there are no comps for it ","target":-1}
{"text":"graduation's over! i'm gonna miss all my senior friends tho oh well it's life. but now heading home to work on page. Woo! GOJAYGO!","target":-1}
{"text":"@yaseminx3 LOL your lucky no school tomorrow or friday and you get to wear your own clothes i have 2 different uniforms summer&winter <3","target":-1}
{"text":"IT IS SUCH A HOT DAY 2DAY IN NY... MAYBE I'M NOT READY 4 THE SUMMER LIKE I THOUGHT ","target":-1}
{"text":"Bad weather over here. It has been raining all day long ","target":-1}
{"text":"tristan won't take naps for ANYTHING now that he doesn't have a crib anymore. ","target":-1}
{"text":"@darker_artic totally agree! ","target":-1}
{"text":"i need to study some english before the show but my hand is denyin it ","target":-1}
{"text":"maths gcse exam tomorrow but new moon trailer will mp be on youtube when i get home soo yay!!","target":-1}
{"text":"AAAAA, ANYONE HAVE MTV ? I NEED TO WATCH MTV MOVIE AWARDS ","target":-1}
{"text":"Still not over the Cavs super mega Chris Brown beatdown ","target":-1}
{"text":"Bed now, i'm knackered and school tomorrow! ","target":-1}
{"text":"Wishes my hubby wasnt at work ","target":-1}
{"text":"yep just as I thought... I got sunburnt. ","target":-1}
{"text":"@ian_si I stick to main roads. That said, I just lost my ipod while jogging.. too dark to find it. Rather upset ","target":-1}
{"text":"Bruce is closing Giants Stadium with the last 3 concerts ever played there...tix on sale 2morro last time I will see Max's posture there ","target":-1}
{"text":"Off to watch the BBC's "South Pacific" documentary. Outstanding! I miss my Pacific Ocean. ","target":-1}
{"text":"@alieblahblah < -- EATS OREOS MADE FROM FECIES!! :o Hehe Cool + I have a headache YES YOU ARE ;)","target":-1}
{"text":"@iragrant Thanks Ira but he is blind, and old and sick And on a different topic, I love both the pictures and the bags in your shop ...","target":-1}
{"text":"This commercial break from my life is lasting way too long. I want to know how my show ends ","target":-1}
{"text":"Finished Cabaret for ever gonna miss it!","target":-1}
{"text":"@carolinejjordan i did have a goldfish but she died x","target":-1}
{"text":"I think I have a celeb crush on joseph gordon-levitt oh and stuck in traffic to Lynn canyon http://twitpic.com/6cy2y","target":-1}
{"text":"My baby is messing up (blackberry) ","target":-1}
{"text":"is off to bed now. 2 exams tomorrow, not looking forward to it Sweet dreams","target":-1}
{"text":"I have been stabbed though ","target":-1}
{"text":"really can't be bothered to go back to school tomorrow! (N) ","target":-1}
{"text":"going 2 watch family guy. need to go to bed soon, have maths exam 2moro morning ","target":-1}
{"text":"Noooooo... Why change the Twitter Mob thing to a different date? I can't make it now. ","target":-1}
{"text":"Abortion provider murdered http://bit.ly/aULac","target":-1}
{"text":"At work @gamecrazy yay allergies! Today will not be good! ","target":-1}
{"text":"@lyndiWP Why is your blog down? ","target":-1}
{"text":"@kimcchung I know ... ps. I miss u. U should just come on Saturday Night!!","target":-1}
{"text":"i lost my picture ","target":-1}
{"text":"@themomjen our oldest pit is 13, we are very afraid this is his last summer with us poor old man. if you have any pit ?'s you can email","target":-1}
{"text":"@loritodd - I know the feeling, today I have wine flu and I'm still working ","target":-1}
{"text":"is tired! but ill get over it!","target":-1}
{"text":"@barnt @Stealthoneill @deanlove @Henryyamamoto @rocafortmercado @AOsgood Unit Cancelled and Earl sad times I hope something good from it","target":-1}
{"text":"holy shit I'm burnt ouch...skin cancer here I come.","target":-1}
{"text":"right, so about my dream. i was marrying nick jonas. then rita decided to come along and ruin everything by marrying joe on the same day ","target":-1}
{"text":"@taylorswift on this the man says some mean stuff about you upset me- http://bit.ly/xmCNw","target":-1}
{"text":"@nicky_t a pebble beach though painful after a short while! Good weekend-o?","target":-1}
{"text":"ANYONE HAVE MTV ? I NEED TO WATCH MTV MOVIE AWARDS ","target":-1}
{"text":"I think im going to be sick forever ","target":-1}
{"text":"he lost lmao oh well i sorta saw it comming","target":-1}
{"text":"I missed the Hammerklavier played by (blind!) pianist, Tsujii. Hope the video is in archives somewhere. Lifits reminds me of Cory Wells","target":-1}
{"text":"@RidleyX I can't add you on the spymasters cause you don't follow me. ","target":-1}
{"text":"@hannahbert ah, shucks...wish i was with ya gals ","target":-1}
{"text":"finish of getting ready for school and cleaning my room arhh i dont want to go back summer holidays plz come soon","target":-1}
{"text":"Out of Double A. Doing OK in Double B. Why would someone call an all in with 32? I wonder why I bother at times ","target":-1}
{"text":"my ulcer hurtts ","target":-1}
{"text":"fun times were had in clumber im very burnt now ","target":-1}
{"text":"You know you're a goober when your parents use online communities more than you. ","target":-1}
{"text":"@vickytors Whhhyyyyyyy? I feel hungover ","target":-1}
{"text":"so tired need to keep awake for the next episodes of my favourite show ","target":-1}
{"text":"The Rangers Are Not Doing So Hot... ","target":-1}
{"text":"@awaltzforanight i cried when he lost. i just really don't like fed and now it's fucking wide open ","target":-1}
{"text":"is wondering why twitter won't let him upload a photo ","target":-1}
{"text":"@solamore like i had a reputation anyway ","target":-1}
{"text":"@knightsangel @nextmrsmcintyre i have entered too, hope a UK girl gets it, cant wait to hear tomorrow but i know it wouldnt be me ","target":-1}
{"text":"What an amazingly beautiful weekend... shame it all has to end. Not looking forward to 7 hours+ in the car tomorrow for meeting ","target":-1}
{"text":"Just a month away from Paris!!! ...but, sadly, still not sure about where to stay there ","target":-1}
{"text":"@bromco how do you get involved with this show? i would love u 2 do a room, but u don't travel ","target":-1}
{"text":"Very excited at today's purchase of spinach, lamb's lettuce, oregano, sweet marjoram & rocket seeds but no idea how to grow successfully ","target":-1}
{"text":"@lovelylaura7489 I hope you can find something to distract you from your trichotillomania. I understand the feeling ","target":-1}
{"text":"@WooopJess Did he really?? That's sad Where did you hear this??","target":-1}
{"text":"at my parents..only 1 more week at this house Then hanging with Bryan later, he's making me dinner!","target":-1}
{"text":"something weird happened in vegas and only part of the cpmv uploaded...dont know why will have to remake cpmv ","target":-1}
{"text":"I'm depressed I don't get to see the red carpet coverage ","target":-1}
{"text":"@danerthegreat oh shit i didn't realize we were in the same math class. Omg i do have to study ","target":-1}
{"text":"It's far too early for my body to function correctly, I want my bed ","target":-1}
{"text":"@lissyx you'd shout at mee like that? that's not very sisterlyy. ","target":-1}
{"text":"my head keeps making a funny twitching thingie ... am broke ","target":-1}
{"text":"I cant get my pic to work ","target":-1}
{"text":"@wisequark Years ago I thought the same about "Beauty and the Beast." But I doubt that ever happens. Too much at stake. ","target":-1}
{"text":"is of to bed school tomorow and still gta get everything ready! ima miss the holidays night all xx","target":-1}
{"text":"@rybakontwit even thought I can't buy it for the moment -i'm in France I love it (listened on your myspace !!!!) favorite : 13 horses.","target":-1}
{"text":"@jbrisbon justyn brisbon ur not following me ","target":-1}
{"text":"early nite? i think so go to bed and watch a dvd !!! i feel very lonely no1 texting me or nything :L","target":-1}
{"text":"Night all - might as well sign off ","target":-1}
{"text":"@anotorias sorry about your cat. @volitations sorry to hear you're leaving twitter. â« http://blip.fm/~7e3u5","target":-1}
{"text":"hey twit team. me so bored ","target":-1}
{"text":"It's no longer sunny in Seattle. http://tr.im/sunnyinseattle","target":-1}
{"text":"@chriswallace yeah, I noticed","target":-1}
{"text":"im gutted im in for the night i want some eye candy!","target":-1}
{"text":"Cant believe BGT is over . . .So glad Diversity won . . .","target":-1}
{"text":"@britt_mxgirl Reds are about to lose again. Columbus's soccer team beat Seattle yesterday!","target":-1}
{"text":"I'm bored and no-one is online to chat with ","target":-1}
{"text":"Sumbodi Tel Meeee What A Domestic Issss Lmaoo x","target":-1}
{"text":"Just wish Paperless's OCR scan worked better - doesn't seem to work at all ","target":-1}
{"text":"@tommcfly you should go down at the front of the hotel, there are fans freezing on the rain out there! ans they have school tomorrow ","target":-1}
{"text":"Gone back home boo ","target":-1}
{"text":"Leaving nyc and @ghosthawkx ","target":-1}
{"text":"@sneakermind nuffin chillen lookin for something to do today ","target":-1}
{"text":"Is facebook mobile picture uploader not working for anyone else? ","target":-1}
{"text":"DOESNT UNDERSTAND TWITTTTER! ","target":-1}
{"text":"leaving buena park but ill be back in a few weeks!","target":-1}
{"text":"fixed my bike today.. started to ride it. i then realized it had flat tires and i had no way to air em up ","target":-1}
{"text":"i'll miss you. ","target":-1}
{"text":"@mookyninja ooh i've seen my chem, and i like soad...shame they split ","target":-1}
{"text":"@ChampagneRDub the clock is tickinnnnnn for me too 7 years to go :*(","target":-1}
{"text":"I hate lifetime movies ugh make me sad love stories always end happy whatever ","target":-1}
{"text":"oh no, last.fm is down ","target":-1}
{"text":"@2juiiced hahaha yea! you spotted me before i saw you && said hi. were you drunk? i see how it is forgettin bout me && shit haha","target":-1}
{"text":"No reply I am soooo alone.","target":-1}
{"text":"Formula 1 week has officially started.. well I'm nervous & excited at the same time.. no sleep for me till next week, this time around.. ","target":-1}
{"text":"@Moonlight_10_ Bye ","target":-1}
{"text":"@madmannequin I wish I had known about Peaches, I would go ","target":-1}
{"text":"all work, no play for me today. & its such a pretty day outside. ","target":-1}
{"text":"Love my new 14 meg O2 Broadband. Shame about the MacBook's ropey wi-fi ","target":-1}
{"text":"Todayy hassssss been crapp The guy who i trusted wasnt really who i thought he was. So this isnt my favourite day in the worldd,","target":-1}
{"text":"<--no picture ","target":-1}
{"text":"@PeterJDiLorenzo lol really?! the interview at A&F didnt go well? ","target":-1}
{"text":"Think we ate dodgy burgers today. Daughter feels sick and I have dicky tummy. Clearly a case of the cows fighting back ","target":-1}
{"text":"I'm so confused, I want to work but I also want to see my dad over the summer ugh~ getting a summer job was a bad idea I hate divorce","target":-1}
{"text":"I want you here with me. ","target":-1}
{"text":"@drewfifield it seems like everybody's seen it except me... ","target":-1}
{"text":"Moved out of my apt in Somerville and I'm back home in Waltham...this kind of sucks I heart my 42 Bromfield boys","target":-1}
{"text":"Doing some work on a Sunday. ","target":-1}
{"text":"@jeremiahxglen You're leaving me at Bridgeway!? ","target":-1}
{"text":"@jillmyles @angelajames I was too late. all gone by 11a ","target":-1}
{"text":"@Buttercake My sober dancing is rubbish though ","target":-1}
{"text":"@DeeCosta I know. But it still was such an awesome time! =/ I'm gonna miss this so much. ","target":-1}
{"text":"@djCESSION lol. Not sure if I had a blonde moment or a stoney one. AAA said 1 hour or less ","target":-1}
{"text":"i don't know what to feel. but i guess i'll be happy cause MARIA is such a fighter! however, rafa i'm so upset about him. vika ","target":-1}
{"text":"i cant wait to play red faction guerilla, i jsut did a competition to get it douct ill win i never do oh well","target":-1}
{"text":"it's all coold naw ","target":-1}
{"text":"@moonfrye would love to tell you but you are only folling 60 people so you will not read this ","target":-1}
{"text":"even though the gig is sold out but ayeeeeeeeee i want a ticket haha, wont get one though sad times xx","target":-1}
{"text":"@cwalsh82 ","target":-1}
{"text":"@JJMcQuade That's a toughy. I WANT Lakers to win, but I'm not sure if they'll be able to beat the Magic or not. We'll see.","target":-1}
{"text":"@Becccccaa another cold? fyl a bit, but get betterrr soon yes?","target":-1}
{"text":"Seeing a ton of family i haven't seen in forever. This is fantastic. I wish i saw them more ","target":-1}
{"text":"shhhhooooooot. it's 11 pm and i wanna go to sleep already! prob is i can't. not sleepy yet. ","target":-1}
{"text":"@agnesnutter but it would have been so much better if it was a "craaazy night" like this one! http://bit.ly/ZVSuH ","target":-1}
{"text":"@beeahna we didn't see you, thought you jumped on the train, then the door closed in my face as I saw you","target":-1}
{"text":"right it is official i am going to fail maths i'll be working in mcdonald's till i die","target":-1}
{"text":"@IvyNoidea He only wears them for walking outside, won't wear them in the house! It was £49 for 2 pairs, but still expensive ","target":-1}
{"text":"I am being tortured by Bruce Springsteen again ","target":-1}
{"text":"just wings tonight. no more cavs ","target":-1}
{"text":"ugh my back really hurts musta slept wrong, hate that","target":-1}
{"text":"MATHS EXAM TOMORRRRRRRRRRROW ","target":-1}
{"text":"I want to go home and sleep one more hour!","target":-1}
{"text":"my sis got in the mail the complete series of charmed we hav not watchd it in yrs! so sad i rememba wen pru died cant wait to wach it","target":-1}
{"text":"9.3 MB podcast upload keeps hanging at 34% coffeeflavouredtea.podbean.com","target":-1}
{"text":"@srslylily i work that night ","target":-1}
{"text":"@karmachord actually no, just feeling glum ","target":-1}
{"text":"I really wish more people I know were on twitter ","target":-1}
{"text":"my right foot hurts ","target":-1}
{"text":"ah Family Guy, softens the blow of work tmrw ","target":-1}
{"text":"@MissJess I'm so sorry hun. Take care.","target":-1}
{"text":"i have to study ","target":-1}
{"text":"strange day today. fixed my cab and then JUST LOST TWO FOLLOWERS? sorry just noticed that. ","target":-1}
{"text":"@OliverJD I'm afraid I'm in the same boat ","target":-1}
{"text":"now back to work ","target":-1}
{"text":"Need a job in London sharpish!! Bored of this job huntin now x","target":-1}
{"text":"Want to go home, but have to wait for everyone to be ready. Ugh. I'm gonna miss the hills ","target":-1}
{"text":"This is my view on my walks. Smells like ass actually, pumpkin ass http://yfrog.com/5de71yj","target":-1}
{"text":"On a major nostalgia binge tonight: went back to primary school to find the whole building demolished, now listening to rival schools.. ","target":-1}
{"text":"8 Days 'til 5th Year Starts. Just Over 11 Years Down, 2 More To Go. Until College.Or A Job. Still Haven't Decided What To Do With My Life ","target":-1}
{"text":"Seriously?!? Dixie has already chewed holes in my Snuggie http://yfrog.com/5c29mj","target":-1}
{"text":"has a school cricket match tomorrow http://ff.im/-3rnJb","target":-1}
{"text":"@ChefPatrick Oh now, just checked your site, its 600ms. ","target":-1}
{"text":"wow this day is sucking so badly. im prolly not going to see quest AND im prolly not going to take my finals. great right? ","target":-1}
{"text":"@beckycase I'm sorry to hear that. ","target":-1}
{"text":"mowing for the week is all done now next sunday tho ","target":-1}
{"text":"You know who I miss? Shakira Where is my Colombian girl at these days? Does anyone know? I'm too lazy to look it up.","target":-1}
{"text":"@vfactory Wish I Could Be There ","target":-1}
{"text":"Just find out the Boyle didn"t win the game !!! xoxo!!!","target":-1}
{"text":"@ninebucks are you kidding me!? It seems though we have Daily Show in common, we don't like the same people on it. ","target":-1}
{"text":"is not gettin the hang of twitter ","target":-1}
{"text":"makes people think about the things we did wrong, it is very difficult to reach them after.. xx","target":-1}
{"text":"I wish I can still hold on my leftovers but I can't ","target":-1}
{"text":"Writing is hard ","target":-1}
{"text":"Costco didn't have any loose fitting jeans in 36/34 (my size). Going to try the mall today or tomorrow.","target":-1}
{"text":"@Plowey watching the Iowa summary. Saw your stop, what as the issue? Watched Pippa going 5th to 8th in under a second. Plenty in the wall ","target":-1}
{"text":"stupid rain no boat today. coloring with sarah! haha we are five year olds at heart","target":-1}
{"text":"how am i gonna get home monday and tuesday ","target":-1}
{"text":"I still can believe the tickets were sold out in 15 mins what do I do now?","target":-1}
{"text":"Just find out Boyle didn"t win the game !!! xoxo!!!","target":-1}
{"text":"Excited for Hills finale and MTV awards, going to be in front of the tv all night! where's my money....? ","target":-1}
{"text":"I had to force feed Tom otherwise he'll starve to death. ","target":-1}
{"text":"the girl who filmed the video was crying and sounded like crying ... I moved a lot ","target":-1}
{"text":"I'm really not a cold weather person ","target":-1}
{"text":"@the_matty_boosh happy for you mate! I've come down with a cold and I'm sure it's from the rain at Donington ","target":-1}
{"text":"trying to figure out something cute (but not over dressy) to wear to Zaphods tonight....I hate all my clothes ","target":-1}
{"text":"so tired. ugh. summer, please come already!","target":-1}
{"text":"i wanna go to the beachh... but ugh it's soo cold ","target":-1}
{"text":"@Twilight_sm same here i cant watch i 2moro either coz im giggin :'(","target":-1}
{"text":"@gui_wally hm, que tigragem ","target":-1}
{"text":"I wish he was still with Dwight and my magic ","target":-1}
{"text":"OMG i luv Ray........but he has a girl ","target":-1}
{"text":"@nogara119 noes you cant get banned","target":-1}
{"text":"I can't believe it's 10pm. It's been such a good day but now it's over, and I have a migraine coming Had this stinking head for a week.","target":-1}
{"text":"Stupid crepe ! I spilt it on my shirt now its stained","target":-1}
{"text":"@serahhh oh man sorry, but i'm glad you feel better, love.","target":-1}
{"text":"@essell2 Girl pants - I've got that ahead of me with the final seasons of Lost ","target":-1}
{"text":"@tommcfly you should go down at the front of the hotel, there are fans freezing on the rain out there! and they have school tomorrow ","target":-1}
{"text":"wants to go to London soo badlyy apart from that am good (: xxx","target":-1}
{"text":"@msladylush what category of those 3 do I fall under? ","target":-1}
{"text":"@mairri i wish i was having red bull atm ","target":-1}
{"text":"Friends are going to Movie Awards! and my mum is going to a concert! and I go home thishh sucks balls. haha","target":-1}
{"text":"gosh...i think i only got 4hours sleep it's going to be a long day!","target":-1}
{"text":"some schools are starting school today ^^ envy them our school starts next week . summer flew by FAST !","target":-1}
{"text":"@awaltzforanight sorry ","target":-1}
{"text":"i wonder why the upload of my profile picture brings me to the login dialogue ... twitter's first impression scares me ... ","target":-1}
{"text":"The vibrate isn't working on my phone anymore. ","target":-1}
{"text":"Finally home. kinda a boring weekend ","target":-1}
{"text":"@maliciousmandy1 No one wants to watch them with me boohooo","target":-1}
{"text":"is sad to see that its hit 10pm the weekend has nearly ended!","target":-1}
{"text":"gotta be up at 6 for work so no late night for me..... what a dull girl i'm turning into!!","target":-1}
{"text":"@MsCheeks3 cheating on my diet. Sat and this morning ","target":-1}
{"text":"watching ER. Sad that it is coming to an end. ","target":-1}
{"text":"@jtimberlake its not on UK telly tonight is it? ","target":-1}
{"text":"my twitter picture isn't showing ","target":-1}
{"text":"School... again... ","target":-1}
{"text":"@HellYeahHolcomb I miss you too!! But, I don't think I'm home on beach day idk yet though. We take mucho pictures tomorrow!","target":-1}
{"text":"@chasedward301 I cant figure out how to shut this one off. ","target":-1}
{"text":"@toritos No, I didn't get anything DM me yr pin xo","target":-1}
{"text":"i really wanna see the new mon tralier omg i wanna see it now ","target":-1}
{"text":"back home. i just want all this to get over ","target":-1}
{"text":"No sign of my supa cute marine. He is gone forever. FML.","target":-1}
{"text":"Back from London (baby!) - one looong meeting and no time for shopping or sight seeing ","target":-1}
{"text":"omg am so tired n i dnt want 2 go 2 school tomorrow anyway goodnight","target":-1}
{"text":"@Maximus_Quiffus That ISN'T porn? Nothing ","target":-1}
{"text":"The movie is over ","target":-1}
{"text":"Got NO homework done this weekend. Will suffer the consequences Monday ","target":-1}
{"text":"@Applecored oh mystery like, you tease *sigh* must be off in about 30 minutes I cannot be kanckered for tomorrow *sniff*","target":-1}
{"text":"...and it looks like the iPhone's camera can't handle low light well at all ","target":-1}
{"text":"@NotoriousIndv *huggles* Poor guy ","target":-1}
{"text":"Got the TV on in time (Y) Aww the doggy keeps sneezyingg ","target":-1}
{"text":"@Mnemosime oh bb I'm so sorry *hugs you tight* if there's something I can do? You know where to find me *cuddles* love you! â¥","target":-1}
{"text":"Is going to go to bed very very soon.... 5.50am start!! ","target":-1}
{"text":"Loved spending the entire day in the sun and BBQ for tea; the painful sunburn on my legs, not so much ","target":-1}
{"text":"I have a hangover 2 day! I don't want to be @ work ","target":-1}
{"text":"Last.fm is down http://bit.ly/ourserversareburning http://status.last.fm/","target":-1}
{"text":"@Lioness46 I think he just did .... Its good to see you...","target":-1}
{"text":"Im at the closing night of my play...soo fun but sad ","target":-1}
{"text":"@franmirabella Sweetness! I wish I could go to E3 one year ","target":-1}
{"text":"@D_Holt david I hope @4everBrandy says hi to me... I love her sooo much!!! ","target":-1}
{"text":"Fish Tacos...even the name doesn't sound right... ","target":-1}
{"text":"first exam tomorow morning ","target":-1}
{"text":"At work.. Off in an hour. Then I get to see terminator 4 tonight for free! Traded shifts with a coworker so now I have to wake up at 830. ","target":-1}
{"text":" the end of the weekend","target":-1}
{"text":"@litt1eminx what's wrong? did the toros lose j/k so really what's wrong?","target":-1}
{"text":"@riotsqurrl The Driller Killer is fun too, pure camp/dementia, but nothing tops King of New York. After that it was all downhill ","target":-1}
{"text":"@kaboogie it really is odd. The sun is shining bright but it's pouring. I don't think it'll last though. Last load's in the dryer now ","target":-1}
{"text":"today has been the WORST ","target":-1}
{"text":"sorry twitter I have over 80+ ppl I have to interview soooo im gone for the moment! need me? IM me!","target":-1}
{"text":"@sulphate yes yes im relooking @ study abroad stuff, if i whinge enough might be able to convince my parents to let me still go for fall","target":-1}
{"text":"walking hurts so much ","target":-1}
{"text":"just finished BSG season 3, will begin #4 NOW. I'm so hooked! but why Tigh? ","target":-1}
{"text":"Lol Yay! Mine is broke Fuck!","target":-1}
{"text":"@upsgurl She's with her family until 6 or so. She can't make it. ","target":-1}
{"text":"is eating fresh strawberries and thinking about some random acts to do over the summer... and working on ISPs ","target":-1}
{"text":"@SabrinaWolf Still hurts! ","target":-1}
{"text":"Is sadd she can't do the time warp. ","target":-1}
{"text":"awww @ that little girl on BGT breaking down crying on stage ","target":-1}
{"text":"@McDayDreamer oh ha sucks , yea Ive been there. ","target":-1}
{"text":"i realy realy dont want to go back to school tomorrow ","target":-1}
{"text":"I can't believe they got rid of Wilson though ","target":-1}
{"text":""Jetzt ist die Zeit zu explodieren" good lyrics! Ollie wants to watch the Edukators but cant find it ","target":-1}
{"text":"@ChellaD11 I know they didn't take me I would have loved to go but oh well ","target":-1}
{"text":".... wheres my kitten.....? ","target":-1}
{"text":"I'm phoneless Well, I'm not, but my phone is being repaired and I have a 'loan phone' instead.","target":-1}
{"text":"@CC_Cassin Cheers. He had flopped flush but 32 is a fold. I had AK and flopped 2 pair ","target":-1}
{"text":"@BeckaMoor I know 10 votes in 20 minutes it is ridiculus i have been voting all day but something is def wrong ","target":-1}
{"text":"totally bummed ","target":-1}
{"text":"darn they ran out of neon cleats ","target":-1}
{"text":"I have a blister on my foot. It has not been a good day.","target":-1}
{"text":"And so it begins again. At least i only have to go into Habs another 9 Times ever... And one of them is to collect results!","target":-1}
{"text":"@rayoccg try getting stopped by a cop. What happened to hiking? Lol","target":-1}
{"text":"yesterday i had 20 followers and now 18 i think my tweets are a little bit disturbing.","target":-1}
{"text":"today has probably been my most annoying day of tweets ever... sorry... fyi i cut another finger today on an elmo that stupid ginger","target":-1}
{"text":"@pervetastic I'm stupid. I need to find a download for the 1st half ","target":-1}
{"text":"heading back home to NYC ","target":-1}
{"text":"@sydeshow wowowowowww do want. But I am too far ","target":-1}
{"text":"@xx_Boo_xx HaHaaaa; my profilee pic thing aint working & a random pic showed a few mins ago","target":-1}
{"text":"how come everyone's deleting their TWITTER? with aimes. <3","target":-1}
{"text":"Have Tipjoy account now, but all buttons are javascript, which myspace won't allow. ","target":-1}
{"text":"Crap... School tomorrow Better not miss the school bus.. Be well annoying if I do","target":-1}
{"text":"Kind of wish i never had a #tappsaff day tbh http://bit.ly/GZR01","target":-1}
{"text":"Feeling very sad that I won't be attending this year's AlabamaSoapMeeting - it'll be the FIRST one I've ever missed. ","target":-1}
{"text":"when you're dreaming with a broken heart, the waking up is the hardest part. ","target":-1}
{"text":"about spymaster twitter game..i was hoping 2 see ppl refusing 2 use weapons/assassinate. ","target":-1}
{"text":"@nadineynuisance i see , lol , poor you .. i also deleted my cookies ... i 'm not sure if it helped , but it worked after a while","target":-1}
{"text":"@Mark_Coughlan was about to email you. It not done sorry. Didnt expect to spend this evening napping! Cant function in heat ","target":-1}
{"text":"wants to sleep.but its wayy tooooo hot ","target":-1}
{"text":"Hottie hasn't called me today. Oh well, I made new plans with two awesome friends so it will be all good.","target":-1}
{"text":"wanna take a nap, but can't. ","target":-1}
{"text":"@beilaq_sodmq wha happened ? ","target":-1}
{"text":"my tummy hurts ","target":-1}
{"text":"@shortkitty What is there to talk about with someone whom I don't know? ","target":-1}
{"text":"OMG! Can't wait for tomorrow! But i'm gonna be sad on Wed. cuz Linz is leaving!!!","target":-1}
{"text":"I've started working on this silly thing again: http://twiturl.de/ffff even though it's more than 3 years old, I somehow had the urge to ","target":-1}
{"text":"Stepped on a thorn.... my foot hurtss ","target":-1}
{"text":"@ChadMichMurray not good ","target":-1}
{"text":"i just watched the hills after show w @LaurenConrad i started crying its gonna be so weird not having her in the show anymore :l","target":-1}
{"text":"@Adamgingerpele i know the ratio of hot to cold is literally 2:1","target":-1}
{"text":"i want #dmb ","target":-1}
{"text":"says Shoot Yanks lost http://plurk.com/p/xh5sa","target":-1}
{"text":"i'm realy bored ","target":-1}
{"text":"Just got pooped on by a bird...on the nose! ","target":-1}
{"text":"@jaaaaae Im so mad that I missed you at both bbqs ","target":-1}
{"text":"@kflannn can't BFF I have a relayy meeting tomorrow after school?","target":-1}
{"text":"been working so much, missed the 3 days of sun we've had so far! ","target":-1}
{"text":"@HollieLivens I've gone to far and asked Kara to follow me, I don't think she will.. OHHHHHHHHHHH! x","target":-1}
{"text":"It's callin' my name but dang it, I just CAN'T!! First thing I'll do tomorrow: work out even though I hate jogging somewhere outside ","target":-1}
{"text":"I wasn't paying attention to Twitter & Jess didn't say anything about her brother. Now I feel bad for not asking if something was wrong. ","target":-1}
{"text":"I am so dead when jen gets home tonight. I destroyed our bedroom And I ran out of Space Bags !","target":-1}
{"text":"@anthonycelia Yeah! Problem is it doesn't have a power cable and apparently Apple doesn't sell them anymore.. So I'm searching online.","target":-1}
{"text":"Google Earth got me bored... What can I do with it?","target":-1}
{"text":"@KendraKellogg yeah I realize that's what I need to do, but when I go through and redo the entire code, each div within bigall is closed ","target":-1}
{"text":"@EllySHenderson i spelled it wrong didn't i? ","target":-1}
{"text":"i'm not tired again. i can't have another night of tossing & turning til half 4 this is silly.","target":-1}
{"text":"I have to study language and comunication for tomorrow's exam ","target":-1}
{"text":"i hope this isnt a sty(sp)... i cant wait till june 23! JEFF MATHIS ROAD JERSEY GIVE AWAY!!! yay! ptosis ;)","target":-1}
{"text":"my stomach is leading a great revolt inside my body. ","target":-1}
{"text":"@LATL lol but idk if i can i had all last week off ","target":-1}
{"text":"i miss him already ","target":-1}
{"text":"Love ITVs Benidiorm! Time to catch up on some sleep. Long day tomorrow ","target":-1}
{"text":"@LauraAWNTYM It's a nightmare, the pairs I bought were the only ones that fitted him, narrow feet, the ones in the sale were no good ","target":-1}
{"text":"@Emmaloveshearts I no its always messing upp!","target":-1}
{"text":"Back to work tomorrow. Boo. Hiss. ","target":-1}
{"text":"my wisom teef are growing in? ","target":-1}
{"text":"@ashgatsby i miss you. ","target":-1}
{"text":"@BrooklynzFinest I want her to follow me ","target":-1}
{"text":"thinks its sad that the last person alive who was on the titanic has died! x","target":-1}
{"text":"@beherit nuuuuuuuuu! Not you again going back into it ","target":-1}
{"text":"school tomorrow got to pack my bag :@","target":-1}
{"text":"@langille naw i think that just you ","target":-1}
{"text":"Off to the movies. I don't know if I wanna see Drag Me to Hell anymore ","target":-1}
{"text":"@JoelMadden that was a mean trick joel ","target":-1}
{"text":"@sulphate hopefully i can hold out that long haha and we will have so many fun adventures w/o shitty fuckhead cunts thx","target":-1}
{"text":"hmm back home yay I feel like i never sleep her ","target":-1}
{"text":"Omg 7.06am this is the earlyest I've been up in ages! ","target":-1}
{"text":"ugh i love night at the museum so much! cannot wait to get paid and go shopping tomorrow in the lovely weather. burned nose! ","target":-1}
{"text":"Why does the weekend have to end so soon ","target":-1}
{"text":"aww. looks like it's about to thunderstorm and rain..good weather here don't last long ","target":-1}
{"text":"@gemmab45 oh noes! Thats so late but Rob may be worth it! lol","target":-1}
{"text":"still hasnt found anything on tv! My baby should be in Chicago soon! Miss him already! ","target":-1}
{"text":"sunday night again. *sigh*. where do the weekends go? ","target":-1}
{"text":"@Fletcher_Kitten Thanks. Poor Harley has tried everything for his EGC but it always comes back. ","target":-1}
{"text":"Done grad party hopping. Now I'm just chillin at home, maybe gonna watch a movie. Too crappy out to play frisbee. TEXT ME SOMEONE.","target":-1}
{"text":"I love my son sooo much but being a single parent is absolutely NO FUN! S*D*P* & T*K*K*","target":-1}
{"text":"@worldarts sorry to hear that ","target":-1}
{"text":"@DMBSFgirl I'm sorry Call the place, maybe when they realized it didn't say a Niner name they left it behind-worth a try...","target":-1}
{"text":"No One Wants to Talk to Me ","target":-1}
{"text":"Machine at work still broken. Boo! It's going to be a "fun" night. ","target":-1}
{"text":"@roncallari ahh I see you made it over to NKOTB ning, didnt get alot of replies about tink before you tweet store..i tried","target":-1}
{"text":"@sardoc Really? I wish youd come back! We could go to marios haha, Do you know when you'll be coming to visit if anytime soon?","target":-1}
{"text":"And now i've finished Scott Pilgrim vs the Universe. I want more any one recommend similar graphic novels?","target":-1}
{"text":"@jakuba16 I used to love busted! Charlie, Matt & James lol they never made it big in America.. ","target":-1}
{"text":"i don't why my photo is not showing up I feel so naked... maybe if I put a naked photo up it will show? I dunno...","target":-1}
{"text":"Does anyone else lose or crush their sunglasses as much as I do? This is why I have to get the $6 in Venice cuz I always do this ","target":-1}
{"text":"Went to Carson City to find shoes fir spinning. I had no luck. I'm going to Sacramento next weekend to find some.","target":-1}
{"text":"has the mumps ","target":-1}
{"text":"Watching Indy Car now .. Kinda boring since I missed the first 105 laps ","target":-1}
{"text":"@mcsdoboy i didnt get ur message in time. I already left. Next pedi i will tell them.","target":-1}
{"text":"Bad lighting - bumber ","target":-1}
{"text":"@Saba_Mohtasham when am I ever going to see you ever again??? ","target":-1}
{"text":"@SarahSloane I wonder how many right wing people would carry squirt guns full of red dye on that day if we did. ","target":-1}
{"text":"@demente Silence! I kill myself! ","target":-1}
{"text":"@iLoveMyEgo Thank You Why Did My Account Get Suspended I'm sad now!","target":-1}
{"text":"Villipoto is out for the rest of the season, knee injury (thorn meniscus I believe)...sucks... ","target":-1}
{"text":"now is the time. GO TO SUDY!.. salud publica! aaaahh afraid ","target":-1}
{"text":"Has been sleeping all day. Threw up my dunkin donuts earlier stupid stomach. On to church...","target":-1}
{"text":"Not one bottle of #Cachaça available in #Montreal. http://bit.ly/O4x5S ","target":-1}
{"text":"@hiediearwood long live heartburn ","target":-1}
{"text":"@kristin_alise I am sad 4 u now I'll mail you a meat cookie to make up for it ","target":-1}
{"text":"im so sunburnt im never leaving the house again! *superglues door shut*","target":-1}
{"text":"@michieness zomg moar sbux or face mah frostmourne ","target":-1}
{"text":"is trying to cool off from helping dad hang up concrete board, all day, in 90 degree weather.... ","target":-1}
{"text":"My last performance as percussionist for our school's musicals ","target":-1}
{"text":"is mad at Twitter now because her uploaded picture doesn't show up ","target":-1}
{"text":"@mOnsietOnsie @c_zajac Yummers is meeting with some adopters tonight Im sad but VERY happy for the lil guy!!","target":-1}
{"text":"@krissi55 Poor you. Yeah I'm good thanks. Had quite a relaxing week. ","target":-1}
{"text":"Can't wait to open a swiss bank account, I hate having to worry about being assassinated and having my money stolen #spymaster","target":-1}
{"text":"I miss you - Mtv Movie Award tonight , Gonna go out and buy shit to fix up mah shoess ; stupid mudd puddles :/","target":-1}
{"text":"@carlaashmarlaa I'm goin to red chili!! Daaang it.. I ddnt see yer tweeet!! ","target":-1}
{"text":"too much work :x ","target":-1}
{"text":"I hate Mondays ","target":-1}
{"text":"@JayBarone yeah, you guys must of lost my number ","target":-1}
{"text":"at briannas party.I seriously think I like broke my ankle haha","target":-1}
{"text":"IN MY HAUSE ALONE!!! ","target":-1}
{"text":"@girlanime Man I'd think by this point working anywhere else you can find a job would be better (and pay more!) Sorry hon. *hugs*","target":-1}
{"text":"Lost satellite thanks to a storm that we are getting. ","target":-1}
{"text":"@Simply_Uleta damn i been waiting 2 take you out for 2 years know ","target":-1}
{"text":"@asoulpsy i dont think you can enter anymore.. It is a contest/game on FOD","target":-1}
{"text":"@drewseeley did I told everybody I HATE living in Argentina? Well, I DO. Wanna call you Drew! ","target":-1}
{"text":"@anastaciakayray me too, few cavs games during the reg season, no tribe games, tennis when i get the chance, ive been so busy with school ","target":-1}
{"text":"rOASTED ALIVE, FEEL SORRY FOR MYSELF ","target":-1}
{"text":"@TheCorySnelson cant man ","target":-1}
{"text":"@JulieScardina id do anything to help, the poor things ","target":-1}
{"text":"Just had a really expensive lunch. No tattoo for me today ","target":-1}
{"text":"@ataniell93 Yeah, well, touching my nose and mouth didn't help the wheezing. I keep inhaling peppers. ","target":-1}
{"text":"Lunch at cal poly ","target":-1}
{"text":"WHYYYYYYYYYY I DON'T HAVE MY MAIN PHOTO ? :@","target":-1}
{"text":"Can't believe the weekend is already over. Back to work too soon. ","target":-1}
{"text":"Still no one's home... ","target":-1}
{"text":"Airports seem a little quiet today - that comment will probably come back to bite me in the ass ","target":-1}
{"text":"why are updates on twitter talking ages for me lol ","target":-1}
{"text":"@KindestAngel: I've always wanted to see it, but I've never had the chance ","target":-1}
{"text":"@jamesheart24 Me ","target":-1}
{"text":"wooo Mary-jane monday tomorrow!! but i dont want to smoke it myself getting stoned with your twin is awesomee! its shit shes majorly ill!","target":-1}
{"text":"@XxLouLou90xX that was nasty that with the bottle. i feel sorry for your hand ","target":-1}
{"text":"@JazperAbellera agreeed. Like all the dreams involving massive shopping sprees that I think are real ","target":-1}
{"text":"Creando el DrenellyOS ","target":-1}
{"text":"thinking about tomor and dreading the early start and long drive ","target":-1}
{"text":"@theladywrites Nooooooo - especially the mixes! Check the ingredient listing - most cornbread mixes have wheat in them #cgft","target":-1}
{"text":"@ChrisJakob okey, just.. AHH, U r an idiot ","target":-1}
{"text":"I can kill characters without crying...I read too much fantasy books (people die..a lot in the books I read, at least)) #writchat","target":-1}
{"text":"Watching Nadal loose in the French open. I was hoping to see his 5th straight win.","target":-1}
{"text":"Is there a reason 2 different groups of people yelled rude things at me in the parking lot? ","target":-1}
{"text":"@Tinker_Ramone i was somethinged. i can't sign in and the email it's linked to doesn't exist anymore so i can't get my password emailed. ","target":-1}
{"text":"@mychmicalzombie: why not ","target":-1}
{"text":"#chesterday #chesterday #chesterday #chesterday #chesterday #chesterday #chesterday #chesterday #chesterday #chesterday aaah ","target":-1}
{"text":"No way @fluxthings! Harry Potter 3 was such a disappointment ","target":-1}
{"text":"@dctfitz Can I go with you? I don't want to balance my checkbook anymore ","target":-1}
{"text":"Up. Walking. Hungry. All good signs. Looking around @ 2 much 2 do. ","target":-1}
{"text":"@andyroddick dude. you're talking leno and not tennis? i'm counting on you now. pls win RG. thx.","target":-1}
{"text":"siiiiiiiigh ","target":-1}
{"text":"I just stood on one of my CDs ","target":-1}
{"text":"i wanna do something. ","target":-1}
{"text":"had to work in amazing weather..thats what i call shitt ","target":-1}
{"text":"@TaterTot_kitty Oh noes, poor TaterTot You are having a rough time of it lately, aren't you? I send healing purrs and a gentle *nosetap*","target":-1}
{"text":"I want a super malfi right about now ","target":-1}
{"text":"@twintell2 i mean not like physically but emotionally el oh el. oh um yeah everybody in my town is sick with something.","target":-1}
{"text":"@Mrs_McFox me too","target":-1}
{"text":"@sammi_jade o i no its been boiling i've burnt my legs so bad at the bak can hardly walk (sigh) silly me. did u get up 2 anyfnk nicexx","target":-1}
{"text":"Twitter is supposed to be fun ","target":-1}
{"text":"haven't been on this in a long time, just been sick and doing nothing but drinking sprite and od'ing on stomach meds aaaand had to work ","target":-1}
{"text":"not excited about spending the night alone... ","target":-1}
{"text":"@allieloves 'Much better, thank you (:' or something, and no it's not in my favourites ","target":-1}
{"text":"stupid spaghetti overcooked a yogurt shall be my dinner, thank you.","target":-1}
{"text":"@taylorswift13 I have to wait till 10pm to watch Dateline. All b/c I'm on the west coast.","target":-1}
{"text":"benadyrl, corona and sun makes me sleepy. I think Im freckling even more ","target":-1}
{"text":"): so sad i think i emo but don't cut me ","target":-1}
{"text":"@Phylomene Heeey Phylo ^^ I'm fine!! I miss you too booh I'm going to Chicago tomorrow morning, I'm so excited! How are you??","target":-1}
{"text":"@Randomizer10 haaa jokes! Feel so sorry for benjamin tho ","target":-1}
{"text":"Missing my mom as well. ","target":-1}
{"text":"@gingerying mm...no? maj cold though ","target":-1}
{"text":"@willie_day26 I cheated on the FatSmash. Had a few margaritas and a some steak but it was def worth it. Don't tell Dr. Ian lol","target":-1}
{"text":"Up was such a sad movie! I cried 4 times durring it! Oh god, ELLIE!","target":-1}
{"text":"@Karen230683 @Glasgowlassy Right have downloaded the bloody thing...have added you 2...now my f'n mic won't work! Grrrr!! ","target":-1}
{"text":"got 67% of the trophies for infamous, after this next playthrough, i will probs only have 1 or 2 to get...2 shards missing too ","target":-1}
{"text":"Just left taco tree in baker city. On to vomit it in the twisty Oregon highways ...said mj","target":-1}
{"text":"Thinking about the BIALL Legal Foundations course in Sept, but why does it have to clash with my choir night? ","target":-1}
{"text":"got my work experiance interview tommorow... stoopid stoopid stoopid bay. ","target":-1}
{"text":"@Kohreeb hahah we went to every dollar store and we can't find those chairs anywhere!! ","target":-1}
{"text":"@jks4usc ugh...I still need to get you that recipe! I just keep forgetting!! ","target":-1}
{"text":"@handbagpets yes he was ","target":-1}
{"text":"wondering why i havent heard from my friend TP in almost 2 days ","target":-1}
{"text":"Took my pup to an outdoor shopping mall and some woman called her ugly Was torn whether or not to cry or punch her in the face.","target":-1}
{"text":"@qulady We were just looking at a fire-pit thingie today. Couldn't find one we liked though. I hate that we have limited stores here. ","target":-1}
{"text":"i want sleep..but i cant.....its so boring ","target":-1}
{"text":"is up and feels like crap ","target":-1}
{"text":"Am back just had to deal with a dead budgie ","target":-1}
{"text":"A few more hrs with the visitin fam ","target":-1}
{"text":"Boston Logan airport has serious dissappointing shopping ","target":-1}
{"text":"Woo omg I don't know what the deal is with my foot/leg if I stand all the pressure and swelling goes to the foot along with pain! ","target":-1}
{"text":"is papering her life away. so much for a fun birthday weekend. ","target":-1}
{"text":"@lverns aagghh that's no good sorry love","target":-1}
{"text":"@PlanetShaa im about to roll up and figure out my day just woke up had a long night burping ","target":-1}
{"text":"@PenniWise By the way...I took a lot of pictures on Sunday. FTP says 2 hours. I might finish up all of them today, tho.","target":-1}
{"text":"Last survivor of the Titanic dies!! Oh noes ","target":-1}
{"text":"Having an early night, dreading tomorow though. I'm being such a wimp about josh but I really really really don't want him to go ","target":-1}
{"text":"is missing you so much already and is so sad that things couldnt be different ","target":-1}
{"text":"is heading to Seattle to meet up w/ @APHughes... and still missing my other half. ","target":-1}
{"text":"I hate the Sun it fools you into thinking that it is your friend then it buuuuurns!!! it hurts and now i am saaaad! ","target":-1}
{"text":"getting up at 6:45 tomoro is gona kill me. FACT. ","target":-1}
{"text":"missing my little munchkins already ...","target":-1}
{"text":"Finals! ","target":-1}
{"text":"Money shortage again any ideas for a party anyone. ? Need credit and the second twilight book and to pay kim back ARGHH","target":-1}
{"text":"Only worked a half day today... There would be absolutely nothing going on though ","target":-1}
{"text":"@GlasgowGooner Yeah that sucks ","target":-1}
{"text":"@justjimmyjimmy sorry Have fun","target":-1}
{"text":"Seoul airport is brilliantly laid out. I'm embarrassed that Dulles is America's capital airport. Duty free is all closed though ","target":-1}
{"text":"No summer love though ","target":-1}
{"text":"Someone always needs to take away my phone when drinking. last night was so fun yet sucked so much towards the end.","target":-1}
{"text":"i've already been through the don't care, sad, and angryyy phases and now i am back to the sad Blah Blah Blah","target":-1}
{"text":"This is the last time i tweet with this phone. ","target":-1}
{"text":"I did have some fresh strawberries and had great ideas - until I saw the empty strawberry box in the kitchen earlier.... ","target":-1}
{"text":"is missing you so much already and is very sad that things couldnt be different ","target":-1}
{"text":"i wish @hollyhoo122 would come to the lot with meee! ","target":-1}
{"text":"@ybthis I hate biology. I can't remember half the stuff I have been cramming over the last week ","target":-1}
{"text":"i wanna do something. ","target":-1}
{"text":"http://bit.ly/gwp9Q - 55 Whales die after mass beaching in South Africa - heartbreaking ","target":-1}
{"text":"okie peeps im leavin d twitter buildin..see ya kayle, megan, alex! nite nite to u all, n have a nice day tomm!! eeeeks monday back again ","target":-1}
{"text":"@estebanics Idk what is going on but i am sorry it makes me sad hearing you this down when you are always happy","target":-1}
{"text":"sitting in my jammies nursing my sunburn ","target":-1}
{"text":"@smore12 I want cheezits... but I ate all of them It's very saddening","target":-1}
{"text":"WTF's up with the weather? Bad day to wear flipflops in SF. ","target":-1}
{"text":"@vlf4lifejk when is it?? ","target":-1}
{"text":"so exited to see oyu on dateline!!! i wish i could go to one of your shows but my parents cant afford it @taylorswift13","target":-1}
{"text":"can't believe I have a bio exaom tomorrow!! :S :S :S I'm gonna die... ","target":-1}
{"text":"With the family @ grandpa's. Please say a prayer for my grandpa.. He will probably be passing soon ","target":-1}
{"text":"@LockonRyan9 Thanks for the pics! Wish I had made it ","target":-1}
{"text":"@bngr Working m'dear... ","target":-1}
{"text":"the weekend is almost over already. ","target":-1}
{"text":"Can't believe the weekend is over ","target":-1}
{"text":"ready to sign the last yearbooks of my high school career this week! ","target":-1}
{"text":"@hollihigh and I do not recopmmend eating at Pho 79 (State and Glenwood)... Poor service and the food was not delicious ","target":-1}
{"text":"@shadowfish Aww sorry ","target":-1}
{"text":"is bored as heck.. ","target":-1}
{"text":"Going over my budget and paying bills. Ugh. No fun. ","target":-1}
{"text":"comedy central removed from zattoo no more sarah silverman? family guy? Saus park? no more wasting time ","target":-1}
{"text":"@vicky_scarlett i know ","target":-1}
{"text":"I don't wanna study for my oral exam tomorrow, but I have too. I get to identify rocks....","target":-1}
{"text":"Burnt all over my body & in pain Should have but sunscreen on!","target":-1}
{"text":"@JoeTheHint i dont know! i think it's gonna be a while you'll be on the road for a while and the one show in va, i cant go to. sad face","target":-1}
{"text":"I am soooo sun burnt right now!!! ","target":-1}
{"text":"I dream about some dragibus candy xD but don't have at home go eat an apple =/","target":-1}
{"text":"@branhead4lyfe aww... i be trying","target":-1}
{"text":"Fecking cold.. Its pissing me off now ","target":-1}
{"text":"@bunnirific online im storage is full again!! ","target":-1}
{"text":"I want a NeverShoutNever shirt ","target":-1}
{"text":"the last titantic survivor died http://tinyurl.com/mjku2n","target":-1}
{"text":"I missed Pushing Daisies last night. I didn't know it was on You gotta tell me when they play my favorite canceled show!","target":-1}
{"text":"@RAEthoven Dont forget they play in traffic for fun, get preggo on purpose & the LD is nonexistent. f our lives in indianapolis ","target":-1}
{"text":"~sigh~ Now I'm in a bad mood. http://tinyurl.com/nukhbf #igda","target":-1}
{"text":"@solidpython the gb crew is so lucky ","target":-1}
{"text":"watching "The Hills" Marathon on MTV .. Can't wait for the finale, and then the MTV Movie Awards! Too many things to watch Go Detroit!","target":-1}
{"text":"@melissapuvis calling out really makes my life hard ","target":-1}
{"text":"this might be a do da do lifes good moment ","target":-1}
{"text":"@Rawsul went out with no helmet or pads, skated for like 15 minutes & it began to pour. Not fun. ","target":-1}
{"text":"Chillin gettin ready to go home. ","target":-1}
{"text":"Dying from boredom, someone save me ","target":-1}
{"text":"@KitaKattMonroe girl, mine is only worth 123. that shit kinda made me feel worthless lol ","target":-1}
{"text":"@Angela_Webber_ *texts* I hope so. I'm not sure what to say to him when we go to dinner now. I feel so awkward!! ","target":-1}
{"text":"going to get untouchables pizza. my sunburn hurts ","target":-1}
{"text":"just a few days to finish the main-work cant read or hear about #businessrules anymore...","target":-1}
{"text":"Nooooooo! I don't want to go back to Auckland ","target":-1}
{"text":"@elaynamichele woah. bitter much? lol whats the deal girl?","target":-1}
{"text":"going to bed now have school in the morning ","target":-1}
{"text":"yeah getting electricuted [if i spelled that right] was definitely not the highlight of my day ","target":-1}
{"text":"Miss Disneyland SOOOOOOOOOOOO much ","target":-1}
{"text":"@Jared_Yoder5 I'm wearing a gray shirt ","target":-1}
{"text":"erm.....blackberry bold is broken super bad times","target":-1}
{"text":"Something is really wrong with my hand/wrist ","target":-1}
{"text":"@Teri0542 lightening from last week? Good grief that's a bit extreme. ","target":-1}
{"text":"@shoptilldrop alas no but job pays well, not well enough! LOL","target":-1}
{"text":"i miss you ","target":-1}
{"text":"The HIlls finale today...i cnt believe its already over ","target":-1}
{"text":"Back to NY ","target":-1}
{"text":"@schend ((hugs)) what a tough day. ","target":-1}
{"text":"got up early for my ride to miss the 35C/95F heat. It's not hot! I wasted a sleep-in. ","target":-1}
{"text":"goodbye 5628 ","target":-1}
{"text":"Bonnie and Jill forgot their dishes at my house yesterday, first thought "ill just take them to work on Mon" now its real ","target":-1}
{"text":" last survivor of the titanic Milivina Dean died today at age 97..SOOOOOOO sad","target":-1}
{"text":"just at home. exams ","target":-1}
{"text":"@goldeyedvamp I had to tivo them ","target":-1}
{"text":"I want my ears gauged. ","target":-1}
{"text":"This is a sad day. @birdmanesq I just burned cookies. Damnit. They were tube cookies, but I really wanted cookies.","target":-1}
{"text":"@adamsmith I saw a lobster-colored woman at church this morning and thought of you. ","target":-1}
{"text":"No up today ","target":-1}
{"text":"ARGH! back to school 2moro! maths exam! :| what is the point, im gonna fail everything anyways!!!? ...","target":-1}
{"text":"such a long car ride ","target":-1}
{"text":"omg!! House Season 5 finale was brilliant..one of the best ever season finales..feel sad for him,hope he's alright ","target":-1}
{"text":"I'm so tired! Do I really have to go to school? Busybusybusy!","target":-1}
{"text":"@miahsmith55 sorry to hear that. ","target":-1}
{"text":"Excited about tonight! The Hills finale and MTV Movie Awards! Wish I could be there ","target":-1}
{"text":"@luveysun damnit!! I may have to throw in the towel soon ","target":-1}
{"text":"Is boooooooored. Needs something to do. Missing my fix of Ant and Dec and Stephen Mulhern already. ","target":-1}
{"text":"smashed my face into a sliding glass door lol i'm a dumb ass. my nose hurts. & i feel bummed. fuck twitter nobody reads this anyway k bye","target":-1}
{"text":"@buckhollywood Heya! Thanks for the early show, loved it..can you do some earlier ones for us in the UK? You're on at like 3am our time ","target":-1}
{"text":"so happy im done with school and gets to start summer now and talking to my sexy navy boyfriend i miss him so much ","target":-1}
{"text":"Hubs went for pizza , pizza and salad cant wait I am so hungry ","target":-1}
{"text":"@BarbLund i don't remember But i'm not 100% sure","target":-1}
{"text":"Counted 58 dead fish pieces in her lake...right in front of her house...smells amazing ","target":-1}
{"text":"@Vicstar b4 i dreamt i was awake...an bam..another day hits me,wanted to shoot some hoops but its rainy ","target":-1}
{"text":"@andrewho We leave a week from today ","target":-1}
{"text":"@jdaniels2012 strange with this other guy in my room, too. we've said a dozen HAAAAAAAP words to each other. nice room, but no internet ","target":-1}
{"text":"Moving the last of our crap. It is suddenly very crowded in the new place Surprising what you can live without.","target":-1}
{"text":"Cannot sleep and still awake.. And i hear adzan's subuh rt now.. I'm not sure I can go to campus this morning.. But I have to.. ","target":-1}
{"text":" lastfm is down","target":-1}
{"text":"it's boring in here.. entertain me please ","target":-1}
{"text":"smashed into my own maillbox ","target":-1}
{"text":"Maths exam tomorrow maybe i should find a calculator","target":-1}
{"text":"@jobrosluva I LOVE STEVIE WONDER! I WANTED JB TO PERFORM SUPERSTITION WITH JORDIN SPARKS THIS SUMMER! ","target":-1}
{"text":"@musicmakesense have fun in palm springs! savor some delicious water por mi ","target":-1}
{"text":"Is getting ready for school but b4 that its Jazz Band it soo cool but school currantly sucks ","target":-1}
{"text":"UUGGHHH. my dad's not letting me go on the computer. Im SO BORED! ","target":-1}
{"text":"@jerz_r1der that sucks so bad! ","target":-1}
{"text":"X-Men is the best movie I've seen so far this year although I still haven't seen Star Trek. I know lame ","target":-1}
{"text":"@anastaciakayray i got a research job and summer classes in chicago. i wont be back until august. i was home for 2 weeks in may.thats all","target":-1}
{"text":"@annabadtzmaru i FREAKING missed it! i went to lunch with the fam and just got back ","target":-1}
{"text":"Just found out that a friend earns a salary of 1.4K by just plain "typing". Im jealousssss. ","target":-1}
{"text":"*sigh* I hate it when I don't hear from him all day ","target":-1}
{"text":"@KTran289 accidental early pass out. oops hahaha","target":-1}
{"text":"Fuckin' great end to a weekend no gig on Wednesday ","target":-1}
{"text":"is asking Michaeljohns why he is looking at me funny? hmmmmmmm.I don't think he likes his name ","target":-1}
{"text":"@Brad_Isaac Our portal is built on top of Oracle Application Server. (Bad Choice ) We now can see whats wrong. Need a little more work ","target":-1}
{"text":"@grekotv OMG YOU SAW HER!?!?!?? ughh. lucky where were you when she came to SF??","target":-1}
{"text":"@Talia90 my brother chipped it when i was young, i had it capped and you couldnt tell but the cam decided to come off last night ","target":-1}
{"text":"owww burned my finger ","target":-1}
{"text":"just had the strongest cocktail ever and a nice meal at bibis. my birthdays nearly over! ","target":-1}
{"text":"bored again ","target":-1}
{"text":"last day in my house in SF see you SFers in summer school","target":-1}
{"text":"@CalendarGirl09 I have a great imagination, I don't need (nor know how to) read ","target":-1}
{"text":"@hot_on_a_dime If only! I miss all of you ","target":-1}
{"text":"Just pulled up to the remote parking stand at JFK. NEVER a god thing 1+ hour delay at the least.","target":-1}
{"text":"10752-This transaction cannot be processed ","target":-1}
{"text":"@bignat804 ;; lmfao. that's so messed up. i would've shared wit you (well, nah, not really, i just lied). have fun drinkin!","target":-1}
{"text":"@rah_rah http://twitpic.com/6bqrx - i was almost sick, had an excruciating headache and then went to another party. Doubtless @Billy_ ...","target":-1}
{"text":"I have a sore throat!! ","target":-1}
{"text":"@ordinary__ no unless it's a free preview weekend or something. My mother loves it but she won't buy it! CRAZY!","target":-1}
{"text":"Last Titanic Survivor dies at 97 years old http://bit.ly/JCB9t","target":-1}
{"text":"this room that we got for changing, etc is NICE. wish we were staying here instead of that POS homestead suites on glenoaks in glendale ","target":-1}
{"text":"omg the last living surviver of the titanic died today RIP","target":-1}
{"text":"@Applecored what I do now? poor me *sympathy* *big eyes*","target":-1}
{"text":"@taylorswift13 I love you very very very much Tay, YOU'RE THE BEST, COME SOMEDAY TO ARGENTINA KISSES .","target":-1}
{"text":"last night it's been greatttttt.","target":-1}
{"text":"today's been a really pissy day ","target":-1}
{"text":"@elenaaaaaaa not JONAS though ","target":-1}
{"text":"Bollywood Complete, last production at Ravensbourne it's been good","target":-1}
{"text":"@bfried sorry complain to alex","target":-1}
{"text":"is on youtube and wanting to go to the beach ","target":-1}
{"text":"is so sun burnt ","target":-1}
{"text":"Yum there smokies are delicious ! Gots to work out tonight but got this awesome highlighting stuff for my hair ! Woot !","target":-1}
{"text":"So tired i feel i'm going to pass out... But no one will give me relief to sleep ","target":-1}
{"text":"@lisaloeb4real I want some banana bread...","target":-1}
{"text":"@brianbozzo yeah, made me REAL happy. before that allmy fantasy drivers were running 20 or better.","target":-1}
{"text":"im sitting on the couch in a tank top and mini skisrt wishing my man was here! ","target":-1}
{"text":"Kinda wanting the old Lonely Island back. . . . ","target":-1}
{"text":"Up was great but the theater did not show the short Partly Cloudy before it maybe because it was a matinee??","target":-1}
{"text":"@KristyAFlores Whats Up With You? I'm Doing Horrible Family Problems ","target":-1}
{"text":"@leighialove we can share can't we? ","target":-1}
{"text":"awaiting the MTV awards .. sadly not in LA!! .. wow that really sucks eh .. it's so cold here ","target":-1}
{"text":"Walmart took all my monies ","target":-1}
{"text":"@ypadam no, the little town of new bern don't have none of them fancy theaters yet. ","target":-1}
{"text":"@RuthieRAWR *wishes you luck* Same to me ","target":-1}
{"text":"Dog Mountain: 3/4 win, 1/4 fail. Great views, perfect flowers, tough hike, mom broke wrist in a fall. ","target":-1}
{"text":"Blogspot bloggers should really be screaming murder http://bit.ly/13AoOr would fall on deaf ears ","target":-1}
{"text":"@bngr Working m'dear... ","target":-1}
{"text":"@TeaJai so far YES!!! I have to be there...I am trying to get my vacation in now...we have a busy season starting in August ","target":-1}
{"text":"Back to work tomorrow where has the weekend gone ","target":-1}
{"text":"bad day ","target":-1}
{"text":"right that's me away for another bita maths revision I can not wait to see 10th June (L) 10 dayss!!!","target":-1}
{"text":"@LadyPinkBird corsets and suspenders made of liquorice and strawberrys, I dont even like liquorice ","target":-1}
{"text":"@TexasFella68 aww, that's just mean LOL","target":-1}
{"text":"omg the last remaining titanic surviver died yesterday ","target":-1}
{"text":"I'm in the bed not feeling so well ","target":-1}
{"text":"@kogas Idk ATM. Completely. ","target":-1}
{"text":"omgosh, finally finished work. Now I have to study. ","target":-1}
{"text":"@jmom808 what looked like kapolei? The 35 mph zone thing? That was nimitz. Sorry, not sure what u're talking abt! ","target":-1}
{"text":"damn! my sholders are pealing ","target":-1}
{"text":"Omgggg skl is almost OVER !!! :O this year was CRAP ","target":-1}
{"text":"@davekennedy ok. heh I did enter the hgtv dream home giveaway in sonoma county - didnt score ","target":-1}
{"text":"@taylorswift13 Why does it have to be on when I head to work! I work 6-10. So evil Taylor! I will have to youtube it tomorrow. ","target":-1}
{"text":"Is watching Uga play Washington in the world series. tied 8-8 in extra innings ","target":-1}
{"text":"I hope that Twilight will win tonight (YNNNNNNNN) ⥠In France it will be 3 am... ","target":-1}
{"text":"@titaniumfish thought I was starting at 6.30, actually meant to be 7. ","target":-1}
{"text":"wishing i would have gotten on here earlier to see that stuart holden was literally 45 minutes away from me meeting him ","target":-1}
{"text":"It's really sad that John & Kate have chosen to exploit their children and now, Nadya Suleman is thinking of doing the same thing. ","target":-1}
{"text":"sooo happy to have a few days off...finally i will have a day without a CODE BLUE ","target":-1}
{"text":"@SpeaksBeliefs ok, get outta my head. going through that one right now. ","target":-1}
{"text":"freakn pissed ","target":-1}
{"text":"@urbanpinkpixie Ik, but I was hoping she'd say its just a rumer ","target":-1}
{"text":"Exam week Cant wait till its all over!","target":-1}
{"text":"@gaurish actually my only mistake was not to get hot swappable drive ","target":-1}
{"text":"off to bed, feel kinda ill again Then WILL DO revision tomorrow. Wont be fun... but I gotta do it ","target":-1}
{"text":"23C at school tomorrow starting with french is not going to be fun ","target":-1}
{"text":"Is it possible to be too tired to sleep? ","target":-1}
{"text":"Hurt my hand trying to open that bottle ","target":-1}
{"text":"@jessudd sorry!!! How many people do you expect to come Saturday?","target":-1}
{"text":"pooring out... ","target":-1}
{"text":"@franca_luccia i miss you ","target":-1}
{"text":"Hohum pigsbum. This is supposed to be my day off but it turns out I have to work after all ","target":-1}
{"text":"Oh god Maths, I have now decided I actually need It, Oh god ","target":-1}
{"text":"I know I've seen this Ace of Cakes a ton, but it still makes me cringe when Duff cuts his hand. haha.","target":-1}
{"text":"is at home alone ","target":-1}
{"text":"is sooo tired today ","target":-1}
{"text":"Is leaving a pool party early because of a certain party pooper. ","target":-1}
{"text":"Im thinkin that swimming would be the best idea at the moment considering im dying of heat and my AC is broken ","target":-1}
{"text":"Trying to figure out how to get Facebook status to appear on my Twitter updates. ","target":-1}
{"text":"Now I realise that DSTV had turned me into a mindless couch potato...I miss those days ","target":-1}
{"text":"The end of the school year is WAAYYY too stressful. I've been working on two projects the whole day and still have A LOT more to do ","target":-1}
{"text":"i am waiting ","target":-1}
{"text":"Got moved in, with the help of @auktbug , but I caught the bug going around my family. Now I'm too sick to unpack! ","target":-1}
{"text":"I kinda wish I could go to an A's game now. ","target":-1}
{"text":"New Brio toys in, last of the last ","target":-1}
{"text":"@_Lauren_Mallory *text* Focus on staying friends is my advice. From what I gather theres... stuff going on, he feels bad about yesterday ","target":-1}
{"text":"@dennisgable being sad sucks cheer up little buddy. <3","target":-1}