-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebmentions.json
2479 lines (2479 loc) · 133 KB
/
webmentions.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
{
"links": [
{
"activity": {
"sentence": "Luis Morales favorited a tweet https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/",
"sentence_html": "<a href=\"https://twitter.com/LuisTIOgt\">Luis Morales</a> favorited a tweet <a href=\"https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/\">https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Luis Morales",
"photo": "https://webmention.io/avatar/abs.twimg.com/0e6b2cd70aa5b35dec24ca4e1e63f8963f0118736d9ec3bba77e3a8c99a27bc2.png",
"url": "https://twitter.com/LuisTIOgt"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1397546049481453568#favorited-by-1092837452820238336"
},
"id": 1171551,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1397546049481453568/1092837452820238336",
"target": "https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/",
"verified": true,
"verified_date": "2021-05-26T22:16:01Z"
},
{
"activity": {
"sentence": "Daniel Vergara 🐍 favorited a tweet https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/",
"sentence_html": "<a href=\"https://twitter.com/__danvergara__\">Daniel Vergara 🐍</a> favorited a tweet <a href=\"https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/\">https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Daniel Vergara 🐍",
"photo": "https://webmention.io/avatar/pbs.twimg.com/e2278dd2ccbff45ed0454b634bbd1a16475d812bf2eac2e923de9b30519c06dc.jpg",
"url": "https://twitter.com/__danvergara__"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1397546049481453568#favorited-by-2270921329"
},
"id": 1171442,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1397546049481453568/2270921329",
"target": "https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/",
"verified": true,
"verified_date": "2021-05-26T19:47:55Z"
},
{
"activity": {
"sentence": "Awesome Go Repositories favorited a tweet https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/",
"sentence_html": "<a href=\"https://twitter.com/GolangRepos\">Awesome Go Repositories</a> favorited a tweet <a href=\"https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/\">https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Awesome Go Repositories",
"photo": "https://webmention.io/avatar/pbs.twimg.com/1f50e9a8dcfccc319e531ebbfd464f9fc6732ca7f19757b4eaa4850767aa4959.jpg",
"url": "https://twitter.com/GolangRepos"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1397546049481453568#favorited-by-1328795920666931203"
},
"id": 1171200,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1397546049481453568/1328795920666931203",
"target": "https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/",
"verified": true,
"verified_date": "2021-05-26T14:39:03Z"
},
{
"activity": {
"sentence": "Awesome Go Repositories replied 'Really helpful post 🙌🏻' to a tweet https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/",
"sentence_html": "<a href=\"https://twitter.com/GolangRepos\">Awesome Go Repositories</a> replied 'Really helpful post 🙌🏻' to a tweet <a href=\"https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/\">https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/</a>",
"type": "reply"
},
"data": {
"author": {
"name": "Awesome Go Repositories",
"photo": "https://webmention.io/avatar/pbs.twimg.com/1f50e9a8dcfccc319e531ebbfd464f9fc6732ca7f19757b4eaa4850767aa4959.jpg",
"url": "https://twitter.com/GolangRepos"
},
"content": "Really helpful post 🙌🏻\n<a class=\"u-mention\" href=\"https://twitter.com/sheldon_hull\"></a>\n<a class=\"u-mention\" href=\"https://www.sheldonhull.com/\"></a>",
"name": "",
"published": "2021-05-26T13:35:30Z",
"published_ts": 1622036130,
"url": "https://twitter.com/GolangRepos/status/1397546941953806337"
},
"id": 1171199,
"private": false,
"source": "https://brid.gy/comment/twitter/sheldon_hull/1397546049481453568/1397546941953806337",
"target": "https://www.sheldonhull.com/blog/dedupe-google-drive-with-rclone/",
"verified": true,
"verified_date": "2021-05-26T14:39:03Z"
},
{
"activity": {
"sentence": "azu posted '見てる: \"Leverage Renovate for Easy Dependency Updates - sheldonhull.com\" sheldonhu...' linking to https://www.sheldonhull.com/microblog/leverage-renovate-for-easy-dependency-updates/",
"sentence_html": "<a href=\"https://twitter.com/azu_re\">azu</a> posted '見てる: \"Leverage Renovate for Easy Dependency Updates - sheldonhull.com\" sheldonhu...' linking to <a href=\"https://www.sheldonhull.com/microblog/leverage-renovate-for-easy-dependency-updates/\">https://www.sheldonhull.com/microblog/leverage-renovate-for-easy-dependency-updates/</a>",
"type": "link"
},
"data": {
"author": {
"name": "azu",
"photo": "https://webmention.io/avatar/pbs.twimg.com/c1f62346c6c5a900c4244c3579458324a760197e22d2a3711009c37ad60b8415.jpg",
"url": "https://twitter.com/azu_re"
},
"content": "見てる: \"Leverage Renovate for Easy Dependency Updates - <a href=\"http://sheldonhull.com\">sheldonhull.com</a>\" <a href=\"https://www.sheldonhull.com/microblog/leverage-renovate-for-easy-dependency-updates/\">sheldonhull.com/microblog/leve…</a>\n<a class=\"u-mention\" href=\"http://sheldonhull.com/\"></a>\n<a class=\"u-mention\" href=\"https://www.sheldonhull.com/\"></a>",
"name": "",
"published": "2021-05-25T23:27:30Z",
"published_ts": 1621985250,
"url": "https://twitter.com/azu_re/status/1397333532754669569"
},
"id": 1170367,
"private": false,
"source": "https://brid.gy/post/twitter/sheldon_hull/1397333532754669569",
"target": "https://www.sheldonhull.com/microblog/leverage-renovate-for-easy-dependency-updates/",
"verified": true,
"verified_date": "2021-05-26T00:05:10Z"
},
{
"activity": {
"sentence": "azu posted '見てる: \"Leverage Renovate for Easy Dependency Updates - sheldonhull.com\" sheldonhu...' linking to https://www.sheldonhull.com/",
"sentence_html": "<a href=\"https://twitter.com/azu_re\">azu</a> posted '見てる: \"Leverage Renovate for Easy Dependency Updates - sheldonhull.com\" sheldonhu...' linking to <a href=\"https://www.sheldonhull.com/\">https://www.sheldonhull.com/</a>",
"type": "link"
},
"data": {
"author": {
"name": "azu",
"photo": "https://webmention.io/avatar/pbs.twimg.com/c1f62346c6c5a900c4244c3579458324a760197e22d2a3711009c37ad60b8415.jpg",
"url": "https://twitter.com/azu_re"
},
"content": "見てる: \"Leverage Renovate for Easy Dependency Updates - <a href=\"http://sheldonhull.com\">sheldonhull.com</a>\" <a href=\"https://www.sheldonhull.com/microblog/leverage-renovate-for-easy-dependency-updates/\">sheldonhull.com/microblog/leve…</a>\n<a class=\"u-mention\" href=\"http://sheldonhull.com/\"></a>\n<a class=\"u-mention\" href=\"https://www.sheldonhull.com/\"></a>",
"name": "",
"published": "2021-05-25T23:27:30Z",
"published_ts": 1621985250,
"url": "https://twitter.com/azu_re/status/1397333532754669569"
},
"id": 1170366,
"private": false,
"source": "https://brid.gy/post/twitter/sheldon_hull/1397333532754669569",
"target": "https://www.sheldonhull.com/",
"verified": true,
"verified_date": "2021-05-26T00:05:09Z"
},
{
"activity": {
"sentence": "Sheldon Hull replied 'Was pretty much what I was thinking today 😃 think we are on the same page ⚡. I d...' to a tweet https://www.sheldonhull.com/microblog/",
"sentence_html": "<a href=\"https://twitter.com/sheldon_hull\">Sheldon Hull</a> replied 'Was pretty much what I was thinking today 😃 think we are on the same page ⚡. I d...' to a tweet <a href=\"https://www.sheldonhull.com/microblog/\">https://www.sheldonhull.com/microblog/</a>",
"type": "reply"
},
"data": {
"author": {
"name": "Sheldon Hull",
"photo": "https://webmention.io/avatar/pbs.twimg.com/570e539daf6f476eeaf772c929b2ebb5f87eeaac5a50489f2ecf9f0186baa9c6.jpg",
"url": "https://twitter.com/sheldon_hull"
},
"content": "Was pretty much what I was thinking today 😃 think we are on the same page ⚡. I do like the idea of promoting a small piece into a deeper scope. Much better than more noise.\n<a class=\"u-mention\" href=\"http://super.so/\"></a>\n<a class=\"u-mention\" href=\"https://super.so/\"></a>\n<a class=\"u-mention\" href=\"https://twitter.com/swyx\"></a>",
"name": "",
"published": "2021-05-25T08:46:31Z",
"published_ts": 1621932391,
"url": "https://twitter.com/sheldon_hull/status/1397111826886840321"
},
"id": 1169574,
"private": false,
"source": "https://brid.gy/comment/twitter/sheldon_hull/1397081264365113346/1397111826886840321",
"target": "https://www.sheldonhull.com/microblog/",
"verified": true,
"verified_date": "2021-05-25T08:53:42Z"
},
{
"activity": {
"sentence": "swyx replied 'yes but i wouldn't make them different sections as its hard to then upgrade them...' to a tweet https://www.sheldonhull.com/microblog/",
"sentence_html": "<a href=\"https://twitter.com/swyx\">swyx</a> replied 'yes but i wouldn't make them different sections as its hard to then upgrade them...' to a tweet <a href=\"https://www.sheldonhull.com/microblog/\">https://www.sheldonhull.com/microblog/</a>",
"type": "reply"
},
"data": {
"author": {
"name": "swyx",
"photo": "https://webmention.io/avatar/pbs.twimg.com/dc00a17efc0b86a5f0299068c592a59c80d3e2240cedff60edc0fd2c2105f7b0.jpg",
"url": "https://twitter.com/swyx"
},
"content": "yes but i wouldn't make them different sections as its hard to then upgrade them into full pieces - i'd just output a little disclaimer and have it show up differently in the index and RSS feeds\n<a class=\"u-mention\" href=\"http://super.so/\"></a>\n<a class=\"u-mention\" href=\"https://super.so/\"></a>\n<a class=\"u-mention\" href=\"https://twitter.com/sheldon_hull\"></a>\n<a class=\"u-mention\" href=\"https://www.sheldonhull.com/\"></a>",
"name": "",
"published": "2021-05-25T06:51:56Z",
"published_ts": 1621925516,
"url": "https://twitter.com/swyx/status/1397082990857969666"
},
"id": 1169551,
"private": false,
"source": "https://brid.gy/comment/twitter/sheldon_hull/1397081264365113346/1397082990857969666",
"target": "https://www.sheldonhull.com/microblog/",
"verified": true,
"verified_date": "2021-05-25T07:39:44Z"
},
{
"activity": {
"sentence": "Python Expert retweeted a tweet https://www.sheldonhull.com/microblog/the-open-guide-to-amazon-web-services/",
"sentence_html": "<a href=\"https://twitter.com/PythonExpertBot\">Python Expert</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/the-open-guide-to-amazon-web-services/\">https://www.sheldonhull.com/microblog/the-open-guide-to-amazon-web-services/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Python Expert",
"photo": "https://webmention.io/avatar/pbs.twimg.com/e502da5cc776f3e4c5dbe5a85b2ffd1e1c751a9369c32d4e39a37c5cad2eb5f7.jpg",
"url": "https://twitter.com/PythonExpertBot"
},
"content": "The Open Guide to Amazon Web Services sheldonhull.com/microblog/the-… #tech #development #microblog #aws #devops via @sheldon_hull",
"name": "",
"published": "2021-05-25T01:18:57Z",
"published_ts": 1621905537,
"url": "https://twitter.com/PythonExpertBot/status/1396999193667964928"
},
"id": 1169312,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1396996530549272579/1396999193667964928",
"target": "https://www.sheldonhull.com/microblog/the-open-guide-to-amazon-web-services/",
"verified": true,
"verified_date": "2021-05-25T01:19:15Z"
},
{
"activity": {
"sentence": "Jerry Chen retweeted a tweet https://www.sheldonhull.com/microblog/the-open-guide-to-amazon-web-services/",
"sentence_html": "<a href=\"https://twitter.com/mrtallerjerry\">Jerry Chen</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/the-open-guide-to-amazon-web-services/\">https://www.sheldonhull.com/microblog/the-open-guide-to-amazon-web-services/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Jerry Chen",
"photo": "https://webmention.io/avatar/pbs.twimg.com/45dca1341f2e130d27d6418fadb023e674f1db7ee26aae8fa802cf23b4d7d0af.png",
"url": "https://twitter.com/mrtallerjerry"
},
"content": "The Open Guide to Amazon Web Services sheldonhull.com/microblog/the-… #tech #development #microblog #aws #devops via @sheldon_hull",
"name": "",
"published": "2021-05-25T01:11:30Z",
"published_ts": 1621905090,
"url": "https://twitter.com/mrtallerjerry/status/1396997320370102274"
},
"id": 1169311,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1396996530549272579/1396997320370102274",
"target": "https://www.sheldonhull.com/microblog/the-open-guide-to-amazon-web-services/",
"verified": true,
"verified_date": "2021-05-25T01:19:15Z"
},
{
"activity": {
"sentence": "InfluxData favorited a tweet https://www.sheldonhull.com/blog/quick-start-to-using-influxdb-on-macos/",
"sentence_html": "<a href=\"https://twitter.com/InfluxDB\">InfluxData</a> favorited a tweet <a href=\"https://www.sheldonhull.com/blog/quick-start-to-using-influxdb-on-macos/\">https://www.sheldonhull.com/blog/quick-start-to-using-influxdb-on-macos/</a>",
"type": "like"
},
"data": {
"author": {
"name": "InfluxData",
"photo": "https://webmention.io/avatar/pbs.twimg.com/f9ad6153f618321438bc470bfc7cfd17b2b800d850784cc632aa5025b92ae493.png",
"url": "https://twitter.com/InfluxDB"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1394819145028493312#favorited-by-1967601206"
},
"id": 1165030,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1394819145028493312/1967601206",
"target": "https://www.sheldonhull.com/blog/quick-start-to-using-influxdb-on-macos/",
"verified": true,
"verified_date": "2021-05-20T19:05:32Z"
},
{
"activity": {
"sentence": "Paulo Morgado posted '> Automating SSMS 2016 Updates & Install dlvr.it/PTzNFp' linking to https://www.sheldonhull.com/blog/automating-ssms-2016-updates-install/",
"sentence_html": "<a href=\"https://twitter.com/PauloMorgado\">Paulo Morgado</a> posted '> Automating SSMS 2016 Updates & Install dlvr.it/PTzNFp' linking to <a href=\"https://www.sheldonhull.com/blog/automating-ssms-2016-updates-install/\">https://www.sheldonhull.com/blog/automating-ssms-2016-updates-install/</a>",
"type": "link"
},
"data": {
"author": {
"name": "Paulo Morgado",
"photo": "https://webmention.io/avatar/pbs.twimg.com/994d27c37e96428c06ce71cea37574443dbffea73d48e32e6c3d9e4fae184657.jpg",
"url": "https://twitter.com/PauloMorgado"
},
"content": "> Automating SSMS 2016 Updates & Install <a href=\"http://dlvr.it/PTzNFp\">dlvr.it/PTzNFp</a>\n<a class=\"u-mention\" href=\"https://www.sheldonhull.com/blog/automating-ssms-2016-updates-install/\"></a>",
"name": "",
"published": "2017-07-12T07:05:08Z",
"published_ts": 1499843108,
"url": "https://twitter.com/PauloMorgado/status/885032260474474498"
},
"id": 1162927,
"private": false,
"source": "https://brid.gy/post/twitter/sheldon_hull/885032260474474498",
"target": "https://www.sheldonhull.com/blog/automating-ssms-2016-updates-install/",
"verified": true,
"verified_date": "2021-05-19T01:17:29Z"
},
{
"activity": {
"sentence": "Paulo Morgado posted '> ANTS Performance Profiler for the SQL Server Dev dlvr.it/PYBZPM' linking to https://www.sheldonhull.com/blog/ants-performance-profiler-for-the-sql-server-dev/",
"sentence_html": "<a href=\"https://twitter.com/PauloMorgado\">Paulo Morgado</a> posted '> ANTS Performance Profiler for the SQL Server Dev dlvr.it/PYBZPM' linking to <a href=\"https://www.sheldonhull.com/blog/ants-performance-profiler-for-the-sql-server-dev/\">https://www.sheldonhull.com/blog/ants-performance-profiler-for-the-sql-server-dev/</a>",
"type": "link"
},
"data": {
"author": {
"name": "Paulo Morgado",
"photo": "https://webmention.io/avatar/pbs.twimg.com/994d27c37e96428c06ce71cea37574443dbffea73d48e32e6c3d9e4fae184657.jpg",
"url": "https://twitter.com/PauloMorgado"
},
"content": "> ANTS Performance Profiler for the SQL Server Dev <a href=\"http://dlvr.it/PYBZPM\">dlvr.it/PYBZPM</a>\n<a class=\"u-mention\" href=\"https://www.sheldonhull.com/blog/ants-performance-profiler-for-the-sql-server-dev/\"></a>",
"name": "",
"published": "2017-07-24T21:52:13Z",
"published_ts": 1500933133,
"url": "https://twitter.com/PauloMorgado/status/889604155785887745"
},
"id": 1162926,
"private": false,
"source": "https://brid.gy/post/twitter/sheldon_hull/889604155785887745",
"target": "https://www.sheldonhull.com/blog/ants-performance-profiler-for-the-sql-server-dev/",
"verified": true,
"verified_date": "2021-05-19T01:16:46Z"
},
{
"activity": {
"sentence": "Redgate posted 'Sheldon Hull @sheldon_hull demonstrates the visual aspect of database diagrammi...' linking to https://www.sheldonhull.com/red-gate-dependency-tracker-making-databases-into-moving-art/",
"sentence_html": "<a href=\"https://twitter.com/redgate\">Redgate</a> posted 'Sheldon Hull @sheldon_hull demonstrates the visual aspect of database diagrammi...' linking to <a href=\"https://www.sheldonhull.com/red-gate-dependency-tracker-making-databases-into-moving-art/\">https://www.sheldonhull.com/red-gate-dependency-tracker-making-databases-into-moving-art/</a>",
"type": "link"
},
"data": {
"author": {
"name": "Redgate",
"photo": "https://webmention.io/avatar/pbs.twimg.com/eaf69b50c703336d39c5c8bdebf7960dc9d8a63e2e4ac0ee5f85ca8081f6d785.jpg",
"url": "https://twitter.com/redgate"
},
"content": "Sheldon Hull <a href=\"https://twitter.com/sheldon_hull\">@sheldon_hull</a> demonstrates the visual aspect of database diagramming with SQL Dependency Tracke: <a href=\"http://ow.ly/Bhlx300hFrG\">ow.ly/Bhlx300hFrG</a>\n<a class=\"u-mention\" href=\"https://www.sheldonhull.com/red-gate-dependency-tracker-making-databases-into-moving-art/\"></a>",
"name": "",
"published": "2016-05-17T15:50:15Z",
"published_ts": 1463500215,
"url": "https://twitter.com/redgate/status/732599119647285249"
},
"id": 1162925,
"private": false,
"source": "https://brid.gy/post/twitter/sheldon_hull/732599119647285249",
"target": "https://www.sheldonhull.com/red-gate-dependency-tracker-making-databases-into-moving-art/",
"verified": true,
"verified_date": "2021-05-19T01:16:45Z"
},
{
"activity": {
"sentence": "H favorited a tweet https://www.sheldonhull.com/blog/exploring-sql-server-with-powershell-and-smo-basics/",
"sentence_html": "<a href=\"https://twitter.com/imessage357_H\">H</a> favorited a tweet <a href=\"https://www.sheldonhull.com/blog/exploring-sql-server-with-powershell-and-smo-basics/\">https://www.sheldonhull.com/blog/exploring-sql-server-with-powershell-and-smo-basics/</a>",
"type": "like"
},
"data": {
"author": {
"name": "H",
"photo": "https://webmention.io/avatar/pbs.twimg.com/c644bf7089af9b7fa739746c266d3801eb883ca194648b739fe9f624ecf9553e.jpg",
"url": "https://twitter.com/imessage357_H"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/895425553297063937#favorited-by-1624620326"
},
"id": 1162924,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/895425553297063937/1624620326",
"target": "https://www.sheldonhull.com/blog/exploring-sql-server-with-powershell-and-smo-basics/",
"verified": true,
"verified_date": "2021-05-19T01:15:18Z"
},
{
"activity": {
"sentence": "Gnuts about Code retweeted a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/CodeGnuts\">Gnuts about Code</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Gnuts about Code",
"photo": "https://webmention.io/avatar/pbs.twimg.com/0e7c1a9e387c9103882ac1ba9d00537a63853a8e537a6e896ddd07d6bfc8d72a.jpg",
"url": "https://twitter.com/CodeGnuts"
},
"content": "#100DaysOfCode #microblog Day 2 of 100 progress Focused on logistics, setup for remaining tests Forked Learn Go With Tests Setup Visual Studio Codespaces (Docker … bit.ly/32YCXha",
"name": "",
"published": "2020-07-30T14:00:17Z",
"published_ts": 1596117617,
"url": "https://twitter.com/CodeGnuts/status/1288836818281136131"
},
"id": 1162923,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1288836796529414146/1288836818281136131",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:56Z"
},
{
"activity": {
"sentence": "Very Proud Robot retweeted a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/RobotProud\">Very Proud Robot</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Very Proud Robot",
"photo": "https://webmention.io/avatar/pbs.twimg.com/4142cc3e37de881c8155e2a03d962fb5e470e1f6e175b6f88e63abbb24606509.jpg",
"url": "https://twitter.com/RobotProud"
},
"content": "#100DaysOfCode #microblog Day 2 of 100 progress Focused on logistics, setup for remaining tests Forked Learn Go With Tests Setup Visual Studio Codespaces (Docker … bit.ly/32YCXha",
"name": "",
"published": "2020-07-30T14:00:17Z",
"published_ts": 1596117617,
"url": "https://twitter.com/RobotProud/status/1288836818763485190"
},
"id": 1162922,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1288836796529414146/1288836818763485190",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:55Z"
},
{
"activity": {
"sentence": "Let's learn together 🤖 retweeted a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/learn__together\">Let's learn together 🤖</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Let's learn together 🤖",
"photo": "https://webmention.io/avatar/pbs.twimg.com/f6343182500c0d39529242516f6dad7f1a700632d1954dee3470c999d1f996ff.jpg",
"url": "https://twitter.com/learn__together"
},
"content": "#100DaysOfCode #microblog Day 2 of 100 progress Focused on logistics, setup for remaining tests Forked Learn Go With Tests Setup Visual Studio Codespaces (Docker … bit.ly/32YCXha",
"name": "",
"published": "2020-07-30T14:00:17Z",
"published_ts": 1596117617,
"url": "https://twitter.com/learn__together/status/1288836819837054977"
},
"id": 1162921,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1288836796529414146/1288836819837054977",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:54Z"
},
{
"activity": {
"sentence": "CodeFullOfBugs retweeted a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/full_bugs\">CodeFullOfBugs</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "CodeFullOfBugs",
"photo": "https://webmention.io/avatar/pbs.twimg.com/ed32470de9dc0d5b7a477da3d51076d212564f32269fd855256f9ad8cce82e59.jpg",
"url": "https://twitter.com/full_bugs"
},
"content": "#100DaysOfCode #microblog Day 2 of 100 progress Focused on logistics, setup for remaining tests Forked Learn Go With Tests Setup Visual Studio Codespaces (Docker … bit.ly/32YCXha",
"name": "",
"published": "2020-07-30T14:04:13Z",
"published_ts": 1596117853,
"url": "https://twitter.com/full_bugs/status/1288837807172190208"
},
"id": 1162920,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1288836796529414146/1288837807172190208",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:53Z"
},
{
"activity": {
"sentence": "BOT Kitty 🐈 retweeted a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/BotRaj1\">BOT Kitty 🐈</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "BOT Kitty 🐈",
"photo": "https://webmention.io/avatar/pbs.twimg.com/c8eee3dc41360a1b018a60af1bb3effd2935d6f2c7a80e7ac1f1e25c13fc94b0.jpg",
"url": "https://twitter.com/BotRaj1"
},
"content": "#100DaysOfCode #microblog Day 2 of 100 progress Focused on logistics, setup for remaining tests Forked Learn Go With Tests Setup Visual Studio Codespaces (Docker … bit.ly/32YCXha",
"name": "",
"published": "2020-07-30T14:04:51Z",
"published_ts": 1596117891,
"url": "https://twitter.com/BotRaj1/status/1288837966752821249"
},
"id": 1162919,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1288836796529414146/1288837966752821249",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:52Z"
},
{
"activity": {
"sentence": "Keep Going! (#100DaysofCode) favorited a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/100daysofcoders\">Keep Going! (#100DaysofCode)</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Keep Going! (#100DaysofCode)",
"photo": "https://webmention.io/avatar/pbs.twimg.com/7c2d49196cdafc40b70a1d3805793630089227d842802d5cb3284d116f6519ef.jpg",
"url": "https://twitter.com/100daysofcoders"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1288836796529414146#favorited-by-1228323468132798465"
},
"id": 1162918,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1288836796529414146/1228323468132798465",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:51Z"
},
{
"activity": {
"sentence": "Jonathan Carter favorited a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/LostInTangent\">Jonathan Carter</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Jonathan Carter",
"photo": "https://webmention.io/avatar/pbs.twimg.com/f7289dacb624c68e1f3a1fac0afb0d9f108ebf4482d1d287db307a3292fe5537.png",
"url": "https://twitter.com/LostInTangent"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1288836796529414146#favorited-by-11342852"
},
"id": 1162917,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1288836796529414146/11342852",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:50Z"
},
{
"activity": {
"sentence": "CoderYoga🧘♂️ favorited a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/KoderJS\">CoderYoga🧘♂️</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "like"
},
"data": {
"author": {
"name": "CoderYoga🧘♂️",
"photo": "https://webmention.io/avatar/pbs.twimg.com/a9501db20d1bfa6db0160dee83d1f3c7335afe56baa83c95287e5408ef2a6261.jpg",
"url": "https://twitter.com/KoderJS"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1288836796529414146#favorited-by-1265062732270886913"
},
"id": 1162916,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1288836796529414146/1265062732270886913",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:49Z"
},
{
"activity": {
"sentence": "Codebeautify favorited a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/Codebeautify\">Codebeautify</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Codebeautify",
"photo": "https://webmention.io/avatar/pbs.twimg.com/500e8907686c01a7a9c1f431dc1dc03ae9dbc0457b9e565445efe4d9e6d94312.png",
"url": "https://twitter.com/Codebeautify"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1288836796529414146#favorited-by-2193929264"
},
"id": 1162915,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1288836796529414146/2193929264",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:48Z"
},
{
"activity": {
"sentence": "JsonFormatter favorited a tweet https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"sentence_html": "<a href=\"https://twitter.com/jsonformatter\">JsonFormatter</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/\">https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/</a>",
"type": "like"
},
"data": {
"author": {
"name": "JsonFormatter",
"photo": "https://webmention.io/avatar/pbs.twimg.com/2b725047f49456dbf5eb4332c333629716e96cbc5b38223c2a463fd41b8e7936.png",
"url": "https://twitter.com/jsonformatter"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1288836796529414146#favorited-by-3912690972"
},
"id": 1162914,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1288836796529414146/3912690972",
"target": "https://www.sheldonhull.com/microblog/2020-07-27-go-r1-day-2/",
"verified": true,
"verified_date": "2021-05-19T01:12:47Z"
},
{
"activity": {
"sentence": "Christin retweeted a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/christinfrohne\">Christin</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Christin",
"photo": "https://webmention.io/avatar/pbs.twimg.com/e0ce661c831da60ae5e6590beac80ad9f147fdc6e1dbb39ceb52726827a607ac.jpg",
"url": "https://twitter.com/christinfrohne"
},
"content": "Incredible setup experience with gitpod, a full fledged EKS deployment and more in a single command. \n#gitpod #docker #terraform #Kubernetes \n\nsheldonhull.com/microblog/2020…",
"name": "",
"published": "2020-09-16T06:42:55Z",
"published_ts": 1600238575,
"url": "https://twitter.com/christinfrohne/status/1306121367931289600"
},
"id": 1162913,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1305869184111435778/1306121367931289600",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:46Z"
},
{
"activity": {
"sentence": "Gitpod retweeted a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/gitpod\">Gitpod</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Gitpod",
"photo": "https://webmention.io/avatar/pbs.twimg.com/d1d4820d82c74e296d4dc8185785cd7fc246abed8cd745b8b387c514733c067d.jpg",
"url": "https://twitter.com/gitpod"
},
"content": "Incredible setup experience with gitpod, a full fledged EKS deployment and more in a single command. \n#gitpod #docker #terraform #Kubernetes \n\nsheldonhull.com/microblog/2020…",
"name": "",
"published": "2020-09-16T06:53:42Z",
"published_ts": 1600239222,
"url": "https://twitter.com/gitpod/status/1306124083835408384"
},
"id": 1162912,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1305869184111435778/1306124083835408384",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:45Z"
},
{
"activity": {
"sentence": "Miro Spönemann retweeted a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/sponemann\">Miro Spönemann</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Miro Spönemann",
"photo": "https://webmention.io/avatar/pbs.twimg.com/e930ef5975710f18d8e24f957ff4ae1f75d48fb02f43886310e8de0dadaabee7.png",
"url": "https://twitter.com/sponemann"
},
"content": "Incredible setup experience with gitpod, a full fledged EKS deployment and more in a single command. \n#gitpod #docker #terraform #Kubernetes \n\nsheldonhull.com/microblog/2020…",
"name": "",
"published": "2020-09-16T15:46:07Z",
"published_ts": 1600271167,
"url": "https://twitter.com/sponemann/status/1306258070754951169"
},
"id": 1162911,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1305869184111435778/1306258070754951169",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:44Z"
},
{
"activity": {
"sentence": "Jan Keromnes retweeted a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/jankeromnes\">Jan Keromnes</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Jan Keromnes",
"photo": "https://webmention.io/avatar/pbs.twimg.com/e662855c1ac9febd01093841b0c52c08a64c4b52129aabd332e883e05573f250.jpg",
"url": "https://twitter.com/jankeromnes"
},
"content": "Incredible setup experience with gitpod, a full fledged EKS deployment and more in a single command. \n#gitpod #docker #terraform #Kubernetes \n\nsheldonhull.com/microblog/2020…",
"name": "",
"published": "2020-09-16T16:39:36Z",
"published_ts": 1600274376,
"url": "https://twitter.com/jankeromnes/status/1306271530855399424"
},
"id": 1162910,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1305869184111435778/1306271530855399424",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:43Z"
},
{
"activity": {
"sentence": "Michael Friedrich, go SLO ... conf 📈🇦🇹 retweeted a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/dnsmichi\">Michael Friedrich, go SLO ... conf 📈🇦🇹</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Michael Friedrich, go SLO ... conf 📈🇦🇹",
"photo": "https://webmention.io/avatar/pbs.twimg.com/8170df0f645bbe7a47f1ada8dbd5fcd2eeed7b5b2cf59f4a491b03d3b02dd792.jpg",
"url": "https://twitter.com/dnsmichi"
},
"content": "Incredible setup experience with gitpod, a full fledged EKS deployment and more in a single command. \n#gitpod #docker #terraform #Kubernetes \n\nsheldonhull.com/microblog/2020…",
"name": "",
"published": "2020-10-12T17:33:26Z",
"published_ts": 1602524006,
"url": "https://twitter.com/dnsmichi/status/1315707159582322688"
},
"id": 1162909,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1305869184111435778/1315707159582322688",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:42Z"
},
{
"activity": {
"sentence": "Ed Mooney ♘ favorited a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/edmooney\">Ed Mooney ♘</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Ed Mooney ♘",
"photo": "https://webmention.io/avatar/pbs.twimg.com/86360e83ae6c99849784e5728694c73400722826af5513eace70b05e19cccb36.jpg",
"url": "https://twitter.com/edmooney"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1305869184111435778#favorited-by-2658021"
},
"id": 1162908,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1305869184111435778/2658021",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:41Z"
},
{
"activity": {
"sentence": "BallerinaNews favorited a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/ballerinanews\">BallerinaNews</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "like"
},
"data": {
"author": {
"name": "BallerinaNews",
"photo": "https://webmention.io/avatar/pbs.twimg.com/21921b3db197228f61929e04f6a9c05b5f749c755649f15d08be619a21bc4f2a.jpg",
"url": "https://twitter.com/ballerinanews"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1305869184111435778#favorited-by-1164400665847898112"
},
"id": 1162907,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1305869184111435778/1164400665847898112",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:41Z"
},
{
"activity": {
"sentence": "Christin favorited a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/christinfrohne\">Christin</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Christin",
"photo": "https://webmention.io/avatar/pbs.twimg.com/e0ce661c831da60ae5e6590beac80ad9f147fdc6e1dbb39ceb52726827a607ac.jpg",
"url": "https://twitter.com/christinfrohne"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1305869184111435778#favorited-by-1080485069003853825"
},
"id": 1162906,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1305869184111435778/1080485069003853825",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:40Z"
},
{
"activity": {
"sentence": "Jan Keromnes favorited a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/jankeromnes\">Jan Keromnes</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Jan Keromnes",
"photo": "https://webmention.io/avatar/pbs.twimg.com/e662855c1ac9febd01093841b0c52c08a64c4b52129aabd332e883e05573f250.jpg",
"url": "https://twitter.com/jankeromnes"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1305869184111435778#favorited-by-196316258"
},
"id": 1162905,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1305869184111435778/196316258",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:40Z"
},
{
"activity": {
"sentence": "Lorenzo Bettini favorited a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/lorenzo_bettini\">Lorenzo Bettini</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Lorenzo Bettini",
"photo": "https://webmention.io/avatar/pbs.twimg.com/582836197de7a44cd2cf85bdbe2b5fb2e8bd5b9c814ca0790a51cbb21614ac5e.jpg",
"url": "https://twitter.com/lorenzo_bettini"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1305869184111435778#favorited-by-442255157"
},
"id": 1162904,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1305869184111435778/442255157",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:39Z"
},
{
"activity": {
"sentence": "Michael Friedrich, go SLO ... conf 📈🇦🇹 favorited a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/dnsmichi\">Michael Friedrich, go SLO ... conf 📈🇦🇹</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "like"
},
"data": {
"author": {
"name": "Michael Friedrich, go SLO ... conf 📈🇦🇹",
"photo": "https://webmention.io/avatar/pbs.twimg.com/8170df0f645bbe7a47f1ada8dbd5fcd2eeed7b5b2cf59f4a491b03d3b02dd792.jpg",
"url": "https://twitter.com/dnsmichi"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1305869184111435778#favorited-by-118674790"
},
"id": 1162903,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1305869184111435778/118674790",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:39Z"
},
{
"activity": {
"sentence": "anarcher favorited a tweet https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"sentence_html": "<a href=\"https://twitter.com/anarcher\">anarcher</a> favorited a tweet <a href=\"https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/\">https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/</a>",
"type": "like"
},
"data": {
"author": {
"name": "anarcher",
"photo": "https://webmention.io/avatar/pbs.twimg.com/0fb260e493b916aa7279efd2afd87bb90a29c190db8788228e37462ba44d2c8d.png",
"url": "https://twitter.com/anarcher"
},
"content": "",
"name": "",
"published": "0001-01-01T00:00:00Z",
"published_ts": 0,
"url": "https://twitter.com/sheldon_hull/status/1305869184111435778#favorited-by-14733872"
},
"id": 1162902,
"private": false,
"source": "https://brid.gy/like/twitter/sheldon_hull/1305869184111435778/14733872",
"target": "https://www.sheldonhull.com/microblog/2020-08-28t01-16-incredible-setup-experience-with-gitpod/",
"verified": true,
"verified_date": "2021-05-19T01:12:38Z"
},
{
"activity": {
"sentence": "Very Proud Robot retweeted a tweet https://www.sheldonhull.com/microblog/go-r1-day-10/",
"sentence_html": "<a href=\"https://twitter.com/RobotProud\">Very Proud Robot</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/go-r1-day-10/\">https://www.sheldonhull.com/microblog/go-r1-day-10/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Very Proud Robot",
"photo": "https://webmention.io/avatar/pbs.twimg.com/4142cc3e37de881c8155e2a03d962fb5e470e1f6e175b6f88e63abbb24606509.jpg",
"url": "https://twitter.com/RobotProud"
},
"content": "Go R1 Day 10 // CLI tooling with autocomplete was fun to experiment with\n#100DaysOfCode #golang\nsheldonhull.com/microblog/go-r…",
"name": "",
"published": "2020-09-16T14:00:47Z",
"published_ts": 1600264847,
"url": "https://twitter.com/RobotProud/status/1306231560052658177"
},
"id": 1162901,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1306231537646686208/1306231560052658177",
"target": "https://www.sheldonhull.com/microblog/go-r1-day-10/",
"verified": true,
"verified_date": "2021-05-19T01:12:37Z"
},
{
"activity": {
"sentence": "Inferno retweeted a tweet https://www.sheldonhull.com/microblog/go-r1-day-10/",
"sentence_html": "<a href=\"https://twitter.com/theInfernobot\">Inferno</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/go-r1-day-10/\">https://www.sheldonhull.com/microblog/go-r1-day-10/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "Inferno",
"photo": "https://webmention.io/avatar/pbs.twimg.com/6adcb8be05cb83998f23fd29b6c9801731af25d96b185c6651c6901f3fdd948e.jpg",
"url": "https://twitter.com/theInfernobot"
},
"content": "Go R1 Day 10 // CLI tooling with autocomplete was fun to experiment with\n#100DaysOfCode #golang\nsheldonhull.com/microblog/go-r…",
"name": "",
"published": "2020-09-16T14:00:48Z",
"published_ts": 1600264848,
"url": "https://twitter.com/theInfernobot/status/1306231566075658240"
},
"id": 1162900,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1306231537646686208/1306231566075658240",
"target": "https://www.sheldonhull.com/microblog/go-r1-day-10/",
"verified": true,
"verified_date": "2021-05-19T01:12:37Z"
},
{
"activity": {
"sentence": "xael bot retweeted a tweet https://www.sheldonhull.com/microblog/go-r1-day-10/",
"sentence_html": "<a href=\"https://twitter.com/xaelbot\">xael bot</a> retweeted a tweet <a href=\"https://www.sheldonhull.com/microblog/go-r1-day-10/\">https://www.sheldonhull.com/microblog/go-r1-day-10/</a>",
"type": "repost"
},
"data": {
"author": {
"name": "xael bot",
"photo": "https://webmention.io/avatar/pbs.twimg.com/34b599aaab023587c9fbb4b1fdfe122aa646d05eecae0c2b316127be8630b187.png",
"url": "https://twitter.com/xaelbot"
},
"content": "Go R1 Day 10 // CLI tooling with autocomplete was fun to experiment with\n#100DaysOfCode #golang\nsheldonhull.com/microblog/go-r…",
"name": "",
"published": "2020-09-16T14:00:54Z",
"published_ts": 1600264854,
"url": "https://twitter.com/xaelbot/status/1306231591581159426"
},
"id": 1162899,
"private": false,
"source": "https://brid.gy/repost/twitter/sheldon_hull/1306231537646686208/1306231591581159426",
"target": "https://www.sheldonhull.com/microblog/go-r1-day-10/",
"verified": true,