-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathtweets.json
More file actions
1749 lines (1749 loc) · 59.3 KB
/
tweets.json
File metadata and controls
1749 lines (1749 loc) · 59.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
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
[{
"resolution_topics": "Eat healthier",
"gender": "female",
"name": "Dena_Marina",
"resolution_category": "Health & Fitness",
"retweet_count": 0,
"text": "#NewYearsResolution :: Read more books, No scrolling FB/checking email b4 breakfast, stay dedicated to PT/yoga to squash my achin' back!",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:48:00",
"tweet_date": "2014-12-31",
"tweet_id": 550363000000000000,
"tweet_location": "Southern California",
"tweet_state": "CA",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "West"
},
{
"resolution_topics": "Humor about Personal Growth and Interests Resolutions",
"gender": "female",
"name": "ninjagirl325",
"resolution_category": "Humor",
"retweet_count": 1,
"text": "#NewYearsResolution Finally master @ZJ10 's part of Kitchen Sink",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:47:00",
"tweet_date": "2014-12-31",
"tweet_id": 550363000000000000,
"tweet_location": "New Jersey",
"tweet_state": "NJ",
"user_timezone": "Central Time (US & Canada)",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Be More Confident",
"gender": "male",
"name": "RickyDelReyy",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "#NewYearsResolution to stop being so damn perf _���_���",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:46:00",
"tweet_date": "2014-12-31",
"tweet_id": 550362000000000000,
"tweet_location": "Hollywood",
"tweet_state": "CA",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "West"
},
{
"resolution_topics": "Other",
"gender": "male",
"name": "CalmareNJ",
"resolution_category": "Philanthropic",
"retweet_count": 0,
"text": "My #NewYearsResolution is to help my disabled patients discover the emotional and physical therapy from loving a pet. #adoptarescue",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:45:00",
"tweet_date": "2014-12-31",
"tweet_id": 550362000000000000,
"tweet_location": "Metro NYC",
"tweet_state": "NY",
"user_timezone": "",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Be more positive",
"gender": "female",
"name": "welovatoyoudemi",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "#NewYearsResolution #2015Goals #2015bucketlist continued��_��� http://t.co/h4P9B7tWjG",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:44:00",
"tweet_date": "2014-12-31",
"tweet_id": 550362000000000000,
"tweet_location": "Pittsburgh, Pennsylvania",
"tweet_state": "PA",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Eat healthier",
"gender": "male",
"name": "EthanJMoroles",
"resolution_category": "Health & Fitness",
"retweet_count": 0,
"text": "#NewYearsResolution 1. Eat less.\n2.quit lying.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:43:00",
"tweet_date": "2014-12-31",
"tweet_id": 550362000000000000,
"tweet_location": "Odessa Texas.",
"tweet_state": "TX",
"user_timezone": "",
"tweet_region": "South"
},
{
"resolution_topics": "Take a cross country trip",
"gender": "male",
"name": "jon__bay",
"resolution_category": "Recreation & Leisure",
"retweet_count": 0,
"text": "My #NewYearsResolution \n\n-Learn how to drive.\n-Apologize less.\n-Read and write more.\n-Get a 4.0 this upcoming quarter\n-Drop my mixtape",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:42:00",
"tweet_date": "2014-12-31",
"tweet_id": 550361000000000000,
"tweet_location": "Santa Cruz, CA",
"tweet_state": "CA",
"user_timezone": "Tijuana",
"tweet_region": "West"
},
{
"resolution_topics": "Humor about New Years",
"gender": "male",
"name": "freckleface_kev",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "���@Becca3129 #NewYearsResolution #ForReal #TheStruggle http://t.co/y1kABoWMbV�damn..this is so true.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:41:00",
"tweet_date": "2014-12-31",
"tweet_id": 550361000000000000,
"tweet_location": "North Carolina",
"tweet_state": "NC",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Volunteer more",
"gender": "male",
"name": "yourethe1zforme",
"resolution_category": "Philanthropic",
"retweet_count": 0,
"text": "Save a pit bulls life #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:41:00",
"tweet_date": "2014-12-31",
"tweet_id": 550361000000000000,
"tweet_location": "North Carolina",
"tweet_state": "NC",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Humor about Career Resolutions",
"gender": "male",
"name": "Dandridge9",
"resolution_category": "Humor",
"retweet_count": 3,
"text": "RT @_Dear_Leader_: #NewYearsResolution - I will get a decent haircut.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:40:00",
"tweet_date": "2014-12-31",
"tweet_id": 550361000000000000,
"tweet_location": "Portland, Oregon USA",
"tweet_state": "OR",
"user_timezone": "Arizona",
"tweet_region": "West"
},
{
"resolution_topics": "Be more positive",
"gender": "male",
"name": "Reesesking1",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "lost a lot this year...no more tears for the next. #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:39:00",
"tweet_date": "2014-12-31",
"tweet_id": 550361000000000000,
"tweet_location": "San Antonio, Texas",
"tweet_state": "TX",
"user_timezone": "",
"tweet_region": "South"
},
{
"resolution_topics": "Humor about not Resolutions in general",
"gender": "male",
"name": "welcometoboz",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "#ToDoList ���@blogbooktours: This is you all over the place, #actors #acting #NewYearsResolution #success @theiflist http://t.co/CIaz7FB0fq�",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:39:00",
"tweet_date": "2014-12-31",
"tweet_id": 550361000000000000,
"tweet_location": "Los Angeles, CA",
"tweet_state": "CA",
"user_timezone": "Mountain Time (US & Canada)",
"tweet_region": "West"
},
{
"resolution_topics": "Eat healthier",
"gender": "female",
"name": "scandalwomen",
"resolution_category": "Health & Fitness",
"retweet_count": 1,
"text": "RT @colonsuzan: Easy #NewYearsResolution: Stand up for your health with the @takeayogabreak app! http://t.co/WwL9JDvAhZ http://t.co/vpcfSqm��_",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:38:00",
"tweet_date": "2014-12-31",
"tweet_id": 550360000000000000,
"tweet_location": "New York",
"tweet_state": "NY",
"user_timezone": "Quito",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Be more positive",
"gender": "female",
"name": "vtorres0811",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "@Inc @MarlaTabaka YES - let's all take calculated risks and reduce self criticism as part of our #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:37:00",
"tweet_date": "2014-12-31",
"tweet_id": 550360000000000000,
"tweet_location": "New York, NY",
"tweet_state": "NY",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Lose weight",
"gender": "female",
"name": "SydneyySayys",
"resolution_category": "Health & Fitness",
"retweet_count": 0,
"text": "I always torture myself by looking at old pictures where I was 30 lbs thinner. #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:37:00",
"tweet_date": "2014-12-31",
"tweet_id": 550360000000000000,
"tweet_location": "Menasha, WI",
"tweet_state": "WI",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "Midwest"
},
{
"resolution_topics": "Try new things",
"gender": "male",
"name": "DGP_Omen",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "treat people the way they treat me! _�������#NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:37:00",
"tweet_date": "2014-12-31",
"tweet_id": 550360000000000000,
"tweet_location": "Muck City, Florida",
"tweet_state": "FL",
"user_timezone": "Mountain Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Be more positive",
"gender": "female",
"name": "AshleeSoAfrican",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "#NewYearsResolution Stop worrying about irrelevant things",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:37:00",
"tweet_date": "2014-12-31",
"tweet_id": 550360000000000000,
"tweet_location": "Houston, Tx",
"tweet_state": "TX",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Other",
"gender": "female",
"name": "yates_amber",
"resolution_category": "Recreation & Leisure",
"retweet_count": 0,
"text": "#NewYearsResolution to start a hobby, do it once, and never do it again.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:35:00",
"tweet_date": "2014-12-31",
"tweet_id": 550360000000000000,
"tweet_location": "louisville, ky",
"tweet_state": "KY",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Humor about not Keeping Resolutions",
"gender": "male",
"name": "Steven_Baucom",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "#NewYearsResolution Watch Die Hard twice a day, instead of just once.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:35:00",
"tweet_date": "2014-12-31",
"tweet_id": 550359000000000000,
"tweet_location": "Clarksville, TN",
"tweet_state": "TN",
"user_timezone": "Central Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Quit smoking",
"gender": "male",
"name": "chadzizelman",
"resolution_category": "Health & Fitness",
"retweet_count": 0,
"text": "Time to give up tobacco! #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:34:00",
"tweet_date": "2014-12-31",
"tweet_id": 550359000000000000,
"tweet_location": "Cincinnati, OH",
"tweet_state": "OH",
"user_timezone": "",
"tweet_region": "Midwest"
},
{
"resolution_topics": "Focus on my self",
"gender": "male",
"name": "superqguru",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "Theme 2015 is about trusting justice, peace and love. Bonding with everything from all directions, all forces. #karma #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:34:00",
"tweet_date": "2014-12-31",
"tweet_id": 550359000000000000,
"tweet_location": "Rock Creek Oregon",
"tweet_state": "OR",
"user_timezone": "",
"tweet_region": "West"
},
{
"resolution_topics": "Focus on Religion and Faith",
"gender": "female",
"name": "JustMeShauntell",
"resolution_category": "Personal Growth",
"retweet_count": 1,
"text": "RT @kymeshawhite: #NewYearsResolution To grow in christ and increase spiritually next year.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:33:00",
"tweet_date": "2014-12-31",
"tweet_id": 550359000000000000,
"tweet_location": "Atlanta,GA",
"tweet_state": "GA",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Humor about Personal Growth and Interests Resolutions",
"gender": "male",
"name": "tyson_c",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "I was going to resolve to procrastinate less, but honestly what's the rush? #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:32:00",
"tweet_date": "2014-12-31",
"tweet_id": 550359000000000000,
"tweet_location": "Chico, CA",
"tweet_state": "CA",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "West"
},
{
"resolution_topics": "Be more positive",
"gender": "male",
"name": "metalheadjs",
"resolution_category": "Personal Growth",
"retweet_count": 4,
"text": "RT @JessicaDrown: My #NewYearsResolution is to grow and continue to make you guys smile. ������_�ե",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:32:00",
"tweet_date": "2014-12-31",
"tweet_id": 550359000000000000,
"tweet_location": "San Antonio Tx",
"tweet_state": "TX",
"user_timezone": "",
"tweet_region": "South"
},
{
"resolution_topics": "Humor about New Years",
"gender": "male",
"name": "BlueFirecracker",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "#NewYearsResolution - I will cut a bitch in the face if I ever hear The Spin Doctor's \"Two Princes\" again!",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:31:00",
"tweet_date": "2014-12-31",
"tweet_id": 550359000000000000,
"tweet_location": "Los Angeles, CA",
"tweet_state": "CA",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "West"
},
{
"resolution_topics": "Humor about New Years",
"gender": "male",
"name": "Steven_Baucom",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "#NewYearsResolution Go to more shows where \"you will get wet\" is warned before hand.",
"tweet_coord": [
36.5918981,
-87.3069279
],
"tweet_created": "2014-12-31T10:30:00",
"tweet_date": "2014-12-31",
"tweet_id": 550358000000000000,
"tweet_location": "Clarksville, TN",
"tweet_state": "TN",
"user_timezone": "Central Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Other",
"gender": "male",
"name": "DITUPAC3361",
"resolution_category": "Recreation & Leisure",
"retweet_count": 0,
"text": "#NewYearsResolution Stop watching morning national news",
"tweet_coord": [
0,
0
],
"tweet_created": "2014-12-31T10:29:00",
"tweet_date": "2014-12-31",
"tweet_id": 550358000000000000,
"tweet_location": "Long Beach",
"tweet_state": "CA",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "West"
},
{
"resolution_topics": "Find a Girlfriend",
"gender": "male",
"name": "billrepko",
"resolution_category": "Family/Friends/Relationships",
"retweet_count": 0,
"text": "Also, date women my own age. Not to say it's their fault, only a seasoned woman can put up with my idiocy. #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:28:00",
"tweet_date": "2014-12-31",
"tweet_id": 550358000000000000,
"tweet_location": "Kutztown",
"tweet_state": "PA",
"user_timezone": "",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Curse less",
"gender": "female",
"name": "TaraBethIdaho",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "#NewYearsResolution 2:\nAvoid Game of Thrones spoilers.\nWhich will be really hard cause I'm on book 2 and seriously spoilers are EVERYWHERE",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:28:00",
"tweet_date": "2014-12-31",
"tweet_id": 550358000000000000,
"tweet_location": "Moscow, Idaho",
"tweet_state": "ID",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "West"
},
{
"resolution_topics": "Humor about Family/Friends/Relationships Resolutions",
"gender": "female",
"name": "AshleeSoAfrican",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "#NewYearsResolution Stop being so nice to people",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:28:00",
"tweet_date": "2014-12-31",
"tweet_id": 550358000000000000,
"tweet_location": "Houston, Tx",
"tweet_state": "TX",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Be more positive",
"gender": "female",
"name": "ra_miller19",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "#NewYearsResolution be happy",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:27:00",
"tweet_date": "2014-12-31",
"tweet_id": 550358000000000000,
"tweet_location": "Pennsylvania/ Massachusetts",
"tweet_state": "MA",
"user_timezone": "",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Other",
"gender": "female",
"name": "AshleeSoAfrican",
"resolution_category": "Career",
"retweet_count": 0,
"text": "#NewYearsResolution Transfer to another College",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:27:00",
"tweet_date": "2014-12-31",
"tweet_id": 550358000000000000,
"tweet_location": "Houston, Tx",
"tweet_state": "TX",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Spend more time on my hobby",
"gender": "male",
"name": "Tommy4cars",
"resolution_category": "Recreation & Leisure",
"retweet_count": 0,
"text": "#Newyearsresolution get a #classic #americanmusclecar #pontiacfirebird #400v8 numbers matching 1969��_ http://t.co/tI4ELI7xrT",
"tweet_coord": [
40.08261806,
-75.6313613
],
"tweet_created": "2014-12-31T10:27:00",
"tweet_date": "2014-12-31",
"tweet_id": 550358000000000000,
"tweet_location": "Chester Springs,PA",
"tweet_state": "PA",
"user_timezone": "",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Other",
"gender": "male",
"name": "GavinoBernal",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "In 2015 I hope my years & my New Years resolution. Make it the best memorable moment to be amazing #NewYearsResolution #NewYear",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:27:00",
"tweet_date": "2014-12-31",
"tweet_id": 550358000000000000,
"tweet_location": "North Las Vegas, Nevada",
"tweet_state": "NV",
"user_timezone": "Hawaii",
"tweet_region": "West"
},
{
"resolution_topics": "Be more positive",
"gender": "male",
"name": "YungBerna",
"resolution_category": "Personal Growth",
"retweet_count": 13,
"text": "My #NewYearsResolution Is To Stay Positive_���_���_���",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:26:00",
"tweet_date": "2014-12-31",
"tweet_id": 550357000000000000,
"tweet_location": "Chicago",
"tweet_state": "IL",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Midwest"
},
{
"resolution_topics": "Quit smoking",
"gender": "male",
"name": "901patt",
"resolution_category": "Health & Fitness",
"retweet_count": 1,
"text": "RT @RuStretch: #NewYearsResolution stop smoking _٪ɉ�_���",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:26:00",
"tweet_date": "2014-12-31",
"tweet_id": 550357000000000000,
"tweet_location": "19|Tennessee State University",
"tweet_state": "TN",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Humor about New Years",
"gender": "male",
"name": "Steven_Baucom",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "#NewYearsResolution Get more stuff off craigslist.",
"tweet_coord": [
36.5918908,
-87.3069079
],
"tweet_created": "2014-12-31T10:26:00",
"tweet_date": "2014-12-31",
"tweet_id": 550357000000000000,
"tweet_location": "Clarksville, TN",
"tweet_state": "TN",
"user_timezone": "Central Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Go to the gym more",
"gender": "male",
"name": "HolUpMan",
"resolution_category": "Health & Fitness",
"retweet_count": 1,
"text": "RT @Tquadah: Some of yall waiting for a new year for change when I been working on change. #NewYearsEve #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:26:00",
"tweet_date": "2014-12-31",
"tweet_id": 550357000000000000,
"tweet_location": "SNB��� Lamar University",
"tweet_state": "TX",
"user_timezone": "Central Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Quit smoking",
"gender": "male",
"name": "jaaron_a",
"resolution_category": "Health & Fitness",
"retweet_count": 0,
"text": "#NewYearsResolution stop drinking smoking all that. So I'm getting fucked up before 12o'clock hit",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:25:00",
"tweet_date": "2014-12-31",
"tweet_id": 550357000000000000,
"tweet_location": "fremont",
"tweet_state": "CA",
"user_timezone": "",
"tweet_region": "West"
},
{
"resolution_topics": "Humor about New Years",
"gender": "female",
"name": "LoriLSchafer",
"resolution_category": "Humor",
"retweet_count": 4,
"text": "RT @Ruebi_LHB: #wwwblogs: My #NewYearsResolution is to stop being such a miserable shit....Pffft, yeah right! http://t.co/9wBEVjTtGs ...#hu��_",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:25:00",
"tweet_date": "2014-12-31",
"tweet_id": 550357000000000000,
"tweet_location": "Northern California, USA",
"tweet_state": "CA",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "West"
},
{
"resolution_topics": "Be more positive",
"gender": "female",
"name": "LadyLiberally",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "I want 2015 2 lack entropy, become pregnant w/empathy, & put me on the super highway 2 fulfillment! #NewYearsResolution #StopTalkinStartDoin",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:24:00",
"tweet_date": "2014-12-31",
"tweet_id": 550357000000000000,
"tweet_location": "Marquette, Mi",
"tweet_state": "MI",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Midwest"
},
{
"resolution_topics": "Other",
"gender": "male",
"name": "typaluska",
"resolution_category": "Health & Fitness",
"retweet_count": 0,
"text": "My #NewYearsResolution is twofold: eat more #chipotle and be at Wrigley when the @Cubs win the #worldseries this year!",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:24:00",
"tweet_date": "2014-12-31",
"tweet_id": 550357000000000000,
"tweet_location": "Peoria, IL",
"tweet_state": "IL",
"user_timezone": "Central Time (US & Canada)",
"tweet_region": "Midwest"
},
{
"resolution_topics": "Make new friends",
"gender": "female",
"name": "Ashesfall_",
"resolution_category": "Family/Friends/Relationships",
"retweet_count": 0,
"text": "Happy #NewYearsEve . what's your guys #NewYearsResolution ? Mine is to prove you can do good #cosplay #cheep and start getting more \"social",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:23:00",
"tweet_date": "2014-12-31",
"tweet_id": 550357000000000000,
"tweet_location": "Spokane Washington. USA",
"tweet_state": "WA",
"user_timezone": "Pacific Time (US & Canada)",
"tweet_region": "West"
},
{
"resolution_topics": "Go to the gym more",
"gender": "male",
"name": "apechacek88",
"resolution_category": "Health & Fitness",
"retweet_count": 0,
"text": "#NewYearsResolution is to go to the gym regularly but I'm gonna wait a week or two for the other billion or so with the same one to give up.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:21:00",
"tweet_date": "2014-12-31",
"tweet_id": 550356000000000000,
"tweet_location": "Massachusetts",
"tweet_state": "MA",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Get my life together",
"gender": "male",
"name": "gamemonkeyvt",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "This is how I�۪m living a connected life in 2015. #NewYearsResolution http://t.co/WnUFDBB7gy #ATTCrowd #ad",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:21:00",
"tweet_date": "2014-12-31",
"tweet_id": 550356000000000000,
"tweet_location": "Barton, VT",
"tweet_state": "VT",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Other",
"gender": "male",
"name": "sbleggi",
"resolution_category": "Career",
"retweet_count": 0,
"text": "MMT @neilwatkins05 @elledodd: \"I'm setting myself 10, or at most 12, goals for 2015.\" Yes but with 159 #indicators! #NewYearsResolution #SDG",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:21:00",
"tweet_date": "2014-12-31",
"tweet_id": 550356000000000000,
"tweet_location": "MoCo, MD & SW DC",
"tweet_state": "MD",
"user_timezone": "",
"tweet_region": "South"
},
{
"resolution_topics": "Be more positive",
"gender": "female",
"name": "abstractwriter",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "This will be MY year. #NewYearsResolution #2015 http://t.co/2w3YK3cty5",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:20:00",
"tweet_date": "2014-12-31",
"tweet_id": 550356000000000000,
"tweet_location": "Chicago",
"tweet_state": "IL",
"user_timezone": "Central Time (US & Canada)",
"tweet_region": "Midwest"
},
{
"resolution_topics": "Spend less time on Facebook",
"gender": "male",
"name": "m_cash2",
"resolution_category": "Personal Growth",
"retweet_count": 0,
"text": "#NewYearsResolution get closer to the man above _٪�_٪�",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:20:00",
"tweet_date": "2014-12-31",
"tweet_id": 550356000000000000,
"tweet_location": "houston, tx",
"tweet_state": "TX",
"user_timezone": "",
"tweet_region": "South"
},
{
"resolution_topics": "Other",
"gender": "female",
"name": "emily_mariem33",
"resolution_category": "Finance",
"retweet_count": 1,
"text": "RT @Queen_of_prep: I'm gonna get rich and be a bitch #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:19:00",
"tweet_date": "2014-12-31",
"tweet_id": 550356000000000000,
"tweet_location": "ky",
"tweet_state": "KY",
"user_timezone": "Mountain Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Drink Less Caffine",
"gender": "female",
"name": "BitchyPhotogrl",
"resolution_category": "Health & Fitness",
"retweet_count": 0,
"text": "#NewYearsResolution no.more.drunk.texting.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:19:00",
"tweet_date": "2014-12-31",
"tweet_id": 550356000000000000,
"tweet_location": "Ohio, unfortunately.",
"tweet_state": "OH",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Midwest"
},
{
"resolution_topics": "Volunteer more",
"gender": "male",
"name": "StopHaydenIsBad",
"resolution_category": "Philanthropic",
"retweet_count": 0,
"text": "change people's lives with Necco Wafers #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:18:00",
"tweet_date": "2014-12-31",
"tweet_id": 550355000000000000,
"tweet_location": "Rochester",
"tweet_state": "NY",
"user_timezone": "",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Humor about Personal Growth and Interests Resolutions",
"gender": "male",
"name": "PittsburghM1ke",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "#NewYearsResolution To stop writing \"For sexual favors\" in the memo line of all my checks.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:17:00",
"tweet_date": "2014-12-31",
"tweet_id": 550355000000000000,
"tweet_location": "Cumberland, MD",
"tweet_state": "MD",
"user_timezone": "Atlantic Time (Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Drink Less Caffine",
"gender": "female",
"name": "kelliekennedyy",
"resolution_category": "Health & Fitness",
"retweet_count": 0,
"text": "Gonna do this in 2015! #newyearsresolution http://t.co/t62lTpkKyL",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:16:00",
"tweet_date": "2014-12-31",
"tweet_id": 550355000000000000,
"tweet_location": "North Carolina",
"tweet_state": "NC",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Humor about Recreation and Leisure Resolutions",
"gender": "male",
"name": "paulywog",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "Eat French fries for breakfast every day in 2015 #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:16:00",
"tweet_date": "2014-12-31",
"tweet_id": 550355000000000000,
"tweet_location": "New York, NY",
"tweet_state": "NY",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Humor about Family/Friends/Relationships Resolutions",
"gender": "female",
"name": "SimplyRechanale",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "@ochocinco I will tweet you everyday until you notice me!!!!! #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:16:00",
"tweet_date": "2014-12-31",
"tweet_id": 550355000000000000,
"tweet_location": "Texas",
"tweet_state": "TX",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "South"
},
{
"resolution_topics": "Find a Girlfriend",
"gender": "female",
"name": "DebbieRFischer",
"resolution_category": "Family/Friends/Relationships",
"retweet_count": 0,
"text": "My #NewYearsResolution is to call people back within 24 hours and make more effort with friends. Have to stop falling off the grid.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:15:00",
"tweet_date": "2014-12-31",
"tweet_id": 550355000000000000,
"tweet_location": "Florida b/c I love weirdos.",
"tweet_state": "FL",
"user_timezone": "",
"tweet_region": "South"
},
{
"resolution_topics": "Spend more time on my hobby",
"gender": "male",
"name": "udp514",
"resolution_category": "Recreation & Leisure",
"retweet_count": 0,
"text": "#NewYearsResolution: Keep a blog of all the amazing #tacos I have.",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:14:00",
"tweet_date": "2014-12-31",
"tweet_id": 550354000000000000,
"tweet_location": "Philadelphia, PA",
"tweet_state": "PA",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Make more time for friends",
"gender": "male",
"name": "swaggy_senator",
"resolution_category": "Family/Friends/Relationships",
"retweet_count": 0,
"text": "I hope to meet more of my internet friends in 2015 #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:14:00",
"tweet_date": "2014-12-31",
"tweet_id": 550354000000000000,
"tweet_location": "Jefferson City, MO",
"tweet_state": "MO",
"user_timezone": "",
"tweet_region": "Midwest"
},
{
"resolution_topics": "Take a trip",
"gender": "female",
"name": "SaltySith",
"resolution_category": "Recreation & Leisure",
"retweet_count": 0,
"text": "Drink beer besides Yuengling #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:13:00",
"tweet_date": "2014-12-31",
"tweet_id": 550354000000000000,
"tweet_location": "Pittsburgh, PA",
"tweet_state": "PA",
"user_timezone": "Central Time (US & Canada)",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Humor about New Years",
"gender": "male",
"name": "paulywog",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "Bang a stripper #NewYearsResolution",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:13:00",
"tweet_date": "2014-12-31",
"tweet_id": 550354000000000000,
"tweet_location": "New York, NY",
"tweet_state": "NY",
"user_timezone": "Eastern Time (US & Canada)",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Get dream job",
"gender": "female",
"name": "LivnDeadGrl87",
"resolution_category": "Career",
"retweet_count": 0,
"text": "#NewYearsResolution is to start #writing again. I need to get my ass back into gear! #thestruggle",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:13:00",
"tweet_date": "2014-12-31",
"tweet_id": 550354000000000000,
"tweet_location": "Boston",
"tweet_state": "MA",
"user_timezone": "Alaska",
"tweet_region": "Northeast"
},
{
"resolution_topics": "Other",
"gender": "male",
"name": "ssl01191",
"resolution_category": "Humor",
"retweet_count": 0,
"text": "Lets leave the words bae, bruh, thot, and fleek in 2014. #NewYearsResolution #stupidwordsof2014",
"tweet_coord": "",
"tweet_created": "2014-12-31T10:13:00",
"tweet_date": "2014-12-31",
"tweet_id": 550354000000000000,
"tweet_location": "Wichita Falls, TX",