-
Notifications
You must be signed in to change notification settings - Fork 0
/
microblog-posts.json
12448 lines (12448 loc) · 662 KB
/
microblog-posts.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
{
"data": {
"allMarkdownRemark": {
"nodes": [
{
"html": "<p>I’m blown away by this. I’ve been using no contract deliveries now a fair bit, but I’ve also been tipping more than I usually would because…pandemic!</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Because we normally only tip people we deal with directly and make eye contact with, we end up not tipping people doing no-contact deliveries. <a href=\"https://t.co/5CX82KivNd\">pic.twitter.com/5CX82KivNd</a></p>— Felix Salmon (@felixsalmon) <a href=\"https://twitter.com/felixsalmon/status/1244758087992520711?ref_src=twsrc%5Etfw\">March 30, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"excerpt": "<p>I’m blown away by this. I’ve been using no contract deliveries now a fair bit, but I’ve also been tipping more than I usually would because…pandemic!</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Because we normally only tip people we deal with directly and make eye contact with, we end up not tipping people doing no-contact deliveries. <a href=\"https://t.co/5CX82KivNd\">pic.twitter.com/5CX82KivNd</a></p>— Felix Salmon (@felixsalmon) <a href=\"https://twitter.com/felixsalmon/status/1244758087992520711?ref_src=twsrc%5Etfw\">March 30, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2020-03-31-im-blown-away-by-this-ive-been-using-no/"
},
"frontmatter": {
"date": "2020-03-31T13:12:24.939Z",
"photos": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1244977674902212608",
"https://twitter.com/CourierTest/status/1244977689913692161"
],
"templateKey": "microblog-post"
}
},
{
"html": "<p>Time to play the new <em>Control</em> DLC!</p>",
"excerpt": "<p>Time to play the new <em>Control</em> DLC!</p>",
"fields": {
"slug": "/2020-03-29-time-to-play-the-new-object-replacement/"
},
"frontmatter": {
"date": "2020-03-29T15:07:21.765Z",
"photos": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1244281735325593600"
],
"templateKey": "microblog-post"
}
},
{
"html": "<p>This isn’t wrong, and I have no idea how to explain that this is, in fact, fun.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I am still very happy for all of you who are enjoying animal crossing and I wish you all the absolute best but as a person who knows nothing about it, it truly seems like you all have been doing virtual chores for a sleepy raccoon that is somehow your landlord</p>— Jen Bartel (@heyjenbartel) <a href=\"https://twitter.com/heyjenbartel/status/1244140336194170880?ref_src=twsrc%5Etfw\">March 29, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"excerpt": "<p>This isn’t wrong, and I have no idea how to explain that this is, in fact, fun.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I am still very happy for all of you who are enjoying animal crossing and I wish you all the absolute best but as a person who knows nothing about it, it truly seems like you all have been doing virtual chores for a sleepy raccoon that is somehow your landlord</p>— Jen Bartel (@heyjenbartel) <a href=\"https://twitter.com/heyjenbartel/status/1244140336194170880?ref_src=twsrc%5Etfw\">March 29, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2020-03-29-this-isnt-wrong-and-i-have-no-idea-how/"
},
"frontmatter": {
"date": "2020-03-29T13:53:01.815Z",
"photos": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1244262994047008768"
],
"templateKey": "microblog-post"
}
},
{
"html": "<p>We watched the Steven Universe movie last night. It was fantastic! So many feelings and so many great songs.</p>",
"excerpt": "<p>We watched the Steven Universe movie last night. It was fantastic! So many feelings and so many great songs.</p>",
"fields": {
"slug": "/2020-03-29-we-watched-the-steven-universe-movie/"
},
"frontmatter": {
"date": "2020-03-29T13:47:01.440Z",
"photos": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1244261570923937793",
"https://twitter.com/CourierTest/status/1244261583347384321"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Can someone please just tell me what to buy for my Blue Yeti to let me type on my mechanical keyboard without annoying my coworkers? I keep trying to research but get overwhelmed fast.</p>",
"html": "<p>Can someone please just tell me what to buy for my Blue Yeti to let me type on my mechanical keyboard without annoying my coworkers? I keep trying to research but get overwhelmed fast.</p>",
"fields": {
"slug": "/2020-03-27-can-someone-please-just-tell-me-what-to/"
},
"frontmatter": {
"date": "2020-03-27T17:54:18.899Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1243599057618186240",
"https://twitter.com/CourierTest/status/1243599069156716544"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>It’s actually really easily to believe the accusation against Biden. He has had a reputation for being handsy and touching women inappropriately for a long time, of course it was just the tip of the iceberg. This one isn’t even remotely hard to believe.</p>",
"html": "<p>It’s actually really easily to believe the accusation against Biden. He has had a reputation for being handsy and touching women inappropriately for a long time, of course it was just the tip of the iceberg. This one isn’t even remotely hard to believe.</p>",
"fields": {
"slug": "/2020-03-27-its-actually-really-easily-to-believe/"
},
"frontmatter": {
"date": "2020-03-27T13:59:46.261Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1243539930711764995",
"https://twitter.com/CourierTest/status/1243539934885163010"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I feel like I’m overall coping alright with things right now, except that I’ve woken up with migraines three days this week. Thankfully I have meds for this, but it’s still been rough.</p>",
"html": "<p>I feel like I’m overall coping alright with things right now, except that I’ve woken up with migraines three days this week. Thankfully I have meds for this, but it’s still been rough.</p>",
"fields": {
"slug": "/2020-03-27-i-feel-like-im-overall-coping-alright/"
},
"frontmatter": {
"date": "2020-03-27T13:37:39.491Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1243534410386997249",
"https://twitter.com/CourierTest/status/1243534423913570304"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<figure><img src=\"/media/2020/03/ca0ebb5d-70b2-4ec5-a7a6-b6b0b3d10680.jpeg\" alt=\"\" class=\"u-photo\" /></figure>",
"html": "<figure><img src=\"/media/2020/03/ca0ebb5d-70b2-4ec5-a7a6-b6b0b3d10680.jpeg\" alt=\"\" class=\"u-photo\" /></figure>",
"fields": {
"slug": "/2020-03-26-drm2oz2axj/"
},
"frontmatter": {
"date": "2020-03-26T02:12:09.000Z",
"photos": [
"/media/2020/03/ca0ebb5d-70b2-4ec5-a7a6-b6b0b3d10680.jpeg"
],
"pinned": null,
"syndication": [
"https://www.instagram.com/p/B-LfyzigpiK/",
"https://twitter.com/mjmoriarity/status/1243001617152118786",
"https://twitter.com/CourierTest/status/1243001631718899713"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I didn’t get my house yet in Animal Crossing but I did catch a bunch of fish. Blathers isn’t here until tomorrow so my island is covered in aquariums.</p>",
"html": "<p>I didn’t get my house yet in Animal Crossing but I did catch a bunch of fish. Blathers isn’t here until tomorrow so my island is covered in aquariums.</p>",
"fields": {
"slug": "/2020-03-23-i-didnt-get-my-house-yet-in-animal/"
},
"frontmatter": {
"date": "2020-03-23T14:05:24.474Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1242091910052958208",
"https://twitter.com/CourierTest/status/1242091916365357057"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>WTB social safety nets</p>",
"html": "<p>WTB social safety nets</p>",
"fields": {
"slug": "/2020-03-18-wtb-social-safety-nets/"
},
"frontmatter": {
"date": "2020-03-18T21:35:18.037Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1240413418168954880",
"https://twitter.com/CourierTest/status/1240416854100901889"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>If you need something to laugh at right now, the most recent Monster Factory is a nice relief from everything going on.</p>\n<p><iframe width=\"480\" height=\"270\" src=\"https://www.youtube.com/embed/soAEaXiQDpg?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>",
"html": "<p>If you need something to laugh at right now, the most recent Monster Factory is a nice relief from everything going on.</p>\n<p><iframe width=\"480\" height=\"270\" src=\"https://www.youtube.com/embed/soAEaXiQDpg?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>",
"fields": {
"slug": "/2020-03-18-if-you-need-something-to-laugh-at-right/"
},
"frontmatter": {
"date": "2020-03-18T13:52:51.149Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1240276791534723075",
"https://twitter.com/CourierTest/status/1240276809561845760"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>If you’re bored during your self-quarantine, may I suggest watching <em>Castlevania</em> on Netflix? The third season dropped recently, and it’s a very good show.</p>",
"html": "<p>If you’re bored during your self-quarantine, may I suggest watching <em>Castlevania</em> on Netflix? The third season dropped recently, and it’s a very good show.</p>",
"fields": {
"slug": "/2020-03-14-if-youre-bored-during-your-self/"
},
"frontmatter": {
"date": "2020-03-14T21:23:44.319Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/CourierTest/status/1238941312847679489",
"https://twitter.com/mjmoriarity/status/1239208206800433153"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>YubiKey came today, and I think I’ve set up all my accounts. Only a handful actually support U2F, so the rest are using OTPs stored on the key. Would love to see more sites support security keys!</p>",
"html": "<p>YubiKey came today, and I think I’ve set up all my accounts. Only a handful actually support U2F, so the rest are using OTPs stored on the key. Would love to see more sites support security keys!</p>",
"fields": {
"slug": "/2020-03-14-yubikey-came-today-and-i-think-ive-set/"
},
"frontmatter": {
"date": "2020-03-14T20:03:51.765Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/CourierTest/status/1238920605765959682",
"https://twitter.com/mjmoriarity/status/1239208213058289667"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I know not everyone has the luxury, but if I got an email like this, I’d be quitting.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">.<a href=\"https://twitter.com/WSJ?ref_src=twsrc%5Etfw\">@wsj</a> wants to make sure nobody is having too much fun working from home <a href=\"https://t.co/hbxBU0qG54\">pic.twitter.com/hbxBU0qG54</a></p>— Ben Smith (@benyt) <a href=\"https://twitter.com/benyt/status/1238555167932506116?ref_src=twsrc%5Etfw\">March 13, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"html": "<p>I know not everyone has the luxury, but if I got an email like this, I’d be quitting.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">.<a href=\"https://twitter.com/WSJ?ref_src=twsrc%5Etfw\">@wsj</a> wants to make sure nobody is having too much fun working from home <a href=\"https://t.co/hbxBU0qG54\">pic.twitter.com/hbxBU0qG54</a></p>— Ben Smith (@benyt) <a href=\"https://twitter.com/benyt/status/1238555167932506116?ref_src=twsrc%5Etfw\">March 13, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2020-03-14-i-know-not-everyone-has-the-luxury-but/"
},
"frontmatter": {
"date": "2020-03-14T19:50:50.562Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/CourierTest/status/1238917351506051074"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I basically never want to travel, because traveling is terrible, but COVID-19 means I don’t seem like a weirdo for it.</p>",
"html": "<p>I basically never want to travel, because traveling is terrible, but COVID-19 means I don’t seem like a weirdo for it.</p>",
"fields": {
"slug": "/2020-03-09-i-basically-never-want-to-travel/"
},
"frontmatter": {
"date": "2020-03-09T18:52:21.410Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1237090747389816835",
"https://twitter.com/CourierTest/status/1237090755954556930"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Finally ordered a YubiKey for myself yesterday.</p>",
"html": "<p>Finally ordered a YubiKey for myself yesterday.</p>",
"fields": {
"slug": "/2020-03-09-finally-ordered-a-yubikey-for-myself/"
},
"frontmatter": {
"date": "2020-03-09T13:51:37.976Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1237015096955715585",
"https://twitter.com/CourierTest/status/1237015118208274432"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I got a replacement for my work laptop because the keyboard was busted, and I’m kinda bummed because I lost some good stickers.</p>",
"html": "<p>I got a replacement for my work laptop because the keyboard was busted, and I’m kinda bummed because I lost some good stickers.</p>",
"fields": {
"slug": "/2020-03-08-i-got-a-replacement-for-my-work-laptop/"
},
"frontmatter": {
"date": "2020-03-08T14:55:31.500Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1236668685403783168",
"https://twitter.com/CourierTest/status/1236668696883585024"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I really didn’t expect Biden to come out of Super Tuesday this well. I thought we could all see how much of a ding-a-ling he is, not even really a Democrat. But now we have to worry about him actually getting the nomination. Ugh.</p>",
"html": "<p>I really didn’t expect Biden to come out of Super Tuesday this well. I thought we could all see how much of a ding-a-ling he is, not even really a Democrat. But now we have to worry about him actually getting the nomination. Ugh.</p>",
"fields": {
"slug": "/2020-03-04-i-really-didnt-expect-biden-to-come-out/"
},
"frontmatter": {
"date": "2020-03-04T14:22:52.463Z",
"photos": null,
"pinned": null,
"syndication": null,
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Oh no I’ve been called out.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Backend devs: lol frontend devs love toolchain churn, how do you get anything done<br><br>Also Backend devs: Docker Vagrant Packer Kubernetes Linkerd Istio CloudFoundry gVisor kNative Firecracker Chaos Prometheus Ansible Juju Chef SaltStack Puppet CloudFormation Terraform Consul Vault</p>— swyx (@swyx) <a href=\"https://twitter.com/swyx/status/1234181016367063040?ref_src=twsrc%5Etfw\">March 1, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"html": "<p>Oh no I’ve been called out.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Backend devs: lol frontend devs love toolchain churn, how do you get anything done<br><br>Also Backend devs: Docker Vagrant Packer Kubernetes Linkerd Istio CloudFoundry gVisor kNative Firecracker Chaos Prometheus Ansible Juju Chef SaltStack Puppet CloudFormation Terraform Consul Vault</p>— swyx (@swyx) <a href=\"https://twitter.com/swyx/status/1234181016367063040?ref_src=twsrc%5Etfw\">March 1, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2020-03-02-oh-no-ive-been-called-out/"
},
"frontmatter": {
"date": "2020-03-02T06:59:43.511Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1234374801759686656",
"https://twitter.com/CourierTest/status/1235810668462231553"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I finished <em>The Witcher 3: Hearts of Stone</em> DLC last night. I absolutely loved it. I can’t figure out how to say more without spoiling, but it was my kind of story.</p>",
"html": "<p>I finished <em>The Witcher 3: Hearts of Stone</em> DLC last night. I absolutely loved it. I can’t figure out how to say more without spoiling, but it was my kind of story.</p>",
"fields": {
"slug": "/2020-02-28-i-finished-_the-witcher-3-hearts-of/"
},
"frontmatter": {
"date": "2020-02-28T14:53:53.945Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1233406929919082497",
"https://twitter.com/CourierTest/status/1233609207213064192"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Trying out a new thing where I walk to the library near my house and work from there everyday, even if it’s only for a little bit. I think taking walks and changing environment is good for me.</p>",
"html": "<p>Trying out a new thing where I walk to the library near my house and work from there everyday, even if it’s only for a little bit. I think taking walks and changing environment is good for me.</p>",
"fields": {
"slug": "/2020-02-25-trying-out-a-new-thing-where-i-walk-to/"
},
"frontmatter": {
"date": "2020-02-25T15:24:41.447Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1232327571582251008"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Oh good, it’s not just me.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">tfw you delay resolving a meeting conflict so long it's embarrassing to admit but one of the meetings gets rescheduled and you get to keep pretending you know how to use a calendar</p>— Will Larson (@Lethain) <a href=\"https://twitter.com/Lethain/status/1229999387599749121?ref_src=twsrc%5Etfw\">February 19, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"html": "<p>Oh good, it’s not just me.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">tfw you delay resolving a meeting conflict so long it's embarrassing to admit but one of the meetings gets rescheduled and you get to keep pretending you know how to use a calendar</p>— Will Larson (@Lethain) <a href=\"https://twitter.com/Lethain/status/1229999387599749121?ref_src=twsrc%5Etfw\">February 19, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2020-02-19-oh-good-its-not-just-me/"
},
"frontmatter": {
"date": "2020-02-19T22:05:44.350Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1230254656535662592"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Please come to Colorado!</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">The <a href=\"https://twitter.com/hashtag/TwentyFunny?src=hash&ref_src=twsrc%5Etfw\">#TwentyFunny</a> Fill Your Life With Laughter & Love Tour is kicking off in April and tickets go on sale THIS FRIDAY at noon local time! We can't wait to see y'all!<br> <br>More info & ticket links can be found here: <a href=\"https://t.co/QoBirpDp95\">https://t.co/QoBirpDp95</a> <a href=\"https://t.co/YB9cj5lh1e\">pic.twitter.com/YB9cj5lh1e</a></p>— The McElroy Family (@McElroyFamily) <a href=\"https://twitter.com/McElroyFamily/status/1230140732792401927?ref_src=twsrc%5Etfw\">February 19, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"html": "<p>Please come to Colorado!</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">The <a href=\"https://twitter.com/hashtag/TwentyFunny?src=hash&ref_src=twsrc%5Etfw\">#TwentyFunny</a> Fill Your Life With Laughter & Love Tour is kicking off in April and tickets go on sale THIS FRIDAY at noon local time! We can't wait to see y'all!<br> <br>More info & ticket links can be found here: <a href=\"https://t.co/QoBirpDp95\">https://t.co/QoBirpDp95</a> <a href=\"https://t.co/YB9cj5lh1e\">pic.twitter.com/YB9cj5lh1e</a></p>— The McElroy Family (@McElroyFamily) <a href=\"https://twitter.com/McElroyFamily/status/1230140732792401927?ref_src=twsrc%5Etfw\">February 19, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2020-02-19-please-come-to-colorado/"
},
"frontmatter": {
"date": "2020-02-19T15:11:05.242Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/CourierTest/status/1238877123999195136"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>These are some good tips! Go’s JSON marshaling is powerful, but not so simple. I wish some of these behaviors were documented more clearly and all in one place.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">A tweet-thread synopsis of things about Go's JSON marshaling/encoding behavior that have surprised or confused me at some point over the years... <a href=\"https://twitter.com/hashtag/golang?src=hash&ref_src=twsrc%5Etfw\">#golang</a></p>— Alex Edwards (@ajmedwards) <a href=\"https://twitter.com/ajmedwards/status/1228643394089603072?ref_src=twsrc%5Etfw\">February 15, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"html": "<p>These are some good tips! Go’s JSON marshaling is powerful, but not so simple. I wish some of these behaviors were documented more clearly and all in one place.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">A tweet-thread synopsis of things about Go's JSON marshaling/encoding behavior that have surprised or confused me at some point over the years... <a href=\"https://twitter.com/hashtag/golang?src=hash&ref_src=twsrc%5Etfw\">#golang</a></p>— Alex Edwards (@ajmedwards) <a href=\"https://twitter.com/ajmedwards/status/1228643394089603072?ref_src=twsrc%5Etfw\">February 15, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2020-02-18-these-are-some-good-tips-gos-json/"
},
"frontmatter": {
"date": "2020-02-18T16:52:40.564Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1229813253900918784",
"https://twitter.com/CourierTest/status/1234013484150640640"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<figure><img src=\"/media/2020/02/d0606531-6a45-4c7a-b504-02f0b33744be.jpeg\" alt=\"\" class=\"u-photo\" /></figure>",
"html": "<figure><img src=\"/media/2020/02/d0606531-6a45-4c7a-b504-02f0b33744be.jpeg\" alt=\"\" class=\"u-photo\" /></figure>",
"fields": {
"slug": "/2020-02-07-west6vsmdi/"
},
"frontmatter": {
"date": "2020-02-07T00:47:12.000Z",
"photos": [
"/media/2020/02/d0606531-6a45-4c7a-b504-02f0b33744be.jpeg"
],
"pinned": null,
"syndication": [
"https://www.instagram.com/p/B8Pv6pwFUHA/",
"https://twitter.com/mjmoriarity/status/1226296578475880449"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>The Good Place finale messed me up good. What a wonderful show.</p>",
"html": "<p>The Good Place finale messed me up good. What a wonderful show.</p>",
"fields": {
"slug": "/2020-02-01-the-good-place-finale-messed-me-up-good/"
},
"frontmatter": {
"date": "2020-02-01T03:43:43.453Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1223453609649528832"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>People talk about how consistent Bernie’s positions have been over decades, but it honestly bums me out that we’ve progressed so little as a society that those same positions are still radical.</p>\n<p>Bernie’s positions from the 90’s should look backwards by today’s standards.</p>",
"html": "<p>People talk about how consistent Bernie’s positions have been over decades, but it honestly bums me out that we’ve progressed so little as a society that those same positions are still radical.</p>\n<p>Bernie’s positions from the 90’s should look backwards by today’s standards.</p>",
"fields": {
"slug": "/2020-01-24-people-talk-about-how-consistent/"
},
"frontmatter": {
"date": "2020-01-24T15:13:23.720Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1220728177024282625"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I don’t really like attending tech conferences that much, but I do really like stickers and socks so what do I do?</p>",
"html": "<p>I don’t really like attending tech conferences that much, but I do really like stickers and socks so what do I do?</p>",
"fields": {
"slug": "/2020-01-24-i-dont-really-like-attending-tech/"
},
"frontmatter": {
"date": "2020-01-24T14:54:03.037Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1220723378937569282",
"https://twitter.com/CourierTest/status/1237536315165442050"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p><em>Archive of our Own</em> is an incredible feat of efficiency and I am actually amazed it exists.</p>\n<p><a href=\"https://twitter.com/Felliniphile/status/1219117883785129991\">https://twitter.com/Felliniphile/status/1219117883785129991</a></p>",
"html": "<p><em>Archive of our Own</em> is an incredible feat of efficiency and I am actually amazed it exists.</p>\n<p><a href=\"https://twitter.com/Felliniphile/status/1219117883785129991\">https://twitter.com/Felliniphile/status/1219117883785129991</a></p>",
"fields": {
"slug": "/2020-01-20-_archive-of-our-own_-is-an-incredible/"
},
"frontmatter": {
"date": "2020-01-20T15:29:19.489Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1219282634745864192",
"https://twitter.com/CourierTest/status/1229485593375064064"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Just finished the story for Control. That is one of the coolest games I’ve played in a while.</p>",
"html": "<p>Just finished the story for Control. That is one of the coolest games I’ve played in a while.</p>",
"fields": {
"slug": "/2020-01-15-just-finished-the-story-for-control/"
},
"frontmatter": {
"date": "2020-01-15T05:07:29.000Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1217314144304562176",
"https://twitter.com/CourierTest/status/1229487397575909378",
"https://twitter.com/CourierTest/status/1239232133631102976"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I know I’m turning this year because I can’t stop talking about how quiet my new garage door opener is (but it’s so quiet!)</p>",
"html": "<p>I know I’m turning this year because I can’t stop talking about how quiet my new garage door opener is (but it’s so quiet!)</p>",
"fields": {
"slug": "/2020-01-14-i-know-im-turning-this-year-because-i/"
},
"frontmatter": {
"date": "2020-01-14T04:41:25.149Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1216945202302029824"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I did it, I downloaded Control. Let’s do this.</p>",
"html": "<p>I did it, I downloaded Control. Let’s do this.</p>",
"fields": {
"slug": "/2020-01-11-i-did-it-i-downloaded-control-lets-do/"
},
"frontmatter": {
"date": "2020-01-11T19:11:20.001Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1216076989099962368",
"https://twitter.com/CourierTest/status/1229487690220892160",
"https://twitter.com/CourierTest/status/1239205462526042113"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Okay, this ADGQ run of <em>Control</em> has made me really want to play this game. This looks so rad.</p>",
"html": "<p>Okay, this ADGQ run of <em>Control</em> has made me really want to play this game. This looks so rad.</p>",
"fields": {
"slug": "/2020-01-11-okay-this-adgq-run-of-_control_-has/"
},
"frontmatter": {
"date": "2020-01-11T07:21:42.398Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1215898563542052864",
"https://twitter.com/CourierTest/status/1229488219491721216"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Opened my first PR of the new year, hello 2020!</p>",
"html": "<p>Opened my first PR of the new year, hello 2020!</p>",
"fields": {
"slug": "/2020-01-06-opened-my-first-pr-of-the-new-year/"
},
"frontmatter": {
"date": "2020-01-06T16:15:53.496Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1214221785572368385",
"https://twitter.com/CourierTest/status/1229489368462585856"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Haunted Doll Watch!</p>\n<figure><img src=\"/media/2020/01/d2790040-388b-48dd-a014-1df70a37f8ba.jpeg\" alt=\"\" class=\"u-photo\" /></figure>\n<figure><img src=\"/media/2020/01/d2d5ff21-1f6a-49f3-93f7-08362ae5f566.jpeg\" alt=\"\" class=\"u-photo\" /></figure>\n<figure><img src=\"/media/2020/01/e8cb5b58-083b-4892-b901-44c795c95eb1.jpeg\" alt=\"\" class=\"u-photo\" /></figure>",
"html": "<p>Haunted Doll Watch!</p>\n<figure><img src=\"/media/2020/01/d2790040-388b-48dd-a014-1df70a37f8ba.jpeg\" alt=\"\" class=\"u-photo\" /></figure>\n<figure><img src=\"/media/2020/01/d2d5ff21-1f6a-49f3-93f7-08362ae5f566.jpeg\" alt=\"\" class=\"u-photo\" /></figure>\n<figure><img src=\"/media/2020/01/e8cb5b58-083b-4892-b901-44c795c95eb1.jpeg\" alt=\"\" class=\"u-photo\" /></figure>",
"fields": {
"slug": "/2020-01-04-haunted-doll-watch/"
},
"frontmatter": {
"date": "2020-01-04T00:50:54.000Z",
"photos": [
"/media/2020/01/d2790040-388b-48dd-a014-1df70a37f8ba.jpeg",
"/media/2020/01/d2d5ff21-1f6a-49f3-93f7-08362ae5f566.jpeg",
"/media/2020/01/e8cb5b58-083b-4892-b901-44c795c95eb1.jpeg"
],
"pinned": null,
"syndication": [
"https://www.instagram.com/p/B64NUAHlzJc/",
"https://twitter.com/mjmoriarity/status/1213691026784735232"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I also got a scarf today. 2020 is the year of warm necks.</p>",
"html": "<p>I also got a scarf today. 2020 is the year of warm necks.</p>",
"fields": {
"slug": "/2020-01-01-i-also-got-a-scarf-today-2020-is-the/"
},
"frontmatter": {
"date": "2020-01-01T23:36:36.890Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1212519804118032384"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I went to UNIQLO and got some of those sweatpants that look like jeans (and have all the same pockets). This is the energy I’m bringing into the new year.</p>",
"html": "<p>I went to UNIQLO and got some of those sweatpants that look like jeans (and have all the same pockets). This is the energy I’m bringing into the new year.</p>",
"fields": {
"slug": "/2020-01-01-i-went-to-uniqlo-and-got-some-of-those/"
},
"frontmatter": {
"date": "2020-01-01T21:48:21.994Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1212492646410645505",
"https://twitter.com/CourierTest/status/1213345030674366465"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Finally went through my mail and found a letter from a neighbor inviting us to join NextDoor. There’s something so anachronistic about that. Also I do <em>not</em> want to know what’s going on on there.</p>",
"html": "<p>Finally went through my mail and found a letter from a neighbor inviting us to join NextDoor. There’s something so anachronistic about that. Also I do <em>not</em> want to know what’s going on on there.</p>",
"fields": {
"slug": "/2020-01-01-finally-went-through-my-mail-and-found/"
},
"frontmatter": {
"date": "2020-01-01T20:13:58.153Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1212468755902517250"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Kieran is spot-on here. Every single software job I’ve had has required me to grow into it. I wasn’t fully qualified for the work when I started, but you get there from hands on experience. Go for the job you want!</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Also if you feel you couldn’t possibly be an engineer at Apple take note I went from web developer to app developer to working at Apple on Xcode in the space of three years. Best advice I can offer is to give people a chance and find a good mentor 👍</p>— Kieran Senior (@kieransenior) <a href=\"https://twitter.com/kieransenior/status/1212461756330561536?ref_src=twsrc%5Etfw\">January 1, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"html": "<p>Kieran is spot-on here. Every single software job I’ve had has required me to grow into it. I wasn’t fully qualified for the work when I started, but you get there from hands on experience. Go for the job you want!</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Also if you feel you couldn’t possibly be an engineer at Apple take note I went from web developer to app developer to working at Apple on Xcode in the space of three years. Best advice I can offer is to give people a chance and find a good mentor 👍</p>— Kieran Senior (@kieransenior) <a href=\"https://twitter.com/kieransenior/status/1212461756330561536?ref_src=twsrc%5Etfw\">January 1, 2020</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2020-01-01-kieran-is-spot-on-here-every-single/"
},
"frontmatter": {
"date": "2020-01-01T20:11:29.796Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1212468220059254784"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>New year, new jeans!</p>\n<p>Mine have sooooo many holes.</p>",
"html": "<p>New year, new jeans!</p>\n<p>Mine have sooooo many holes.</p>",
"fields": {
"slug": "/2020-01-01-new-year-new-jeans-mine-have-sooooo/"
},
"frontmatter": {
"date": "2020-01-01T19:49:33.736Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1212462690037194752"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Haven’t finished it yet but book of the year for 2019 goes to <em>Steel Crow Saga</em> for sure. It has everything! <a href=\"https://twitter.com/NotLikeFreddy\">Paul Krueger</a> really nailed it, and you should all buy it and read it.</p>",
"html": "<p>Haven’t finished it yet but book of the year for 2019 goes to <em>Steel Crow Saga</em> for sure. It has everything! <a href=\"https://twitter.com/NotLikeFreddy\">Paul Krueger</a> really nailed it, and you should all buy it and read it.</p>",
"fields": {
"slug": "/2020-01-01-havent-finished-it-yet-but-book-of-the/"
},
"frontmatter": {
"date": "2020-01-01T19:27:23.762Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1212455777459294208"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>For me, 2019 was the year of The Adventure Zone. Never knew I could feel so strongly about a story. Thank you McElroys: you created something truly beautiful.</p>",
"html": "<p>For me, 2019 was the year of The Adventure Zone. Never knew I could feel so strongly about a story. Thank you McElroys: you created something truly beautiful.</p>",
"fields": {
"slug": "/2020-01-01-for-me-2019-was-the-year-of-the/"
},
"frontmatter": {
"date": "2020-01-01T01:22:16.719Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1212182783608545280"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I’m off work for the next two weeks and it feels very weird.</p>",
"html": "<p>I’m off work for the next two weeks and it feels very weird.</p>",
"fields": {
"slug": "/2019-12-21-im-off-work-for-the-next-two-weeks-and/"
},
"frontmatter": {
"date": "2019-12-21T16:00:16.233Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1208419555703308294"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Kinda wild to see the extremely different reactions to Star Wars from folks on my timeline. This is going to be a very polarizing movie (I haven’t seen this one).</p>",
"html": "<p>Kinda wild to see the extremely different reactions to Star Wars from folks on my timeline. This is going to be a very polarizing movie (I haven’t seen this one).</p>",
"fields": {
"slug": "/2019-12-20-kinda-wild-to-see-the-extremely/"
},
"frontmatter": {
"date": "2019-12-20T20:50:12.476Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1208129363180310528"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Day 18 of Advent of Code just absolutely wrecked me. I <a href=\"https://github.com/mjm/advent-of-code-2019/blob/master/day18/map.go\">got there eventually</a>, but I really struggled with this one.</p>",
"html": "<p>Day 18 of Advent of Code just absolutely wrecked me. I <a href=\"https://github.com/mjm/advent-of-code-2019/blob/master/day18/map.go\">got there eventually</a>, but I really struggled with this one.</p>",
"fields": {
"slug": "/2019-12-20-day-18-of-advent-of-code-just/"
},
"frontmatter": {
"date": "2019-12-20T04:01:26.457Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1207875681822003206"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>If I make it through these holidays without emotionally imploding it will be a miracle. Please just let it be January already.</p>",
"html": "<p>If I make it through these holidays without emotionally imploding it will be a miracle. Please just let it be January already.</p>",
"fields": {
"slug": "/2019-12-18-if-i-make-it-through-these-holidays/"
},
"frontmatter": {
"date": "2019-12-18T05:09:39.027Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1207167832259092481"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I forgot that Drafts for Mac got updated with Actions support. OMG it’s so good! They all synced from my phone. It’s like magic.</p>",
"html": "<p>I forgot that Drafts for Mac got updated with Actions support. OMG it’s so good! They all synced from my phone. It’s like magic.</p>",
"fields": {
"slug": "/2019-12-18-i-forgot-that-drafts-for-mac-got/"
},
"frontmatter": {
"date": "2019-12-18T04:42:14.974Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1207161015198081024"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>What a blast! Spending the evening fixing my Node app to actually work with Node 12. I guess I had to leave Node 8 eventually.</p>",
"html": "<p>What a blast! Spending the evening fixing my Node app to actually work with Node 12. I guess I had to leave Node 8 eventually.</p>",
"fields": {
"slug": "/2019-12-18-what-a-blast-spending-the-evening/"
},
"frontmatter": {
"date": "2019-12-18T04:27:04.983Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1207157769893113857"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>We binged all of season three of the Dragon Prince last night! Love this show, hope there’s a fourth season coming.</p>",
"html": "<p>We binged all of season three of the Dragon Prince last night! Love this show, hope there’s a fourth season coming.</p>",
"fields": {
"slug": "/2019-12-15-we-binged-all-of-season-three-of-the/"
},
"frontmatter": {
"date": "2019-12-15T15:57:45.392Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1206243735505260544"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Started a new work project this week, an internal docs site, and it’s taking all of my restraint to not work on it more this weekend.</p>",
"html": "<p>Started a new work project this week, an internal docs site, and it’s taking all of my restraint to not work on it more this weekend.</p>",
"fields": {
"slug": "/2019-12-14-started-a-new-work-project-this-week-an/"
},
"frontmatter": {
"date": "2019-12-14T18:26:03.735Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1205918587388477441",
"https://twitter.com/CourierTest/status/1207138043808763905"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I fell way behind on Advent of Code while I was in San Francisco last week, so I’ve gotta catch back up this weekend.</p>",
"html": "<p>I fell way behind on Advent of Code while I was in San Francisco last week, so I’ve gotta catch back up this weekend.</p>",
"fields": {
"slug": "/2019-12-14-i-fell-way-behind-on-advent-of-code/"
},
"frontmatter": {
"date": "2019-12-14T18:13:40.247Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1205915597617283072"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I got through about half of the performance reviews I needed to write before the deadline so that’s pretty good, right?</p>",
"html": "<p>I got through about half of the performance reviews I needed to write before the deadline so that’s pretty good, right?</p>",
"fields": {
"slug": "/2019-12-14-i-got-through-about-half-of-the/"
},
"frontmatter": {
"date": "2019-12-14T04:52:42.583Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1205713993635024896"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>My Lyft driver is listening to AM radio and I honestly forgot that was a thing.</p>",
"html": "<p>My Lyft driver is listening to AM radio and I honestly forgot that was a thing.</p>",
"fields": {
"slug": "/2019-12-10-my-lyft-driver-is-listening-to-am-radio/"
},
"frontmatter": {
"date": "2019-12-10T13:20:14.196Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1204392272613130242"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Coming to SF to see other Stripes in person so let’s kick that social anxiety into <em>high gear</em>.</p>",
"html": "<p>Coming to SF to see other Stripes in person so let’s kick that social anxiety into <em>high gear</em>.</p>",
"fields": {
"slug": "/2019-12-10-coming-to-sf-to-see-other-stripes-in/"
},
"frontmatter": {
"date": "2019-12-10T13:13:01.617Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1204389274918895622"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I love that my dogs chase each other around the backyard, it’s super cute, but really I just want them to take a dump so I can go back inside to the warm place.</p>",
"html": "<p>I love that my dogs chase each other around the backyard, it’s super cute, but really I just want them to take a dump so I can go back inside to the warm place.</p>",
"fields": {
"slug": "/2019-12-10-i-love-that-my-dogs-chase-each-other/"
},
"frontmatter": {
"date": "2019-12-10T05:20:19.396Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1204271486166392833"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Looks like other people are publicly posting their solutions, so I made my Advent of Code <a href=\"https://github.com/mjm/advent-of-code-2019\">repository</a> public.</p>",
"html": "<p>Looks like other people are publicly posting their solutions, so I made my Advent of Code <a href=\"https://github.com/mjm/advent-of-code-2019\">repository</a> public.</p>",
"fields": {
"slug": "/2019-12-09-looks-like-other-people-are-publicly/"
},
"frontmatter": {
"date": "2019-12-09T06:33:07.167Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1203927959574216704",
"https://twitter.com/CourierTest/status/1207155476326043648"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>I decided to start Advent of Code a bit late, got through the first five days yesterday, finishing catching up today.</p>",
"html": "<p>I decided to start Advent of Code a bit late, got through the first five days yesterday, finishing catching up today.</p>",
"fields": {
"slug": "/2019-12-08-i-decided-to-start-advent-of-code-a-bit/"
},
"frontmatter": {
"date": "2019-12-08T17:41:51.685Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1203733177560256512"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Genius Bar was able to just clean my sad MacBook keys and they seem all better, so I’m happy to not have to leave them my computer for a week. And I’ve got another year before they won’t fix it for free in case it happens again.</p>",
"html": "<p>Genius Bar was able to just clean my sad MacBook keys and they seem all better, so I’m happy to not have to leave them my computer for a week. And I’ve got another year before they won’t fix it for free in case it happens again.</p>",
"fields": {
"slug": "/2019-11-30-genius-bar-was-able-to-just-clean-my/"
},
"frontmatter": {
"date": "2019-11-30T22:05:40.530Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1200900544916684800"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Guess I just don’t exist then.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">If you’ve ever said, “OK, boomer”... I guarantee you’ve never paid the mortgage.</p>— Robert J. O'Neill (@mchooyah) <a href=\"https://twitter.com/mchooyah/status/1199503147674324992?ref_src=twsrc%5Etfw\">November 27, 2019</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"html": "<p>Guess I just don’t exist then.</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">If you’ve ever said, “OK, boomer”... I guarantee you’ve never paid the mortgage.</p>— Robert J. O'Neill (@mchooyah) <a href=\"https://twitter.com/mchooyah/status/1199503147674324992?ref_src=twsrc%5Etfw\">November 27, 2019</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2019-11-28-guess-i-just-dont-exist-then/"
},
"frontmatter": {
"date": "2019-11-28T14:50:46.330Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1200066298878672896",
"https://twitter.com/CourierTest/status/1200438200621129730"
],
"templateKey": "microblog-post"
}
},
{
"excerpt": "<p>Seriously Apple? How many international issues can you be on the wrong side of?</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Apple changing its maps inside Russia to make Crimea part of Russia is a huge scandal. Regionalization of facts is unacceptable appeasement. <a href=\"https://t.co/UWqWYpqDvZ\">https://t.co/UWqWYpqDvZ</a></p>— Garry Kasparov (@Kasparov63) <a href=\"https://twitter.com/Kasparov63/status/1199817870840127490?ref_src=twsrc%5Etfw\">November 27, 2019</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"html": "<p>Seriously Apple? How many international issues can you be on the wrong side of?</p>\n<p><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Apple changing its maps inside Russia to make Crimea part of Russia is a huge scandal. Regionalization of facts is unacceptable appeasement. <a href=\"https://t.co/UWqWYpqDvZ\">https://t.co/UWqWYpqDvZ</a></p>— Garry Kasparov (@Kasparov63) <a href=\"https://twitter.com/Kasparov63/status/1199817870840127490?ref_src=twsrc%5Etfw\">November 27, 2019</a></blockquote>\n<script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n</p>",
"fields": {
"slug": "/2019-11-28-seriously-apple-how-many-international/"
},
"frontmatter": {
"date": "2019-11-28T14:25:04.471Z",
"photos": null,
"pinned": null,
"syndication": [
"https://twitter.com/mjmoriarity/status/1200060000091029504",
"https://twitter.com/CourierTest/status/1201052204020293638"
],
"templateKey": "microblog-post"
}
},
{