-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome_timeline.json
1692 lines (1692 loc) · 68.9 KB
/
home_timeline.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
{
"statuses": [{
"created_at": "Fri Mar 02 04:29:09 +0800 2012",
"id": 3418988106843667,
"mid": "3418988106843667",
"idstr": "3418988106843667",
"text": " //@陈劲松: 今年两会只要解决这个问题,本届政府可完美收官!",
"source": "<a href=\"http://m.weibo.com/web/cellphone.php#ipad\" rel=\"nofollow\">iPad客户端</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1813080181,
"idstr": "1813080181",
"screen_name": "薛蛮子",
"name": "薛蛮子",
"province": "11",
"city": "5",
"location": "北京 朝阳区",
"description": "天使投资人薛蛮子 商业计划书请发信箱charlesxuesub@gmail.com",
"url": "",
"profile_image_url": "http://tp2.sinaimg.cn/1813080181/50/5615039894/1",
"profile_url": "charlesxue",
"domain": "charlesxue",
"weihao": "",
"gender": "m",
"followers_count": 1962297,
"friends_count": 1456,
"statuses_count": 36193,
"favourites_count": 823,
"created_at": "Mon Sep 06 00:00:00 +0800 2010",
"following": true,
"allow_all_act_msg": true,
"geo_enabled": true,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp2.sinaimg.cn/1813080181/180/5615039894/1",
"verified_reason": "天使投资人、微博打拐发起人之一",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 1177,
"lang": "zh-cn"
},
"retweeted_status": {
"created_at": "Thu Mar 01 22:07:27 +0800 2012",
"id": 3418892053338620,
"mid": "3418892053338620",
"idstr": "3418892053338620",
"text": "【减税是当务之急】李剑阁@财新网:大幅度大范围减税不仅是当务之急,而且力所能及。过去十年财政收入年年大幅度超过年初预算。允许政府巨额超收,超收部分又可以自由支配,从国家法度上值得推敲。应尽早修订并严肃执行《预算法》,用法律形式限制政府的收税权力。建议规定扣除CPI后税收的增收幅度",
"source": "<a href=\"http://weibo.com\" rel=\"nofollow\">新浪微博</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"thumbnail_pic": "http://ww4.sinaimg.cn/thumbnail/709b1d0etw1dqknfmt850j.jpg",
"bmiddle_pic": "http://ww4.sinaimg.cn/bmiddle/709b1d0etw1dqknfmt850j.jpg",
"original_pic": "http://ww4.sinaimg.cn/large/709b1d0etw1dqknfmt850j.jpg",
"geo": null,
"user": {
"id": 1889213710,
"idstr": "1889213710",
"screen_name": "刘胜军改革",
"name": "刘胜军改革",
"province": "31",
"city": "1000",
"location": "上海",
"description": "中欧陆家嘴国际金融研究院副院长,畅销书《谁伤了你的幸福》作者,上海证券报、第一财经日报、FT中文网、财新网专栏作家",
"url": "",
"profile_image_url": "http://tp3.sinaimg.cn/1889213710/50/5624669762/1",
"profile_url": "u/1889213710",
"domain": "",
"weihao": "",
"gender": "m",
"followers_count": 114146,
"friends_count": 392,
"statuses_count": 9859,
"favourites_count": 7,
"created_at": "Sun Dec 05 00:00:00 +0800 2010",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp3.sinaimg.cn/1889213710/180/5624669762/1",
"verified_reason": "中欧陆家嘴国际金融研究院副院长刘胜军",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 268,
"lang": "zh-cn"
},
"reposts_count": 123,
"comments_count": 23,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
"reposts_count": 1,
"comments_count": 4,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 04:28:35 +0800 2012",
"id": 3418987964237199,
"mid": "3418987964237199",
"idstr": "3418987964237199",
"text": " //@善养浩然: 没收过两千以上的官员有吗?//@李天时:今日立法会,议员陈伟业反问特首,前公务员收2000元月饼券被判囚36个月;前退休警长在澳门免费住宿被判囚15个月,罚两万员。他斥特首「为何不引咎辞职」,乃「香港第一贪官」。--怎么看都像是评先进。",
"source": "<a href=\"http://m.weibo.com/web/cellphone.php#ipad\" rel=\"nofollow\">iPad客户端</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1813080181,
"idstr": "1813080181",
"screen_name": "薛蛮子",
"name": "薛蛮子",
"province": "11",
"city": "5",
"location": "北京 朝阳区",
"description": "天使投资人薛蛮子 商业计划书请发信箱charlesxuesub@gmail.com",
"url": "",
"profile_image_url": "http://tp2.sinaimg.cn/1813080181/50/5615039894/1",
"profile_url": "charlesxue",
"domain": "charlesxue",
"weihao": "",
"gender": "m",
"followers_count": 1962297,
"friends_count": 1456,
"statuses_count": 36193,
"favourites_count": 823,
"created_at": "Mon Sep 06 00:00:00 +0800 2010",
"following": true,
"allow_all_act_msg": true,
"geo_enabled": true,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp2.sinaimg.cn/1813080181/180/5615039894/1",
"verified_reason": "天使投资人、微博打拐发起人之一",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 1177,
"lang": "zh-cn"
},
"retweeted_status": {
"created_at": "Thu Mar 01 08:56:44 +0800 2012",
"id": 3418693058881285,
"mid": "3418693058881285",
"idstr": "3418693058881285",
"text": "全港通缉曾荫权:民众讥其为香港阿扁,港府首贪.廉政公署介入,如果怀疑特首触犯《防止贿赂条例》,可转交律政司;如果有1/4议员联合动议及经立法会通过,可交由终审法院调查,有足够证据即可以提出弹劾,报请中央政府决定。评:最后一个程序,充满想象.",
"source": "<a href=\"http://weibo.com\" rel=\"nofollow\">新浪微博</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/46ecd763tw1dqk0ayjmjoj.jpg",
"bmiddle_pic": "http://ww2.sinaimg.cn/bmiddle/46ecd763tw1dqk0ayjmjoj.jpg",
"original_pic": "http://ww2.sinaimg.cn/large/46ecd763tw1dqk0ayjmjoj.jpg",
"geo": null,
"user": {
"id": 1189926755,
"idstr": "1189926755",
"screen_name": "李天时",
"name": "李天时",
"province": "21",
"city": "1",
"location": "辽宁 沈阳",
"description": "日拱一卒。工作邮箱:litianshi@vip.sina.com。",
"url": "http://blog.sina.com.cn/xiaosiyu",
"profile_image_url": "http://tp4.sinaimg.cn/1189926755/50/5610515312/1",
"profile_url": "u/1189926755",
"domain": "",
"weihao": "",
"gender": "m",
"followers_count": 38868,
"friends_count": 1239,
"statuses_count": 7818,
"favourites_count": 820,
"created_at": "Fri Aug 28 00:00:00 +0800 2009",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
"verified": false,
"verified_type": -1,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp4.sinaimg.cn/1189926755/180/5610515312/1",
"verified_reason": "",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 1006,
"lang": "zh-cn"
},
"reposts_count": 491,
"comments_count": 124,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
"reposts_count": 5,
"comments_count": 5,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 04:25:41 +0800 2012",
"id": 3418987239036267,
"mid": "3418987239036267",
"idstr": "3418987239036267",
"text": " //@张黎刚: 人贩子应该天诛地灭!//@阜外医院孙宏涛:转发微博",
"source": "<a href=\"http://m.weibo.com/web/cellphone.php#ipad\" rel=\"nofollow\">iPad客户端</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1813080181,
"idstr": "1813080181",
"screen_name": "薛蛮子",
"name": "薛蛮子",
"province": "11",
"city": "5",
"location": "北京 朝阳区",
"description": "天使投资人薛蛮子 商业计划书请发信箱charlesxuesub@gmail.com",
"url": "",
"profile_image_url": "http://tp2.sinaimg.cn/1813080181/50/5615039894/1",
"profile_url": "charlesxue",
"domain": "charlesxue",
"weihao": "",
"gender": "m",
"followers_count": 1962297,
"friends_count": 1456,
"statuses_count": 36193,
"favourites_count": 823,
"created_at": "Mon Sep 06 00:00:00 +0800 2010",
"following": true,
"allow_all_act_msg": true,
"geo_enabled": true,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp2.sinaimg.cn/1813080181/180/5615039894/1",
"verified_reason": "天使投资人、微博打拐发起人之一",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 1177,
"lang": "zh-cn"
},
"retweeted_status": {
"created_at": "Thu Mar 01 15:57:29 +0800 2012",
"id": 3418798943018733,
"mid": "3418798943018733",
"idstr": "3418798943018733",
"text": "//@濠阳小筑: 周萌萌,6岁半。于2011年1月31日在四川省彭州市被拐。希望通过微博网络得到更多信息。若有线索请马上联系萌萌爸爸13962672031。多转发一次多一份希望! - 原文地址:http://t.cn/zOqShFf",
"source": "<a href=\"http://q.weibo.com/\" rel=\"nofollow\">新浪微群</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/74c94113gw1dqk9h7ejo1j.jpg",
"bmiddle_pic": "http://ww1.sinaimg.cn/bmiddle/74c94113gw1dqk9h7ejo1j.jpg",
"original_pic": "http://ww1.sinaimg.cn/large/74c94113gw1dqk9h7ejo1j.jpg",
"geo": null,
"user": {
"id": 2348030341,
"idstr": "2348030341",
"screen_name": "树的精",
"name": "树的精",
"province": "11",
"city": "8",
"location": "北京 海淀区",
"description": "古老的*树* 万灵的*精* 慈悲的*心* 隽永的*气* 不灭的*神*",
"url": "",
"profile_image_url": "http://tp2.sinaimg.cn/2348030341/50/5625577749/0",
"profile_url": "seeseaseason",
"domain": "seeseaseason",
"weihao": "",
"gender": "f",
"followers_count": 21,
"friends_count": 53,
"statuses_count": 101,
"favourites_count": 0,
"created_at": "Thu Sep 08 00:00:00 +0800 2011",
"following": false,
"allow_all_act_msg": true,
"geo_enabled": true,
"verified": false,
"verified_type": -1,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp2.sinaimg.cn/2348030341/180/5625577749/0",
"verified_reason": "",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 16,
"lang": "zh-cn"
},
"annotations": [{
"id": "128844",
"appid": 49,
"name": "70年代",
"title": "70年代",
"url": "http://q.weibo.com/128844?source=weibosource",
"skey": "",
"server_ip": "10.75.11.88"
}],
"reposts_count": 103,
"comments_count": 11,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
"reposts_count": 44,
"comments_count": 21,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 04:00:16 +0800 2012",
"id": 3418980838588858,
"mid": "3418980838588858",
"idstr": "3418980838588858",
"text": "Jaco Pretorius: Comment Ruby code with Vim <http://t.cn/zOqueCC >",
"source": "<a href=\"\" rel=\"nofollow\">未通过审核应用</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1836861825,
"idstr": "1836861825",
"screen_name": "XiaoshenW",
"name": "XiaoshenW",
"province": "11",
"city": "1",
"location": "北京 东城区",
"description": "偏执狂才能生存",
"url": "",
"profile_image_url": "http://tp2.sinaimg.cn/1836861825/50/5624521437/0",
"profile_url": "u/1836861825",
"domain": "",
"weihao": "",
"gender": "f",
"followers_count": 917,
"friends_count": 396,
"statuses_count": 3072,
"favourites_count": 10,
"created_at": "Sat Oct 23 00:00:00 +0800 2010",
"following": true,
"allow_all_act_msg": false,
"geo_enabled": true,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp2.sinaimg.cn/1836861825/180/5624521437/0",
"verified_reason": "ThoughtWorks业务分析师 王效珅",
"follow_me": true,
"online_status": 0,
"bi_followers_count": 259,
"lang": "zh-cn"
},
"reposts_count": 0,
"comments_count": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 03:02:34 +0800 2012",
"id": 3418966317412176,
"mid": "3418966317412176",
"idstr": "3418966317412176",
"text": "一句话证明这句话不是代笔。",
"source": "<a href=\"http://m.weibo.com/web/cellphone.php#ipad\" rel=\"nofollow\">iPad客户端</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1642316384,
"idstr": "1642316384",
"screen_name": "刘江CE",
"name": "刘江CE",
"province": "11",
"city": "1000",
"location": "北京",
"description": "CSDN与《程序员》总编。图灵公司创始人。关注软件研发,技术营销,技术影响力。 blog: http://blog.csdn.net/liujiangCE。Twitter:@turingbook",
"url": "http://blog.csdn.net/liujiangCE",
"profile_image_url": "http://tp1.sinaimg.cn/1642316384/50/1279882927/1",
"profile_url": "turingbook",
"domain": "turingbook",
"weihao": "",
"gender": "m",
"followers_count": 56298,
"friends_count": 1321,
"statuses_count": 3517,
"favourites_count": 1311,
"created_at": "Thu Aug 27 00:00:00 +0800 2009",
"following": true,
"allow_all_act_msg": false,
"geo_enabled": false,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp1.sinaimg.cn/1642316384/180/1279882927/1",
"verified_reason": "CSDN和图灵公司总编刘江",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 737,
"lang": "zh-cn"
},
"reposts_count": 0,
"comments_count": 5,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 02:33:32 +0800 2012",
"id": 3418959011337975,
"mid": "3418959011337975",
"idstr": "3418959011337975",
"text": "挺感人的。同意这句“女生戴上口罩后只露出两只眼睛会显得更加好看”。",
"source": "<a href=\"http://m.weibo.com/web/cellphone.php#ipad\" rel=\"nofollow\">iPad客户端</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1642316384,
"idstr": "1642316384",
"screen_name": "刘江CE",
"name": "刘江CE",
"province": "11",
"city": "1000",
"location": "北京",
"description": "CSDN与《程序员》总编。图灵公司创始人。关注软件研发,技术营销,技术影响力。 blog: http://blog.csdn.net/liujiangCE。Twitter:@turingbook",
"url": "http://blog.csdn.net/liujiangCE",
"profile_image_url": "http://tp1.sinaimg.cn/1642316384/50/1279882927/1",
"profile_url": "turingbook",
"domain": "turingbook",
"weihao": "",
"gender": "m",
"followers_count": 56298,
"friends_count": 1321,
"statuses_count": 3517,
"favourites_count": 1311,
"created_at": "Thu Aug 27 00:00:00 +0800 2009",
"following": true,
"allow_all_act_msg": false,
"geo_enabled": false,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp1.sinaimg.cn/1642316384/180/1279882927/1",
"verified_reason": "CSDN和图灵公司总编刘江",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 737,
"lang": "zh-cn"
},
"retweeted_status": {
"created_at": "Thu Mar 01 09:56:52 +0800 2012",
"id": 3418708192046567,
"mid": "3418708192046567",
"idstr": "3418708192046567",
"text": "《我想陪你去麦加》(小说) http://t.cn/zOqMwD8",
"source": "<a href=\"http://www.caixin.com\" rel=\"nofollow\">财新网</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1198442164,
"idstr": "1198442164",
"screen_name": "简直",
"name": "简直",
"province": "11",
"city": "9",
"location": "北京 门头沟区",
"description": "乃至童子戏。 聚沙为佛塔。",
"url": "http://jianzhi.blog.caixin.com",
"profile_image_url": "http://tp1.sinaimg.cn/1198442164/50/5619557218/1",
"profile_url": "jianz",
"domain": "jianz",
"weihao": "",
"gender": "m",
"followers_count": 51661,
"friends_count": 0,
"statuses_count": 50,
"favourites_count": 0,
"created_at": "Fri Oct 30 00:00:00 +0800 2009",
"following": false,
"allow_all_act_msg": true,
"geo_enabled": false,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp1.sinaimg.cn/1198442164/180/5619557218/1",
"verified_reason": "职业投资人",
"follow_me": false,
"online_status": 0,
"bi_followers_count": 0,
"lang": "zh-cn"
},
"reposts_count": 501,
"comments_count": 168,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
"reposts_count": 1,
"comments_count": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 02:14:11 +0800 2012",
"id": 3418954141329277,
"mid": "3418954141329277",
"idstr": "3418954141329277",
"text": "我的公开课目前规划:三月/非技术人的技术课(for 投资经理/IT记者)/2.5H;四月/超亢奋的 PPT 设计(for 市场营销人员)/2.5H;五月/函数式编程(for 程序员)/2.5H;六月/非技术人的技术课(for 产品经理/UED)/2.5H ... 每个月在此微博公布报名信息。 [呵呵]",
"source": "<a href=\"http://weibo.com\" rel=\"nofollow\">新浪微博</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1614282004,
"idstr": "1614282004",
"screen_name": "蔡学镛",
"name": "蔡学镛",
"province": "11",
"city": "8",
"location": "北京 海淀区",
"description": "来自台湾,现任职于北京【创新工场】。电邮 JerryTsai1218(at)Gmail.Com",
"url": "",
"profile_image_url": "http://tp1.sinaimg.cn/1614282004/50/5601048578/1",
"profile_url": "rebol",
"domain": "rebol",
"weihao": "",
"gender": "m",
"followers_count": 54529,
"friends_count": 90,
"statuses_count": 2660,
"favourites_count": 3,
"created_at": "Mon Aug 09 00:00:00 +0800 2010",
"following": true,
"allow_all_act_msg": false,
"geo_enabled": false,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp1.sinaimg.cn/1614282004/180/5601048578/1",
"verified_reason": "《Java夜未眠》作者、创新工场首席布道师",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 80,
"lang": "zh-cn"
},
"reposts_count": 6,
"comments_count": 28,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 00:56:18 +0800 2012",
"id": 3418934537743473,
"mid": "3418934537743473",
"idstr": "3418934537743473",
"text": "想妈妈",
"source": "<a href=\"http://www.xiaomi.com\" rel=\"nofollow\">小米手机</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1730692772,
"idstr": "1730692772",
"screen_name": "v陈小光v",
"name": "v陈小光v",
"province": "11",
"city": "5",
"location": "北京 朝阳区",
"description": "@腾讯.互联网从业4年,热情,爱好数学美食.广交良友,爱分享~独立之思想,自由之精神。本微博内容仅代表个人之观点或转载,跟公司无任何关系!",
"url": "",
"profile_image_url": "http://tp1.sinaimg.cn/1730692772/50/5621649450/1",
"profile_url": "cxg2011",
"domain": "cxg2011",
"weihao": "",
"gender": "m",
"followers_count": 13884,
"friends_count": 487,
"statuses_count": 687,
"favourites_count": 47,
"created_at": "Fri Apr 16 00:00:00 +0800 2010",
"following": true,
"allow_all_act_msg": false,
"geo_enabled": true,
"verified": false,
"verified_type": 220,
"remark": "",
"allow_all_comment": false,
"avatar_large": "http://tp1.sinaimg.cn/1730692772/180/5621649450/1",
"verified_reason": "",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 261,
"lang": "zh-cn"
},
"retweeted_status": {
"created_at": "Thu Mar 01 22:41:00 +0800 2012",
"id": 3418900496913206,
"mid": "3418900496913206",
"idstr": "3418900496913206",
"text": "电话里面:“This is a wrong number.Please check up and take the telephone number again……”;电话外面:“孩子,你为什么每次都说外语,妈听不懂,但是妈想你……”[泪]",
"source": "<a href=\"http://weibo.com\" rel=\"nofollow\">新浪微博</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/7cbf26b6jw1dqkoei38rej.jpg",
"bmiddle_pic": "http://ww1.sinaimg.cn/bmiddle/7cbf26b6jw1dqkoei38rej.jpg",
"original_pic": "http://ww1.sinaimg.cn/large/7cbf26b6jw1dqkoei38rej.jpg",
"geo": null,
"user": {
"id": 2092902070,
"idstr": "2092902070",
"screen_name": "六间房刘磊",
"name": "六间房刘磊",
"province": "11",
"city": "8",
"location": "北京 海淀区",
"description": "专治各种疑难杂症,横扫一切牛鬼蛇神!",
"url": "",
"profile_image_url": "http://tp3.sinaimg.cn/2092902070/50/5597214038/1",
"profile_url": "llwqk",
"domain": "llwqk",
"weihao": "",
"gender": "m",
"followers_count": 277830,
"friends_count": 1875,
"statuses_count": 5302,
"favourites_count": 0,
"created_at": "Fri Apr 08 00:00:00 +0800 2011",
"following": false,
"allow_all_act_msg": true,
"geo_enabled": true,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp3.sinaimg.cn/2092902070/180/5597214038/1",
"verified_reason": "六间房视频网站总编 北京电视艺术家协会网络视听分会常务理事",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 1776,
"lang": "zh-cn"
},
"reposts_count": 77,
"comments_count": 21,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
"reposts_count": 0,
"comments_count": 1,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 00:47:18 +0800 2012",
"id": 3418932273135704,
"mid": "3418932273135704",
"idstr": "3418932273135704",
"text": "这事明显就是摆拍,谁每天跟着个摄影师//@杨早://@李老楼:延安遗风。",
"source": "<a href=\"http://m.weibo.com/web/cellphone.php#android\" rel=\"nofollow\">Android客户端</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1893774153,
"idstr": "1893774153",
"screen_name": "常新居士",
"name": "常新居士",
"province": "11",
"city": "2",
"location": "北京 西城区",
"description": "常新居士,性豪侠;好声色,喜绘画;泛阅读,粗通文字,尤好志怪神通,大爱人文科幻;投身IT,冀志凌云,崇创新,尚行动。喜辨思,好自由。",
"url": "http://blog.sina.com.cn/renfake",
"profile_image_url": "http://tp2.sinaimg.cn/1893774153/50/1292404092/1",
"profile_url": "renfake",
"domain": "renfake",
"weihao": "",
"gender": "m",
"followers_count": 368,
"friends_count": 269,
"statuses_count": 1529,
"favourites_count": 448,
"created_at": "Wed Dec 15 00:00:00 +0800 2010",
"following": true,
"allow_all_act_msg": false,
"geo_enabled": true,
"verified": false,
"verified_type": -1,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp2.sinaimg.cn/1893774153/180/1292404092/1",
"verified_reason": "",
"follow_me": true,
"online_status": 1,
"bi_followers_count": 109,
"lang": "zh-cn"
},
"retweeted_status": {
"created_at": "Thu Mar 01 19:52:06 +0800 2012",
"id": 3418857999607489,
"mid": "3418857999607489",
"idstr": "3418857999607489",
"text": "网曝!!那张著名的“雷锋送老大娘回家”做好事照片是导演的,图中扮演需要搀扶的老大娘是大连《新商报》副总编辑王盛波的奶奶。据王盛波讲,他奶奶当时就在家里,并不需要别人送她回家,是新闻干事季增带雷锋上门来搀扶的,小女孩是邻居家的,说之所以找不高的老奶奶作道具,是因为雷锋的身高较矮;",
"source": "<a href=\"http://weibo.com\" rel=\"nofollow\">新浪微博</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"thumbnail_pic": "http://ww2.sinaimg.cn/thumbnail/5ffdad2ftw1dqkjfiiandj.jpg",
"bmiddle_pic": "http://ww2.sinaimg.cn/bmiddle/5ffdad2ftw1dqkjfiiandj.jpg",
"original_pic": "http://ww2.sinaimg.cn/large/5ffdad2ftw1dqkjfiiandj.jpg",
"geo": null,
"user": {
"id": 1610460463,
"idstr": "1610460463",
"screen_name": "刘义0",
"name": "刘义0",
"province": "31",
"city": "1000",
"location": "上海",
"description": "荣获2010上海设计力量及2011上海高端青年创意人才称号, 李宁/型男志/马克华菲/伊莱克斯/特邀艺术家 M>13321893607 E>spardec@126.com",
"url": "http://blog.sina.com.cn/liuyibrand",
"profile_image_url": "http://tp4.sinaimg.cn/1610460463/50/5624591127/1",
"profile_url": "liuyibrand",
"domain": "liuyibrand",
"weihao": "",
"gender": "m",
"followers_count": 161473,
"friends_count": 790,
"statuses_count": 3714,
"favourites_count": 10,
"created_at": "Wed Dec 02 00:00:00 +0800 2009",
"following": false,
"allow_all_act_msg": false,
"geo_enabled": true,
"verified": true,
"verified_type": 0,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp4.sinaimg.cn/1610460463/180/5624591127/1",
"verified_reason": "知名设计师",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 768,
"lang": "zh-cn"
},
"reposts_count": 1481,
"comments_count": 354,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
"reposts_count": 0,
"comments_count": 0,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 00:29:12 +0800 2012",
"id": 3418927717367770,
"mid": "3418927717367770",
"idstr": "3418927717367770",
"text": "右手,你今天犯错误了。脑袋,别那么冲动;发脾气前数到10。",
"source": "<a href=\"http://weibo.com\" rel=\"nofollow\">新浪微博</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1893774153,
"idstr": "1893774153",
"screen_name": "常新居士",
"name": "常新居士",
"province": "11",
"city": "2",
"location": "北京 西城区",
"description": "常新居士,性豪侠;好声色,喜绘画;泛阅读,粗通文字,尤好志怪神通,大爱人文科幻;投身IT,冀志凌云,崇创新,尚行动。喜辨思,好自由。",
"url": "http://blog.sina.com.cn/renfake",
"profile_image_url": "http://tp2.sinaimg.cn/1893774153/50/1292404092/1",
"profile_url": "renfake",
"domain": "renfake",
"weihao": "",
"gender": "m",
"followers_count": 368,
"friends_count": 269,
"statuses_count": 1529,
"favourites_count": 448,
"created_at": "Wed Dec 15 00:00:00 +0800 2010",
"following": true,
"allow_all_act_msg": false,
"geo_enabled": true,
"verified": false,
"verified_type": -1,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp2.sinaimg.cn/1893774153/180/1292404092/1",
"verified_reason": "",
"follow_me": true,
"online_status": 1,
"bi_followers_count": 109,
"lang": "zh-cn"
},
"reposts_count": 0,
"comments_count": 1,
"mlevel": 0,
"visible": {
"type": 0,
"list_id": 0
}
},
{
"created_at": "Fri Mar 02 00:26:39 +0800 2012",
"id": 3418927097400767,
"mid": "3418927097400767",
"idstr": "3418927097400767",
"text": "抽奖是个技术活,一命二运三风水,四靠祖坟五读书",
"source": "<a href=\"http://weibo.com\" rel=\"nofollow\">新浪微博</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"geo": null,
"user": {
"id": 1893774153,
"idstr": "1893774153",
"screen_name": "常新居士",
"name": "常新居士",
"province": "11",
"city": "2",
"location": "北京 西城区",
"description": "常新居士,性豪侠;好声色,喜绘画;泛阅读,粗通文字,尤好志怪神通,大爱人文科幻;投身IT,冀志凌云,崇创新,尚行动。喜辨思,好自由。",
"url": "http://blog.sina.com.cn/renfake",
"profile_image_url": "http://tp2.sinaimg.cn/1893774153/50/1292404092/1",
"profile_url": "renfake",
"domain": "renfake",
"weihao": "",
"gender": "m",
"followers_count": 368,
"friends_count": 269,
"statuses_count": 1529,
"favourites_count": 448,
"created_at": "Wed Dec 15 00:00:00 +0800 2010",
"following": true,
"allow_all_act_msg": false,
"geo_enabled": true,
"verified": false,
"verified_type": -1,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp2.sinaimg.cn/1893774153/180/1292404092/1",
"verified_reason": "",
"follow_me": true,
"online_status": 1,
"bi_followers_count": 109,
"lang": "zh-cn"
},
"retweeted_status": {
"created_at": "Mon Feb 27 20:00:37 +0800 2012",
"id": 3417772971111477,
"mid": "3417772971111477",
"idstr": "3417772971111477",
"text": "#有奖转发#Ipad 2 一部要不要?3月9号日下午16:00抽奖。只需成为@众信旅游 的粉丝,转发该信息,即可获得抽奖资格。活动将使用新浪第三方工具“转发抽奖平台”抽取,公平公正。特大优惠:春季樱花路线大全,部分路线第二人半价即可,机不可失哈http://t.cn/zOLmCeU",
"source": "<a href=\"http://weibo.pp.cc/time/\" rel=\"nofollow\">皮皮时光机</a>",
"favorited": false,
"truncated": false,
"in_reply_to_status_id": "",
"in_reply_to_user_id": "",
"in_reply_to_screen_name": "",
"thumbnail_pic": "http://ww1.sinaimg.cn/thumbnail/49fcd112jw1dqh2wy242ej.jpg",
"bmiddle_pic": "http://ww1.sinaimg.cn/bmiddle/49fcd112jw1dqh2wy242ej.jpg",
"original_pic": "http://ww1.sinaimg.cn/large/49fcd112jw1dqh2wy242ej.jpg",
"geo": null,
"user": {
"id": 1241305362,
"idstr": "1241305362",
"screen_name": "众信旅游",
"name": "众信旅游",
"province": "11",
"city": "1000",
"location": "北京",
"description": "快乐旅程 一起分享!众信旅游,环球旅游好伙伴 http://www.utourworld.com 400-819-9898",
"url": "http://blog.sina.com.cn/travelusion",
"profile_image_url": "http://tp3.sinaimg.cn/1241305362/50/5597459220/0",
"profile_url": "travelusion",
"domain": "travelusion",
"weihao": "",
"gender": "f",
"followers_count": 557906,
"friends_count": 207,
"statuses_count": 3386,
"favourites_count": 14,
"created_at": "Wed Feb 03 00:00:00 +0800 2010",
"following": false,
"allow_all_act_msg": true,
"geo_enabled": true,
"verified": true,
"verified_type": 2,
"remark": "",
"allow_all_comment": true,
"avatar_large": "http://tp3.sinaimg.cn/1241305362/180/5597459220/0",
"verified_reason": "众信国际旅行社官方微博",
"follow_me": false,
"online_status": 1,
"bi_followers_count": 146,