-
Notifications
You must be signed in to change notification settings - Fork 0
/
50_tweets.json
1352 lines (1352 loc) · 39.6 KB
/
50_tweets.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"created_at": "Thu Apr 06 15:24:15 +0000 2017",
"id_str": "1850006245121695744",
"text": "Train people well enough so they can leave, treat them well enough so they don't want to. —@richardbranson",
"user": {
"id": 224499494501,
"name": "user 01",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:16 +0000 2017",
"id_str": "8150006245121695744",
"text": "On Friday evening we welcomed our new MRes and PhD Students on a walking tour of the City. Some of them are International Students and enjoyed seeing the sights of Sydney! #cityofsydney #macquarieuniexperience @Macquarie_Uni @mqintl @MQSciEng",
"user": {
"id": 224499494502,
"name": "user 02",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:17 +0000 2017",
"id_str": "8510006245121695744",
"text": "Excited to publish the BPM Newsletter 1-2018, my first one! Download at https://tinyurl.com/y7ync633 @BPMConf #BPM2018",
"user": {
"id": 224499494503,
"name": "user 03",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:18 +0000 2017",
"id_str": "8501006245121695744",
"text": "Our social networks amplify negative more than the positive. Great article https://washingtonmonthly.com/magazine/january-february-march-2018/how-to-fix-facebook-before-it-fixes-us/ … cc @webfoundation",
"user": {
"id": 224499494504,
"name": "user 04",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:19 +0000 2017",
"id_str": "8500106245121695744",
"text": "Welcome to the official Department of Computing @computing_mq Twitter Account.",
"user": {
"id": 224499494505,
"name": "user 05",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:20 +0000 2017",
"id_str": "8500016245121695744",
"text": "Watch this incredible @TEDTalks with IBM scientist @BmiBruno titled 'How our brains will keep up with #AI' - and stay tuned for the fun ending - Hint: look at his shoes - #TEDatIBM",
"user": {
"id": 224499494506,
"name": "user 06",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:21 +0000 2017",
"id_str": "8500061245121695744",
"text": "A man with Down Syndrome, with help from his Dad, is using his million-dollar company to show the world what people with learning disabilities are capable of. Amazing.",
"user": {
"id": 224499494507,
"name": "user 07",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:22 +0000 2017",
"id_str": "8500062145121695744",
"text": "Be a good person, but don't waste your time trying to prove it",
"user": {
"id": 224499494508,
"name": "user 08",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:23 +0000 2017",
"id_str": "8500062415121695744",
"text": "Have you started writing your #BPM2018 paper? Only one month left till the abstract submission: http://bpm2018.web.cse.unsw.edu.au/Call_for_Papers.html ",
"user": {
"id": 224499494509,
"name": "user 09",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:24 +0000 2017",
"id_str": "8500062451121695744",
"text": "The final http://deeplearning.ai course on Sequence Models is now up on @Coursera! Projects you'll build include Speech trigger word detection, Translation, Emojification, Text generation, ... w/RNN, LSTM, GRU, Word embeddings & Attention. Hope you have fun with it!",
"user": {
"id": 224499494510,
"name": "user 10",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:25 +0000 2017",
"id_str": "8500062451121695744",
"text": "Many people think that patience is a sign of weakness. I think this is a mistake. It is anger that is a sign of weakness, whereas patience is a sign of strength.",
"user": {
"id": 224499494511,
"name": "user 11",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:26 +0000 2017",
"id_str": "8500062451211695744",
"text": "15-year olds Bailey Holt and Preston Cope, the two teens killed in the #KentuckySchoolShooting. It was the 11th school shooting of 2018. There are 7 days left in January.",
"user": {
"id": 224499494512,
"name": "user 12",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:27 +0000 2017",
"id_str": "8500062451211695744",
"text": "Her name is Avgi, and the last time anyone saw her face was in Greece nearly 9,000 years ago",
"user": {
"id": 224499494513,
"name": "user 13",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:28 +0000 2017",
"id_str": "8500062451216195744",
"text": "What’s past is past, nothing can change that. But the future can be different if we choose to make it so. We have to cultivate a vision of a happier, more peaceful future and make the effort now to bring it about. This is no time for complacency, hope lies in the action we take.",
"user": {
"id": 224499494514,
"name": "user 14",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:29 +0000 2017",
"id_str": "8500062451216915744",
"text": "Business Process Analytics deals with examining large and varied process related data (i.e. big process data) to uncover hidden patterns, unknown correlations, market trends, customer preferences and other useful insights. ",
"user": {
"id": 224499494515,
"name": "user 15",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:30 +0000 2017",
"id_str": "8500062451216951744",
"text": "Modern education pays little attention to inner values and yet our basic human nature is compassionate. We need to incorporate compassion and warm-heartedness into the modern education system to make it more holistic.",
"user": {
"id": 224499494516,
"name": "user 16",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:31 +0000 2017",
"id_str": "8500062451216957144",
"text": "Happiness shouldn’t be a goal, it should be a habit https://virg.in/J3r ",
"user": {
"id": 224499494517,
"name": "user 17",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:32 +0000 2017",
"id_str": "8500062451216957414",
"text": "The way you perceive and react to the world is a choice. ~David Wallace Choose wisely! 2018 is your chance!",
"user": {
"id": 224499494518,
"name": "user 18",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:33 +0000 2017",
"id_str": "8500062451216957441",
"text": "Relive the breathtaking 2017 #SydNYE fireworks display - see the highlights of our biggest fireworks display ever",
"user": {
"id": 224499494519,
"name": "user 19",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:34 +0000 2017",
"id_str": "2850006245121695744",
"text": "The Sydney fireworks always looks amazing, on my bucket list to be there for New Years:) Wishing everyone happiness and good health in 2018!",
"user": {
"id": 224499494520,
"name": "user 20",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:35 +0000 2017",
"id_str": "8250006245121695744",
"text": "'Measuring programming progress by lines of code is like measuring aircraft building progress by weight.' - Bill Gates",
"user": {
"id": 224499494521,
"name": "user 21",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:36 +0000 2017",
"id_str": "8502006245121695744",
"text": "Today is the #WinterSolstice, which is also the shortest day of the year! What are solstices & equinoxes, and why do they occur? Get the answers: http://go.nasa.gov/2Bg1aPv ",
"user": {
"id": 224499494522,
"name": "user 22",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:37 +0000 2017",
"id_str": "8500206245121695744",
"text": "Want your first AI job? Come intern with me! We're running an internship program that will help people who've completed MOOCs start employment in AI. http://landing.ai/ai-internship ",
"user": {
"id": 224499494523,
"name": "user 23",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:38 +0000 2017",
"id_str": "8500026245121695744",
"text": "No one in the brief history of computing has ever written a piece of perfect software. It's unlikely that you'll be the first. - Andy Hunt",
"user": {
"id": 224499494524,
"name": "user 24",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:39 +0000 2017",
"id_str": "8500062245121695744",
"text": "If you’re looking for a great read to enjoy over the holidays, you can’t go wrong with one of these books.",
"user": {
"id": 224499494525,
"name": "user 25",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:40 +0000 2017",
"id_str": "8500062425121695744",
"text": "This kind photographer turned kids with illnesses and disabilities into superheroes #SundayMorning",
"user": {
"id": 224499494526,
"name": "user 26",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:41 +0000 2017",
"id_str": "8500062451221695744",
"text": "Thinking a lot about diversity in AI. Here's my current Stanford group: https://stanfordmlgroup.github.io/#people We striving to do better and increase diversity. AI needs to welcome everyone!",
"user": {
"id": 224499494527,
"name": "user 27",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:42 +0000 2017",
"id_str": "8500062451212695744",
"text": "What is important is not so much how long you live as whether you live a meaningful life. This doesn’t mean accumulating money and fame, but being of service to your fellow human beings. It means helping others if you can, but even if you can’t do that, at least not harming them.",
"user": {
"id": 224499494528,
"name": "user 28",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:43 +0000 2017",
"id_str": "8500062451216295744",
"text": "If you ever wondered about the role of a senior pc member or a general chair at BPM conferences, check the new version of the BPM Conference Guidelines at http://bit.ly/2A2NWG1 ",
"user": {
"id": 224499494529,
"name": "user 29",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:44 +0000 2017",
"id_str": "8500062451216925744",
"text": "Boston Dynamics new Atlas robot",
"user": {
"id": 224499494530,
"name": "user 30",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:45 +0000 2017",
"id_str": "8500062451216952744",
"text": "The use of force may control people physically, but it won’t change their hearts and minds. You can only do that on the basis of trust and friendship.",
"user": {
"id": 224499494531,
"name": "user 31",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:46 +0000 2017",
"id_str": "8500062451216957244",
"text": "CoreDB: a Data Lake Service: http://youtu.be/uCOn67IdrPU?a via @YouTube",
"user": {
"id": 224499494532,
"name": "user 32",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:47 +0000 2017",
"id_str": "8500062451216957424",
"text": "Happy Day of Cyrus the Great, the King of Persia - 29 October. Here is a drawing I made almost one year ago when I visited his tomb.",
"user": {
"id": 224499494533,
"name": "user 33",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:48 +0000 2017",
"id_str": "8500062451216957442",
"text": "Optical Illusion Crosswalk Aims to Slow Down Speedy Iceland Drivers",
"user": {
"id": 224499494534,
"name": "user 34",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:49 +0000 2017",
"id_str": "3850006245121695744",
"text": "Interested in co-locating your workshop with #BPM2018? Have a look at the call for workshop proposals: http://bit.ly/2gnxUNY ",
"user": {
"id": 224499494535,
"name": "user 35",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:50 +0000 2017",
"id_str": "8350006245121695744",
"text": "How can a chatbot help with mental health? Great article on Woebot. @willknight",
"user": {
"id": 224499494536,
"name": "user 36",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},
{
"created_at": "Thu Apr 06 15:24:51 +0000 2017",
"id_str": "8530006245121695744",
"text": "Figure out your data structures, and the code will follow. - William Laeder",
"user": {
"id": 224499494537,
"name": "user 37",
"screen_name": "Twitter User",
"location": "Internet",
"url": "user URL",
"description": "user description"
},
"place": {},
"entities": {
"hashtags": [],
"urls": [
{
"url": "twt url sample",
"unwound": {
"url": "url sample",
"title": "web page title"
}
}
],
"user_mentions": []
}
},