-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.json
2172 lines (2033 loc) · 426 KB
/
feed.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
{
"version": "https://jsonfeed.org/version/1",
"title": "Adam Keys is Linking",
"icon": "https://micro.blog/therealadam/avatar.jpg",
"home_page_url": "https://therealadam.micro.blog/",
"feed_url": "https://therealadam.micro.blog/feed.json",
"items": [
{
"id": "http://therealadam.micro.blog/2024/04/08/trim-the-attention.html",
"title": "Trim the attention sails",
"content_html": "<p>In America, the 2024 election cycle is unlikely to amuse <em>anyone</em>. Maybe this is a rallying point for “unifying” the country: a near-universal loathing of our politicians, how they get themselves elected, and the outcomes they deliver to us. Let alone the new media that reports on them.</p>\n<p>Ahead of the inevitable hell-cycle, I’ve trimmed my attention sails a bit. The general idea is to remove feeds and notifications from my daily routine which are monetized primarily by writing doom-y, grab-y headlines. I’m looking at you in particular, <em>New York Times</em>. But it applies to just about everything with headlines. I’ve disabled all notifications from <em>The Economist</em> and Apple News. I read them once a week. That’s plenty.</p>\n<p>Unrelated to the election, I deleted the Twitter and Instagram apps. The web app is mostly equivalent in Twitter’s case, no loss there. Instagram’s mobile web app is surprisingly mediocre. The point, in both cases, is to put a few more steps, a bit more friction, between me and randomly scrolling an algorithmic, attention-hungry feed. I’ve since found that the friction of loading these two as web apps is <em>great</em>. I do indeed look at them far, far less. On the other hand, their web apps are intentionally just-okay. It seems to me that any organization that can put together an excellent iOS app should be able to do the same on mobile web. Reader, let me tell you, they don’t.</p>\n<p>I found the settings in Lyft and DoorDash that prevent them from sending advertisements-as-push-notifications. They do exist! Highly recommended.</p>\n<p>Mute lists, they’re also fantastic. All the names and teams and keywords that tend to mean “here’s a post about the political horse-race” are scrubbed from my timeline. Even better, I can see when they’re scrubbed and dip in to see if things are as unproductive as I remember. (Thanks for that little detail, <a href=\"https://tapbots.com/ivory/\">Ivory</a>.)</p>\n<p>Previously: <a href=\"https://therealadam.com/2022/12/27/think-your-thoughts.html\">Think Your Thoughts</a>.</p>\n",
"content_text": "In America, the 2024 election cycle is unlikely to amuse _anyone_. Maybe this is a rallying point for “unifying” the country: a near-universal loathing of our politicians, how they get themselves elected, and the outcomes they deliver to us. Let alone the new media that reports on them.\n\nAhead of the inevitable hell-cycle, I’ve trimmed my attention sails a bit. The general idea is to remove feeds and notifications from my daily routine which are monetized primarily by writing doom-y, grab-y headlines. I’m looking at you in particular, _New York Times_. But it applies to just about everything with headlines. I’ve disabled all notifications from _The Economist_ and Apple News. I read them once a week. That’s plenty.\n\nUnrelated to the election, I deleted the Twitter and Instagram apps. The web app is mostly equivalent in Twitter’s case, no loss there. Instagram’s mobile web app is surprisingly mediocre. The point, in both cases, is to put a few more steps, a bit more friction, between me and randomly scrolling an algorithmic, attention-hungry feed. I’ve since found that the friction of loading these two as web apps is _great_. I do indeed look at them far, far less. On the other hand, their web apps are intentionally just-okay. It seems to me that any organization that can put together an excellent iOS app should be able to do the same on mobile web. Reader, let me tell you, they don’t.\n\nI found the settings in Lyft and DoorDash that prevent them from sending advertisements-as-push-notifications. They do exist! Highly recommended.\n\nMute lists, they’re also fantastic. All the names and teams and keywords that tend to mean “here’s a post about the political horse-race” are scrubbed from my timeline. Even better, I can see when they’re scrubbed and dip in to see if things are as unproductive as I remember. (Thanks for that little detail, [Ivory](https://tapbots.com/ivory/).)\n\nPreviously: [Think Your Thoughts](https://therealadam.com/2022/12/27/think-your-thoughts.html).\n\n",
"date_published": "2024-04-08T09:04:58-07:00",
"url": "https://therealadam.micro.blog/2024/04/08/trim-the-attention.html"
},
{
"id": "http://therealadam.micro.blog/2024/04/06/detroits-airport-dtw.html",
"content_html": "<p>Detroit’s airport (DTW) is…kinda decent? It’s got a monorail and a light show set to songs of Motown. At the very least, it’s not a bad coffee shop? 🙃</p>\n<!-- raw HTML omitted -->\n",
"content_text": "Detroit’s airport (DTW) is…kinda decent? It’s got a monorail and a light show set to songs of Motown. At the very least, it’s not a bad coffee shop? 🙃\n\n<img src=\"https://therealadam.com/uploads/2024/image.jpg\" width=\"600\" height=\"450\" alt=\"\">\n",
"date_published": "2024-04-06T07:59:24-07:00",
"url": "https://therealadam.micro.blog/2024/04/06/detroits-airport-dtw.html",
"tags": ["Travel"]
},
{
"id": "http://therealadam.micro.blog/2024/03/31/blogs-wereare-a.html",
"title": "Blogs were/are a fun moment",
"content_html": "<p>Manuel Moreale, <a href=\"https://manuelmoreale.com/@/page/EMdQMyHxCynwUzZ2\">Why I write</a>:</p>\n<blockquote>\n<p>But the reason why I started is long gone at this point. I started the blog as some sort of public accountability tool and it’s now everything but that. I don’t write to be accountable. I probably should.</p>\n</blockquote>\n<p>Manuel asks a <a href=\"https://manuelmoreale.com/pb-manton-reece\">lot</a> <a href=\"https://manuelmoreale.com/pb-chris-coyer\">of</a> <a href=\"https://manuelmoreale.com/pb-taylor-troesh\">folks</a> <a href=\"https://manuelmoreale.com/pb-toby-shorin\">about</a> <a href=\"https://manuelmoreale.com/pb-cassidy-williams\">why</a> <a href=\"https://manuelmoreale.com/pb-jim-nielsen\">they</a> <a href=\"https://manuelmoreale.com/pb-tom-macwright\">started</a> <a href=\"https://manuelmoreale.com/pb-derek-sivers\">writing</a> their blogs. It’s a great question! Some folks want to get weird, others can’t not write and putting it online as good as anything, still others want to connect with a community.</p>\n<p>That last one, connecting with a community, is closest to my answer. I started because there was so much excitement, energy, and connection in the early 2000s blogs. It was a real scene. And, plenty of invention! Before there was centralized social media and web 2.0 there was decentralized blogging. An earnest attempt to take the technology of peer-to-peer file sharing and build something besides music sharing on it. It was a fun moment.</p>\n",
"content_text": "Manuel Moreale, [Why I write](https://manuelmoreale.com/@/page/EMdQMyHxCynwUzZ2):\n\n> But the reason why I started is long gone at this point. I started the blog as some sort of public accountability tool and it’s now everything but that. I don’t write to be accountable. I probably should.\n\nManuel asks a [lot](https://manuelmoreale.com/pb-manton-reece) [of](https://manuelmoreale.com/pb-chris-coyer) [folks](https://manuelmoreale.com/pb-taylor-troesh) [about](https://manuelmoreale.com/pb-toby-shorin) [why](https://manuelmoreale.com/pb-cassidy-williams) [they](https://manuelmoreale.com/pb-jim-nielsen) [started](https://manuelmoreale.com/pb-tom-macwright) [writing](https://manuelmoreale.com/pb-derek-sivers) their blogs. It’s a great question! Some folks want to get weird, others can’t not write and putting it online as good as anything, still others want to connect with a community.\n\nThat last one, connecting with a community, is closest to my answer. I started because there was so much excitement, energy, and connection in the early 2000s blogs. It was a real scene. And, plenty of invention! Before there was centralized social media and web 2.0 there was decentralized blogging. An earnest attempt to take the technology of peer-to-peer file sharing and build something besides music sharing on it. It was a fun moment.\n\n",
"date_published": "2024-03-31T09:42:27-07:00",
"url": "https://therealadam.micro.blog/2024/03/31/blogs-wereare-a.html",
"tags": ["Creativity"]
},
{
"id": "http://therealadam.micro.blog/2024/03/13/collective-flow.html",
"title": "Collective flow",
"content_html": "<p>Dave Rupert, <a href=\"https://daverupert.com/2024/01/play-at-work/\">Play at work</a>:</p>\n<blockquote>\n<p>I’ve talked about this before in the context of prototyping and play and how we worked at Paravel. It’s a lot like playing baseball; each member of the team showing up to practice, volleying work (in screenshots, short videos, or demos), pushing changes, communicating thoughts and challenges in the moment outside the confines of slotted meeting times. Me and my coworkers, having a catch.</p>\n</blockquote>\n<p>Several years ago, when I was doing improv, I was rehearsing for a musical, of all things. At the same time we were getting started with table reads and gel’ing as a cast, two other shows were rehearsing in the same theater. One show was about to open, very much having their thing dialed in. Another cast was somewhere in the middle, having figured out what they were about but still trying to get the execution just right. Everywhere in the theatre, there was creation and exploration energy and it was one of the most awesome things I’ve done. This despite not liking musical theater much!</p>\n<hr>\n<p>I don’t like the idea of “return to office” and I don’t think you could make it work anyway. The social momentum that kept a critical mass of people in one office has been broken, you can’t put that toothpaste back in the tube.</p>\n<p>That said, I have yet to feel that same energy in remote work that I did in a local theatre on rehearsal night while various groups were <em>making</em> something <em>together</em>, in the <em>moment</em>, and iterating on it as quickly as they could share a glance or read through a scene.</p>\n<p>I bet <em>some</em> teams have figured out how to feel this way in remote/async setups. But, it feels like most are still running the old in-person playbook that we learned, and sometimes thrived with, over the past years and decades of our careers.</p>\n",
"content_text": "Dave Rupert, [Play at work](https://daverupert.com/2024/01/play-at-work/):\n\n> I’ve talked about this before in the context of prototyping and play and how we worked at Paravel. It’s a lot like playing baseball; each member of the team showing up to practice, volleying work (in screenshots, short videos, or demos), pushing changes, communicating thoughts and challenges in the moment outside the confines of slotted meeting times. Me and my coworkers, having a catch.\n\nSeveral years ago, when I was doing improv, I was rehearsing for a musical, of all things. At the same time we were getting started with table reads and gel’ing as a cast, two other shows were rehearsing in the same theater. One show was about to open, very much having their thing dialed in. Another cast was somewhere in the middle, having figured out what they were about but still trying to get the execution just right. Everywhere in the theatre, there was creation and exploration energy and it was one of the most awesome things I’ve done. This despite not liking musical theater much!\n\n---- \nI don’t like the idea of “return to office” and I don’t think you could make it work anyway. The social momentum that kept a critical mass of people in one office has been broken, you can’t put that toothpaste back in the tube.\n\nThat said, I have yet to feel that same energy in remote work that I did in a local theatre on rehearsal night while various groups were _making_ something _together_, in the _moment_, and iterating on it as quickly as they could share a glance or read through a scene.\n\nI bet _some_ teams have figured out how to feel this way in remote/async setups. But, it feels like most are still running the old in-person playbook that we learned, and sometimes thrived with, over the past years and decades of our careers.\n\n",
"date_published": "2024-03-13T05:42:53-07:00",
"url": "https://therealadam.micro.blog/2024/03/13/collective-flow.html",
"tags": ["Creativity"]
},
{
"id": "http://therealadam.micro.blog/2024/02/28/you-learn-faster.html",
"title": "You learn faster by falling down",
"content_html": "<p>Julia Galef, <a href=\"https://en.wikipedia.org/wiki/The_Scout_Mindset\"><em>The Scout Mindset</em></a>:</p>\n<blockquote>\n<p>The “self-belief” model of motivation assumes that if you acknowledge the possibility of failure, then you’ll be too demoralized or afraid to take risks. In that model, people who believe that failure is unthinkable are the ones who try the hardest to succeed. Yet in practice, things often seem to work the other way around—accepting the possibility of failure in advance is liberating. It makes you bold, not timid. It’s what gives you the courage to take the risks required to achieve something big.</p>\n</blockquote>\n<p>One of the most impactful ways I’ve adapted my thinking over the years, if only modestly successfully, has been to fear failure less and accept small downsides more easily. There’s way more world out there for those willing to trip or even fall now and then.</p>\n",
"content_text": "Julia Galef, [_The Scout Mindset_](https://en.wikipedia.org/wiki/The_Scout_Mindset):\n\n> The “self-belief” model of motivation assumes that if you acknowledge the possibility of failure, then you’ll be too demoralized or afraid to take risks. In that model, people who believe that failure is unthinkable are the ones who try the hardest to succeed. Yet in practice, things often seem to work the other way around—accepting the possibility of failure in advance is liberating. It makes you bold, not timid. It’s what gives you the courage to take the risks required to achieve something big.\n\nOne of the most impactful ways I’ve adapted my thinking over the years, if only modestly successfully, has been to fear failure less and accept small downsides more easily. There’s way more world out there for those willing to trip or even fall now and then.\n\n",
"date_published": "2024-02-28T10:30:00-07:00",
"url": "https://therealadam.micro.blog/2024/02/28/you-learn-faster.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2024/02/24/use-fewer-algorithmic.html",
"title": "Use fewer algorithmic feeds, mostly search-based",
"content_html": "<p>Rob Walker via Austin Kleon, <a href=\"https://austinkleon.com/2019/04/04/more-search-less-feed/\">More search, less feed</a>:</p>\n<blockquote>\n<p>I’ve been thinking a lot about the search box versus the feed,” he said. “Let’s take Twitter. When I open it, everybody wants me to think about something.</p>\n</blockquote>\n<p>A Ponzi ecosystem of hustle, reality distortion and projection, outright misinformation and propaganda. Plus, folks who just want to tell you the world is miserable. On the other hand, some funny takes and the occasional wholesome content. As goes social media, so goes humanity.</p>\n<p>That bit of (attempted) gallows humor aside, the linked article has a good angle: search for more information and do <em>actual research</em> rather than letting algorithmic-people filter it towards you. Caveat: this may have been more useful when that post was written in 2019 than it is in the reality of junky internet search that is 2024.</p>\n<p>Reminder: <a href=\"https://therealadam.com/2022/12/27/think-your-thoughts/\">think your own thoughts</a>.</p>\n",
"content_text": "Rob Walker via Austin Kleon, [More search, less feed](https://austinkleon.com/2019/04/04/more-search-less-feed/):\n\n> I’ve been thinking a lot about the search box versus the feed,” he said. “Let’s take Twitter. When I open it, everybody wants me to think about something.\n\nA Ponzi ecosystem of hustle, reality distortion and projection, outright misinformation and propaganda. Plus, folks who just want to tell you the world is miserable. On the other hand, some funny takes and the occasional wholesome content. As goes social media, so goes humanity.\n\nThat bit of (attempted) gallows humor aside, the linked article has a good angle: search for more information and do _actual research_ rather than letting algorithmic-people filter it towards you. Caveat: this may have been more useful when that post was written in 2019 than it is in the reality of junky internet search that is 2024.\n\nReminder: [think your own thoughts](https://therealadam.com/2022/12/27/think-your-thoughts/).\n\n",
"date_published": "2024-02-24T11:50:51-07:00",
"url": "https://therealadam.micro.blog/2024/02/24/use-fewer-algorithmic.html"
},
{
"id": "http://therealadam.micro.blog/2024/02/14/masters-of-the.html",
"title": "Masters of the space between notes",
"content_html": "<p>Virtuosity and speed are nice, in music and life. But you leave some space between the notes or slow things <em>way</em> down? Make some space in between the music for the <em>music</em> to happen? Now you’re cooking something good. For example:</p>\n<ul>\n<li>Aretha Franklin, the greatest of all time at making the most of the space between notes. As I’m fond of saying: there is no song Aretha Franklin could not perform slower <em>and</em> better than anyone else. Compare the tempo of <a href=\"https://www.youtube.com/watch?v=7BDw-H_hUzw\">Otis Redding’s <em>Respect</em></a> to <a href=\"https://www.youtube.com/watch?v=s3Itb17PXvw\">Aretha’s version</a>, both recorded in the same year.</li>\n<li>AC/DC, “Back In Black” or “Highway To Hell”. This is where I’d start rock and roll songwriting 101.</li>\n<li>D’Angelo, “Untitled (How Does It Feel?)”. Most of his work is an exemplar, he’s a master of making songs feel <em>spacious</em>.</li>\n<li>Joe Cocker, “With A Little Help From My Friends”. Take a jaunty, mid-tier Beatles song and draw it <em>way</em> out. This makes room for the huge, stacked vocals chorus. Suddenly, it’s right in the feels.</li>\n</ul>\n<p>Related: <a href=\"https://short.therealadam.com/2024/01/23/the-funk-is.html\">the funk is the notes you don’t play</a>.</p>\n",
"content_text": "Virtuosity and speed are nice, in music and life. But you leave some space between the notes or slow things _way_ down? Make some space in between the music for the _music_ to happen? Now you’re cooking something good. For example:\n\n- Aretha Franklin, the greatest of all time at making the most of the space between notes. As I’m fond of saying: there is no song Aretha Franklin could not perform slower _and_ better than anyone else. Compare the tempo of [Otis Redding’s _Respect_](https://www.youtube.com/watch?v=7BDw-H_hUzw) to [Aretha’s version](https://www.youtube.com/watch?v=s3Itb17PXvw), both recorded in the same year.\n- AC/DC, “Back In Black” or “Highway To Hell”. This is where I’d start rock and roll songwriting 101.\n- D’Angelo, “Untitled (How Does It Feel?)”. Most of his work is an exemplar, he’s a master of making songs feel _spacious_.\n- Joe Cocker, “With A Little Help From My Friends”. Take a jaunty, mid-tier Beatles song and draw it _way_ out. This makes room for the huge, stacked vocals chorus. Suddenly, it’s right in the feels.\n\nRelated: [the funk is the notes you don’t play](https://short.therealadam.com/2024/01/23/the-funk-is.html).\n\n",
"date_published": "2024-02-14T10:00:00-07:00",
"url": "https://therealadam.micro.blog/2024/02/14/masters-of-the.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2024/02/02/i-love-a.html",
"title": "I love a good shower-thought",
"content_html": "<p>Regarding <a href=\"https://en.wikipedia.org/wiki/Leo_Szilard\">Leó Szilárd</a>, a theoretical physicist who first conceived of the possibilities of nuclear chain reactions, nuclear power, and nuclear weapons:</p>\n<blockquote>\n<p>The bath was down the hall. “I remember that I went into my bath…around nine o’clock in the morning. There is no place as good to think as a bathtub. I would just soak there and think, and around twelve o’clock the maid would knock and say, ‘Are you all right, sir?’ Then I usually got out and made a few notes, dictated a few memoranda.”</p>\n<p>— Richard Rhodes, Making of the Atomic Bomb</p>\n</blockquote>\n<p>Shower thoughts, bath thoughts, lawn mowing thoughts. Great minds think alike, i.e., in similar repose.</p>\n",
"content_text": "Regarding [Leó Szilárd](https://en.wikipedia.org/wiki/Leo_Szilard), a theoretical physicist who first conceived of the possibilities of nuclear chain reactions, nuclear power, and nuclear weapons:\n\n> The bath was down the hall. “I remember that I went into my bath…around nine o’clock in the morning. There is no place as good to think as a bathtub. I would just soak there and think, and around twelve o’clock the maid would knock and say, ‘Are you all right, sir?’ Then I usually got out and made a few notes, dictated a few memoranda.”\n> \n> — Richard Rhodes, Making of the Atomic Bomb\n\nShower thoughts, bath thoughts, lawn mowing thoughts. Great minds think alike, i.e., in similar repose.\n\n",
"date_published": "2024-02-02T09:30:00-07:00",
"url": "https://therealadam.micro.blog/2024/02/02/i-love-a.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2024/01/23/the-funk-is.html",
"title": "The funk is in the notes you don’t play",
"content_html": "<p>Funk is unique amongst musical genres, in my perspective, due to the importance of the notes <em>you don’t play</em>. The <em>space</em> between notes, and not “shredding” every possible moment, is important in all genres. But I find that the funkiest stuff gets that way from missing expected notes and shifting expected notes to moments where they shouldn’t be.</p>\n<blockquote>\n<p>Funk was a rhythmic system of tension and release over time, but also simultaneous tension between some players exercising maximum restraint and others exhibiting maximum expressiveness. Most of all, funk was a science of subverted expectations, syncopation taken to its ultimate destination. With funk, things weren’t always where you thought they’d be.</p>\n<p>– Dan Charnas, Dilla Time</p>\n</blockquote>\n<p>Digital Underground, <a href=\"https://www.youtube.com/watch?v=44Hlqmdfee0\">Rhymin’ on the funk</a>. Recommended.</p>\n<blockquote>\n<p>Funk not only moves, it can re-move, you dig?</p>\n<p>– George Clinton, <a href=\"https://www.youtube.com/watch?v=ZyJzylk8d_M\">P-Funk (Wants to Get Funked Up)</a></p>\n</blockquote>\n",
"content_text": "Funk is unique amongst musical genres, in my perspective, due to the importance of the notes _you don’t play_. The _space_ between notes, and not “shredding” every possible moment, is important in all genres. But I find that the funkiest stuff gets that way from missing expected notes and shifting expected notes to moments where they shouldn’t be.\n\n> Funk was a rhythmic system of tension and release over time, but also simultaneous tension between some players exercising maximum restraint and others exhibiting maximum expressiveness. Most of all, funk was a science of subverted expectations, syncopation taken to its ultimate destination. With funk, things weren’t always where you thought they’d be.\n> \n> – Dan Charnas, Dilla Time\n\nDigital Underground, [Rhymin’ on the funk](https://www.youtube.com/watch?v=44Hlqmdfee0). Recommended.\n\n> Funk not only moves, it can re-move, you dig?\n> \n> – George Clinton, [P-Funk (Wants to Get Funked Up)](https://www.youtube.com/watch?v=ZyJzylk8d_M)\n\n",
"date_published": "2024-01-23T06:14:27-07:00",
"url": "https://therealadam.micro.blog/2024/01/23/the-funk-is.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2024/01/21/the-lfg-called.html",
"title": "The LFG called life",
"content_html": "<p>LFG: looking for game. An ad-hoc scheme, often forum-esque, where strangers looking to play an online game that lacks matchmaking find each other and coordinate starting a game.</p>\n<blockquote>\n<p>No matter how famous they get, the forward-thinking artists of today aren’t just looking for fans or passive consumers of their work, they’re looking for potential collaborators, or co-conspirators. These artists acknowledge that good work isn’t created in a vacuum, and that the experience of art is always a two-way street, incomplete without feedback. These artists hang out online and answer questions. They ask for reading recommendations. They chat with fans about the stuff they love.</p>\n<p>– Austin Kleon, <em>Show Your Work!</em></p>\n</blockquote>\n<p>This is how I found so many of my online pals and past/future collaborators. The wonder of blogs, “web 2.0”, and then Twitter. We were out there posting, finding tribes, and, occasionally teammates.</p>\n",
"content_text": "LFG: looking for game. An ad-hoc scheme, often forum-esque, where strangers looking to play an online game that lacks matchmaking find each other and coordinate starting a game.\n\n> No matter how famous they get, the forward-thinking artists of today aren’t just looking for fans or passive consumers of their work, they’re looking for potential collaborators, or co-conspirators. These artists acknowledge that good work isn’t created in a vacuum, and that the experience of art is always a two-way street, incomplete without feedback. These artists hang out online and answer questions. They ask for reading recommendations. They chat with fans about the stuff they love.\n> \n> – Austin Kleon, *Show Your Work!*\n\nThis is how I found so many of my online pals and past/future collaborators. The wonder of blogs, “web 2.0”, and then Twitter. We were out there posting, finding tribes, and, occasionally teammates.\n\n",
"date_published": "2024-01-21T10:04:39-07:00",
"url": "https://therealadam.micro.blog/2024/01/21/the-lfg-called.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2024/01/18/you-have-more.html",
"title": "You have more writing material than you think",
"content_html": "<p>Jim Nielsen, <a href=\"https://blog.jim-nielsen.com/2023/blogging-and-compositing/\">Blogging and Composting</a>:</p>\n<blockquote>\n<p>But as a byproduct of whatever you’re building you undoubtedly learned, observed, or cursed at something along the way.</p>\n<p>And if you blog, you can make good use of that experience!</p>\n</blockquote>\n<p>Show up (almost) every day, <a href=\"https://therealadam.com/2024/01/12/work-in-progress/\">stack some drafts</a>. Write down what you learned or what surprised you or what amazed you. Sooner than you know it, you’ve got a thing going. Maybe even a thesis or long-running schtick. Works for any kind of writing, not just blogs. 📈</p>\n",
"content_text": "Jim Nielsen, [Blogging and Composting](https://blog.jim-nielsen.com/2023/blogging-and-compositing/):\n\n> But as a byproduct of whatever you’re building you undoubtedly learned, observed, or cursed at something along the way.\n> \n> And if you blog, you can make good use of that experience!\n\nShow up (almost) every day, [stack some drafts](https://therealadam.com/2024/01/12/work-in-progress/). Write down what you learned or what surprised you or what amazed you. Sooner than you know it, you’ve got a thing going. Maybe even a thesis or long-running schtick. Works for any kind of writing, not just blogs. 📈\n\n",
"date_published": "2024-01-18T08:32:11-07:00",
"url": "https://therealadam.micro.blog/2024/01/18/you-have-more.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2024/01/13/weekend-in-portland.html",
"title": "Weekend in Portland",
"content_html": "<p>Day two: breakfast, books, public transit! Tina Fey and Amy Poehler (surprise guest: Maya Rudolph!) put on an excellent show. (Not pictured: very, very cold.)</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2024/3804638b-22c6-473f-ac35-eecbf17549cc-1-105-c.jpeg\" alt=\"\"></p>\n<p>Grits ’n Gravy. Enjoyed.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2024/604b1da7-9d86-42de-9836-6967943cd608-1-105-c.jpeg\" alt=\"\"><img src=\"https://therealadam.micro.blog/uploads/2024/a8b8801f-9ef9-43b9-bb5f-93ef6e645991-1-105-c.jpeg\" alt=\"\"></p>\n<p>Powell’s Books. Enjoyed, transacted.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2024/3cc86777-77cf-4678-8127-57601d576375-1-105-c.jpeg\" alt=\"\"><img src=\"https://therealadam.micro.blog/uploads/2024/083805ea-b50d-481f-8d0c-9489d36f2d7e-1-105-c.jpeg\" alt=\"\"></p>\n<p>The light rail line back to our Airbnb. It’s nice to get around sans car now and then!</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2024/cb50c1d8-96fa-43df-9514-1147d3286676-1-201-a.jpg\" alt=\"\"></p>\n<p>Dinner plates say what we meant to say at Bottle and Kitchen.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2024/903a7fbb-81cb-46a9-8c92-18f9e8d1d70e-1-105-c.jpeg\" alt=\"\"><img src=\"https://therealadam.micro.blog/uploads/2024/b3d39df2-8430-434d-803a-73facf84b722-1-105-c.jpeg\" alt=\"\"></p>\n<p>Seeing lady comics at a concert hall, not a bad way to spend a night out of town.</p>\n",
"content_text": "Day two: breakfast, books, public transit! Tina Fey and Amy Poehler (surprise guest: Maya Rudolph!) put on an excellent show. (Not pictured: very, very cold.)\n\n![](https://therealadam.micro.blog/uploads/2024/3804638b-22c6-473f-ac35-eecbf17549cc-1-105-c.jpeg)\n\nGrits ’n Gravy. Enjoyed.\n\n![](https://therealadam.micro.blog/uploads/2024/604b1da7-9d86-42de-9836-6967943cd608-1-105-c.jpeg)![](https://therealadam.micro.blog/uploads/2024/a8b8801f-9ef9-43b9-bb5f-93ef6e645991-1-105-c.jpeg)\n\nPowell’s Books. Enjoyed, transacted.\n\n![](https://therealadam.micro.blog/uploads/2024/3cc86777-77cf-4678-8127-57601d576375-1-105-c.jpeg)![](https://therealadam.micro.blog/uploads/2024/083805ea-b50d-481f-8d0c-9489d36f2d7e-1-105-c.jpeg)\n\nThe light rail line back to our Airbnb. It’s nice to get around sans car now and then!\n\n![](https://therealadam.micro.blog/uploads/2024/cb50c1d8-96fa-43df-9514-1147d3286676-1-201-a.jpg)\n\nDinner plates say what we meant to say at Bottle and Kitchen. \n\n![](https://therealadam.micro.blog/uploads/2024/903a7fbb-81cb-46a9-8c92-18f9e8d1d70e-1-105-c.jpeg)![](https://therealadam.micro.blog/uploads/2024/b3d39df2-8430-434d-803a-73facf84b722-1-105-c.jpeg)\n\nSeeing lady comics at a concert hall, not a bad way to spend a night out of town.\n\n",
"date_published": "2024-01-13T16:34:51-07:00",
"url": "https://therealadam.micro.blog/2024/01/13/weekend-in-portland.html",
"tags": ["Travel"]
},
{
"id": "http://therealadam.micro.blog/2024/01/12/weekend-in-portland.html",
"title": "Weekend in Portland",
"content_html": "<p>Day one, travel day. Air travel is fine. Green carpets are green. It’s cold and dreary, as expected. There may be snow. We persevere.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2024/4c3c1a10-b3e6-497b-8040-8780a14b627c.jpg\" alt=\"A Boeing 737 with the good doors.\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2024/2b31848e-b6f5-4c4c-be6b-7ba03d4d2e85.jpg\" alt=\"That canyon is grand.\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2024/b0c6d432-11d9-4de0-8835-f7f079544b69.jpg\" alt=\"The SWA livery looks particularly nice against this sunset.\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2024/531111de-b938-4c25-8ad9-fd088871f1ae-1-105-c.jpeg\" alt=\"Gotta get the PDX green carpet on the social media.\"></p>\n",
"content_text": "Day one, travel day. Air travel is fine. Green carpets are green. It’s cold and dreary, as expected. There may be snow. We persevere.\n\n![A Boeing 737 with the good doors.](https://therealadam.micro.blog/uploads/2024/4c3c1a10-b3e6-497b-8040-8780a14b627c.jpg)\n\n![That canyon _is_ grand.](https://therealadam.micro.blog/uploads/2024/2b31848e-b6f5-4c4c-be6b-7ba03d4d2e85.jpg)\n\n![The SWA livery looks particularly nice against this sunset.](https://therealadam.micro.blog/uploads/2024/b0c6d432-11d9-4de0-8835-f7f079544b69.jpg)\n\n![Gotta get the PDX green carpet on the social media.](https://therealadam.micro.blog/uploads/2024/531111de-b938-4c25-8ad9-fd088871f1ae-1-105-c.jpeg)\n\n\n",
"date_published": "2024-01-12T15:29:10-07:00",
"url": "https://therealadam.micro.blog/2024/01/12/weekend-in-portland.html",
"tags": ["Travel"]
},
{
"id": "http://therealadam.micro.blog/2024/01/07/the-status-quo.html",
"title": "The status quo",
"content_html": "<blockquote>\n<p>Most fascinating game there is, keeping things from staying the way they are.\n– Kurt Vonnegut, Player Piano</p>\n</blockquote>\n<p>The status quo is a hell of a thing. Path dependence makes this a challenging game.</p>\n<p>The biggest challenge you could take on in life: change it for even the slightest better. A virtuous challenge too, in an <a href=\"https://plato.stanford.edu/entries/aristotle-ethics/\">Aristotelian virtues</a> sense?</p>\n",
"content_text": "> Most fascinating game there is, keeping things from staying the way they are.\n> – Kurt Vonnegut, Player Piano\n\nThe status quo is a hell of a thing. Path dependence makes this a challenging game.\n\nThe biggest challenge you could take on in life: change it for even the slightest better. A virtuous challenge too, in an [Aristotelian virtues](https://plato.stanford.edu/entries/aristotle-ethics/) sense?\n\n",
"date_published": "2024-01-07T09:55:59-07:00",
"url": "https://therealadam.micro.blog/2024/01/07/the-status-quo.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2024/01/02/software-makes-you.html",
"title": "Software makes you more productive, otherwise it’s (weird) art",
"content_html": "<p>Rands in Repose, <a href=\"https://randsinrepose.com/archives/seven-steps-to-fixing-stalled-to-do-tasks/\">Seven Steps to Fixing Stalled To-Do Tasks</a>:</p>\n<blockquote>\n<p>The never-ending question you must ask regarding whatever productivity system you’ve built is, “Does this system make you more productive?”</p>\n</blockquote>\n<p>The purpose of all this software is to get stuff done (make things), not to fiddle and shuffle tasks around! (This goes for individuals <em>and</em> teams, FWIW)</p>\n",
"content_text": "Rands in Repose, [Seven Steps to Fixing Stalled To-Do Tasks](https://randsinrepose.com/archives/seven-steps-to-fixing-stalled-to-do-tasks/):\n\n> The never-ending question you must ask regarding whatever productivity system you’ve built is, “Does this system make you more productive?”\n\nThe purpose of all this software is to get stuff done (make things), not to fiddle and shuffle tasks around! (This goes for individuals _and_ teams, FWIW)\n\n",
"date_published": "2024-01-02T15:00:00-07:00",
"url": "https://therealadam.micro.blog/2024/01/02/software-makes-you.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2024/01/01/by-the-bullets.html",
"title": "2023 by the bullets",
"content_html": "<ul>\n<li>Places visited\n<ul>\n<li>Marfa, Texas</li>\n<li>Las Cruces, New Mexico</li>\n<li>Tucson, Arizona</li>\n<li>Disney World (Orlando, Florida)</li>\n<li>Disneyland (Anaheim, California)</li>\n<li>Prunedale, California</li>\n<li>Salinas, California</li>\n<li>Monterey, California</li>\n<li>Dallas, Texas</li>\n</ul>\n</li>\n<li>Writers enjoyed\n<ul>\n<li><a href=\"https://craigmod.com\">Craig Mod</a></li>\n<li><a href=\"https://www.henrikkarlsson.xyz\">Henrik Karlsson</a></li>\n</ul>\n</li>\n<li>Music re-discovered\n<ul>\n<li>John Coltrane <em>A Love Supreme</em></li>\n<li>Return to Forever <em>The Mothership Returns</em></li>\n</ul>\n</li>\n<li>Concerts attended\n<ul>\n<li>Bruce Springsteen and the E-Street Band,</li>\n<li>Lyle Lovett and his Large Band</li>\n<li>Thundercat</li>\n</ul>\n</li>\n<li>My best writing\n<ul>\n<li><a href=\"https://therealadam.wordpress.com/2023/11/09/my-summer-at-100-hertz/\">My summer at 100hz</a></li>\n<li><a href=\"https://therealadam.wordpress.com/2023/08/23/i-got-better-at-estimating-projects-with-intentional-practice/\">I got better at estimating projects</a></li>\n<li><a href=\"https://therealadam.wordpress.com/2023/04/14/err-the-blog-revisited/\">Err the Blog, revisited</a></li>\n<li><a href=\"https://therealadam.wordpress.com/2023/01/21/turn-the-pages-read-the-code-hear-the-words/\">Turn the pages, read the code, hear the words</a></li>\n<li><a href=\"https://short.therealadam.com/2023/02/13/natasha-lyonne-is.html\">Natasha Lyonne is my generation’s Joe Pesci</a></li>\n<li><a href=\"https://short.therealadam.com/2023/08/04/a-vacation-is.html\">A vacation is a tool for disconnecting</a></li>\n</ul>\n</li>\n<li>Previously revisited\n<ul>\n<li><a href=\"https://short.therealadam.com/2022/12/29/best-of.html\">2022</a></li>\n<li><a href=\"https://short.therealadam.com/2021/12/31/my-favorites-of.html%0A\">2021</a></li>\n</ul>\n</li>\n</ul>\n",
"content_text": "- Places visited\n\t- Marfa, Texas\n\t- Las Cruces, New Mexico\n\t- Tucson, Arizona\n\t- Disney World (Orlando, Florida)\n\t- Disneyland (Anaheim, California)\n\t- Prunedale, California\n\t- Salinas, California\n\t- Monterey, California\n\t- Dallas, Texas\n- Writers enjoyed\n\t- [Craig Mod](https://craigmod.com)\n\t- [Henrik Karlsson](https://www.henrikkarlsson.xyz)\n- Music re-discovered\n\t- John Coltrane _A Love Supreme_\n\t- Return to Forever _The Mothership Returns_\n- Concerts attended\n\t- Bruce Springsteen and the E-Street Band, \n\t- Lyle Lovett and his Large Band\n\t- Thundercat\n- My best writing\n\t- [My summer at 100hz](https://therealadam.wordpress.com/2023/11/09/my-summer-at-100-hertz/)\n\t- [I got better at estimating projects](https://therealadam.wordpress.com/2023/08/23/i-got-better-at-estimating-projects-with-intentional-practice/)\n\t- [Err the Blog, revisited](https://therealadam.wordpress.com/2023/04/14/err-the-blog-revisited/)\n\t- [Turn the pages, read the code, hear the words](https://therealadam.wordpress.com/2023/01/21/turn-the-pages-read-the-code-hear-the-words/)\n\t- [Natasha Lyonne is my generation’s Joe Pesci](https://short.therealadam.com/2023/02/13/natasha-lyonne-is.html)\n\t- [A vacation is a tool for disconnecting](https://short.therealadam.com/2023/08/04/a-vacation-is.html)\n- Previously revisited\n\t- [2022](https://short.therealadam.com/2022/12/29/best-of.html)\n\t- [2021](https://short.therealadam.com/2021/12/31/my-favorites-of.html%0A)\n\n",
"date_published": "2024-01-01T11:06:04-07:00",
"url": "https://therealadam.micro.blog/2024/01/01/by-the-bullets.html"
},
{
"id": "http://therealadam.micro.blog/2023/12/28/lowkey-toolsforthought.html",
"title": "Low-key tools-for-thought",
"content_html": "<p>I have an elaborate, perhaps baroque, setup of journals, notes, tasks, highlights, read-it-laters, feeds, and canvases-for-thinking. I consider it a crucial, and very idiosyncratic, piece of “knowledge worker infrastructure”. Furthermore, I don’t think I could handle a lot of the work and projects that I do, to the extent that I do, without it.</p>\n<p>But, I hope that constructing such a scheme, and doing all the time intensive background research and tinkering, is not something <em>everyone</em> would have to expend effort on to think better and more clearly.</p>\n<p>My hunch here is that the software bundled with iOS/iPadOS/macOS is <em>very close</em> to allowing folks who just want to remember and brainstorm get started <em>immediately</em>. Currently, a couple of elements are missing. This means you have to hit the third-party ecosystem escape hatch and consider a <em>daunting</em> variety of applications, workflows, and identity/quasi-religions.</p>\n<p>Herein, a wishlist of system-level capabilities that would make macOS an even better “bicycle for the mind”.</p>\n<hr>\n<p>In any old macOS app, I want to highlight text (mostly) with any pointer (mouse, stylus, finger) on any device (laptop, tablet, phone) and capture/promote text. I may want to add my commentary or notes too. Afterward, I should be able to search for this in Spotlight, at the least. Even better if the whole document/page/file/etc. the text came from is indexed, so I can find highlights despite imperfect memory.</p>\n<p>macOS already extracts contacts and events from plain text. Faces are identified in photos. Why not make text excerpts/highlights/passages a first-class thing in the system’s information architecture?</p>\n<hr>\n<p>I want to identify key ideas, concepts, people, and other nouns, so I can hyperlink between them <em>and</em> navigate them in <em>something</em> like the Finder.</p>\n<p>This verbs-and-nouns concept was key to AppleScript. I’ve read that it was part of the conceptual bedrock of NeXTStep, but I haven’t found more than a few passing sentences on that.</p>\n<p>Why not carry that idea forward or rediscover it on macOS? Some folks want to do more than scroll, post, and transact.</p>\n<hr>\n<p>Notes and Journal, along with Finder and Spotlight, seem <em>very close</em> to checking all the boxes here. 🤷🏻♂️I don’t use those apps, so I’m wildly speculating here. Out over my skis, as they say. That said, this is <em>so close</em> to the core of what you really need to do next-level, thinking-augmented-by-computers.</p>\n<p>Even though I use very particular apps, I feel like Apple has the right foundations here. A journal app for capturing ideas, reflections, and life as it happens. A notes app for putting structure and organization around the ideas that emerge from those moments. Tie it together with search to resurface and rediscover those journals and notes.</p>\n<p>A fellow can dream, right?</p>\n",
"content_text": "I have an elaborate, perhaps baroque, setup of journals, notes, tasks, highlights, read-it-laters, feeds, and canvases-for-thinking. I consider it a crucial, and very idiosyncratic, piece of “knowledge worker infrastructure”. Furthermore, I don’t think I could handle a lot of the work and projects that I do, to the extent that I do, without it.\n\nBut, I hope that constructing such a scheme, and doing all the time intensive background research and tinkering, is not something _everyone_ would have to expend effort on to think better and more clearly.\n\nMy hunch here is that the software bundled with iOS/iPadOS/macOS is _very close_ to allowing folks who just want to remember and brainstorm get started _immediately_. Currently, a couple of elements are missing. This means you have to hit the third-party ecosystem escape hatch and consider a _daunting_ variety of applications, workflows, and identity/quasi-religions.\n\nHerein, a wishlist of system-level capabilities that would make macOS an even better “bicycle for the mind”.\n\n---- \nIn any old macOS app, I want to highlight text (mostly) with any pointer (mouse, stylus, finger) on any device (laptop, tablet, phone) and capture/promote text. I may want to add my commentary or notes too. Afterward, I should be able to search for this in Spotlight, at the least. Even better if the whole document/page/file/etc. the text came from is indexed, so I can find highlights despite imperfect memory.\n\nmacOS already extracts contacts and events from plain text. Faces are identified in photos. Why not make text excerpts/highlights/passages a first-class thing in the system’s information architecture?\n\n---- \nI want to identify key ideas, concepts, people, and other nouns, so I can hyperlink between them _and_ navigate them in _something_ like the Finder.\n\nThis verbs-and-nouns concept was key to AppleScript. I’ve read that it was part of the conceptual bedrock of NeXTStep, but I haven’t found more than a few passing sentences on that.\n\nWhy not carry that idea forward or rediscover it on macOS? Some folks want to do more than scroll, post, and transact.\n\n---- \nNotes and Journal, along with Finder and Spotlight, seem _very close_ to checking all the boxes here. 🤷🏻♂️I don’t use those apps, so I’m wildly speculating here. Out over my skis, as they say. That said, this is _so close_ to the core of what you really need to do next-level, thinking-augmented-by-computers.\n\nEven though I use very particular apps, I feel like Apple has the right foundations here. A journal app for capturing ideas, reflections, and life as it happens. A notes app for putting structure and organization around the ideas that emerge from those moments. Tie it together with search to resurface and rediscover those journals and notes.\n\nA fellow can dream, right?\n\n",
"date_published": "2023-12-28T09:27:37-07:00",
"url": "https://therealadam.micro.blog/2023/12/28/lowkey-toolsforthought.html",
"tags": ["Creativity"]
},
{
"id": "http://therealadam.micro.blog/2023/12/18/ia-writer-and.html",
"title": "iA Writer and AI",
"content_html": "<p><a href=\"https://ia.net/topics/writing-with-ai\">Writing with AI</a>:</p>\n<blockquote>\n<p>Writing is not about getting letters on a page. It’s not about getting done with text. It’s finding a clear and simple expression for what we feel, mean, and want to express. Writing is thinking with letters. Usually we do this alone. With AI, you write in dialogue. It comes with a chat-interface, after all. So, don’t just write commands, talk to it.</p>\n</blockquote>\n<p><a href=\"https://ia.net/topics/ia-writer-7\">iA Writer</a>’s integration is the first use of LLMs I’ve seen that I’d consider original. They didn’t slap on a chat interface where one wasn’t needed. It’s not autocomplete-but-smarter.</p>\n<p>Instead, they show authorship/origin of text as either human or machine-generated. As you edit out the AI machine’s writing, the text visually and literally becomes more your own creation. You engage in dialog with the machine and use that to <em>improve</em> your thinking. The machine doesn’t think for you. Bravo!</p>\n",
"content_text": "[Writing with AI](https://ia.net/topics/writing-with-ai):\n\n> Writing is not about getting letters on a page. It’s not about getting done with text. It’s finding a clear and simple expression for what we feel, mean, and want to express. Writing is thinking with letters. Usually we do this alone. With AI, you write in dialogue. It comes with a chat-interface, after all. So, don’t just write commands, talk to it.\n\n[iA Writer](https://ia.net/topics/ia-writer-7)’s integration is the first use of LLMs I’ve seen that I’d consider original. They didn’t slap on a chat interface where one wasn’t needed. It’s not autocomplete-but-smarter. \n\nInstead, they show authorship/origin of text as either human or machine-generated. As you edit out the AI machine’s writing, the text visually and literally becomes more your own creation. You engage in dialog with the machine and use that to _improve_ your thinking. The machine doesn’t think for you. Bravo!\n\n",
"date_published": "2023-12-18T11:30:00-07:00",
"url": "https://therealadam.micro.blog/2023/12/18/ia-writer-and.html",
"tags": ["Creativity"]
},
{
"id": "http://therealadam.micro.blog/2023/12/17/celebrate-the-van.html",
"title": "Celebrate the van Beethoven guy",
"content_html": "<p>It’s Ludwig van Beethoven’s birthday. Here are a few ways to celebrate the old <a href=\"https://en.wikipedia.org/wiki/Bone_conduction\">piano-biter</a>:</p>\n<ul>\n<li>small: try his <em>other</em> famous piano sonata, <a href=\"https://www.youtube.com/watch?v=SrcOcKYQX3c&t=53s\">No. 8 “Pathetique”</a></li>\n<li>medium: try the third movement of <a href=\"https://youtu.be/3TiYGxOQDYw?si=WJ42kOZS5l65TMfX&t=1658\">Piano Concerto No. 5 “Emperor”</a>, wherein the transition from the slow/middle movement into the final/fast movement is a brilliant sneak attack</li>\n<li>large: the pretty good (but mid-tier for Beethoven, IMO) Symphony <a href=\"https://www.youtube.com/watch?v=RkP33esCi5g\">No. 3 “Eroica”</a> aka the one where he wrote a piece for Napoleon but got mad and renamed it at the last minute</li>\n<li>extra-large: the symphony that changed the game, <a href=\"https://youtu.be/rOjHhS5MtvA?si=hejnghb61LT23WLM&t=57\">Symphony No. 9</a> (the Ode to Joy one)</li>\n</ul>\n<p>Previously: <a href=\"https://short.therealadam.com/2021/11/28/great-albums-beethoven.html\">Beethoven’s Symphonies No. 7 and 8</a> are top-tier, <a href=\"https://short.therealadam.com/2022/01/26/beethovens-symphonies-visualized.html\">Beethoven’s symphonies visualized</a>.</p>\n",
"content_text": "It’s Ludwig van Beethoven’s birthday. Here are a few ways to celebrate the old [piano-biter](https://en.wikipedia.org/wiki/Bone_conduction):\n\n- small: try his _other_ famous piano sonata, [No. 8 “Pathetique”](https://www.youtube.com/watch?v=SrcOcKYQX3c&t=53s)\n- medium: try the third movement of [Piano Concerto No. 5 “Emperor”](https://youtu.be/3TiYGxOQDYw?si=WJ42kOZS5l65TMfX&t=1658), wherein the transition from the slow/middle movement into the final/fast movement is a brilliant sneak attack\n- large: the pretty good (but mid-tier for Beethoven, IMO) Symphony [No. 3 “Eroica”](https://www.youtube.com/watch?v=RkP33esCi5g) aka the one where he wrote a piece for Napoleon but got mad and renamed it at the last minute\n- extra-large: the symphony that changed the game, [Symphony No. 9](https://youtu.be/rOjHhS5MtvA?si=hejnghb61LT23WLM&t=57) (the Ode to Joy one)\n\nPreviously: [Beethoven’s Symphonies No. 7 and 8](https://short.therealadam.com/2021/11/28/great-albums-beethoven.html) are top-tier, [Beethoven’s symphonies visualized](https://short.therealadam.com/2022/01/26/beethovens-symphonies-visualized.html).\n\n",
"date_published": "2023-12-17T14:00:00-07:00",
"url": "https://therealadam.micro.blog/2023/12/17/celebrate-the-van.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2023/11/26/everythings-a-draft.html",
"title": "Everything’s a draft",
"content_html": "<blockquote>\n<p>Publish pretty much everything you write because you can’t predict what is going to be popular. There is a lower bar for quality, but barring dishonesty and literally unreadable prose, everything else should go out somewhere. Incompleteness is no excuse. Publish the first part now and the other parts later.</p>\n<p>– Kent Beck, <a href=\"https://tidyfirst.substack.com/p/publish-everything-pretty-much\">Publish Everything</a></p>\n</blockquote>\n<p>Get the idea out there, especially if it feels like there’s depth to explore but you can’t full traverse it in the moment. And, reduce friction to sharing the promising drafts!</p>\n",
"content_text": "> Publish pretty much everything you write because you can’t predict what is going to be popular. There is a lower bar for quality, but barring dishonesty and literally unreadable prose, everything else should go out somewhere. Incompleteness is no excuse. Publish the first part now and the other parts later. \n> \n> – Kent Beck, [Publish Everything](https://tidyfirst.substack.com/p/publish-everything-pretty-much)\n\nGet the idea out there, especially if it feels like there’s depth to explore but you can’t full traverse it in the moment. And, reduce friction to sharing the promising drafts!\n\n",
"date_published": "2023-11-26T11:01:14-07:00",
"url": "https://therealadam.micro.blog/2023/11/26/everythings-a-draft.html",
"tags": ["Commonplace","Creativity"]
},
{
"id": "http://therealadam.micro.blog/2023/11/23/listening-november.html",
"title": "Listening, November 2023",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>Andre 3000, <em>New Blue Sun</em> – come for the over-the-top song titles, stay for what sounds to me like an ambient and (astral?) jazz album.</p>\n<p>Earth, Wind, and Fire, “Serpentine Fire” – this is the Certified Jam of the Month™ in our household. It is literally made of slap (bass).</p>\n<p>Return to Forever – been listening to a lot of jazz-fusion lately. If Weather Report isn’t your thing, give <em>The Mothership Returns</em> a try.</p>\n",
"date_published": "2023-11-23T11:38:11-07:00",
"url": "https://therealadam.micro.blog/2023/11/23/listening-november.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2023/11/17/you-cant-read.html",
"title": "You can’t read the whole internet, so put your energy into something that matters to you",
"content_html": "<p>Oliver Burkeman, <a href=\"https://www.oliverburkeman.com/river\">Treat your to-read pile like a river</a>:</p>\n<blockquote>\n<p>To return to information overload: this means treating your “to read” pile like a river (a stream that flows past you, and from which you pluck a few choice items, here and there) instead of a bucket (which demands that you empty it). After all, you presumably don’t feel overwhelmed by all the unread books in the British Library – and not because there aren’t an overwhelming number of them, but because it never occurred to you that it might be your job to get through them all.</p>\n<p>I like to think of it as the productivity technique to beat all productivity techniques: finally internalizing the implications of the fact that what’s genuinely impossible – the clue is in the name! – cannot actually be done.</p>\n</blockquote>\n<p>You cannot actually read, process, and comment upon the whole internet, or even your little corner of interesting discourse. But, you can click “Mark All As Read” and move on. River-of-news style timelines automate marking items unread instead of automating bringing you the good stuff. <a href=\"https://reederapp.com\">Reeder</a> and <a href=\"https://www.newsblur.com/\">NewsBlur</a> have options for it. I bet others do too. <a href=\"https://austinkleon.com/2021/09/28/rewinding-your-attention/\">Reclaim your attention</a>!</p>\n<blockquote>\n<p>Unfortunately, most advice on productivity and time management takes the needle-in-a-haystack approach instead. It’s about becoming more efficient and organised, or better at prioritising, with the implied promise that you might thereby eliminate or disregard enough of life’s unimportant nonsense to make time for the meaningful stuff. To stretch a metaphor: it’s about reducing the size of the haystack, to make it easier to focus on the needle.</p>\n<p>There’s definitely a role for such techniques; but in the end, the only way to deal with a too-many-needles problem is to confront the fact that it’s insoluble – that you definitely won’t be fitting everything in.</p>\n<p>It’s not a question of rearranging your to-do list so as to make space for all your “big rocks”, but of accepting that there are simply too many rocks to fit in the jar. You have to take a stab at deciding what matters most, among your various creative passions/life goals/responsibilities – and then do that, while acknowledging that you’ll inevitably be neglecting many other things that matter too.</p>\n</blockquote>\n<p>I’m guilty here! All the best in task management, getting things done, note-taking, journal writing, and even <a href=\"https://short.therealadam.com/2023/11/01/saying-no-is.html\">saying no</a> won’t get the work done. I have to take the gift of clarity and focus generated by all these routines, and <em>do that “big rock” important thing</em>. I have to find peace with the trade-off of doing one thing instead of all the other exciting things.</p>\n<p>Or, maybe <a href=\"https://short.therealadam.com/2023/11/16/smaller-barriers-to.html\">generative AIs</a> will provide Walt Disney-like agency to direct and sustain diverse projects outside my expertise with Imagineering-quality output. Wouldn’t it be nice!</p>\n",
"content_text": "Oliver Burkeman, [Treat your to-read pile like a river](https://www.oliverburkeman.com/river):\n\n> To return to information overload: this means treating your \"to read\" pile like a river (a stream that flows past you, and from which you pluck a few choice items, here and there) instead of a bucket (which demands that you empty it). After all, you presumably don't feel overwhelmed by all the unread books in the British Library – and not because there aren't an overwhelming number of them, but because it never occurred to you that it might be your job to get through them all.\n> \n> I like to think of it as the productivity technique to beat all productivity techniques: finally internalizing the implications of the fact that what's genuinely impossible – the clue is in the name! – cannot actually be done.\n\nYou cannot actually read, process, and comment upon the whole internet, or even your little corner of interesting discourse. But, you can click “Mark All As Read” and move on. River-of-news style timelines automate marking items unread instead of automating bringing you the good stuff. [Reeder](https://reederapp.com) and [NewsBlur](https://www.newsblur.com/) have options for it. I bet others do too. [Reclaim your attention](https://austinkleon.com/2021/09/28/rewinding-your-attention/)!\n\n> Unfortunately, most advice on productivity and time management takes the needle-in-a-haystack approach instead. It's about becoming more efficient and organised, or better at prioritising, with the implied promise that you might thereby eliminate or disregard enough of life's unimportant nonsense to make time for the meaningful stuff. To stretch a metaphor: it's about reducing the size of the haystack, to make it easier to focus on the needle.\n> \n> There's definitely a role for such techniques; but in the end, the only way to deal with a too-many-needles problem is to confront the fact that it's insoluble – that you definitely won't be fitting everything in.\n> \n> It's not a question of rearranging your to-do list so as to make space for all your \"big rocks\", but of accepting that there are simply too many rocks to fit in the jar. You have to take a stab at deciding what matters most, among your various creative passions/life goals/responsibilities – and then do that, while acknowledging that you'll inevitably be neglecting many other things that matter too.\n\nI’m guilty here! All the best in task management, getting things done, note-taking, journal writing, and even [saying no](https://short.therealadam.com/2023/11/01/saying-no-is.html) won’t get the work done. I have to take the gift of clarity and focus generated by all these routines, and _do that “big rock” important thing_. I have to find peace with the trade-off of doing one thing instead of all the other exciting things.\n\nOr, maybe [generative AIs](https://short.therealadam.com/2023/11/16/smaller-barriers-to.html) will provide Walt Disney-like agency to direct and sustain diverse projects outside my expertise with Imagineering-quality output. Wouldn’t it be nice!\n\n",
"date_published": "2023-11-17T11:52:03-07:00",
"url": "https://therealadam.micro.blog/2023/11/17/you-cant-read.html",
"tags": ["Creativity"]
},
{
"id": "http://therealadam.micro.blog/2023/11/16/smaller-barriers-to.html",
"title": "Smaller barriers to entry, bigger possibilities",
"content_html": "<p>James Somer, <a href=\"https://www.newyorker.com/magazine/2023/11/20/a-coder-considers-the-waning-days-of-the-craft\">A Coder Considers the Waning Days of the Craft | The New Yorker</a>:</p>\n<blockquote>\n<p>In chess, which for decades now has been dominated by A.I., a player’s only hope is pairing up with a bot. Such half-human, half-A.I. teams, known as centaurs, might still be able to beat the best humans and the best A.I. engines working alone. Programming has not yet gone the way of chess. But the centaurs have arrived. GPT-4 on its own is, for the moment, a worse programmer than I am. Ben is much worse. But Ben plus GPT-4 is a dangerous thing.</p>\n</blockquote>\n<p><a href=\"https://simonwillison.net/2023/Nov/14/a-coder-considers-the-waning-days-of-the-craft/\">Simon Willison on the same</a>:</p>\n<blockquote>\n<p>I think AI assisted programming is going to shave a lot of the frustration off learning to code, which I hope brings many more people into the fold</p>\n</blockquote>\n<p>We’ve entered the age of AI-powered coding, writing, speaking, and painting centaurs.</p>\n<p>If we play our cards right, we will lower barriers to entry <em>and</em> raise the ceiling of possibility to new levels. If more people can <em>create</em> in mediums that are considered specializations now, that <em>might</em> open allow experts to go deeper in their specialization or branch out into areas that were inaccessible without compromising their specialization.</p>\n<p>The idea of a dilettante, a person who cultivates an area of interest, such as the arts, without real commitment or knowledge, might become acute or obsolete. We might end up with a new level of “yuck that looks some amateurish and <em>generated</em>”. Or we might end up with reviews like “the artist deftly combines generated and hand-drawn sketches with procedurally generated music modeled on their own previous album <em>I Play Pianos, By Hand, Like Duke Did</em>”.</p>\n<p>Of course, we’ve heard this story before and famed economist <a href=\"https://en.wikipedia.org/wiki/John_Maynard_Keynes\">Keynes</a> is (infamous?) for predicting mechanical automation would all have us exploring our favorite hobbies at this point. So, we gotta play our cards right.</p>\n",
"content_text": "James Somer, [A Coder Considers the Waning Days of the Craft | The New Yorker](https://www.newyorker.com/magazine/2023/11/20/a-coder-considers-the-waning-days-of-the-craft):\n\n> In chess, which for decades now has been dominated by A.I., a player’s only hope is pairing up with a bot. Such half-human, half-A.I. teams, known as centaurs, might still be able to beat the best humans and the best A.I. engines working alone. Programming has not yet gone the way of chess. But the centaurs have arrived. GPT-4 on its own is, for the moment, a worse programmer than I am. Ben is much worse. But Ben plus GPT-4 is a dangerous thing.\n\n[Simon Willison on the same](https://simonwillison.net/2023/Nov/14/a-coder-considers-the-waning-days-of-the-craft/):\n\n> I think AI assisted programming is going to shave a lot of the frustration off learning to code, which I hope brings many more people into the fold\n\nWe’ve entered the age of AI-powered coding, writing, speaking, and painting centaurs. \n\nIf we play our cards right, we will lower barriers to entry _and_ raise the ceiling of possibility to new levels. If more people can _create_ in mediums that are considered specializations now, that _might_ open allow experts to go deeper in their specialization or branch out into areas that were inaccessible without compromising their specialization.\n\nThe idea of a dilettante, a person who cultivates an area of interest, such as the arts, without real commitment or knowledge, might become acute or obsolete. We might end up with a new level of “yuck that looks some amateurish and _generated_”. Or we might end up with reviews like “the artist deftly combines generated and hand-drawn sketches with procedurally generated music modeled on their own previous album _I Play Pianos, By Hand, Like Duke Did_”.\n\nOf course, we’ve heard this story before and famed economist [Keynes](https://en.wikipedia.org/wiki/John_Maynard_Keynes) is (infamous?) for predicting mechanical automation would all have us exploring our favorite hobbies at this point. So, we gotta play our cards right.\n\n",
"date_published": "2023-11-16T08:40:04-07:00",
"url": "https://therealadam.micro.blog/2023/11/16/smaller-barriers-to.html",
"tags": ["Creativity"]
},
{
"id": "http://therealadam.micro.blog/2023/11/01/saying-no-is.html",
"title": "Saying No is the first step",
"content_html": "<p>Ryan Holiday, <a href=\"https://ryanholiday.net/36-lessons-on-the-way-to-36-years-old/\">35 and 34, 36 Lessons on the Way to 36 Years Old</a>:</p>\n<blockquote>\n<p>As part of that, I made the difficult decision to call my publisher to push my next book a year or so. This was a massive clearance on my schedule—several hours a day did not have to be spent researching and writing on a project. Yet it was remarkable how little my life changed. Because tasks expand to fill the space, because it is so easy to say yes to other things. <em>Less</em> demands vigilance and discipline, perhaps even more effort than actually doing stuff.</p>\n</blockquote>\n<p>The reward for saying no feels like saying yes to a more important thing. But you still need decision discipline after that first “no”.</p>\n<p>Whenever I’ve heard things like “the key to serene focus and productivity is saying no more often”, it often seems like saying “no, thanks” on projects and potential work is the top of the hill. Like it’s all downhill to doing great work from there. Say no, they say, puts you on easy street to writing the great American novel/album/YouTube channel/large language model.</p>\n<p>Alas, saying no is not one weird trick for exercising all of your decision-making and discipline in one crucial moment. Making great stuff requires many small moments of saying no. Say no to looking up that frivolous fact. Say no to the pull of social media. Say no to taking a day off your habit of making great stuff. Say no to that Oreo cookie. ☹️</p>\n",
"content_text": "Ryan Holiday, [35 and 34, 36 Lessons on the Way to 36 Years Old](https://ryanholiday.net/36-lessons-on-the-way-to-36-years-old/):\n\n> As part of that, I made the difficult decision to call my publisher to push my next book a year or so. This was a massive clearance on my schedule—several hours a day did not have to be spent researching and writing on a project. Yet it was remarkable how little my life changed. Because tasks expand to fill the space, because it is so easy to say yes to other things. *Less* demands vigilance and discipline, perhaps even more effort than actually doing stuff.\n\nThe reward for saying no feels like saying yes to a more important thing. But you still need decision discipline after that first “no”.\n\nWhenever I've heard things like \"the key to serene focus and productivity is saying no more often\", it often seems like saying \"no, thanks\" on projects and potential work is the top of the hill. Like it's all downhill to doing great work from there. Say no, they say, puts you on easy street to writing the great American novel/album/YouTube channel/large language model.\n\nAlas, saying no is not one weird trick for exercising all of your decision-making and discipline in one crucial moment. Making great stuff requires many small moments of saying no. Say no to looking up that frivolous fact. Say no to the pull of social media. Say no to taking a day off your habit of making great stuff. Say no to that Oreo cookie. ☹️\n\n",
"date_published": "2023-11-01T05:49:09-07:00",
"url": "https://therealadam.micro.blog/2023/11/01/saying-no-is.html",
"tags": ["Creativity"]
},
{
"id": "http://therealadam.micro.blog/2023/10/24/the-point-of.html",
"content_html": "<p>The point of a commonplace notebook is not to generate immediate enlightenment. Writing a quote or idea now is the tip of the iceberg. The real insight comes when reviewing commonplace notes later and the dots start to connect themselves. That’s when the galaxy brain kicks in and the magic happens.</p>\n",
"content_text": "The point of a commonplace notebook is not to generate immediate enlightenment. Writing a quote or idea now is the tip of the iceberg. The real insight comes when reviewing commonplace notes later and the dots start to connect themselves. That’s when the galaxy brain kicks in and the magic happens.\n\n",
"date_published": "2023-10-24T08:28:08-07:00",
"url": "https://therealadam.micro.blog/2023/10/24/the-point-of.html"
},
{
"id": "http://therealadam.micro.blog/2023/10/24/my-promise-to.html",
"content_html": "<p>My promise to you, and the world: I will never call anything a “rig”. No matter how much people want to read about it, or how many hours I invest in it. Even if it is a car or musical equipment or an RV or something that is literally “a rig”. No matter how rigged up it is, I will find a way to dance around the word. Do unto others as they would do unto you, as they say.</p>\n",
"content_text": "My promise to you, and the world: I will never call anything a “rig”. No matter how much people want to read about it, or how many hours I invest in it. Even if it is a car or musical equipment or an RV or something that is literally “a rig”. No matter how rigged up it is, I will find a way to dance around the word. Do unto others as they would do unto you, as they say.\n\n\n",
"date_published": "2023-10-24T05:19:14-07:00",
"url": "https://therealadam.micro.blog/2023/10/24/my-promise-to.html"
},
{
"id": "http://therealadam.micro.blog/2023/10/13/the-pace-youre.html",
"title": "The pace you’re reading is the right pace for you to read",
"content_html": "<p>Ted Gioia, <a href=\"https://www.honest-broker.com/p/my-lifetime-reading-plan\">My Lifetime Reading Plan</a>:</p>\n<blockquote>\n<p><strong>IT’S OKAY TO READ SLOWLY</strong></p>\n<p>I tell myself that, because I am not a fast reader.</p>\n</blockquote>\n<p>By his accounts, Gioia is a prolific and thorough reader. And yet, a self-proclaimed non-speed-reader.</p>\n<p>You don’t have to read super-fast if you’re always reading whatever is right for you at the moment. Doubly so if you’re deeply/actively reading, searching for understanding or assimilating ideas into your own mental arena.</p>\n<p>Once more for the slow readers, like myself, in the back: it’s fine, just keep reading!</p>\n",
"content_text": "Ted Gioia, [My Lifetime Reading Plan](https://www.honest-broker.com/p/my-lifetime-reading-plan):\n\n> **IT’S OKAY TO READ SLOWLY**\n> \n> I tell myself that, because I am not a fast reader.\n\nBy his accounts, Gioia is a prolific and thorough reader. And yet, a self-proclaimed non-speed-reader. \n\nYou don’t have to read super-fast if you’re always reading whatever is right for you at the moment. Doubly so if you’re deeply/actively reading, searching for understanding or assimilating ideas into your own mental arena.\n\nOnce more for the slow readers, like myself, in the back: it’s fine, just keep reading!\n\n",
"date_published": "2023-10-13T08:12:02-07:00",
"url": "https://therealadam.micro.blog/2023/10/13/the-pace-youre.html",
"tags": ["Reading"]
},
{
"id": "http://therealadam.micro.blog/2023/10/02/aristotles-ethical-means.html",
"content_html": "<p><a href=\"https://austinkleon.com/2023/05/16/virtue-is-in-between-vices/\">Aristotle’s ethical means of virtue and vice</a> but for creative work:</p>\n<ul>\n<li>Winning is the mean between moving the goal-lines to finish and not finishing due to non-constructive goal-lines</li>\n<li>Quality is the mean between piles of incomplete junk and one or two overwrought ideas</li>\n<li>Taste is the mean between copying and invention in a vacuum of influences</li>\n<li>Flow is the mean between distraction and idleness</li>\n<li>Iteration is the mean between doing it once because you nailed it and doing it once because you gave up</li>\n</ul>\n",
"content_text": "[Aristotle's ethical means of virtue and vice](https://austinkleon.com/2023/05/16/virtue-is-in-between-vices/) but for creative work:\n\n- Winning is the mean between moving the goal-lines to finish and not finishing due to non-constructive goal-lines\n- Quality is the mean between piles of incomplete junk and one or two overwrought ideas\n- Taste is the mean between copying and invention in a vacuum of influences\n- Flow is the mean between distraction and idleness\n- Iteration is the mean between doing it once because you nailed it and doing it once because you gave up\n\n\n",
"date_published": "2023-10-02T05:34:42-07:00",
"url": "https://therealadam.micro.blog/2023/10/02/aristotles-ethical-means.html",
"tags": ["Creativity"]
},
{
"id": "http://therealadam.micro.blog/2023/09/23/stop-writing.html",
"title": "Stop writing",
"content_html": "<p>George Saunders on <a href=\"https://georgesaunders.substack.com/p/office-hours-8e8\">getting past self-critical/low-energy writing spirals</a> (aka one of the many forms of writer’s block):</p>\n<blockquote>\n<p>Another thing I sometimes suggest is this: stop writing. That is, stop doing your “real” writing. Yank yourself out of your usual daily routine. Instead, today, off the top of your head, write one sentence. Don’t think about what it should be about, or any of that. Just slap some crazy stuff down on the page. (Or it can be sane stuff. The “slapping down” is the key.) Print it out. Then, go do something else and, over the next 24 hours, do your best not to give that sentence a single thought.</p>\n</blockquote>\n<p>The complete method, in my own words:</p>\n<ul>\n<li>Start with a sentence, nothing in particular. Just start.</li>\n<li>Return to that sentence daily, making additions or changes that feel right.</li>\n<li>As the thing grows from a sentence to a paragraph and so on, spend more time with it. But don’t sweat the magnitude of the output. A trivial punctuation change is “a good day’s work”.</li>\n<li>Get bolder in the changes. Do what you prefer and don’t worry about why it is you gravitate towards that particular change.</li>\n<li>Resist the urge to switch from working on an exercise to working your routine/process. Keep growing it instinctively.</li>\n<li>Eventually you have a whole story/essay/whatever written this way and you’re happy to do something with it.</li>\n<li>Now you are un-stuck.</li>\n</ul>\n<p>(Am I using this post to get past a lull in publishing? Yes.)</p>\n",
"content_text": "George Saunders on [getting past self-critical/low-energy writing spirals](https://georgesaunders.substack.com/p/office-hours-8e8) (aka one of the many forms of writer’s block):\n\n> Another thing I sometimes suggest is this: stop writing. That is, stop doing your “real” writing. Yank yourself out of your usual daily routine. Instead, today, off the top of your head, write one sentence. Don’t think about what it should be about, or any of that. Just slap some crazy stuff down on the page. (Or it can be sane stuff. The “slapping down” is the key.) Print it out. Then, go do something else and, over the next 24 hours, do your best not to give that sentence a single thought. \n\nThe complete method, in my own words:\n\n- Start with a sentence, nothing in particular. Just start.\n- Return to that sentence daily, making additions or changes that feel right.\n- As the thing grows from a sentence to a paragraph and so on, spend more time with it. But don't sweat the magnitude of the output. A trivial punctuation change is \"a good day's work\".\n- Get bolder in the changes. Do what you prefer and don't worry about why it is you gravitate towards that particular change.\n- Resist the urge to switch from working on an exercise to working your routine/process. Keep growing it instinctively.\n- Eventually you have a whole story/essay/whatever written this way and you're happy to do something with it.\n- Now you are un-stuck.\n\n(Am I using this post to get past a lull in publishing? Yes.)\n\n",
"date_published": "2023-09-23T13:30:08-07:00",
"url": "https://therealadam.micro.blog/2023/09/23/stop-writing.html"
},
{
"id": "http://therealadam.micro.blog/2023/08/27/i-wonder-how.html",
"content_html": "<p>I wonder how Vonnegut might have coped with the <em>acceleration of change</em> we cope with in our modern dilemma.</p>\n<blockquote>\n<p>It’s just a hell of a time to be alive, is all—just this goddamn messy business of people having to get used to new ideas. And people just don’t, that’s all. I wish this were a hundred years from now, with everybody used to the change.</p>\n<p>– Kurt Vonnegut, <em>Player Piano</em></p>\n</blockquote>\n<p>He wrote so much about time, traversing it and getting unstuck in it, that I think he might have shrugged and stuck to an earlier motif: So it goes.</p>\n",
"content_text": "I wonder how Vonnegut might have coped with the _acceleration of change_ we cope with in our modern dilemma.\n\n> It’s just a hell of a time to be alive, is all—just this goddamn messy business of people having to get used to new ideas. And people just don’t, that’s all. I wish this were a hundred years from now, with everybody used to the change.\n> \n> – Kurt Vonnegut, _Player Piano_\n\nHe wrote so much about time, traversing it and getting unstuck in it, that I think he might have shrugged and stuck to an earlier motif: So it goes.\n\n",
"date_published": "2023-08-27T15:00:10-07:00",
"url": "https://therealadam.micro.blog/2023/08/27/i-wonder-how.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2023/08/13/i-dropped-in.html",
"content_html": "<p>I dropped in on historic races (the newest cars were 30 years old) at Laguna Seca. It’s great to see the track at scale, not as video-game or television camera angle. I watched practice sessions from the grand stand, heard the and watched the cars rip by at competitive speeds.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/image-8-13-23-8-35-am.png\" alt=\"A very green Porsche 911 race car and a 70s era Porsche prototype racecar\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/image-8-13-23-8-35-am-1.png\" alt=\"A BMW Alpina CSL race car in a very striking orange and green Jäegermeister livery\"></p>\n<p>I walked the paddock and infield. So many good cars to see. Felt the energy of mechanics getting cars, sometimes older than me, ready to go fast on track. I smelled a lot of gasoline and oil.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/image-8-13-23-8-35-am-2.png\" alt=\"One of the Ferrari F1 cars Niki Lauda raced and a Ford GT40 in a dark blue and orange non-traditional Gulf livery\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/image-8-13-23-8-41-am.png\" alt=\"A slant-nose 911 race car and a striking Spyder LeMans race car in Porsche-Martini livery\"></p>\n<p>It was a good day.</p>\n",
"content_text": "I dropped in on historic races (the newest cars were 30 years old) at Laguna Seca. It’s great to see the track at scale, not as video-game or television camera angle. I watched practice sessions from the grand stand, heard the and watched the cars rip by at competitive speeds.\n\n![A very green Porsche 911 race car and a 70s era Porsche prototype racecar](https://therealadam.micro.blog/uploads/2023/image-8-13-23-8-35-am.png)\n\n![A BMW Alpina CSL race car in a very striking orange and green Jäegermeister livery](https://therealadam.micro.blog/uploads/2023/image-8-13-23-8-35-am-1.png)\n\nI walked the paddock and infield. So many good cars to see. Felt the energy of mechanics getting cars, sometimes older than me, ready to go fast on track. I smelled a lot of gasoline and oil.\n\n![One of the Ferrari F1 cars Niki Lauda raced and a Ford GT40 in a dark blue and orange non-traditional Gulf livery](https://therealadam.micro.blog/uploads/2023/image-8-13-23-8-35-am-2.png)\n\n![A slant-nose 911 race car and a striking Spyder LeMans race car in Porsche-Martini livery](https://therealadam.micro.blog/uploads/2023/image-8-13-23-8-41-am.png)\n\nIt was a good day.\n\n",
"date_published": "2023-08-13T08:45:21-07:00",
"url": "https://therealadam.micro.blog/2023/08/13/i-dropped-in.html"
},
{
"id": "http://therealadam.micro.blog/2023/08/11/this-is-where.html",
"content_html": "<p>This is where we live, for a few days. I’m hoping “little adventures” like this are a nice compliment to <a href=\"https://short.therealadam.com/2023/08/04/a-vacation-is.html\">vacations</a>. Perhaps the former creates new mental connections and the latter are about disconnecting to consider and build upon existing connections.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/d02c705a0f.jpeg\" alt=\"An older RV parked in Northern California.\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/8fe88e100c.jpeg\" alt=\"A row of RVs at a dog agility event.\"></p>\n",
"content_text": "This is where we live, for a few days. I’m hoping “little adventures” like this are a nice compliment to [vacations](https://short.therealadam.com/2023/08/04/a-vacation-is.html). Perhaps the former creates new mental connections and the latter are about disconnecting to consider and build upon existing connections.\n\n![An older RV parked in Northern California.](https://therealadam.micro.blog/uploads/2023/d02c705a0f.jpeg)\n\n![A row of RVs at a dog agility event.](https://therealadam.micro.blog/uploads/2023/8fe88e100c.jpeg)\n\n\n",
"date_published": "2023-08-11T07:11:18-07:00",
"url": "https://therealadam.micro.blog/2023/08/11/this-is-where.html"
},
{
"id": "http://therealadam.micro.blog/2023/08/05/now-a-truth.html",
"content_html": "<blockquote>\n<p>“Now a truth,” said the judge. “The main business of humanity is to do a good job of being human beings,” said Paul, “not to serve as appendages to machines, institutions, and systems.”</p>\n<p>– Kurt Vonnegut, <em>Player Piano</em></p>\n</blockquote>\n<p>We’re here to do human things: create for each other, love our friends and family, support our communities, experience and protect our world.</p>\n<p>A life serving only algorithms wrought by corporations<sup id=\"fnref:1\"><a href=\"#fn:1\" class=\"footnote-ref\" role=\"doc-noteref\">1</a></sup>, engaged with organizations that care more about themselves than their people, or partaking in eco-cultural regimes that disregard our humanity are not worth pursuing.</p>\n<section class=\"footnotes\" role=\"doc-endnotes\">\n<hr>\n<ol>\n<li id=\"fn:1\" role=\"doc-endnote\">\n<p>IOW, don’t throw your whole existence into being a content creator, folks. <a href=\"#fnref:1\" class=\"footnote-backref\" role=\"doc-backlink\">↩︎</a></p>\n</li>\n</ol>\n</section>\n",
"content_text": "> “Now a truth,” said the judge. “The main business of humanity is to do a good job of being human beings,” said Paul, “not to serve as appendages to machines, institutions, and systems.”\n> \n> – Kurt Vonnegut, *Player Piano*\n\nWe’re here to do human things: create for each other, love our friends and family, support our communities, experience and protect our world.\n\nA life serving only algorithms wrought by corporations[^1], engaged with organizations that care more about themselves than their people, or partaking in eco-cultural regimes that disregard our humanity are not worth pursuing.\n\n\n[^1]:\tIOW, don’t throw your whole existence into being a content creator, folks.\n",
"date_published": "2023-08-05T14:03:11-07:00",
"url": "https://therealadam.micro.blog/2023/08/05/now-a-truth.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2023/08/04/a-vacation-is.html",
"title": "A vacation is a tool for disconnecting",
"content_html": "<p>I’m reflecting<sup id=\"fnref:1\"><a href=\"#fn:1\" class=\"footnote-ref\" role=\"doc-noteref\">1</a></sup> on travelogue’ing my <a href=\"https://short.therealadam.com/2023/07/30/rule-is-you.html\">recent</a> <a href=\"https://short.therealadam.com/2023/07/31/rule-is-you.html\">trip</a> <a href=\"https://short.therealadam.com/2023/08/01/wherein-favorite-franchises.html\">to</a> <a href=\"https://short.therealadam.com/2023/08/02/many-parts-of.html\">Disneyland</a>. In particular, that it was effective at taking my mind off work while maintaining creative writing and publishing habits.</p>\n<p>Lately, I find myself dwelling on work too much or noodling through various puzzles I’m trying to solve. I would rather not bring that with me on vacation. What I removed and what I replaced those thoughts with went pretty well! For my own memory, and perhaps dear reader’s benefit:</p>\n<p><strong>Allow plenty of moments to just exist</strong>. Listen, enjoy where you are. Engage with the folks you’re vacationing with, presuming they’re not in a phone-bubble. Try to put the phone away after you mindlessly open it out of boredom. Cultivate the moments of boredom, if you can.</p>\n<p><strong>Don’t look at feeds</strong> like Slack, Discord, socials, etc. I took the extra step of removing Slack from my phone entirely. It’s easier to remove it entirely and re-add each Slack later than to try to ignore particular instances whenever I find myself mindlessly opening the app. Read a lot, ideally longer form things chosen beforehand. Again: ignore the feeds of people hustling or trying to get their ideas into my attention. Think your own thoughts!</p>\n<p><strong>Replace all those feeds and work-think with written and photographic journaling.</strong> Look for photography opportunities, even if you’re not particularly good at it (yet). Write in a journal, daily, even if you’re not good at it (yet). Write about what you’ve photographed, about whatever you’re thinking while disconnected, about that conversation you just had or the novel thing you just saw/did.</p>\n<p><strong>If you want to share via social networks, do it once a day.</strong> I posted (via micro.blog and <a href=\"https://ulysses.app\">Ulysses</a>) a short reflection on each day. For texture, I included a quad of photos, and wrote a few sentences to reflect on my photography or day so far. Once the post is made, put the computer away and get back to reveling in disconnection.</p>\n<p>YMMV, but I hope you try it!</p>\n<section class=\"footnotes\" role=\"doc-endnotes\">\n<hr>\n<ol>\n<li id=\"fn:1\" role=\"doc-endnote\">\n<p>With apologies to Craig Mod for standing on the shoulders of <a href=\"https://craigmod.com/ridgeline/116/\">A Walk is a Platform for Creative Work</a>. <a href=\"#fnref:1\" class=\"footnote-backref\" role=\"doc-backlink\">↩︎</a></p>\n</li>\n</ol>\n</section>\n",
"content_text": "I’m reflecting[^1] on travelogue’ing my [recent](https://short.therealadam.com/2023/07/30/rule-is-you.html) [trip](https://short.therealadam.com/2023/07/31/rule-is-you.html) [to](https://short.therealadam.com/2023/08/01/wherein-favorite-franchises.html) [Disneyland](https://short.therealadam.com/2023/08/02/many-parts-of.html). In particular, that it was effective at taking my mind off work while maintaining creative writing and publishing habits.\n\nLately, I find myself dwelling on work too much or noodling through various puzzles I’m trying to solve. I would rather not bring that with me on vacation. What I removed and what I replaced those thoughts with went pretty well! For my own memory, and perhaps dear reader’s benefit:\n\n**Allow plenty of moments to just exist**. Listen, enjoy where you are. Engage with the folks you’re vacationing with, presuming they’re not in a phone-bubble. Try to put the phone away after you mindlessly open it out of boredom. Cultivate the moments of boredom, if you can.\n\n**Don’t look at feeds** like Slack, Discord, socials, etc. I took the extra step of removing Slack from my phone entirely. It’s easier to remove it entirely and re-add each Slack later than to try to ignore particular instances whenever I find myself mindlessly opening the app. Read a lot, ideally longer form things chosen beforehand. Again: ignore the feeds of people hustling or trying to get their ideas into my attention. Think your own thoughts!\n\n**Replace all those feeds and work-think with written and photographic journaling.** Look for photography opportunities, even if you’re not particularly good at it (yet). Write in a journal, daily, even if you’re not good at it (yet). Write about what you’ve photographed, about whatever you’re thinking while disconnected, about that conversation you just had or the novel thing you just saw/did.\n\n**If you want to share via social networks, do it once a day.** I posted (via micro.blog and [Ulysses](https://ulysses.app)) a short reflection on each day. For texture, I included a quad of photos, and wrote a few sentences to reflect on my photography or day so far. Once the post is made, put the computer away and get back to reveling in disconnection.\n\nYMMV, but I hope you try it!\n\n[^1]:\tWith apologies to Craig Mod for standing on the shoulders of [A Walk is a Platform for Creative Work](https://craigmod.com/ridgeline/116/).\n",
"date_published": "2023-08-04T09:54:43-07:00",
"url": "https://therealadam.micro.blog/2023/08/04/a-vacation-is.html"
},
{
"id": "http://therealadam.micro.blog/2023/08/03/a-pretty-ideal.html",
"content_html": "<p>A pretty ideal travel day: start at the pool, wait in the breeze and shade, depart from the open tarmacs of tiny Long Beach Airport.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/15ec6988-ae71-4a7d-ae05-e76d43a44d3b.jpeg\" alt=\"Chillin by the hot tub\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/3e829f2206.jpeg\" alt=\"Luggage and comfy couches in the Disneyland Hotel breezeway \"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/14dbad8e42.jpeg\" alt=\"Looking up a Southwest Boeing 737 from the gate at LGB\"></p>\n<p>Not pictured: returning to the searing heat of central Texas. 😬🙃🫠</p>\n",
"content_text": "A pretty ideal travel day: start at the pool, wait in the breeze and shade, depart from the open tarmacs of tiny Long Beach Airport.\n\n![Chillin by the hot tub](https://therealadam.micro.blog/uploads/2023/15ec6988-ae71-4a7d-ae05-e76d43a44d3b.jpeg)\n\n![Luggage and comfy couches in the Disneyland Hotel breezeway ](https://therealadam.micro.blog/uploads/2023/3e829f2206.jpeg)\n\n![Looking up a Southwest Boeing 737 from the gate at LGB](https://therealadam.micro.blog/uploads/2023/14dbad8e42.jpeg)\n\nNot pictured: returning to the searing heat of central Texas. 😬🙃🫠\n\n",
"date_published": "2023-08-03T17:50:35-07:00",
"url": "https://therealadam.micro.blog/2023/08/03/a-pretty-ideal.html"
},
{
"id": "http://therealadam.micro.blog/2023/08/02/many-parts-of.html",
"content_html": "<p>Many parts of Disneyland are ridiculously easy to photograph.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/draggedimage.jpeg\" alt=\"Pixar Pier in the golden hour. The Incredicoaster and Fun Wheel reflect on the pool in the foreground.\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/draggedimage-1.jpeg\" alt=\"Radiator Springs at night. The Cozy Cone Motel and Flo’s V8 cafe neon glow against the night sky.\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/draggedimage-2.jpeg\" alt=\"Radiator Springs lit up at night. Luigi’s Rollickin’ Roadsters on the left.\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/draggedimage-3.jpeg\" alt=\"Fantasyland overlooking Storybook and the Matterhorn in the early morning.\"></p>\n<p>Particularly at dusk and night, and for folks (like me) with very rudimentary photography skills. I’m pretty convinced this is one of the myriad details the Imagineers wrangle as they design these parks.</p>\n",
"content_text": "Many parts of Disneyland are ridiculously easy to photograph.\n\n![Pixar Pier in the golden hour. The Incredicoaster and Fun Wheel reflect on the pool in the foreground.](https://therealadam.micro.blog/uploads/2023/draggedimage.jpeg)\n\n![Radiator Springs at night. The Cozy Cone Motel and Flo’s V8 cafe neon glow against the night sky.](https://therealadam.micro.blog/uploads/2023/draggedimage-1.jpeg)\n\n![Radiator Springs lit up at night. Luigi’s Rollickin’ Roadsters on the left.](https://therealadam.micro.blog/uploads/2023/draggedimage-2.jpeg)\n\n![Fantasyland overlooking Storybook and the Matterhorn in the early morning.](https://therealadam.micro.blog/uploads/2023/draggedimage-3.jpeg)\n\nParticularly at dusk and night, and for folks (like me) with very rudimentary photography skills. I’m pretty convinced this is one of the myriad details the Imagineers wrangle as they design these parks.\n\n",
"date_published": "2023-08-02T17:31:58-07:00",
"url": "https://therealadam.micro.blog/2023/08/02/many-parts-of.html"
},
{
"id": "http://therealadam.micro.blog/2023/08/01/wherein-favorite-franchises.html",
"content_html": "<p>Wherein favorite franchises are done</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/55ef768e-78b1-4b87-a686-0770494ba10f.jpeg\" alt=\"A topiary of a Formula One car\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/1aa4f1c5-a1c5-4992-8294-71d5c3985f38.jpeg\" alt=\"Pre-ride with Rey and BB-8\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/154dfb00-7267-4b3a-882a-0ffe322a2a75.jpeg\" alt=\"A relatively quiet moment at Oga’s cantina\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/d870bea0-e5a0-4472-a6d3-895dc48ad88e.jpeg\" alt=\"Movie poster for the speculative “The Chipmunk Trap” in a ride queue\"></p>\n",
"content_text": "Wherein favorite franchises are done\n\n![A topiary of a Formula One car](https://therealadam.micro.blog/uploads/2023/55ef768e-78b1-4b87-a686-0770494ba10f.jpeg)\n\n![Pre-ride with Rey and BB-8](https://therealadam.micro.blog/uploads/2023/1aa4f1c5-a1c5-4992-8294-71d5c3985f38.jpeg)\n\n![A relatively quiet moment at Oga’s cantina](https://therealadam.micro.blog/uploads/2023/154dfb00-7267-4b3a-882a-0ffe322a2a75.jpeg)\n\n![Movie poster for the speculative “The Chipmunk Trap” in a ride queue](https://therealadam.micro.blog/uploads/2023/d870bea0-e5a0-4472-a6d3-895dc48ad88e.jpeg)\n\n\n",
"date_published": "2023-08-01T14:56:51-07:00",
"url": "https://therealadam.micro.blog/2023/08/01/wherein-favorite-franchises.html"
},
{
"id": "http://therealadam.micro.blog/2023/07/31/rule-is-you.html",
"content_html": "<p>Rule #1 is you a) get up early, b) ride stuff early and c) take a break in the middle of the day while (many) folks are at the parks.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/image-7-31-23-6-15-pm.png\" alt=\"Screenshot of iPhone lock screen clock at 6:42am\"></p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/image-7-31-23-6-15-pm-1.png\" alt=\"The Disneyland Hotel resort, including Trader Sam’s, very early in the morning.\"></p>\n<p>Roz is the unsung hero of the Monsters, Inc. franchise. Impeccable delivery, no notes.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/cded7b6d-2db0-4d6a-8236-edd79797b73c.jpeg\" alt=\"Roz from Monsters Inc., at the end of the Disney California Adventure ride for the same franchise.\"></p>\n<p>One of our favorites is the Animation Academy. It’s a short entertainment, wherein a cast member teaches you to draw a Disney/Pixar character in ten minutes or so. I’m not at all good at sketching, so I think it speaks volumes to the quality of the cast members that you can, maybe, tell that I’m drawing Mickey Mouse here.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2023/1ffa7dcf-be91-4e42-9487-f4d6df734f31.jpeg\" alt=\"A pencil sketch of Mickey Mouse\"></p>\n",
"content_text": "Rule #1 is you a) get up early, b) ride stuff early and c) take a break in the middle of the day while (many) folks are at the parks.\n\n![Screenshot of iPhone lock screen clock at 6:42am](https://therealadam.micro.blog/uploads/2023/image-7-31-23-6-15-pm.png)\n\n![The Disneyland Hotel resort, including Trader Sam’s, very early in the morning.](https://therealadam.micro.blog/uploads/2023/image-7-31-23-6-15-pm-1.png)\n\nRoz is the unsung hero of the Monsters, Inc. franchise. Impeccable delivery, no notes.\n\n![Roz from Monsters Inc., at the end of the Disney California Adventure ride for the same franchise.](https://therealadam.micro.blog/uploads/2023/cded7b6d-2db0-4d6a-8236-edd79797b73c.jpeg)\n\nOne of our favorites is the Animation Academy. It’s a short entertainment, wherein a cast member teaches you to draw a Disney/Pixar character in ten minutes or so. I’m not at all good at sketching, so I think it speaks volumes to the quality of the cast members that you can, maybe, tell that I’m drawing Mickey Mouse here.\n\n![A pencil sketch of Mickey Mouse](https://therealadam.micro.blog/uploads/2023/1ffa7dcf-be91-4e42-9487-f4d6df734f31.jpeg)\n\n\n",
"date_published": "2023-07-31T19:17:53-07:00",
"url": "https://therealadam.micro.blog/2023/07/31/rule-is-you.html"
},
{
"id": "http://therealadam.micro.blog/2023/07/30/rule-is-you.html",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<img src=\"uploads/2023/image.jpg\" width=\"450\" height=\"600\" alt=\"\">\n1. Rule #2 is you gotta take a picture of this signage, every time.\n\n<img src=\"uploads/2023/4d3ec6e0f1.jpg\" width=\"600\" height=\"450\" alt=\"\">\n2. Matterhorn looks better from almost every angle than it feels to ride it (if you’re over forty). \n\n<img src=\"uploads/2023/100fd1e389.jpg\" width=\"600\" height=\"450\" alt=\"\">\n3. It’s a lovely day for retro future and wishing they’d put a people mover in at Disneyland. \n\n<img src=\"uploads/2023/3738fa461e.jpg\" width=\"600\" height=\"450\" alt=\"\">\n4. Spoiler alert.\n",
"date_published": "2023-07-30T14:14:10-07:00",
"url": "https://therealadam.micro.blog/2023/07/30/rule-is-you.html"
},
{
"id": "http://therealadam.micro.blog/2023/07/20/magic-ai-is.html",
"title": "Magic (AI) is what we don’t (yet) understand",
"content_html": "<blockquote>\n<p>It reflects a sound understanding of the nature of AI — as an uncredited and formless <em>modifier</em> of other technologies. One whose presence is marked by familiar behaviors having slightly magical effects.</p>\n<p>– Venkatesh Rao, <a href=\"https://studio.ribbonfarm.com/p/magic-mundanity-and-deep-protocolization\">Magic, Mundanity and Deep Protocolization</a></p>\n</blockquote>\n<p>The whole magic & AI thing. The most 2023 of vibes!</p>\n<p>Yet, it remains to be seen to what extent AI will yield entirely new media, modalities, and consumption levels or if it will merely modify technology we’re already familiar with.</p>\n<p>Is generative AI the iPhone (entirely new media/modality/consumption), the iPhone camera (displaces <em>and exceeds</em> existing categories), or the ability to scan QR codes with your camera to reduce transactional friction (a game changer for some that quickly fades into the background)?</p>\n",
"content_text": "> It reflects a sound understanding of the nature of AI — as an uncredited and formless *modifier* of other technologies. One whose presence is marked by familiar behaviors having slightly magical effects.\n> \n> – Venkatesh Rao, [Magic, Mundanity and Deep Protocolization](https://studio.ribbonfarm.com/p/magic-mundanity-and-deep-protocolization)\n\nThe whole magic & AI thing. The most 2023 of vibes!\n\nYet, it remains to be seen to what extent AI will yield entirely new media, modalities, and consumption levels or if it will merely modify technology we’re already familiar with. \n\nIs generative AI the iPhone (entirely new media/modality/consumption), the iPhone camera (displaces _and exceeds_ existing categories), or the ability to scan QR codes with your camera to reduce transactional friction (a game changer for some that quickly fades into the background)?\n\n\n",
"date_published": "2023-07-20T07:25:41-07:00",
"url": "https://therealadam.micro.blog/2023/07/20/magic-ai-is.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2023/07/15/evenings-at-the.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://music.apple.com/us/album/evenings-at-the-village-gate-john-coltrane-with/1687727133\">Evenings at the Village Gate: John Coltrane (with Eric Dolphy)</a>. Five tracks, all excellent. Great bass playing by Reggie Workman and Art Davis. Favorite tracks: “Greensleeves”, “Africa”.</p>\n",
"date_published": "2023-07-15T15:54:29-07:00",
"url": "https://therealadam.micro.blog/2023/07/15/evenings-at-the.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2023/07/15/less-but-better.html",
"title": "Less but better",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://www.hodinkee.com/articles/designers-designers-watch-braun-classics\">The Designer’s Designer’s Watch – A Look Back At Braun And The Rebirth Of A Few Classics</a></p>\n\n<blockquote>\n<p>The Braun watches AW 10 and AW 50 embody simplicity. Just as do the clocks and electrical appliances made by Braun, they truly follow the “less is more” dogma that (arguably) stems from the Bauhaus school. Or, as Braun likes to put it: Less but better. Design has been at the core of the brand for seven decades, and its watches and clocks were designed by a team headed by two men: Dieter Rams and Dietrich Lubs.</p>\n</blockquote>\n\n<p>✋🏻 “Less is more”: easy to say, hard to apply. </p>\n\n<p>👍🏻 “Less but better”: easy to say, easy to tell when you’ve done the first part but missed on the second.</p>\n",
"date_published": "2023-07-15T12:40:58-07:00",
"url": "https://therealadam.micro.blog/2023/07/15/less-but-better.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2023/07/15/this-is-nice.html",
"content_html": "<p>This is nice. Once Over’s back patio annex is excellent.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "This is nice. Once Over’s back patio annex is excellent. \n\n<img src=\"uploads/2023/7380ee1117744688a67be1c836556cdc.jpg\" width=\"600\" height=\"450\" alt=\"\">\n",
"date_published": "2023-07-15T08:18:42-07:00",
"url": "https://therealadam.micro.blog/2023/07/15/this-is-nice.html"
},
{
"id": "http://therealadam.micro.blog/2023/07/08/think-through-making.html",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<blockquote>\n<p>Think through making.\n– Matt Webb (by way of Matt Ward) <a href=\"https://interconnected.org/home/2023/05/19/protocols\">Protocol Fiction, Desire, and Belief</a></p>\n</blockquote>\n\n<p>Ideas in your head are shallow next to ideas worked out with craft, material, and context.</p>\n",
"date_published": "2023-07-08T09:59:42-07:00",
"url": "https://therealadam.micro.blog/2023/07/08/think-through-making.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2023/07/07/the-bear.html",
"title": "The Bear",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p>I watched seasons 1 and 2 over the course of a few weeks. Fantastic show, no notes. </p>\n\n<p>I can’t start to describe it. It’s not crime-y, not a comedy. It’s not exactly feel good, but it possibly takes the spot in my brain formerly held by <em>Ted Lasso</em>. </p>\n\n<p>There’s often a <em>lot</em> of yelling. But it made me start using “heard” as a single-word sentence conveying “I have heard what you said, don’t disagree, but haven’t entirely processed it.”</p>\n\n<p>It’s about cooking, craft, and running a restaurant. Maybe it’s <em>Ratatouille</em>’s darker cousin?</p>\n\n<p>Recommended.</p>\n",
"date_published": "2023-07-07T05:53:21-07:00",
"url": "https://therealadam.micro.blog/2023/07/07/the-bear.html",
"tags": ["Watching"]
},
{
"id": "http://therealadam.micro.blog/2023/07/04/in-the-meantime.html",
"content_html": "<!-- raw HTML omitted -->\n<p>– Austin Kleon, <!-- raw HTML omitted -->Steal Like an Artist<!-- raw HTML omitted --><!-- raw HTML omitted --></p>\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<blockquote>\n<p>In the meantime, if you’re not into the world you live in, you can build your own world around you. (Now would be a good time to put on your headphones and cue up the Beach Boys song “In My Room.”) Surround yourself with books and objects that you love. Tape things up on the wall. Create your own world.\n\n\n– Austin Kleon, <em>Steal Like an Artist</em></p>\n</blockquote>\n\n<p>Put up the walls you want in the world. Look past the walls you dislike. (<em>Ed. </em>As a metaphor, this works for sure. Literally, in the case of oppressive regimes, not sure how to carry this idea forward.)</p>\n",
"date_published": "2023-07-04T11:42:57-07:00",
"url": "https://therealadam.micro.blog/2023/07/04/in-the-meantime.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2023/06/20/in-the-moment.html",
"title": "In the moment",
"content_html": "<p>Is pessimism about the past, present, or future? If it says, “we can’t get there from here, based on where we’ve been”, it neglects the present and maybe the future.</p>\n<p>Does optimism favor the future over the past or present? A smart optimist might use the past as a trend-line to the future, and seek to make the most of the present.</p>\n",
"content_text": "Is pessimism about the past, present, or future? If it says, “we can’t get there from here, based on where we’ve been”, it neglects the present and maybe the future.\n\nDoes optimism favor the future over the past or present? A smart optimist might use the past as a trend-line to the future, and seek to make the most of the present.\n",
"date_published": "2023-06-20T07:16:36-07:00",
"url": "https://therealadam.micro.blog/2023/06/20/in-the-moment.html"
},
{
"id": "http://therealadam.micro.blog/2023/06/18/fruitless-activities-and.html",
"title": "Fruitless activities and hobbies are important!",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<blockquote>\n<p>Anything you do that doesn’t make you money or help others better be something for your own damned amusement.\n– <a href=\"https://twitter.com/austinkleon/status/1670067739673743360?s=12\">Austin Kleon</a></p>\n</blockquote>\n",
"date_published": "2023-06-18T09:01:43-07:00",
"url": "https://therealadam.micro.blog/2023/06/18/fruitless-activities-and.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2023/06/12/if-this-isnt.html",
"title": "\"If this isn’t nice, I don’t know what is\"",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://www.goodreads.com/quotes/3172-and-i-urge-you-to-please-notice-when-you-are\">Kurt Vonnegut</a>:</p>\n\n<blockquote>\n<p>And I urge you to please notice when you are happy, and exclaim or murmur or think at some point, ‘If this isn’t nice, I don’t know what is.’</p>\n</blockquote>\n\n<p>It’s a kind of way to go about life. Find more activities, people, places that lead to this kind of thought. Find more reasons to say it in regular life. Spend more time doing all those things.</p>\n",
"date_published": "2023-06-12T05:21:20-07:00",
"url": "https://therealadam.micro.blog/2023/06/12/if-this-isnt.html",
"tags": ["Reading"]
},
{
"id": "http://therealadam.micro.blog/2023/06/11/monk-and-robot.html",
"title": "Monk and Robot: very enjoyable chill-future vibes",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://www.goodreads.com/book/show/40864002-a-psalm-for-the-wild-built\">Monk and Robot, A Psalm for the Wild-Built</a>, Becky Chambers. An optimistic, non-space/techno sci-fi short novel. For me, it’s a welcome departure from the Very Serious Ideas of Stephenson, Asimov, Gibson, etc. No big bad, just a nice world and great interactions between a person and a robot.</p>\n\n<p>Highly recommended for a vacation/beach read.</p>\n",
"date_published": "2023-06-11T10:08:32-07:00",
"url": "https://therealadam.micro.blog/2023/06/11/monk-and-robot.html",
"tags": ["Reading"]
},
{
"id": "http://therealadam.micro.blog/2023/06/07/it-sounded-like.html",
"title": "\"It sounded like the kick drum was played by a drunk 3-year old, and I was like ‘Are you allowed to do that?’”",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://pudding.cool/2023/06/groove/\">WONKY</a> – pudding.cool analyzes what makes J Dilla special. Particularly good if <a href=\"https://dillati.me/\">Dilla Time</a> (<a href=\"https://short.therealadam.com/2022/11/13/dilla-time.html\">previously</a>) is still in your to-read list.</p>\n",
"date_published": "2023-06-07T09:09:55-07:00",
"url": "https://therealadam.micro.blog/2023/06/07/it-sounded-like.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2023/05/28/albums-is-a.html",
"content_html": "<p><a href=\"https://www.albumstheapp.com/?ref=bb.place\">Albums</a> is a great app and <a href=\"https://bb.place/the-best-app-for-albums/\">The Best App for Albums</a> is a great review of what makes it good for music enthusiasts and/or organizational hobbyists. I don’t want to jinx it, but Albums checks a lot of boxes for me that Rdio did, back in the day.</p>\n",
"content_text": "[Albums](https://www.albumstheapp.com/?ref=bb.place) is a great app and [The Best App for Albums](https://bb.place/the-best-app-for-albums/) is a great review of what makes it good for music enthusiasts and/or organizational hobbyists. I don’t want to jinx it, but Albums checks a lot of boxes for me that Rdio did, back in the day.\n",
"date_published": "2023-05-28T08:34:05-07:00",
"url": "https://therealadam.micro.blog/2023/05/28/albums-is-a.html"
},
{
"id": "http://therealadam.micro.blog/2023/05/26/til-jenny-lewis.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>TIL Jenny Lewis covered the Traveling Wilburys’ <a href=\"https://music.apple.com/us/album/handle-with-care/1043297885?i=1043298766\">“Handle With Care”</a>. 👍🏻</p>\n",
"date_published": "2023-05-26T07:55:30-07:00",
"url": "https://therealadam.micro.blog/2023/05/26/til-jenny-lewis.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2023/05/12/dont-zero-out.html",
"title": "Don’t zero out the margins",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://fs.blog/slack/\">Efficiency is the enemy</a>, Farnam Street:</p>\n\n<blockquote>\n<p>It’s possible to make an organization more efficient without making it better. That’s what happens when you drive out slack. It’s also possible to make an organization a little less efficient and improve it enormously. In order to do that, you need to reintroduce enough slack to allow the organization to breathe, reinvent itself, and make necessary change.</p>\n</blockquote>\n\n<p>The good stuff happens in the margins. The scribbles in books, the breath between notes, the five minutes before meetings start when folks are real. Driving a car for the <em>sensation</em> of driving fast, rather than driving fast to achieve the best possible time.</p>\n\n<p>It’s the difference between enjoying a hobby and making a profession out of a hobby. Efficiency is the adversary of fun.</p>\n",
"date_published": "2023-05-12T14:12:34-07:00",
"url": "https://therealadam.micro.blog/2023/05/12/dont-zero-out.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2023/04/01/writing-is-a.html",
"title": "Writing is a \"do it, somehow, every day\" game",
"content_html": "<p>Whenever I find myself wishing I was posting more toots/articles/etc., I remind myself that the first step is to get words out of my head and onto the page. The hack is that “the page” is often a personal journal (I use <a href=\"https://dayoneapp.com\">Day One</a>), a paper notebook (<a href=\"https://baronfig.com/products/confidant-hardcover-notebook\">Baron Fig</a>, currently) , or even a task with a note of a few sentences in <a href=\"https://culturedcode.com/things/\">Things</a>. It all counts.</p>\n<p><a href=\"https://www.youtube.com/watch?v=iO5jub2q8us\" title=\"Still my favorite Nike ad, 11 years later\"><img src=\"https://therealadam.micro.blog/uploads/2023/5c8ec79c2b.png\" alt=\"Just sitting around like The Big Liebowski does not count as writing\"></a></p>\n<p>More importantly, it generates momentum. Possibly, this writer’s most crucial but immeasurable input commodity.</p>\n<p>Related: <a href=\"https://ruby.social/@therealadam/110072680899591393\">finishing is the skill</a> and <a href=\"https://austinkleon.com/2017/11/20/a-few-notes-on-daily-blogging/\">Austin Kleon’s notes on daily blogging, and stock/flow</a>.</p>\n",
"content_text": "Whenever I find myself wishing I was posting more toots/articles/etc., I remind myself that the first step is to get words out of my head and onto the page. The hack is that \"the page\" is often a personal journal (I use [Day One](https://dayoneapp.com)), a paper notebook ([Baron Fig](https://baronfig.com/products/confidant-hardcover-notebook), currently) , or even a task with a note of a few sentences in [Things](https://culturedcode.com/things/). It all counts.\n\n[![Just sitting around like The Big Liebowski does not count as writing](https://therealadam.micro.blog/uploads/2023/5c8ec79c2b.png)](https://www.youtube.com/watch?v=iO5jub2q8us \"Still my favorite Nike ad, 11 years later\")\n\nMore importantly, it generates momentum. Possibly, this writer’s most crucial but immeasurable input commodity.\n\nRelated: [finishing is the skill](https://ruby.social/@therealadam/110072680899591393) and [Austin Kleon’s notes on daily blogging, and stock/flow](https://austinkleon.com/2017/11/20/a-few-notes-on-daily-blogging/).\n\n\n",
"date_published": "2023-04-01T09:36:19-07:00",
"url": "https://therealadam.micro.blog/2023/04/01/writing-is-a.html"
},
{
"id": "http://therealadam.micro.blog/2023/03/25/dock-jackpot-in.html",
"content_html": "<h1 id=\"dock-jackpot\">Dock jackpot</h1>\n<p>In twenty years of using Mac OS X/macOS, rarely has my dock <em>not</em> been all blue icons or a bunch of faces staring at each other. Today is one of those days, bless.</p>\n<!-- raw HTML omitted -->\n",
"content_text": "# Dock jackpot\n\nIn twenty years of using Mac OS X/macOS, rarely has my dock _not_ been all blue icons or a bunch of faces staring at each other. Today is one of those days, bless.\n\n<img src=\"uploads/2023/05691d963d.png\" width=\"600\" height=\"67\" alt=\"\">\n",
"date_published": "2023-03-25T11:05:54-07:00",
"url": "https://therealadam.micro.blog/2023/03/25/dock-jackpot-in.html"
},
{
"id": "http://therealadam.micro.blog/2023/02/23/reading-february.html",
"title": "Reading, February 2023",
"content_html": "<p>I’m <a href=\"https://short.therealadam.com/2022/11/09/currently-digging.html\">still</a> reading about the Manhattan Project. The going is slow. Big books, big timelines. At least, for the speed at which I read.</p>\n<p>Rhodes, <em>Making of the Atomic Bomb</em> – I’m 500+ pages in and only up to the early 1940s. That’s a hefty history meatball. That said, it’s a deep dive into the history of science in context with chemistry and quantum/nuclear physics. If you like a hefty but complete book, this one is your jam.</p>\n<p>Wellerstein, <em>Restricted Data</em> – I have very much enjoyed the author’s <a href=\"https://blog.nuclearsecrecy.com\">blog of the same name</a> over the years. The author goes deep on the newly created apparatus for keeping the Manhattan Project secret from very nearly the whole world during the war. The pace for this one is a little off, to my preference, so I’ve put this one down for the moment.</p>\n<p>Gleick, <em>Genius</em> – Big Richard Feynman fan here. This book does not disappoint as a biography. Gleick is a great writer, writing with detail but without losing pace or going so deep that the thread is easily lost.</p>\n<p>Reading in <a href=\"https://www.driverlesscrocodile.com/books-and-recommendations/more-from-tyler-cowen-and-russ-roberts-on-reading/\">topical clusters</a> has worked really well for me. The books <a href=\"https://austinkleon.com/2020/02/13/on-reading-more-than-one-book-at-a-time/\">talk to each</a> other. It’s a bit like a Manhattan Project Cinematic Universe when personalities come together in Los Alamos and then disperse as each book follows a different thread of history. Physicists assemble, I suppose!</p>\n",
"content_text": "I’m [still](https://short.therealadam.com/2022/11/09/currently-digging.html) reading about the Manhattan Project. The going is slow. Big books, big timelines. At least, for the speed at which I read. \n\nRhodes, _Making of the Atomic Bomb_ – I’m 500+ pages in and only up to the early 1940s. That’s a hefty history meatball. That said, it’s a deep dive into the history of science in context with chemistry and quantum/nuclear physics. If you like a hefty but complete book, this one is your jam.\n\nWellerstein, _Restricted Data_ – I have very much enjoyed the author’s [blog of the same name](https://blog.nuclearsecrecy.com) over the years. The author goes deep on the newly created apparatus for keeping the Manhattan Project secret from very nearly the whole world during the war. The pace for this one is a little off, to my preference, so I’ve put this one down for the moment.\n\nGleick, _Genius_ – Big Richard Feynman fan here. This book does not disappoint as a biography. Gleick is a great writer, writing with detail but without losing pace or going so deep that the thread is easily lost.\n\nReading in [topical clusters](https://www.driverlesscrocodile.com/books-and-recommendations/more-from-tyler-cowen-and-russ-roberts-on-reading/) has worked really well for me. The books [talk to each](https://austinkleon.com/2020/02/13/on-reading-more-than-one-book-at-a-time/) other. It’s a bit like a Manhattan Project Cinematic Universe when personalities come together in Los Alamos and then disperse as each book follows a different thread of history. Physicists assemble, I suppose!\n\n\n",
"date_published": "2023-02-23T06:49:50-07:00",
"url": "https://therealadam.micro.blog/2023/02/23/reading-february.html",
"tags": ["Reading"]
},
{
"id": "http://therealadam.micro.blog/2023/02/13/natasha-lyonne-is.html",
"title": "Natasha Lyonne is my generation’s Joe Pesci",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><em>Poker Face</em> is a gem. Do yourself a favor and start watching it<a href=\"#fn:1\" id=\"fnref:1\" title=\"see footnote\" class=\"footnote\">[1]</a>. I didn’t realize I needed a weekly murder mystery kind of show. But I did, in this specific form.</p>\n\n<figure>\n<img src=\"uploads/2023/571c502ab7.png\" alt=\"Poster image of Natasha Lynne wearing sunglasses in the American Southwest\" />\n<figcaption>Poster image of Natasha Lynne wearing sunglasses in the American Southwest</figcaption>\n</figure>\n\n<p>Like murder mysteries of yore, <em>Poker Face</em> has a recognizable and soon-familiar cadence. We see a murder happen in the first few scenes, rewind to a few days previous when Natasha Lyonne arrives on said scene, we see her discover and solve the murder. The format works, even if you aren’t a viewer of crime shows and procedurals.</p>\n\n<p>This being a show about a journey<a href=\"#fn:2\" id=\"fnref:2\" title=\"see footnote\" class=\"footnote\">[2]</a>, each episode brings a few interesting actors in for a cozy, crisp murder mystery. These guest stars are as excellent as you might guess given the show is produced by Lyonne, Maya Rudolph, and Rian Johnson.</p>\n\n<p>The bottom line, in this case, is the star is the show. The show is built around Natasha Lyonne, who is perfect in this role. Lots of little wise-guy energy. The way she uses her arms and voice to fill scenes, it’s great. I can’t stop telling people she is my generation’s Joe Pesci. They’re even the same height!</p>\n\n<div class=\"footnotes\">\n<hr />\n<ol>\n\n<li id=\"fn:1\">\n<p>If you have the means, get yourself an NBC Peacock and watch yourself a great show. <a href=\"#fnref:1\" title=\"return to article\" class=\"reversefootnote\"> ↩</a></p>\n</li>\n\n<li id=\"fn:2\">\n<p>This will make more sense after you watch the first episode. <a href=\"#fnref:2\" title=\"return to article\" class=\"reversefootnote\"> ↩</a></p>\n</li>\n\n</ol>\n</div>\n",
"date_published": "2023-02-13T06:34:02-07:00",
"url": "https://therealadam.micro.blog/2023/02/13/natasha-lyonne-is.html",
"tags": ["Watching"]
},
{
"id": "http://therealadam.micro.blog/2023/01/23/corporate-personhood-and.html",
"title": "Corporate personhood and ants",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://interconnected.org/home/2023/01/17/filtered\">Filtered for ants and laws</a>, Matt Webb:</p>\n\n<blockquote>\n<p>Let’s say we could chat with ants. Could we trade with them? What would we want from them?</p>\n\n<p>…</p>\n\n<p>In short: people treat almost everything as people, at least a bit, including companies.</p>\n</blockquote>\n\n<ol>\n<li>We could try to communicate with ants and then include them in capitalism. Would this raise all boats for humans (who currently do low-paying/low-prestige work) <em>and</em> the ants (what is good pay/prestige/standard of living for an ant, I don’t know!)?</li>\n<li>We attribute person-like qualities to corporations. Infamously, in the case of <em>Citizens United</em> and more innocuously like attributing creativity to Apple, potential then hucksterism with Tesla, or declining design aesthetic with BMW.</li>\n<li>If we bring ants into corporatism and personify them, there’s an opportunity for some futurist/dystopian sci-fi where a mysterious cadre of house cleaners/chore-doers conceal themselves via surveillance technology and financial engineering of shell corporations. Turns out, it’s just a mega-colony of ants.</li>\n</ol>\n",
"date_published": "2023-01-23T11:42:15-07:00",
"url": "https://therealadam.micro.blog/2023/01/23/corporate-personhood-and.html",
"tags": ["Commonplace"]
},
{
"id": "http://therealadam.micro.blog/2023/01/10/songs-you-must.html",
"title": "Songs You Must Listen To At Maximum Safest Volume",
"content_html": "<ul>\n<li>“Uptight”, Steve Wonder</li>\n<li>“Summertime Blues”, The Who</li>\n<li>“Wouldn’t It Be Nice”, The Beach Boys</li>\n<li>“Good Vibrations”, The Beach Boys</li>\n<li>“Jungleland”, Bruce Springsteen</li>\n<li>“Once In a Lifetime”, The Talking Heads</li>\n<li>“Flashlight”, Parliament</li>\n<li>“Rhythm Nation”, Janet Jackson</li>\n</ul>\n",
"content_text": "* \"Uptight\", Steve Wonder\n* \"Summertime Blues\", The Who\n* \"Wouldn't It Be Nice\", The Beach Boys\n* \"Good Vibrations\", The Beach Boys\n* \"Jungleland\", Bruce Springsteen\n* \"Once In a Lifetime\", The Talking Heads\n* \"Flashlight\", Parliament\n* “Rhythm Nation”, Janet Jackson\n\n",
"date_published": "2023-01-10T12:00:00-07:00",
"url": "https://therealadam.micro.blog/2023/01/10/songs-you-must.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2023/01/08/albums-you-should.html",
"title": "Albums You Should Listen To From Start To Finish",
"content_html": "<ul>\n<li><em>Born to Run</em>, Bruce Springsteen</li>\n<li><em>Blood Sugar Sex Magik</em>, Red Hot Chili Peppers</li>\n<li><em>Pet Sounds</em>, The Beach Boys</li>\n<li><em>The Blueprint</em>, Jay-Z</li>\n<li><em>Songs in the Key of Life</em>, Stevie Wonder</li>\n<li><em>Sign ‘O The Times</em>, Prince</li>\n<li><em>Symphony No. 9</em>, Beethoven</li>\n<li><em>The Rite of Spring</em>, Stravinsky</li>\n</ul>\n",
"content_text": "* _Born to Run_, Bruce Springsteen\n* _Blood Sugar Sex Magik_, Red Hot Chili Peppers\n* _Pet Sounds_, The Beach Boys\n* _The Blueprint_, Jay-Z\n* _Songs in the Key of Life_, Stevie Wonder\n* _Sign ‘O The Times_, Prince\n* _Symphony No. 9_, Beethoven\n* _The Rite of Spring_, Stravinsky\n\n",
"date_published": "2023-01-08T12:00:00-07:00",
"url": "https://therealadam.micro.blog/2023/01/08/albums-you-should.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2023/01/07/the-nap-hierarchy.html",
"title": "The nap hierarchy",
"content_html": "<p>Doing a short snooze in the middle of the day? I highly recommend it if you have the means. Ideally, one of these places (in order by quality of rest):</p>\n<ol>\n<li>Couch nap</li>\n<li>Chair nap (recliner/lounge chair, ideally)</li>\n<li>Bed nap</li>\n<li>Sky nap (airplane)</li>\n<li>Train nap</li>\n<li>Car nap</li>\n</ol>\n<p>Places I have napped, for better or worse, and would not recommend:</p>\n<ul>\n<li>A rock concert (The Who, Bruce Springsteen)</li>\n<li>A college lecture</li>\n<li>A piano recital</li>\n<li>Voyage of the Little Mermaid (Walt Disney World, Hollywood Studios)</li>\n<li>Great Moments with Mr. Lincoln (Disneyland)</li>\n<li>American Adventure (Walt Disney World, EPCOT)</li>\n</ul>\n",
"content_text": "Doing a short snooze in the middle of the day? I highly recommend it if you have the means. Ideally, one of these places (in order by quality of rest):\n\n1. Couch nap\n2. Chair nap (recliner/lounge chair, ideally)\n3. Bed nap\n4. Sky nap (airplane)\n5. Train nap\n6. Car nap\n\nPlaces I have napped, for better or worse, and would not recommend:\n\n- A rock concert (The Who, Bruce Springsteen)\n- A college lecture\n- A piano recital\n- Voyage of the Little Mermaid (Walt Disney World, Hollywood Studios)\n- Great Moments with Mr. Lincoln (Disneyland)\n- American Adventure (Walt Disney World, EPCOT)\n\n\n",
"date_published": "2023-01-07T11:44:08-07:00",
"url": "https://therealadam.micro.blog/2023/01/07/the-nap-hierarchy.html"
},
{
"id": "http://therealadam.micro.blog/2023/01/06/bruce-springsteen-epochs.html",
"title": "Bruce Springsteen Epochs",
"content_html": "<ul>\n<li>Motown Bohemian, curly hair, <em>The Wild, The Innocent, and the E-Street Shuffle</em></li>\n<li>Denim, muscles, <em>Born in the USA</em></li>\n<li>The introspective wanderer, bolo tie, <em>Human Touch</em></li>\n<li>Revival, the flavor-saver goatee, <em>The Rising</em></li>\n<li>The rock ‘n roll stateman, dark vest and necktie, <em>High Hopes</em></li>\n</ul>\n",
"content_text": "* Motown Bohemian, curly hair, _The Wild, The Innocent, and the E-Street Shuffle_\n* Denim, muscles, _Born in the USA_\n* The introspective wanderer, bolo tie, _Human Touch_\n* Revival, the flavor-saver goatee, _The Rising_\n* The rock 'n roll stateman, dark vest and necktie, _High Hopes_\n\n\n",
"date_published": "2023-01-06T11:00:00-07:00",
"url": "https://therealadam.micro.blog/2023/01/06/bruce-springsteen-epochs.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2023/01/04/what-a-guitar.html",
"title": "What A Guitar Is Supposed To Sound Like",
"content_html": "<ul>\n<li>“Summertime Blues”, The Who, Pete Townsend</li>\n<li>“Estranged”, Guns ‘n Roses, Slash</li>\n<li>“Glory Days”, Bruce Springsteen and the E-Street Band</li>\n<li>“Highway to Hell”, AC/DC, Angus Young</li>\n</ul>\n",
"content_text": "* \"Summertime Blues\", The Who, Pete Townsend\n* \"Estranged\", Guns 'n Roses, Slash\n* \"Glory Days\", Bruce Springsteen and the E-Street Band\n* \"Highway to Hell\", AC/DC, Angus Young\n\n\n",
"date_published": "2023-01-04T11:00:00-07:00",
"url": "https://therealadam.micro.blog/2023/01/04/what-a-guitar.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2023/01/02/music-i-wish.html",
"title": "Music I Wish I Had Written",
"content_html": "<ul>\n<li><em>The Rite of Spring</em>, Igor Stravinsky</li>\n<li><em>The Planets</em>, Gustav Holst</li>\n<li>“Good Vibrations”, Brian Wilson</li>\n<li>“Losing My Edge”, James Murphy</li>\n<li>“I Feel the Earth Move”, Carole King</li>\n</ul>\n",
"content_text": "* _The Rite of Spring_, Igor Stravinsky\n* _The Planets_, Gustav Holst\n* \"Good Vibrations\", Brian Wilson\n* \"Losing My Edge\", James Murphy\n* \"I Feel the Earth Move\", Carole King\n\n\n",
"date_published": "2023-01-02T11:00:00-07:00",
"url": "https://therealadam.micro.blog/2023/01/02/music-i-wish.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2022/12/31/best-david-lee.html",
"title": "Best David Lee Roth Mid-Song Banter",
"content_html": "<ul>\n<li>“Unchained”</li>\n<li>“Everybody Wants Some”</li>\n<li>“Hot for Teacher”</li>\n</ul>\n",
"content_text": "* \"Unchained\"\n* \"Everybody Wants Some\"\n* \"Hot for Teacher\"\n\n\n",
"date_published": "2022-12-31T11:00:00-07:00",
"url": "https://therealadam.micro.blog/2022/12/31/best-david-lee.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2022/12/29/best-of.html",
"title": "Best of 2022",
"content_html": "<p>Television: <em>Severance</em> (Apple TV), <em>Andor</em> (Disney+)</p>\n<p>Movie: <em>Everything Everywhere All At Once</em></p>\n<p>Music: deep dives into Carly Simon, Nina Simone, J Dilla</p>\n<p>Book: <em>Player Piano</em> by Kurt Vonnegut</p>\n<p>Blog: <a href=\"https://seantcollins.com/category/roadhouse/page/1\">Pain Don’t Hurt</a> (a 365 day series of short essays on <em>Roadhouse</em>)</p>\n<p>By my calculations, I managed to write about fifty pages between my blogs this year. That’s about double what I wrote in 2021, so I’m pretty happy with where I ended up here! 💪</p>\n<p>My best writing this year, in my opinion:</p>\n<ul>\n<li><a href=\"https://short.therealadam.com/2022/12/01/an-ideal-weekend.html\">An ideal weekend</a></li>\n<li><a href=\"https://therealadam.com/2022/05/15/the-paradox-of-producing-process/\">The paradox of process</a></li>\n<li><a href=\"https://therealadam.com/2022/07/11/leadership-keywords/\">Leadership keywords</a></li>\n<li><a href=\"https://therealadam.com/2022/07/18/perspective-you-want-it/\">Perspective, you want it</a></li>\n<li><a href=\"https://therealadam.com/2022/12/27/think-your-thoughts/\">Think your thoughts</a></li>\n</ul>\n",
"content_text": "Television: *Severance* (Apple TV), *Andor* (Disney+)\n\nMovie: *Everything Everywhere All At Once*\n\nMusic: deep dives into Carly Simon, Nina Simone, J Dilla\n\nBook: *Player Piano* by Kurt Vonnegut\n\nBlog: [Pain Don't Hurt](https://seantcollins.com/category/roadhouse/page/1) (a 365 day series of short essays on _Roadhouse_)\n\nBy my calculations, I managed to write about fifty pages between my blogs this year. That’s about double what I wrote in 2021, so I’m pretty happy with where I ended up here! 💪 \n\nMy best writing this year, in my opinion:\n\n- [An ideal weekend](https://short.therealadam.com/2022/12/01/an-ideal-weekend.html)\n- [The paradox of process](https://therealadam.com/2022/05/15/the-paradox-of-producing-process/)\n- [Leadership keywords](https://therealadam.com/2022/07/11/leadership-keywords/)\n- [Perspective, you want it](https://therealadam.com/2022/07/18/perspective-you-want-it/)\n- [Think your thoughts](https://therealadam.com/2022/12/27/think-your-thoughts/)\n\n",
"date_published": "2022-12-29T10:48:48-07:00",
"url": "https://therealadam.micro.blog/2022/12/29/best-of.html"
},
{
"id": "http://therealadam.micro.blog/2022/12/27/classical-music-that.html",
"title": "Classical music that is terribly edited in commercials",
"content_html": "<ul>\n<li>“Also Sprach Zarathustra”, Richard Strauss, the opening</li>\n<li>“Symphony No. 6”, Beethoven</li>\n<li>the rest of the Western classical music canon</li>\n</ul>\n",
"content_text": "* \"Also Sprach Zarathustra\", Richard Strauss, the opening\n* \"Symphony No. 6\", Beethoven\n* the rest of the Western classical music canon\n\n\n",
"date_published": "2022-12-27T12:00:00-07:00",
"url": "https://therealadam.micro.blog/2022/12/27/classical-music-that.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2022/12/21/driverless-crocodile-nostalgia.html",
"content_html": "<p>Driverless Crocodile, <a href=\"https://www.driverlesscrocodile.com/sustainability-and-change/nostalgia-revisited/\">Nostalgia Revisited</a>:</p>\n<blockquote>\n<p>Nostalgia: a kind of homesickness for the past.</p>\n<p>Another way of putting it: the longing you will have in future for the places and people around you now.</p>\n</blockquote>\n<p>Time’s arrow is a hell of a thing.</p>\n",
"content_text": "Driverless Crocodile, [Nostalgia Revisited](https://www.driverlesscrocodile.com/sustainability-and-change/nostalgia-revisited/):\n\n> Nostalgia: a kind of homesickness for the past.\n> \n> Another way of putting it: the longing you will have in future for the places and people around you now.\n\nTime's arrow is a hell of a thing.\n",
"date_published": "2022-12-21T07:07:27-07:00",
"url": "https://therealadam.micro.blog/2022/12/21/driverless-crocodile-nostalgia.html"
},
{
"id": "http://therealadam.micro.blog/2022/12/01/an-ideal-weekend.html",
"title": "An ideal weekend",
"content_html": "<blockquote>\n<p>Nothing, nothing, nothing makеs me happy</p>\n<p>Nothing brings me nothing but joy</p>\n<p>So if you haven’t tried nada</p>\n<p>I really think you oughta</p>\n<p>— C. Fischoeder, <em>Bob’s Burgers</em></p>\n</blockquote>\n<p>On minor funks, needing a reset, and indeed doing nothing.</p>\n<hr>\n<p><strong>The Reset</strong>. Occasionally, the things I do stop <em>doing</em> it for me. Games, shows, books, magazines, etc. I pick them up and realize I’m bored with all of them. I require a break from my breaks.</p>\n<p>Oddly enough, taking a vacation or extended weekend with too little purpose <em>or</em> purpose too close to routine seems to generate the same response.</p>\n<p><strong>The Reset</strong> almost always involves going offline, to some extent. Not like <a href=\"https://craigmod.com/ridgeline/150/\">Craig Mod hiking</a> <a href=\"https://craigmod.com/ridgeline/116/\">through rural Japan</a><sup id=\"fnref:1\"><a href=\"#fn:1\" class=\"footnote-ref\" role=\"doc-noteref\">1</a></sup>. It sometimes involves catching up on chores, tidying up the house, or <em>extremely</em> low-key home improvement<sup id=\"fnref:2\"><a href=\"#fn:2\" class=\"footnote-ref\" role=\"doc-noteref\">2</a></sup>.</p>\n<p>Related: YouTube could use a function for this. “All my subscriptions & recommendations aren’t doing it, we need to go weirder/normal-er”.</p>\n<p>Doing <em>absolutely</em> nothing is an option, but ends up feeling a little more hollow than free-ing.</p>\n<p>More often, rebelling against my routines and script-following tendencies works. Binge-watching, grinding a game, ignoring diet, etc. sometimes get me clear.</p>\n<hr>\n<p>The trickiest bit is when I’m in <strong>An Indefinite Funk</strong>. Hobbies seem shallow or meant to impress others or not fulfilling anymore or too much like work or too expensive/intensive to maintain.</p>\n<p>So far, I don’t have a great antidote for that. Last time it happened to me, I reverted two decades to making music, decided it still wasn’t <em>for</em> me, and went back to enjoying and sometimes studying/pontificating on music.</p>\n<p>Going offline is in some ways a luxurious and nice way to reset. We so rarely allow ourselves a moment or location of offline-ness. If you have to book a flight or <a href=\"https://www.996roadtrip.com\">outfit your Porsche 911 for camping</a>, so be it. It’s fine to just put your online devices in another room, too.</p>\n<hr>\n<p><em>Recommended</em>: do yourself an <strong>Ideal Weekend</strong> <sup id=\"fnref:3\"><a href=\"#fn:3\" class=\"footnote-ref\" role=\"doc-noteref\">3</a></sup>:</p>\n<ul>\n<li>Get coffee</li>\n<li>Go for a walk in a nice park</li>\n<li>Take a nap</li>\n<li>Read a book</li>\n<li>Go for a swim</li>\n<li>Stroll through the vibrant part of your town</li>\n</ul>\n<p>Any weekend that includes most of those is likely to give me a reset such that any funk that is imminent or currently occurring goes away.</p>\n<section class=\"footnotes\" role=\"doc-endnotes\">\n<hr>\n<ol>\n<li id=\"fn:1\" role=\"doc-endnote\">\n<p>But that does sound nice! <a href=\"#fnref:1\" class=\"footnote-backref\" role=\"doc-backlink\">↩︎</a></p>\n</li>\n<li id=\"fn:2\" role=\"doc-endnote\">\n<p>I’m not a handy person. Replacing light bulbs, fixing toilet levers. Putting a new battery in the godforsaken smoke alarm at 3 AM. That’s about the extent of what I’m capable of. <a href=\"#fnref:2\" class=\"footnote-backref\" role=\"doc-backlink\">↩︎</a></p>\n</li>\n<li id=\"fn:3\" role=\"doc-endnote\">\n<p>Your particular choices of beverage/location may vary <a href=\"#fnref:3\" class=\"footnote-backref\" role=\"doc-backlink\">↩︎</a></p>\n</li>\n</ol>\n</section>\n",
"content_text": "> Nothing, nothing, nothing makеs me happy\n> \n> Nothing brings me nothing but joy\n> \n> So if you haven't tried nada\n> \n> I really think you oughta\n> \n> — C. Fischoeder, _Bob's Burgers_\n\nOn minor funks, needing a reset, and indeed doing nothing.\n\n---- \n**The Reset**. Occasionally, the things I do stop _doing_ it for me. Games, shows, books, magazines, etc. I pick them up and realize I’m bored with all of them. I require a break from my breaks. \n\nOddly enough, taking a vacation or extended weekend with too little purpose _or_ purpose too close to routine seems to generate the same response.\n\n**The Reset** almost always involves going offline, to some extent. Not like [Craig Mod hiking](https://craigmod.com/ridgeline/150/) [through rural Japan](https://craigmod.com/ridgeline/116/)[^1]. It sometimes involves catching up on chores, tidying up the house, or _extremely_ low-key home improvement[^2].\n\nRelated: YouTube could use a function for this. “All my subscriptions & recommendations aren’t doing it, we need to go weirder/normal-er”.\n\nDoing _absolutely_ nothing is an option, but ends up feeling a little more hollow than free-ing.\n\nMore often, rebelling against my routines and script-following tendencies works. Binge-watching, grinding a game, ignoring diet, etc. sometimes get me clear.\n\n---- \nThe trickiest bit is when I’m in **An Indefinite Funk**. Hobbies seem shallow or meant to impress others or not fulfilling anymore or too much like work or too expensive/intensive to maintain.\n\nSo far, I don’t have a great antidote for that. Last time it happened to me, I reverted two decades to making music, decided it still wasn’t _for_ me, and went back to enjoying and sometimes studying/pontificating on music.\n\nGoing offline is in some ways a luxurious and nice way to reset. We so rarely allow ourselves a moment or location of offline-ness. If you have to book a flight or [outfit your Porsche 911 for camping](https://www.996roadtrip.com), so be it. It’s fine to just put your online devices in another room, too.\n\n---- \n_Recommended_: do yourself an **Ideal Weekend** [^3]:\n\n- Get coffee\n- Go for a walk in a nice park\n- Take a nap\n- Read a book\n- Go for a swim\n- Stroll through the vibrant part of your town\n\nAny weekend that includes most of those is likely to give me a reset such that any funk that is imminent or currently occurring goes away.\n\n[^1]:\tBut that does sound nice!\n\n[^2]:\tI’m not a handy person. Replacing light bulbs, fixing toilet levers. Putting a new battery in the godforsaken smoke alarm at 3 AM. That’s about the extent of what I’m capable of.\n\n[^3]:\tYour particular choices of beverage/location may vary\n",
"date_published": "2022-12-01T11:00:00-07:00",
"url": "https://therealadam.micro.blog/2022/12/01/an-ideal-weekend.html"
},
{
"id": "http://therealadam.micro.blog/2022/11/15/how-i-would.html",
"title": "How I would explain music to an alien",
"content_html": "<p>Were I faced with an intelligence not of this earth, but one that shares our understanding of what music is/for, these are the exemplars I would hold up for them to understand our cultures through my favorites:</p>\n<ul>\n<li>Hip-hop: “So whatcha want”, The Beastie Boys</li>\n<li>Rock and roll: “Highway to Hell”, AC/DC</li>\n<li>Symphonies: “Symphony No. 7”, Beethoven</li>\n<li>Pop: “Walkin' on Sunshine”, Katrina and the Waves</li>\n<li>Jazz: “Giant Steps”, John Coltrane</li>\n<li>Funk: “Mothership Connection”, Parliament</li>\n</ul>\n",
"content_text": "Were I faced with an intelligence not of this earth, but one that shares our understanding of what music is/for, these are the exemplars I would hold up for them to understand our cultures through my favorites:\n\n- Hip-hop: \"So whatcha want\", The Beastie Boys\n- Rock and roll: \"Highway to Hell\", AC/DC\n- Symphonies: \"Symphony No. 7\", Beethoven\n- Pop: \"Walkin' on Sunshine\", Katrina and the Waves\n- Jazz: “Giant Steps”, John Coltrane\n- Funk: “Mothership Connection”, Parliament\n\n",
"date_published": "2022-11-15T06:19:01-07:00",
"url": "https://therealadam.micro.blog/2022/11/15/how-i-would.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2022/11/13/dilla-time.html",
"title": "Dilla Time",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><em>Dilla Time</em> is a great book for music history enthusiasts. If you’re at all interested in hip-hop, music production, or sample culture, it’s a must-read. The references to lesser-known hip-hop are worth the time investment alone.</p>\n\n<p>I saw a critique of the book saying it is a 200-page book hiding in 400 pages<a href=\"#fn:1\" id=\"fnref:1\" title=\"see footnote\" class=\"footnote\">[1]</a>. I think <em>Dilla Time</em> justifies its page count in a pleasingly clever way. The book overlays the biography of James Yancey with the innovations of J Dilla in much the same way. Chapters on Yancey and Dilla alternate, taking turns. A little bit about Yancey’s musical life, a little bit about his nonmusical life. Once I realized Dilla’s music was about overlaying ideas at odds and the book was about overlaying the man and the music, I was a little giddy and a lot jealous that I hadn’t thought of something like that.</p>\n\n<p>The book is basically two story lines: a biography of James Yancey and the story of his musical innovations and influences as J Dilla. The latter is, in a nutshell, a great explanation of how Dilla programmed electronics (drum machines, samplers, etc.) to overlay musical patterns that had not gone together previously.</p>\n\n<p>Let’s assume it’s safe to say that Stravinsky was the master of (riotously) dissonant harmonies. He put notes that should not go together right on top of each other! In the same way, we’d have to say that J Dilla was the master of wielding time in a way that was not previously accepted in musical rhythm. Stravinsky overlaid perfect fifths (good) and tritones (bad!). Dilla overlaid straight (classical) and swung rhythms (jazz) and even moved notes around the beat, to similar effect.</p>\n\n<p>The tricky thing about listening to J Dilla, as a modern listener, is that it doesn’t sound as drastic as it did fifteen years ago. Similarly, Stravinsky doesn’t sound revolutionary to our ears, one hundred years on. They both “just” sound like how music is made these days. <em>Dilla Time</em> does an outstanding job putting his innovations in context and particularly <em>visualizing</em> how his musical constructs stood apart from what came before him.</p>\n\n<p>Obviously, I enjoyed this book a lot. Check it out.</p>\n\n<div class=\"footnotes\">\n<hr />\n<ol>\n\n<li id=\"fn:1\">\n<p>To be fair, most books could stand to lose a third or more of their page count. <a href=\"#fnref:1\" title=\"return to article\" class=\"reversefootnote\"> ↩</a></p>\n</li>\n\n</ol>\n</div>\n",
"date_published": "2022-11-13T11:00:00-07:00",
"url": "https://therealadam.micro.blog/2022/11/13/dilla-time.html",
"tags": ["Music","Reading"]
},
{
"id": "http://therealadam.micro.blog/2022/11/09/currently-digging.html",
"title": "Currently digging",
"content_html": "<p>Listening: <a href=\"https://music.apple.com/us/playlist/afrobeat-essentials/pl.993d2301e6f446f1a64ac47e0a9d094e\">Afrobeat</a>, e.g. Fela Kuti</p>\n<p>Best musical discovery this week: an excellent Apple Music playlist <a href=\"https://music.apple.com/us/playlist/shapeshifting/pl.8994321992214b979d4885e9a4463f11\">Shapeshifting</a>, catalogs jazz fusion with indie, hip-hop, electronic; all the modern genres</p>\n<p>Watching: Jon Hamm easily steps into the title character of an apparent Fletch reboot in <em>Confess, Fletch</em>; sharp humor, well written, way better than I expected!</p>\n<p>Playing: <a href=\"https://www.marvelsnap.com\">Marvel SNAP</a> - every few years, I end up playing a card game for a few months 🤷🏻♂️</p>\n<p>Reading: Rhodes/<em>The Making of the Atomic Bomb</em> + Gleick/<em>Genius</em> + Wellerstein/<em>Restricted Data: The History of Nuclear Secrecy in the United States</em> - I’m trying reading in clusters. It’s slow going, but I’ve wanted to go deeper on the Manhattan Project for years. Now’s the time!</p>\n<p>Last Bob’s episode watched: “Full bars”</p>\n<blockquote>\n<p>I’m rapper slash actor Queen Latifah in her U.N.I.T.Y. phase.</p>\n<p>– Gene in Halloween costume</p>\n</blockquote>\n",
"content_text": "Listening: [Afrobeat](https://music.apple.com/us/playlist/afrobeat-essentials/pl.993d2301e6f446f1a64ac47e0a9d094e), e.g. Fela Kuti\n\nBest musical discovery this week: an excellent Apple Music playlist [Shapeshifting](https://music.apple.com/us/playlist/shapeshifting/pl.8994321992214b979d4885e9a4463f11), catalogs jazz fusion with indie, hip-hop, electronic; all the modern genres\n\nWatching: Jon Hamm easily steps into the title character of an apparent Fletch reboot in _Confess, Fletch_; sharp humor, well written, way better than I expected!\n\nPlaying: [Marvel SNAP](https://www.marvelsnap.com) - every few years, I end up playing a card game for a few months 🤷🏻♂️\n\nReading: Rhodes/_The Making of the Atomic Bomb_ + Gleick/_Genius_ + Wellerstein/_Restricted Data: The History of Nuclear Secrecy in the United States_ - I’m trying reading in clusters. It’s slow going, but I’ve wanted to go deeper on the Manhattan Project for years. Now’s the time!\n\nLast Bob's episode watched: “Full bars”\n\n> I'm rapper slash actor Queen Latifah in her U.N.I.T.Y. phase. \n> \n> -- Gene in Halloween costume\n\n\n",
"date_published": "2022-11-09T07:00:00-07:00",
"url": "https://therealadam.micro.blog/2022/11/09/currently-digging.html"
},
{
"id": "http://therealadam.micro.blog/2022/11/07/mastodon-me-nd.html",
"title": "Mastodon \u0026 Me, 2nd Edition",
"content_html": "<p>A few years ago, I set up a Mastodon account on a now-defunct instance. It didn’t scare me away, is kinda neat in some ways, the Bird has gone chaotic, and so I’m at it again. Like many folks the past few days, I’m setting up a Mastodon presence mostly from scratch.</p>\n<p>If you’re on the fence about Mastodon, here’s how to speed-run it:</p>\n<ul>\n<li>skim <a href=\"https://simonwillison.net/2022/Nov/5/mastodon/\">Simon Willison’s post</a> and follow as many links as you like</li>\n<li>find an instance (i.e. a community/<a href=\"https://twitter.com/garius/status/1588827788261601280\">home-room</a>) that suits you and join it</li>\n<li>use <a href=\"https://pruvisto.org/debirdify/\">Debirdify</a> to find and follow folks who have advertised a Mastodon presence</li>\n<li>start posting to Mastodon; ideally, get as weird as your web presence was before global social networks were a thing</li>\n</ul>\n<p>This brings my web presence to at least four interesting locales. Which raises the question, “hey Adam, why do you have so many websites”. Herein, I will answer that with the question they’re intended to answer 🧠 👴🏻:</p>\n<ul>\n<li><a href=\"https://therealadam.com\">My original-ish blog</a> (<a href=\"https://therealadam.com/feed/\">RSS</a>), answering “hey Adam, what are you thinking about or building?”</li>\n<li><a href=\"https://short.therealadam.com\">This blog</a> (<a href=\"https://short.therealadam.com/feed.xml\">RSS</a>, <a href=\"https://micro.blog/[email protected]\">@[email protected]</a>), answering “hey Adam, what’s currently intriguing you?”</li>\n<li><a href=\"https://ruby.social/web/@therealadam\">Mastodon</a> (<a href=\"%20https://ruby.social/@therealadam.rss\">RSS</a>, @[email protected]), answering “hey Adam, tell me your best one-liners and weirdest hot-takes?”</li>\n<li><a href=\"https://twitter.com/therealadam\">Twitter</a>, answering “hey Adam, what are you thinking about, but in a punchier format?”</li>\n</ul>\n",
"content_text": "A few years ago, I set up a Mastodon account on a now-defunct instance. It didn’t scare me away, is kinda neat in some ways, the Bird has gone chaotic, and so I’m at it again. Like many folks the past few days, I’m setting up a Mastodon presence mostly from scratch.\n\nIf you’re on the fence about Mastodon, here’s how to speed-run it:\n\n- skim [Simon Willison’s post](https://simonwillison.net/2022/Nov/5/mastodon/) and follow as many links as you like\n- find an instance (i.e. a community/[home-room](https://twitter.com/garius/status/1588827788261601280)) that suits you and join it\n- use [Debirdify](https://pruvisto.org/debirdify/) to find and follow folks who have advertised a Mastodon presence\n- start posting to Mastodon; ideally, get as weird as your web presence was before global social networks were a thing\n\nThis brings my web presence to at least four interesting locales. Which raises the question, “hey Adam, why do you have so many websites”. Herein, I will answer that with the question they’re intended to answer 🧠 👴🏻:\n\n- [My original-ish blog](https://therealadam.com) ([RSS](https://therealadam.com/feed/)), answering “hey Adam, what are you thinking about or building?”\n- [This blog](https://short.therealadam.com) ([RSS](https://short.therealadam.com/feed.xml), [@[email protected]](https://micro.blog/[email protected])), answering “hey Adam, what’s currently intriguing you?”\n- [Mastodon](https://ruby.social/web/@therealadam) ([RSS](%20https://ruby.social/@therealadam.rss), @[email protected]), answering “hey Adam, tell me your best one-liners and weirdest hot-takes?”\n- [Twitter](https://twitter.com/therealadam), answering “hey Adam, what are you thinking about, but in a punchier format?”\n\n\n",
"date_published": "2022-11-07T06:39:03-07:00",
"url": "https://therealadam.micro.blog/2022/11/07/mastodon-me-nd.html"
},
{
"id": "http://therealadam.micro.blog/2022/11/06/sketching-yields-quantity.html",
"title": "Sketching yields quantity yields quality",
"content_html": "<p><a href=\"https://www.ableton.com/en/blog/the-art-of-sketching-strategies-for-getting-started/\">The Art of Sketching: Strategies for Getting Started</a>:</p>\n<blockquote>\n<p>Edouard Manet, the French modernist painter, once gave a still-life painting lesson to another French impressionist, Eva Gonzales. His directions for capturing the moment could be taken as instruction for sketching in any creative discipline; “Get it down quickly. Don’t worry about the background. Just go for the tonal values. See?”</p>\n</blockquote>\n<p>It’s about making music (ostensibly with Ableton), but applies to any creative endeavor. Coding, writing, whatever!</p>\n<blockquote>\n<p>Sketching with regularity can help you let go of the pressure of perfectionism, and arrive at a place of more casual creativity. Simply start, then sift through your sketches to find the gems later. Raúl Sotomayor has found that aiming for quantity tends to result in quality ideas to build from; “I used to make a beat every morning, spending 10 minutes to an hour, and then go on with my day. That was really helpful, because at the end of a week, I’ll have seven beats and most of the time, at least one of them would be useful.”</p>\n</blockquote>\n<p>As a creative principle, “quantity creates quality” has served me well over the past several years. You can’t create quality if you don’t have 1) a starting point and 2) freedom to throw away the lowest quality 90% of the work!</p>\n",
"content_text": "[The Art of Sketching: Strategies for Getting Started](https://www.ableton.com/en/blog/the-art-of-sketching-strategies-for-getting-started/):\n\n> Edouard Manet, the French modernist painter, once gave a still-life painting lesson to another French impressionist, Eva Gonzales. His directions for capturing the moment could be taken as instruction for sketching in any creative discipline; “Get it down quickly. Don’t worry about the background. Just go for the tonal values. See?” \n\nIt’s about making music (ostensibly with Ableton), but applies to any creative endeavor. Coding, writing, whatever!\n\n> Sketching with regularity can help you let go of the pressure of perfectionism, and arrive at a place of more casual creativity. Simply start, then sift through your sketches to find the gems later. Raúl Sotomayor has found that aiming for quantity tends to result in quality ideas to build from; “I used to make a beat every morning, spending 10 minutes to an hour, and then go on with my day. That was really helpful, because at the end of a week, I'll have seven beats and most of the time, at least one of them would be useful.”\n\nAs a creative principle, “quantity creates quality” has served me well over the past several years. You can’t create quality if you don’t have 1) a starting point and 2) freedom to throw away the lowest quality 90% of the work!\n\n",
"date_published": "2022-11-06T12:04:48-07:00",
"url": "https://therealadam.micro.blog/2022/11/06/sketching-yields-quantity.html"
},
{
"id": "http://therealadam.micro.blog/2017/08/10/certified-jams-rhythm.html",
"title": "Certified Jams",
"content_html": "<ul>\n<li>“Rhythm Nation”, Janet Jackson</li>\n<li>“Holding Out For a Hero”, Bonnie Tyler</li>\n<li>“Footloose”, Kenny Loggins</li>\n<li>“Partyman”, Prince</li>\n</ul>\n",
"content_text": "* \"Rhythm Nation\", Janet Jackson\n* \"Holding Out For a Hero\", Bonnie Tyler\n* \"Footloose\", Kenny Loggins\n* \"Partyman\", Prince\n",
"date_published": "2022-10-30T17:26:04-07:00",
"url": "https://therealadam.micro.blog/2017/08/10/certified-jams-rhythm.html",
"tags": ["Music"]
},
{
"id": "http://therealadam.micro.blog/2022/10/12/currently-digging.html",
"title": "Currently digging",
"content_html": "<p>Obsession: Ferraris - they’re at a whole other level.</p>\n<p>Listening: Ramsey Lewis, “Japanese ambient”</p>\n<p>Watching: <em>Andor</em>, <em>She-Hulk</em></p>\n<p>Reading: <em>Welcome to the Monkey House</em> - Vonnegut short stories.</p>\n<blockquote>\n<p>I wonder now what Ernest Hemingway’s dictionary looked like, since he got along so well with dinky words that everyone can spell and truly understand.</p>\n</blockquote>\n<p>Last episode of <em>Bob’s Burgers</em> watched (again): “Bad Tina”.</p>\n<blockquote>\n<p>Mommy doesn’t get drunk, she just has fun.</p>\n</blockquote>\n",
"content_text": "Obsession: Ferraris - they’re at a whole other level.\n\nListening: Ramsey Lewis, “Japanese ambient”\n\nWatching: _Andor_, _She-Hulk_\n\nReading: _Welcome to the Monkey House_ - Vonnegut short stories.\n\n> I wonder now what Ernest Hemingway’s dictionary looked like, since he got along so well with dinky words that everyone can spell and truly understand.\n\nLast episode of _Bob’s Burgers_ watched (again): “Bad Tina”. \n\n> Mommy doesn’t get drunk, she just has fun.\n\n",
"date_published": "2022-10-12T06:06:42-07:00",
"url": "https://therealadam.micro.blog/2022/10/12/currently-digging.html"
},
{
"id": "http://therealadam.micro.blog/2022/10/02/peak-aerosmith.html",
"title": "Peak Aerosmith",
"content_html": "<p><em>Permanent Vacation</em>, <em>Pump</em>, <em>Get a Grip</em>, <em>Nine Lives</em>. That’s an excellent run of albums. It was considered a renaissance at the time. IMO, it’s their best stuff<sup id=\"fnref:1\"><a href=\"#fn:1\" class=\"footnote-ref\" role=\"doc-noteref\">1</a></sup>.</p>\n<p>Moreover, the peak of their MTV-generated fame. Source material for the videos that put Alicia Silverstone and Liv Tyler on the map.</p>\n<p>I’m feeling very 90’s kid right now 😆</p>\n<p>Anti-favorite: “Jamie’s Got a Gun” – I’ve heard it too many times.</p>\n<p>Favorites: “F.I.N.E”, “Hangman Jury”, “Shut up and Dance”, “Pink”.</p>\n<section class=\"footnotes\" role=\"doc-endnotes\">\n<hr>\n<ol>\n<li id=\"fn:1\" role=\"doc-endnote\">\n<p>Caveat: nostalgia <a href=\"#fnref:1\" class=\"footnote-backref\" role=\"doc-backlink\">↩︎</a></p>\n</li>\n</ol>\n</section>\n",
"content_text": "_Permanent Vacation_, _Pump_, _Get a Grip_, _Nine Lives_. That’s an excellent run of albums. It was considered a renaissance at the time. IMO, it’s their best stuff[^1]. \n\nMoreover, the peak of their MTV-generated fame. Source material for the videos that put Alicia Silverstone and Liv Tyler on the map.\n\nI’m feeling very 90’s kid right now 😆\n\nAnti-favorite: \"Jamie's Got a Gun\" – I've heard it too many times.\n\nFavorites: “F.I.N.E”, “Hangman Jury”, “Shut up and Dance”, “Pink”. \n\n[^1]:\tCaveat: nostalgia\n",
"date_published": "2022-10-02T09:37:12-07:00",
"url": "https://therealadam.micro.blog/2022/10/02/peak-aerosmith.html"
},
{
"id": "http://therealadam.micro.blog/2022/09/22/the-flipping-tables.html",
"title": "The Flipping Table(s)",
"content_html": "<p>This is a story about a tiny toy table. Well, a couple of them.</p>\n<p>Courtney and I play pub quiz, a lot. We play with a regular group of people at a couple of venues across town. We aim to take a “podium place” home. We come up with a fresh, topical team name every week. We are a bit competitive. It’s a thing.</p>\n<p>One of our team rules is: avoid second-guessing ourselves<sup id=\"fnref:1\"><a href=\"#fn:1\" class=\"footnote-ref\" role=\"doc-noteref\">1</a></sup>. The first reasonably confident person to provide the answer to our “quiz scribe” holds sway. Typically, they’re right or confident enough that no further discussion is needed and the answer is scribed to the answer sheet. A terrible way to run a company or government, but an okay way to run a quiz team.</p>\n<p>Occasionally, it happens, during a quiz, that two folks will feel that the answer to a question <em>must</em> or <em>must not</em> be something. For instance, there are very frequently questions on the numerically outstanding planets in our solar system. It’s almost always Jupiter or Saturn, but it’s hard to say which. “It’s Jupiter because it has a ton of moons” or “it <em>can’t</em> be Jupiter because Saturn has even more moons”! Well, given the no-second-guessing rule, now we have a pickle. Two conflicting answers, or a non-answer, and what to do about it?</p>\n<p>Regardless of how we arrive at it, we can only write one answer. This leaves the door open for us to <em>have</em> the right answer, but <em>write down</em> the wrong answer. Little indignations in jest. We are a bit competitive.</p>\n<h2 id=\"enter-the-flipping-table\">Enter the flipping table</h2>\n<p>Possibly, you’ve seen the table-flip “emoji”: (┛◉Д◉)┛彡┻━┻. It’s a shorthand for “this makes me have a big, not-good feeling” in online conversation. If not, here’s the late, great Alan Rickman “performing it”:</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2022/2c7201e19d.gif\" alt=\"Alan Rickman turning a table over\"></p>\n<p>That’s how it feels when you suggested the right answer and your quiz team went with the wrong answer anyway. <em>Actually</em> flipping tables would get us kicked out and banned from the venues we frequent, so that’s not an option. However, it happens, tables come in <em>all</em> sizes. Including, very tiny simulacrum of tables.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2022/1d12a90c23.png\" alt=\"This is a toy, not an actual dining set\"></p>\n<p>So one night after quiz, I scoured the internet for tiny tables that we could flip. Once I dialed in the search (there are many ways to search for “toy table” on Amazon that will not yield tables that are toys or tables that are flippable amongst polite company), a table was ordered. A few days later, thanks to the magic of just-in-time supply chain logistics<sup id=\"fnref:2\"><a href=\"#fn:2\" class=\"footnote-ref\" role=\"doc-noteref\">2</a></sup>, we had a toy table. So it came that every night, as we were preparing for the quiz, we set out our little (toy) table on top of the (actual) table in case there was a moment of indignation.</p>\n<h2 id=\"our-reputation-precedes-us\">Our reputation precedes us</h2>\n<p>Turns out, flipping a tiny table with your finger is pretty cathartic. The tiny table got a lot of use. We really liked our tiny table.</p>\n<p>Even better, a table of adults with a tiny toy table in the center of them is a curious thing. Other teams and quiz hosts inquired about our table. We explained it, let them flip the table. People liked it.</p>\n<p>Word of our flipping table spread amongst the Austin pub-quiz community. When new hosts would fill in for our normal quiz host, they would introduce themselves and ask to see our flipping table.</p>\n<p>Our reputation for flipping tables preceded us. One could have a worse reputation!</p>\n<h2 id=\"epilogue-for-a-tiny-toy-table\">Epilogue for a tiny toy table</h2>\n<p>As is common of tiny toys delivered by a logistics machine optimized for low cost, the flipping table was not particularly strong. Eventually, we lost or broke it, I don’t remember which.</p>\n<p>In any case, a second, slightly larger and fancier flipping table was provisioned. This one even had place settings. Fast-forward a few months, it too broke. One of our quiz teammates took it upon themselves to <em>repair</em> said table. At this point, we had a very robust flipping table, and <em>some</em> of its place settings remaining.</p>\n<p>Sadly, our regular quizzing was curtailed by the pandemic, shutting down basically all bars wherein one would play pub quiz. I’m not sure where the flipping table ended up; we haven’t used it in the year since we started quizzing again.</p>\n<p>But those months we had a flipping table; glory days!</p>\n<section class=\"footnotes\" role=\"doc-endnotes\">\n<hr>\n<ol>\n<li id=\"fn:1\" role=\"doc-endnote\">\n<p>Other rules:</p>\n<ul>\n<li>\n<p>rounds with two options for answers should have some symmetry for the first and second choice</p>\n</li>\n<li>\n<p>if the answer is numerical, there’s a good chance it’s the same as the number of the question, e.g. the answer for round 2 question 3 is probably 3</p>\n</li>\n</ul>\n <a href=\"#fnref:1\" class=\"footnote-backref\" role=\"doc-backlink\">↩︎</a></li>\n<li id=\"fn:2\" role=\"doc-endnote\">\n<p>Back when supply chains <em>worked</em> <a href=\"#fnref:2\" class=\"footnote-backref\" role=\"doc-backlink\">↩︎</a></p>\n</li>\n</ol>\n</section>\n",
"content_text": "This is a story about a tiny toy table. Well, a couple of them.\n\nCourtney and I play pub quiz, a lot. We play with a regular group of people at a couple of venues across town. We aim to take a “podium place” home. We come up with a fresh, topical team name every week. We are a bit competitive. It’s a thing.\n\nOne of our team rules is: avoid second-guessing ourselves[^1]. The first reasonably confident person to provide the answer to our “quiz scribe” holds sway. Typically, they’re right or confident enough that no further discussion is needed and the answer is scribed to the answer sheet. A terrible way to run a company or government, but an okay way to run a quiz team.\n\nOccasionally, it happens, during a quiz, that two folks will feel that the answer to a question _must_ or _must not_ be something. For instance, there are very frequently questions on the numerically outstanding planets in our solar system. It’s almost always Jupiter or Saturn, but it’s hard to say which. “It’s Jupiter because it has a ton of moons” or “it _can’t_ be Jupiter because Saturn has even more moons”! Well, given the no-second-guessing rule, now we have a pickle. Two conflicting answers, or a non-answer, and what to do about it? \n\nRegardless of how we arrive at it, we can only write one answer. This leaves the door open for us to _have_ the right answer, but _write down_ the wrong answer. Little indignations in jest. We are a bit competitive.\n\n## Enter the flipping table\nPossibly, you’ve seen the table-flip “emoji”: (┛◉Д◉)┛彡┻━┻. It’s a shorthand for “this makes me have a big, not-good feeling” in online conversation. If not, here’s the late, great Alan Rickman “performing it”:\n\n![Alan Rickman turning a table over](https://therealadam.micro.blog/uploads/2022/2c7201e19d.gif)\n\nThat’s how it feels when you suggested the right answer and your quiz team went with the wrong answer anyway. _Actually_ flipping tables would get us kicked out and banned from the venues we frequent, so that’s not an option. However, it happens, tables come in _all_ sizes. Including, very tiny simulacrum of tables.\n\n![This is a toy, not an actual dining set](https://therealadam.micro.blog/uploads/2022/1d12a90c23.png)\n\nSo one night after quiz, I scoured the internet for tiny tables that we could flip. Once I dialed in the search (there are many ways to search for “toy table” on Amazon that will not yield tables that are toys or tables that are flippable amongst polite company), a table was ordered. A few days later, thanks to the magic of just-in-time supply chain logistics[^2], we had a toy table. So it came that every night, as we were preparing for the quiz, we set out our little (toy) table on top of the (actual) table in case there was a moment of indignation.\n\n## Our reputation precedes us\nTurns out, flipping a tiny table with your finger is pretty cathartic. The tiny table got a lot of use. We really liked our tiny table.\n\nEven better, a table of adults with a tiny toy table in the center of them is a curious thing. Other teams and quiz hosts inquired about our table. We explained it, let them flip the table. People liked it.\n\nWord of our flipping table spread amongst the Austin pub-quiz community. When new hosts would fill in for our normal quiz host, they would introduce themselves and ask to see our flipping table.\n\nOur reputation for flipping tables preceded us. One could have a worse reputation!\n\n## Epilogue for a tiny toy table\nAs is common of tiny toys delivered by a logistics machine optimized for low cost, the flipping table was not particularly strong. Eventually, we lost or broke it, I don’t remember which. \n\nIn any case, a second, slightly larger and fancier flipping table was provisioned. This one even had place settings. Fast-forward a few months, it too broke. One of our quiz teammates took it upon themselves to _repair_ said table. At this point, we had a very robust flipping table, and _some_ of its place settings remaining.\n\nSadly, our regular quizzing was curtailed by the pandemic, shutting down basically all bars wherein one would play pub quiz. I’m not sure where the flipping table ended up; we haven’t used it in the year since we started quizzing again.\n\nBut those months we had a flipping table; glory days!\n\n[^1]:\tOther rules:\n\n - rounds with two options for answers should have some symmetry for the first and second choice\n\n - if the answer is numerical, there’s a good chance it’s the same as the number of the question, e.g. the answer for round 2 question 3 is probably 3\n\n[^2]:\tBack when supply chains _worked_\n",
"date_published": "2022-09-22T04:57:54-07:00",
"url": "https://therealadam.micro.blog/2022/09/22/the-flipping-tables.html"
},
{
"id": "http://therealadam.micro.blog/2022/09/07/great-albums-little.html",
"title": "Great Albums: Little Rock",
"content_html": "<p><img src=\"https://images-na.ssl-images-amazon.com/images/I/619S7wxMacS._SX466_.jpg\" alt=\"Album cover for \\_Little Rock\\_\"></p>\n<p>Or: Texas, the Good Parts. (Despite the title!)</p>\n<p>Or: it sounds like Texas, to me. (Again, despite the title.)</p>\n<p>Hayes Carll is my favorite under-the-radar, “this is what country music should sound like” musician. Wit, remorse, nostalgia. Storytelling, quirky characters, relatable characters. Little bit of rock, little bit of western. An ideal Americana mix. It’s all there.</p>\n<p>Plus, at 40 minutes, it’s a perfect road trip selection. Always moving forward, but never long-winded.</p>\n",
"content_text": "![Album cover for \\_Little Rock\\_](https://images-na.ssl-images-amazon.com/images/I/619S7wxMacS._SX466_.jpg)\n\nOr: Texas, the Good Parts. (Despite the title!)\n\nOr: it sounds like Texas, to me. (Again, despite the title.)\n\nHayes Carll is my favorite under-the-radar, “this is what country music should sound like” musician. Wit, remorse, nostalgia. Storytelling, quirky characters, relatable characters. Little bit of rock, little bit of western. An ideal Americana mix. It’s all there.\n\nPlus, at 40 minutes, it’s a perfect road trip selection. Always moving forward, but never long-winded.\n\n",
"date_published": "2022-09-07T05:31:03-07:00",
"url": "https://therealadam.micro.blog/2022/09/07/great-albums-little.html"
},
{
"id": "http://therealadam.micro.blog/2022/08/24/an-unconference-appears.html",
"title": "An un-conference appears",
"content_html": "<p>I jumped into a short <a href=\"https://twitter.com/andy_matuschak/status/1561504734892023808\">un-conference organized/hosted by Andy Matuschak</a> last weekend. Within this humble Gather, I came across lots of intriguing people and energizing ideas. Some notes and a few follow-up ideas:</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2022/e1baddc3b8.png\" alt=\"My notes from the event\"></p>\n<p><a href=\"https://www.napkin.one\">Napkin</a> is <em>space</em> for ideas and not, it seems, about note capture as an end. Rather, it’s about throwing ideas or quotes at the (metaphorical) wall and letting the system organize them into clusters or connections. If you like some of those idea, you organize the ideas into a linear outline and export that to whatever you like to write with.</p>\n<p><a href=\"https://ncase.me/nutshell/\">Nutshell</a> is about adding an extra dimension to documents on the web. The creator, <a href=\"https://ncase.me\">Nicky Case</a>, described it as a “tool for expandable explanation”. Those explanations take the form of popovers that may contain a bit of text (like a footnote/annotation), a scraped reference to another page (transclusion), or a fully interactive gizmo to explore an idea in a more tactile manner.</p>\n<p>Excitement about applying language models (e.g. GPT-3 or DALL-E) to generative creativity came up a few times. Some of the applications demoed were already using language models to augment insight or obviate manual human organization. Using models to ‘read between the lines’ of captured notes/human input and generate new ideas came up as well.</p>\n<p>Dissatisfaction with some current PKM tools came up a couple times. In particular, seeking note capture or memory recall as a (customer) engagement end rather than as a means to thinking more/better thoughts. I <em>think</em> I heard a couple criticisms that some tool was “too IT”, but I’m not sure I even heard it correctly or what that would even mean! 😆</p>\n<p>Overall: highly recommend seeking folks using computers to augment their ability to create and remember instead of stopping at “finally got my notes app just the way I like it”!</p>\n",
"content_text": "I jumped into a short [un-conference organized/hosted by Andy Matuschak](https://twitter.com/andy_matuschak/status/1561504734892023808) last weekend. Within this humble Gather, I came across lots of intriguing people and energizing ideas. Some notes and a few follow-up ideas:\n\n![My notes from the event](https://therealadam.micro.blog/uploads/2022/e1baddc3b8.png)\n\n[Napkin](https://www.napkin.one) is _space_ for ideas and not, it seems, about note capture as an end. Rather, it's about throwing ideas or quotes at the (metaphorical) wall and letting the system organize them into clusters or connections. If you like some of those idea, you organize the ideas into a linear outline and export that to whatever you like to write with.\n\n[Nutshell](https://ncase.me/nutshell/) is about adding an extra dimension to documents on the web. The creator, [Nicky Case](https://ncase.me), described it as a \"tool for expandable explanation\". Those explanations take the form of popovers that may contain a bit of text (like a footnote/annotation), a scraped reference to another page (transclusion), or a fully interactive gizmo to explore an idea in a more tactile manner.\n\nExcitement about applying language models (e.g. GPT-3 or DALL-E) to generative creativity came up a few times. Some of the applications demoed were already using language models to augment insight or obviate manual human organization. Using models to 'read between the lines' of captured notes/human input and generate new ideas came up as well.\n\nDissatisfaction with some current PKM tools came up a couple times. In particular, seeking note capture or memory recall as a (customer) engagement end rather than as a means to thinking more/better thoughts. I _think_ I heard a couple criticisms that some tool was \"too IT\", but I'm not sure I even heard it correctly or what that would even mean! 😆\n\nOverall: highly recommend seeking folks using computers to augment their ability to create and remember instead of stopping at “finally got my notes app just the way I like it”!\n\n",
"date_published": "2022-08-24T06:11:39-07:00",
"url": "https://therealadam.micro.blog/2022/08/24/an-unconference-appears.html"
},
{
"id": "http://therealadam.micro.blog/2022/08/16/very-handsome-task.html",
"title": "Very handsome task tracking, offline and online",
"content_html": "<p>About a year ago, I added a curiously pretentious object to my repertoire of productivity hacks. <a href=\"https://ugmonk.com/pages/analog\">Analog</a> is a) a paper productivity notation not unlike Bullet Journaling b) printed on pleasantly thick index cards and c) a bit of desk furniture to prop up the cards and store the last couple dozen of them.</p>\n<p>The idea is you write your tasks down for today/later/someday. Those tasks sit right in front of you, taunting you. You cross them off as you get stuff done. Now you’ve done a productivity!</p>\n<p>Reductionist jokes aside, it’s a fine system. The cards are printed with “Today”, “Next”, or “Someday” at the top and lines to encourage writing down several, but not too many, tasks. It’s a good way to think about organizing what you need/want to get done. As productivity systems go, it’s clear and non-invasive<sup id=\"fnref:1\"><a href=\"#fn:1\" class=\"footnote-ref\" role=\"doc-noteref\">1</a></sup>.</p>\n<p><a href=\"https://daverupert.com/2021/02/one-month-on-analog/\">Dave Rupert uses/tried Analog</a> too and has a good take on it.</p>\n<p>Tactility is Analog’s leg up. It’s nice to start the day writing out some tasks, looking over the previous day’s cards, shuffling the cards from previous days. Even <a href=\"https://culturedcode.com/things/\">Things, the best task software</a>, can’t provide the tactile “ahhhh”-moment of crossing an item off your list. Tasteful animation, design, and haptics get close, but touching glass isn’t as good as pen and paper.</p>\n<p>That said, I’m not tempted to discard Things. It’s literally one of the best applications I’ve used, ever. That said, it’s charming to have a redundant, back-up scheme for reminding myself of the most important things to accomplish today. Analog is like having a (very handsome) back-up alarm clock to the alarm clock one <em>intends</em> to wake up to. It’s always pleasant to look at, and every so often it is the difference between an energetic day and a day played catching up.</p>\n<section class=\"footnotes\" role=\"doc-endnotes\">\n<hr>\n<ol>\n<li id=\"fn:1\" role=\"doc-endnote\">\n<p>Many productivity schemes feel like they want to take over your life to realize their benefits. IOW, they fantastically fail the “is this sufficiently distinguishable from a cult?” test. <a href=\"#fnref:1\" class=\"footnote-backref\" role=\"doc-backlink\">↩︎</a></p>\n</li>\n</ol>\n</section>\n",
"content_text": "About a year ago, I added a curiously pretentious object to my repertoire of productivity hacks. [Analog](https://ugmonk.com/pages/analog) is a) a paper productivity notation not unlike Bullet Journaling b) printed on pleasantly thick index cards and c) a bit of desk furniture to prop up the cards and store the last couple dozen of them. \n\nThe idea is you write your tasks down for today/later/someday. Those tasks sit right in front of you, taunting you. You cross them off as you get stuff done. Now you’ve done a productivity!\n\nReductionist jokes aside, it’s a fine system. The cards are printed with “Today”, “Next”, or “Someday” at the top and lines to encourage writing down several, but not too many, tasks. It’s a good way to think about organizing what you need/want to get done. As productivity systems go, it’s clear and non-invasive[^1].\n\n[Dave Rupert uses/tried Analog](https://daverupert.com/2021/02/one-month-on-analog/) too and has a good take on it.\n\nTactility is Analog’s leg up. It’s nice to start the day writing out some tasks, looking over the previous day’s cards, shuffling the cards from previous days. Even [Things, the best task software](https://culturedcode.com/things/), can’t provide the tactile “ahhhh”-moment of crossing an item off your list. Tasteful animation, design, and haptics get close, but touching glass isn’t as good as pen and paper.\n\nThat said, I’m not tempted to discard Things. It’s literally one of the best applications I’ve used, ever. That said, it’s charming to have a redundant, back-up scheme for reminding myself of the most important things to accomplish today. Analog is like having a (very handsome) back-up alarm clock to the alarm clock one _intends_ to wake up to. It’s always pleasant to look at, and every so often it is the difference between an energetic day and a day played catching up.\n\n[^1]:\tMany productivity schemes feel like they want to take over your life to realize their benefits. IOW, they fantastically fail the “is this sufficiently distinguishable from a cult?” test.\n",
"date_published": "2022-08-16T07:42:48-07:00",
"url": "https://therealadam.micro.blog/2022/08/16/very-handsome-task.html"
},
{
"id": "http://therealadam.micro.blog/2022/07/20/dad-rock-is.html",
"title": "Dad rock is a beautiful tapestry",
"content_html": "<p>Spooky dad rock - Trent Reznor</p>\n<p>Sad dad rock - the National, LCD Soundsystem</p>\n<p>Quirky dad rock - Cake</p>\n<p>Over-enthusiastic dad rock - Foo Fighters</p>\n",
"content_text": "Spooky dad rock - Trent Reznor\n\nSad dad rock - the National, LCD Soundsystem\n\nQuirky dad rock - Cake\n\nOver-enthusiastic dad rock - Foo Fighters\n\n",
"date_published": "2022-07-20T06:07:47-07:00",
"url": "https://therealadam.micro.blog/2022/07/20/dad-rock-is.html"
},
{
"id": "http://therealadam.micro.blog/2022/07/13/notes-from-the.html",
"title": "Notes from the Miles-verse Part 3 and final thoughts",
"content_html": "<p>This ended up covering late Davis stuff. He’s basically inventing a new genre of jazz every album or two now.</p>\n<ul>\n<li><em>On the Corner</em>: Davis invents funk/soul jazz.</li>\n<li><em>A Tribute to Jack Johnson</em>: Davis invents rock/jazz fusion.</li>\n<li><em>Tutu</em>: Davis invents synth-jazz/the thing that would get distilled and warped down to New Age/Kenny G jazz in the 90s.</li>\n</ul>\n<p>There are numerous live albums! I didn’t go down the rabbit hole on this part. <em>Miles and Quincy Live at Montreux</em> features Quincy Jones and is a pretty great end-of-career retrospective.</p>\n<p>“Willie Nelson” on <em>Directions</em> is surprisingly funky.</p>\n<hr>\n<p>Overall, I could have gone for less <em>Birth of the Cool</em>-esque and more <em>Bitches Brew</em>. 🤷I like bop, but funk and fusion are more legible to my modest jazz-harmony ear.</p>\n<p>Highlights: <em>On the Corner</em>, <em>Jack Johnson</em>, <em>Tutu</em>. The last was originally planned as a Miles Davis/Prince collaboration (❗ ❗ ❗) which fell through. Still pretty good.</p>\n<p>What I’d hoped to get out of this, and indeed did, was hearing the invention of large swaths of the jazz landscape over time, album by album. In this way, Miles Davis was a singular influence on the course of music, a lot like Beethoven was.</p>\n<p>Hopefully, in my lifetime, we’ll realize another musician has come around and broadly invented entire genres of music every few albums. (I’m assuming we’ll still have albums!)</p>\n<p>Previously: <a href=\"https://short.therealadam.com/2022/05/14/notes-from-the.html\">Notes from the Miles-verse Parts 1 and 2</a>, <a href=\"https://short.therealadam.com/2021/09/11/into-the-milesverse.html\">Into the Miles-verse</a>.</p>\n",
"content_text": "This ended up covering late Davis stuff. He’s basically inventing a new genre of jazz every album or two now.\n\n- _On the Corner_: Davis invents funk/soul jazz.\n- _A Tribute to Jack Johnson_: Davis invents rock/jazz fusion.\n- _Tutu_: Davis invents synth-jazz/the thing that would get distilled and warped down to New Age/Kenny G jazz in the 90s.\n\nThere are numerous live albums! I didn’t go down the rabbit hole on this part. _Miles and Quincy Live at Montreux_ features Quincy Jones and is a pretty great end-of-career retrospective.\n\n“Willie Nelson” on _Directions_ is surprisingly funky.\n\n---- \nOverall, I could have gone for less _Birth of the Cool_-esque and more _Bitches Brew_. 🤷I like bop, but funk and fusion are more legible to my modest jazz-harmony ear.\n\nHighlights: _On the Corner_, _Jack Johnson_, _Tutu_. The last was originally planned as a Miles Davis/Prince collaboration (❗ ❗ ❗) which fell through. Still pretty good.\n\nWhat I’d hoped to get out of this, and indeed did, was hearing the invention of large swaths of the jazz landscape over time, album by album. In this way, Miles Davis was a singular influence on the course of music, a lot like Beethoven was.\n\nHopefully, in my lifetime, we’ll realize another musician has come around and broadly invented entire genres of music every few albums. (I’m assuming we’ll still have albums!)\n\nPreviously: [Notes from the Miles-verse Parts 1 and 2](https://short.therealadam.com/2022/05/14/notes-from-the.html), [Into the Miles-verse](https://short.therealadam.com/2021/09/11/into-the-milesverse.html).\n\n",
"date_published": "2022-07-13T05:30:58-07:00",
"url": "https://therealadam.micro.blog/2022/07/13/notes-from-the.html"
},
{
"id": "http://therealadam.micro.blog/2022/05/14/notes-from-the.html",
"title": "Notes from the Miles-verse Parts 1 and 2",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p>Wherein I’m listening to Miles Davis’ studio albums in chronological order. Priors: I have listened to <em>Kind of Blue</em> and <em>Bitches Brew</em> a lot. I’m mostly familiar with “earl years” sort of stuff.</p>\n\n<h2 id=\"basicallybop\">Basically bop</h2>\n\n<ul>\n<li><em>Collector’s Item</em>: this album starts to sound “Idiomatically Miles Davis”. Which I guess means “rather abstract bop-vibe”.</li>\n<li><em>Bag’s Groove</em>: this is very hip.</li>\n<li><em>Cookin’ with the Miles Davis Quintet</em>: I’ll take basically any version of “My Funny Valentine”, same as I will listen to any version of “Caravan”.</li>\n</ul>\n\n<p>The albums Davis made with Gil Evans are my early new-favorites. <em>Miles Ahead</em>, <em>Porgy and Bess</em>, and <em>Sketches of Spain</em> all sound more lofty, less improvised than the earlier stuff. Almost composed, classical music, not unlike some of Mingus’ work.</p>\n\n<h2 id=\"verymuchnotbop\">Very much not bop</h2>\n\n<p>Getting into Davis’ fusion era (1968–1991) is my big discovery. I know <em>Bitches Brew</em> is a thing, but where it fits chronologically is the missing piece. Davis entirely switching gears from bop to <em>an entirely different vibe</em> must have been as jarring as <em>Rite of Spring</em> was to Parisans. Favorites so far: <em>Filles De Kilimanjaro</em>, <em>A Tribute to Jack Johnson</em>, <em>On the Corner</em>. <em>In a Silent Way</em> is entirely different from the albums around it in this era, but I like how it’s basically a long song.</p>\n\n<p>Currently listening: <em>Circle in the Round</em>.</p>\n\n<p>Previously: <a href=\"https://short.therealadam.com/2021/09/11/into-the-milesverse.html\">Into the Miles-verse</a>.</p>\n",
"date_published": "2022-05-14T09:10:32-07:00",
"url": "https://therealadam.micro.blog/2022/05/14/notes-from-the.html"
},
{
"id": "http://therealadam.micro.blog/2022/04/21/get-lost-in.html",
"title": "Get lost in an idea",
"content_html": "<p><a href=\"https://www.rabbitholeathon.com\">Rabbit-hole-athon</a> - it doesn’t look like an event is scheduled, but I dig the idea:</p>\n<blockquote>\n<p>Tl;dr, we are organizing a weekend long IRL rabbit-hole-athon for technologists: an intimate retreat/hackathon dedicated to reading, thinking deeply about a topic, and sharing your learnings with others.</p>\n</blockquote>\n<p>Like a hackathon or BarCamp, but with the intent to <em>focus</em> an individual’s attention on a topic of their choosing instead of <em>diffusing</em> it. (Which is fine, on balance!)</p>\n<blockquote>\n<p>We believe that being a good builder and problem solver is rooted in being a clear thinker. Intentionally dedicating time to exploring, pursuing your curiosity, and understanding things deeply is an important part of exercising this muscle. We believe this is essential in shaping the next generation of technologists, builders, founders, and researchers.</p>\n</blockquote>\n<p>That’s a snappy manifesto! The notion of taking an afternoon/day/weekend to throw tactics to the wind and go deep on a topic is exciting. I’m already thinking about topics I could go down the rabbit hole on. 🧠</p>\n",
"content_text": "[Rabbit-hole-athon](https://www.rabbitholeathon.com) - it doesn’t look like an event is scheduled, but I dig the idea:\n\n> Tl;dr, we are organizing a weekend long IRL rabbit-hole-athon for technologists: an intimate retreat/hackathon dedicated to reading, thinking deeply about a topic, and sharing your learnings with others.\n\nLike a hackathon or BarCamp, but with the intent to _focus_ an individual's attention on a topic of their choosing instead of _diffusing_ it. (Which is fine, on balance!)\n\n> We believe that being a good builder and problem solver is rooted in being a clear thinker. Intentionally dedicating time to exploring, pursuing your curiosity, and understanding things deeply is an important part of exercising this muscle. We believe this is essential in shaping the next generation of technologists, builders, founders, and researchers.\n\nThat’s a snappy manifesto! The notion of taking an afternoon/day/weekend to throw tactics to the wind and go deep on a topic is exciting. I’m already thinking about topics I could go down the rabbit hole on. 🧠\n\n",
"date_published": "2022-04-21T05:38:46-07:00",
"url": "https://therealadam.micro.blog/2022/04/21/get-lost-in.html"
},
{
"id": "http://therealadam.micro.blog/2022/04/12/two-snappy-covers.html",
"title": "Two snappy covers",
"content_html": "<p>I saw this local band Adam’s Farm (no relation, promise) a few times when I was 15 or so. In the era of mixing bass guitar <em>out</em> of rock music (no thanks, Metallica), these fellows stood out by being having an EP where I could clearly hear <em>all</em> the instruments. It was almost 25 years later that I’d learn that “Girlfriend” in particular is a Modern Lovers cover.</p>\n<!-- raw HTML omitted -->\n<p>Sidenote: it seemed like this local band was lost to the internet until recently as well. I figured I’d ripped one of the only copies of this CD, but Adam’s Farm music appeared on YouTube recently. Fancy that!</p>\n<p>William Shatner’s cover of “Common People” is less difficult to find, but possibly equally obscure. Back in the late ’90s, Shatner did some voice overs on a Ben Folds pre-solo album <a href=\"https://en.wikipedia.org/wiki/Fear_of_Pop\"><em>Fear of Pop</em></a>. In the mid ‘00s, Folds produced William Shatner’s album of songs with tons of guests doing the singing and Shatner mostly <em>talking</em> about mortality and aging. Again, it was several years before I heard the original of “Common People”.</p>\n<!-- raw HTML omitted -->\n<p>I rather like these two covers better than the originals. So it goes with a notable cover!</p>\n",
"content_text": "I saw this local band Adam’s Farm (no relation, promise) a few times when I was 15 or so. In the era of mixing bass guitar _out_ of rock music (no thanks, Metallica), these fellows stood out by being having an EP where I could clearly hear _all_ the instruments. It was almost 25 years later that I’d learn that “Girlfriend” in particular is a Modern Lovers cover.\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/d9mYEsswDZ8\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\n\nSidenote: it seemed like this local band was lost to the internet until recently as well. I figured I’d ripped one of the only copies of this CD, but Adam’s Farm music appeared on YouTube recently. Fancy that!\n\nWilliam Shatner’s cover of “Common People” is less difficult to find, but possibly equally obscure. Back in the late ’90s, Shatner did some voice overs on a Ben Folds pre-solo album [_Fear of Pop_](https://en.wikipedia.org/wiki/Fear_of_Pop). In the mid ‘00s, Folds produced William Shatner’s album of songs with tons of guests doing the singing and Shatner mostly _talking_ about mortality and aging. Again, it was several years before I heard the original of “Common People”.\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/cMXhWf0vE7c\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\n\nI rather like these two covers better than the originals. So it goes with a notable cover!\n\n",
"date_published": "2022-04-12T05:41:28-07:00",
"url": "https://therealadam.micro.blog/2022/04/12/two-snappy-covers.html"
},
{
"id": "http://therealadam.micro.blog/2022/01/31/logistics-is-endless.html",
"title": "Logistics is endless intrigue",
"content_html": "<p>The modern marvel that moves commodities, sub-assemblies, finished product, and people across the planet is largely invisible. Except when I’m bumped from an overbooked flight. Or when I can’t buy your favorite kind of candy because the trucks to move the containers from the ships to the stores are in the wrong place. Or when one can’t build a car in Germany because semiconductor fabrication plants aren’t as elastic as some executive thought they were. Then it becomes all too apparent that the default state of transportation is, absent considerable effort and coordination, for the wheels to fly off constantly.</p>\n<p>Hence, <a href=\"https://www.lesswrong.com/posts/PHmYhE4sKnwzYgvkh/a-brief-introduction-to-container-logistics\">A Brief Introduction to Container Logistics</a> is a great primer for understanding the weird state of our world:</p>\n<blockquote>\n<p>The whole shipping process involves dozens of actors, from the exporter, through a long chain of companies who handle the container (incurring costs on behalf of the shipment), all the way to the importer. This creates a trust problem: who is responsible for the problems that arise when one part of this chain goes wrong? Some of these companies are hired by the shipping company, others by the exporter or importer, or even by a logistics company acting as a middle man. This is usually solved by some kind of chain of custody, where any problem with the container must be immediately noted and complained about by the relevant party.</p>\n</blockquote>\n<p>Adjacent: Venkatesh Rao, <a href=\"https://studio.ribbonfarm.com/p/remystifying-supply-chains\">Remystifying Supply Chains</a>:</p>\n<blockquote>\n<p>Supply chains are a new class of engineered-emergent artifact, one that includes a few other globe-spanning things like the internet, the air travel system, and low earth orbit, that exist at a level of Gaian phenomenology, terraforming, and planet-scale husbandry. We only ever catch local glimpses of these things. The wholes are too big to fit in a single human mind, and the physical embodiments are too vast to capture even on a single map, let alone in a single photograph.</p>\n<p>We have to understand these beasts, in all their evolving, learning glory, while living within their bellies. Abstract slicing and dicing of the phenomenology, via aspects like computation, circularity, and situatedness, can only get us so far. To finish the picture, we have to develop a sensitivity to how we inhabit these beasts at a human scale.</p>\n</blockquote>\n",
"content_text": "The modern marvel that moves commodities, sub-assemblies, finished product, and people across the planet is largely invisible. Except when I’m bumped from an overbooked flight. Or when I can’t buy your favorite kind of candy because the trucks to move the containers from the ships to the stores are in the wrong place. Or when one can’t build a car in Germany because semiconductor fabrication plants aren’t as elastic as some executive thought they were. Then it becomes all too apparent that the default state of transportation is, absent considerable effort and coordination, for the wheels to fly off constantly.\n\nHence, [A Brief Introduction to Container Logistics](https://www.lesswrong.com/posts/PHmYhE4sKnwzYgvkh/a-brief-introduction-to-container-logistics) is a great primer for understanding the weird state of our world:\n\n> The whole shipping process involves dozens of actors, from the exporter, through a long chain of companies who handle the container (incurring costs on behalf of the shipment), all the way to the importer. This creates a trust problem: who is responsible for the problems that arise when one part of this chain goes wrong? Some of these companies are hired by the shipping company, others by the exporter or importer, or even by a logistics company acting as a middle man. This is usually solved by some kind of chain of custody, where any problem with the container must be immediately noted and complained about by the relevant party.\n\nAdjacent: Venkatesh Rao, [Remystifying Supply Chains](https://studio.ribbonfarm.com/p/remystifying-supply-chains):\n\n> Supply chains are a new class of engineered-emergent artifact, one that includes a few other globe-spanning things like the internet, the air travel system, and low earth orbit, that exist at a level of Gaian phenomenology, terraforming, and planet-scale husbandry. We only ever catch local glimpses of these things. The wholes are too big to fit in a single human mind, and the physical embodiments are too vast to capture even on a single map, let alone in a single photograph.\n> \n> We have to understand these beasts, in all their evolving, learning glory, while living within their bellies. Abstract slicing and dicing of the phenomenology, via aspects like computation, circularity, and situatedness, can only get us so far. To finish the picture, we have to develop a sensitivity to how we inhabit these beasts at a human scale.\n\n",
"date_published": "2022-01-31T14:00:00-07:00",
"url": "https://therealadam.micro.blog/2022/01/31/logistics-is-endless.html"
},
{
"id": "http://therealadam.micro.blog/2022/01/26/beethovens-symphonies-visualized.html",
"title": "Beethoven’s symphonies, visualized and interpreted",
"content_html": "<p><img src=\"https://www.kennedy-center.org/globalassets/whats-on/exhibit/qs_sym7-4sh_web_600x900.jpg\" alt=\"Abstract art poster of Beethoven Symphony No. 7\"></p>\n<p>This is extremely my jam. <a href=\"https://www.kennedy-center.org/whats-on/mo-willems-beethoven-exhibit/\">Beethoven Symphonies Abstracted</a>:</p>\n<blockquote>\n<p>To accompany the National Symphony Orchestra’s Beethoven & American Masters concert series, author and illustrator Mo Willems presents Beethoven Symphonies Abstracted, an exhibition of nine large-scale, painted abstractions inspired by the music and genius of Beethoven. Each large-scale work is a response to one of Beethoven’s nine symphonies, divided into panels that visually interpret each symphonic movement.</p>\n</blockquote>\n<p>(Via <a href=\"https://austinkleon.com\">Austin Kleon</a>)</p>\n<p>Previously: <a href=\"https://short.therealadam.com/2021/11/28/great-albums-beethoven.html\">my affection for symphonies seven and eight</a>, John Coltrane’s <a href=\"https://www.youtube.com/watch?v=rh6WTAHKYTc\">“Giant Steps” animated</a>.</p>\n",
"content_text": "![Abstract art poster of Beethoven Symphony No. 7](https://www.kennedy-center.org/globalassets/whats-on/exhibit/qs_sym7-4sh_web_600x900.jpg)\n\nThis is extremely my jam. [Beethoven Symphonies Abstracted](https://www.kennedy-center.org/whats-on/mo-willems-beethoven-exhibit/):\n\n> To accompany the National Symphony Orchestra’s Beethoven & American Masters concert series, author and illustrator Mo Willems presents Beethoven Symphonies Abstracted, an exhibition of nine large-scale, painted abstractions inspired by the music and genius of Beethoven. Each large-scale work is a response to one of Beethoven’s nine symphonies, divided into panels that visually interpret each symphonic movement.\n\n(Via [Austin Kleon](https://austinkleon.com))\n\nPreviously: [my affection for symphonies seven and eight](https://short.therealadam.com/2021/11/28/great-albums-beethoven.html), John Coltrane’s [“Giant Steps” animated](https://www.youtube.com/watch?v=rh6WTAHKYTc).\n\n",
"date_published": "2022-01-26T14:00:00-07:00",
"url": "https://therealadam.micro.blog/2022/01/26/beethovens-symphonies-visualized.html"
},
{
"id": "http://therealadam.micro.blog/2022/01/25/cool-things-to.html",
"title": "Cool things to do with your spaceship besides launching billionaires",
"content_html": "<p>Fancy some near-term imagination on the opportunities the re-commercialization of space presents us? Yes, have some! <a href=\"https://caseyhandmer.wordpress.com/2021/11/17/science-upside-for-starship/\">Science upside for Starship</a>:</p>\n<blockquote>\n<p>It is, however, a fun exercise to enumerate all the ways in which Starship and related technologies can help execute bold, ambitious missions of scientific discovery.</p>\n</blockquote>\n<p>Giant, poly-lithic space telescopes? Sure.</p>\n<blockquote>\n<p>Probably the coolest telescope concept enabled by Starship, though, is the giant segmented telescope to end all giant segmented telescopes. An unmodified Starship can deliver perhaps a dozen 8 m monolithic hexagonal free-flying segments per launch to a target location such as L2, where they self assemble, calibrate, and then focus incoming light. Over a few dozen Starship flights, a truly enormous spherical mirror section perhaps 1000 m in diameter and with a focal length of 1000 km or so can be assembled behind a free-flying sun shade, pointed in a direction of general interest.</p>\n</blockquote>\n<p>Heating (low-key terraforming) Mars with constellations of mirrors? Okay.</p>\n<blockquote>\n<p>The second is mass producing light sails on Earth, launching them into LEO, then flying them to Mars where they can lurk near Mars-Sun L2 and reflect light back at the planet, reducing heat loss during the Martian night.</p>\n</blockquote>\n<p>“Flood the zone” of our planetary neighbors with exploratory robots? As you wish.</p>\n<blockquote>\n<p>Why shouldn’t we have a dedicated orbiter, lander, rover, helicopter, and submarine on every discrete body in the solar system over, say, 100 km in diameter? Let’s build a fleet of clockwork automatons for Venus and an armada of submarines for Europa, Enceladus, and Titan. Let’s darken the Martian skies with helicopters. Let’s drive rovers across the frozen nitrogen plains of Pluto.</p>\n</blockquote>\n<p>I’m sure it’s a lot more complicated than it sounds from these pull-quotes. I’ll bet that SpaceX’s starship won’t meet some of these expectations. We will have to hold our nose or plug our ears as Musk bloviates. Despite all that, it’s exciting that folks are thinking, writing, and blogging about this and <em>some</em> of it could come to fruition in my lifetime!</p>\n",
"content_text": "Fancy some near-term imagination on the opportunities the re-commercialization of space presents us? Yes, have some! [Science upside for Starship](https://caseyhandmer.wordpress.com/2021/11/17/science-upside-for-starship/):\n\n> It is, however, a fun exercise to enumerate all the ways in which Starship and related technologies can help execute bold, ambitious missions of scientific discovery.\n\nGiant, poly-lithic space telescopes? Sure.\n\n> Probably the coolest telescope concept enabled by Starship, though, is the giant segmented telescope to end all giant segmented telescopes. An unmodified Starship can deliver perhaps a dozen 8 m monolithic hexagonal free-flying segments per launch to a target location such as L2, where they self assemble, calibrate, and then focus incoming light. Over a few dozen Starship flights, a truly enormous spherical mirror section perhaps 1000 m in diameter and with a focal length of 1000 km or so can be assembled behind a free-flying sun shade, pointed in a direction of general interest.\n\nHeating (low-key terraforming) Mars with constellations of mirrors? Okay.\n\n> The second is mass producing light sails on Earth, launching them into LEO, then flying them to Mars where they can lurk near Mars-Sun L2 and reflect light back at the planet, reducing heat loss during the Martian night.\n\n“Flood the zone” of our planetary neighbors with exploratory robots? As you wish. \n\n\n> Why shouldn’t we have a dedicated orbiter, lander, rover, helicopter, and submarine on every discrete body in the solar system over, say, 100 km in diameter? Let’s build a fleet of clockwork automatons for Venus and an armada of submarines for Europa, Enceladus, and Titan. Let’s darken the Martian skies with helicopters. Let’s drive rovers across the frozen nitrogen plains of Pluto.\n\nI’m sure it’s a lot more complicated than it sounds from these pull-quotes. I’ll bet that SpaceX’s starship won’t meet some of these expectations. We will have to hold our nose or plug our ears as Musk bloviates. Despite all that, it’s exciting that folks are thinking, writing, and blogging about this and _some_ of it could come to fruition in my lifetime!\n\n",
"date_published": "2022-01-25T14:00:00-07:00",
"url": "https://therealadam.micro.blog/2022/01/25/cool-things-to.html"
},
{
"id": "http://therealadam.micro.blog/2022/01/24/130000.html",
"title": "Great albums: Blood Sugar Sex Magick",
"content_html": "<p><img src=\"https://static.fanart.tv/fanart/music/8bfac288-ccc5-448d-9573-c33ea2aa5c30/albumcover/blood-sugar-sex-magik-540dda11a6d0e.jpg\" alt=\"Cover art for Blood Sugar Sex Magick\"></p>\n<p>Favorite tracks: “Suck My Kiss”, “Sir Psychosexy”, “Power of Equality”, “The Righteous & the Wicked”.</p>\n<p>The essential (in my opinion) Red Hot Chili Peppers album is, for me, a few things:</p>\n<ul>\n<li>One of the first albums I heard with good bass playing (I ‘grew up’ in the age after Metallica had mixed bass guitar entirely out of their albums and many others followed suit)</li>\n<li>One of the first albums I heard that was <em>great</em> from end to end and where many of the songs flowed into each other as if played live, meant to fit together, or like they weren’t even separate songs</li>\n<li>Extremely teenage and horny, of which I was both when I first heard it</li>\n</ul>\n<p>It’s an album that has aged well for me. It was an excellent album when I first heard it, and is <em>still</em> an excellent album when I listen to it today.</p>\n<p>There are other nice qualities too: Rick Rubin’s production work. When it’s not extremely horny, it has some good lyrics. It’s rooted in the RHCP musical predecessors with intelligent awareness, not than blind copying. They are seeing further by standing on the shoulders of George Clinton, not just sitting on his shoulders for a free ride. It’s just good funk.</p>\n<p>And yes, <a href=\"https://www.youtube.com/watch?v=ZnvpU0d7vyM\">the RHCP joke in <em>The Good Place</em> is superb</a>.</p>\n",
"content_text": "![Cover art for Blood Sugar Sex Magick](https://static.fanart.tv/fanart/music/8bfac288-ccc5-448d-9573-c33ea2aa5c30/albumcover/blood-sugar-sex-magik-540dda11a6d0e.jpg)\n\nFavorite tracks: “Suck My Kiss”, “Sir Psychosexy”, “Power of Equality”, “The Righteous & the Wicked”.\n\nThe essential (in my opinion) Red Hot Chili Peppers album is, for me, a few things:\n\n- One of the first albums I heard with good bass playing (I ‘grew up’ in the age after Metallica had mixed bass guitar entirely out of their albums and many others followed suit)\n- One of the first albums I heard that was _great_ from end to end and where many of the songs flowed into each other as if played live, meant to fit together, or like they weren’t even separate songs\n- Extremely teenage and horny, of which I was both when I first heard it\n\nIt’s an album that has aged well for me. It was an excellent album when I first heard it, and is _still_ an excellent album when I listen to it today.\n\nThere are other nice qualities too: Rick Rubin’s production work. When it’s not extremely horny, it has some good lyrics. It’s rooted in the RHCP musical predecessors with intelligent awareness, not than blind copying. They are seeing further by standing on the shoulders of George Clinton, not just sitting on his shoulders for a free ride. It’s just good funk.\n\nAnd yes, [the RHCP joke in _The Good Place_ is superb](https://www.youtube.com/watch?v=ZnvpU0d7vyM).\n\n",
"date_published": "2022-01-24T12:00:00-07:00",
"url": "https://therealadam.micro.blog/2022/01/24/130000.html"
},
{
"id": "http://therealadam.micro.blog/2021/12/31/my-favorites-of.html",
"title": "My favorites of 2021",
"content_html": "<p>Gotta sneak this one in under the wire, otherwise it’s just a sparkling list of things.</p>\n<h2 id=\"movies\">Movies</h2>\n<p><em>Summer of Soul</em> - Nina Simone, Stevie Wonder, Sly and the Family Stone. Heck yes.</p>\n<p><em>Dune</em> - loved the world building here and I’m willing to look past the decision to split this into two movies.</p>\n<p><em>Somewhere You Feel Free</em> - I didn’t realize <em>Wildflowers</em> was so pivotal for Tom Petty. Made me want to get in my car and listen to the whole thing, which I did and greatly enjoyed.</p>\n<h2 id=\"shows\">Shows</h2>\n<p><em>Only Murders in the Building</em> - is there a greater showbiz duo than Martin Short and Steve Martin?</p>\n<p><em>Hacks</em> - inside baseball on standup comedy plus Jean Smart is 👨🍳</p>\n<p><em>What We Do in the Shadows</em> - a mockumentary sitcom expanding its world, taking chances with changing things up, and absolutely nailing the landing.</p>\n<h2 id=\"albums\">Albums</h2>\n<p>Funkadelic, <em>Maggot Brain</em> - hits more emotional points than I’d ever expect from a George Clinton thing.</p>\n<p>Miles Davis, <em>Sketches of Spain</em> - nudging into Very Intellectual, nearly classical, jazz, Davis is at least as good as Mingus was at this.</p>\n<p>Prince, <em>Welcome 2 America</em> - recorded ten years ago, but it absolutely works today.</p>\n<h2 id=\"books\">Books</h2>\n<p>Neal Stephenson, <em>Cryptonomicon</em> - I finished re-reading the whole Baroque Trilogy plus this one and they surpassed my recollection of how good they are.</p>\n<p>Adrian Newey, <em>How To Build a Car</em> - a memoir on designing three decades of winning Formula 1 cars.</p>\n<p>Austin Kleon, <em>Steal Like an Artist</em> - enjoyed the whole trilogy on writing motivation.</p>\n<h2 id=\"my-best-writing\">My best writing</h2>\n<p><a href=\"https://therealadam.com/2021/11/01/dont-be-spooky/\">Don’t be spooky</a></p>\n<p><a href=\"https://therealadam.com/2021/06/12/rationalize-and-solve-doesnt-help-someone-who-is-venting/\">“Rationalize and solve” doesn’t help someone who is venting</a></p>\n<p><a href=\"https://therealadam.com/2021/06/01/one-priority-is-like-wind-in-the-sails/\">One priority is like wind in the sails</a></p>\n<p><a href=\"https://short.therealadam.com/2021/03/27/the-long-game.html\">The long game of notes</a></p>\n<h2 id=\"my-best-tweeting\">My best tweeting</h2>\n<p><a href=\"https://twitter.com/therealadam/status/1362929430054731776%0A\">On emerging from a winter storm </a></p>\n<p><a href=\"https://twitter.com/therealadam/status/1354272305732612099\">On accordions</a></p>\n<p><a href=\"https://twitter.com/therealadam/status/1456349294722789381\">Finishing is the hardest part</a></p>\n<p><a href=\"https://twitter.com/therealadam/status/1383963875679248385\">The Red Hot Chili Peppers vs. no shoes/shirt policies</a></p>\n<p><a href=\"https://twitter.com/therealadam/status/1423345008279707653\">Proof of work is a better idea for sustaining recurring meetings than for software currency</a></p>\n",
"content_text": "Gotta sneak this one in under the wire, otherwise it’s just a sparkling list of things.\n\n## Movies\n_Summer of Soul_ - Nina Simone, Stevie Wonder, Sly and the Family Stone. Heck yes.\n\n_Dune_ - loved the world building here and I’m willing to look past the decision to split this into two movies.\n\n_Somewhere You Feel Free_ - I didn’t realize _Wildflowers_ was so pivotal for Tom Petty. Made me want to get in my car and listen to the whole thing, which I did and greatly enjoyed.\n\n## Shows\n_Only Murders in the Building_ - is there a greater showbiz duo than Martin Short and Steve Martin?\n\n_Hacks_ - inside baseball on standup comedy plus Jean Smart is 👨🍳\n\n_What We Do in the Shadows_ - a mockumentary sitcom expanding its world, taking chances with changing things up, and absolutely nailing the landing.\n\n## Albums\nFunkadelic, _Maggot Brain_ - hits more emotional points than I’d ever expect from a George Clinton thing.\n\nMiles Davis, _Sketches of Spain_ - nudging into Very Intellectual, nearly classical, jazz, Davis is at least as good as Mingus was at this.\n\nPrince, _Welcome 2 America_ - recorded ten years ago, but it absolutely works today.\n\n## Books\nNeal Stephenson, _Cryptonomicon_ - I finished re-reading the whole Baroque Trilogy plus this one and they surpassed my recollection of how good they are.\n\nAdrian Newey, _How To Build a Car_ - a memoir on designing three decades of winning Formula 1 cars.\n\nAustin Kleon, _Steal Like an Artist_ - enjoyed the whole trilogy on writing motivation.\n\n## My best writing\n[Don’t be spooky](https://therealadam.com/2021/11/01/dont-be-spooky/)\n\n[“Rationalize and solve” doesn’t help someone who is venting](https://therealadam.com/2021/06/12/rationalize-and-solve-doesnt-help-someone-who-is-venting/)\n\n[One priority is like wind in the sails](https://therealadam.com/2021/06/01/one-priority-is-like-wind-in-the-sails/)\n\n[The long game of notes](https://short.therealadam.com/2021/03/27/the-long-game.html)\n\n## My best tweeting\n[On emerging from a winter storm ](https://twitter.com/therealadam/status/1362929430054731776%0A)\n\n[On accordions](https://twitter.com/therealadam/status/1354272305732612099)\n\n[Finishing is the hardest part](https://twitter.com/therealadam/status/1456349294722789381)\n\n[The Red Hot Chili Peppers vs. no shoes/shirt policies](https://twitter.com/therealadam/status/1383963875679248385)\n\n[Proof of work is a better idea for sustaining recurring meetings than for software currency](https://twitter.com/therealadam/status/1423345008279707653)\n\n",
"date_published": "2021-12-31T13:07:47-07:00",
"url": "https://therealadam.micro.blog/2021/12/31/my-favorites-of.html"
},
{
"id": "http://therealadam.micro.blog/2021/12/28/a-more-evocative.html",
"title": "A more evocative word for mega-corps",
"content_html": "<p>Kevin Kelly, <a href=\"https://kk.org/thetechnium/the-third-way/\">The Third Way</a>:</p>\n<blockquote>\n<p>Huge monopolistic companies running platforms like Facebook and Amazon are not mere corporations, nor are they governments, even though they have many of the attributes of both government and corporations. They are a new third thing: platforms. We should not expect to regulate platforms like companies, nor expect them to behave like governments. We need a third category of rights and responsibilities for them.</p>\n</blockquote>\n<p>Platform-principalities. Bank-states (which, oddly enough, <a href=\"https://www.youtube.com/watch?v=ggUduBmvQ_4\">includes airlines</a>). Energy-sovereigns (British Petroleum, Exxon). Media-empires (Disney, Universal).</p>\n<p>We require a better term for companies that have grown so extraordinarily. Those like Apple that run international diplomacy programs with China. Those like Amazon or Google, that regard their employees as de-facto citizens. Those like airlines that can print a currency (in the form of loyalty programs).</p>\n<p>And, as Kelly notes, we should look at them in an entirely different way. We shouldn’t treat Amazon the same we treat a local retailer, just like we don’t treat your local HOA the same way we treat the European Union. “Platforms” is a good start, but a word that connects the tremendous influence modern mega-corps have with the power that Standard Oil or The British East India Corporation had at their apex would be even better!</p>\n",
"content_text": "Kevin Kelly, [The Third Way](https://kk.org/thetechnium/the-third-way/):\n\n> Huge monopolistic companies running platforms like Facebook and Amazon are not mere corporations, nor are they governments, even though they have many of the attributes of both government and corporations. They are a new third thing: platforms. We should not expect to regulate platforms like companies, nor expect them to behave like governments. We need a third category of rights and responsibilities for them.\n\nPlatform-principalities. Bank-states (which, oddly enough, [includes airlines](https://www.youtube.com/watch?v=ggUduBmvQ_4)). Energy-sovereigns (British Petroleum, Exxon). Media-empires (Disney, Universal). \n\nWe require a better term for companies that have grown so extraordinarily. Those like Apple that run international diplomacy programs with China. Those like Amazon or Google, that regard their employees as de-facto citizens. Those like airlines that can print a currency (in the form of loyalty programs).\n\nAnd, as Kelly notes, we should look at them in an entirely different way. We shouldn’t treat Amazon the same we treat a local retailer, just like we don’t treat your local HOA the same way we treat the European Union. “Platforms” is a good start, but a word that connects the tremendous influence modern mega-corps have with the power that Standard Oil or The British East India Corporation had at their apex would be even better!\n\n",
"date_published": "2021-12-28T10:57:41-07:00",
"url": "https://therealadam.micro.blog/2021/12/28/a-more-evocative.html"
},
{
"id": "http://therealadam.micro.blog/2021/11/29/great-albums-endtroducing.html",
"title": "Great albums: Endtroducing",
"content_html": "<p><img src=\"http://img.wennermedia.com/920-width/rs-138992-djshadow-306x306-1370036314-25baa14d-0f6a-40f0-a4db-4884a008eb69.jpg\" alt=\"Entroducing album cover\"></p>\n<p><em>Endtroducing</em> is my canonical example of a revealing album. I heard “Building Steam With a Grain of Sand” completely accidentally in a college business writing class, of all places. A fellow student used it in their presentation, ironically. Afterwards, I asked “what <em>was</em> that?!”, my mind still blown.</p>\n<p>I downloaded it and was immediately like “wow”. A whole new angle on music became apparent. I was vaguely aware that hip-hop quotes other music, but didn’t really understand sampling. I’m <em>just</em> old enough that hip-hop has always been a thing. But this was so different, like an other-worldly quote-fest. But, in a good way. A great way, even.</p>\n<p>I later learned <em>Endtroducing</em> is notable in that it was made <em>manually</em>. Ableton didn’t exist, so if you wanted to change tempos on samples, you had to pitch correct them yourself. You didn’t have to tape splice anymore, thankfully. But it was still far tricker than making this album would have been today.</p>\n<p>This album would spark many musical explorations. Mash-ups like <em>A Night at the Hip-Hopera</em>. The Roots, J Dilla, Soulquarians, and a myriad of other artists. “Building Steam With a Grain of Sand” sparked amazement, curiosity, and appetite for more music I was previously unaware of.</p>\n",
"content_text": "![Entroducing album cover](http://img.wennermedia.com/920-width/rs-138992-djshadow-306x306-1370036314-25baa14d-0f6a-40f0-a4db-4884a008eb69.jpg)\n\n_Endtroducing_ is my canonical example of a revealing album. I heard “Building Steam With a Grain of Sand” completely accidentally in a college business writing class, of all places. A fellow student used it in their presentation, ironically. Afterwards, I asked “what _was_ that?!”, my mind still blown.\n\nI downloaded it and was immediately like “wow”. A whole new angle on music became apparent. I was vaguely aware that hip-hop quotes other music, but didn’t really understand sampling. I’m _just_ old enough that hip-hop has always been a thing. But this was so different, like an other-worldly quote-fest. But, in a good way. A great way, even.\n\nI later learned _Endtroducing_ is notable in that it was made _manually_. Ableton didn’t exist, so if you wanted to change tempos on samples, you had to pitch correct them yourself. You didn’t have to tape splice anymore, thankfully. But it was still far tricker than making this album would have been today.\n\nThis album would spark many musical explorations. Mash-ups like _A Night at the Hip-Hopera_. The Roots, J Dilla, Soulquarians, and a myriad of other artists. “Building Steam With a Grain of Sand” sparked amazement, curiosity, and appetite for more music I was previously unaware of.\n\n",
"date_published": "2021-11-29T09:00:00-07:00",
"url": "https://therealadam.micro.blog/2021/11/29/great-albums-endtroducing.html"
},
{
"id": "http://therealadam.micro.blog/2021/11/28/great-albums-beethoven.html",
"title": "Great albums: Beethoven Symphonies No. 7 \u0026 8",
"content_html": "<p><img src=\"https://cps-static.rovicorp.com/3/JPG_500/MI0001/080/MI0001080790.jpg?partner=allrovi.com\" alt=\"\"></p>\n<p>These are my favorite of Beethoven’s “more approachable” symphonies. Symphony No. 9 is my favorite, but it requires a bit more context to take in. Further, it’s a solid seventy minutes of music, ramping up the difficulty of attention span.</p>\n<p>Symphony No. 7 (hereafter Seven, etc.) is my favorite outside of Nine, which is sort of its own <em>pivotal</em> thing. It’s a definitive no-skip symphony. Every movement is sublime in its own way. The first movement for its vigor and speed. The second for its solemn opening that builds and builds into a big, emotional moment. The third for its frolic. The final movement for feeling several minutes of emphatic, resolving punctuation and resolution.</p>\n<p>Symphony No. 8 has a wonderful opening. The structure and melodic quality is closer to what came <em>before</em> Beethoven’s Symphony No. 1. It sounds like a nod back to Haydn or Mozart, Beethoven’s predecessors. But the harmony and orchestration is distinctly of Beethoven. It’s a great bridge from Beethoven’s Very Good symphonies to his <em>Amazing Symphony Number 9, The One with Ode to Joy</em> (not the official title as recognized by music historians).</p>\n<p>These two symphonies fit together <em>really well</em> on CDs. So, you can find basically any conductor/ensemble you prefer performing it. I listened to the Karajan/Berlin Philharmonic version when I was playing music in high school. I’ve found this piece easy to hear little variations between conductors, so if that’s your thing, queue up a few interpretations and go hunting for little distinctions!</p>\n",
"content_text": "![](https://cps-static.rovicorp.com/3/JPG_500/MI0001/080/MI0001080790.jpg?partner=allrovi.com)\n\nThese are my favorite of Beethoven’s “more approachable” symphonies. Symphony No. 9 is my favorite, but it requires a bit more context to take in. Further, it’s a solid seventy minutes of music, ramping up the difficulty of attention span. \n\nSymphony No. 7 (hereafter Seven, etc.) is my favorite outside of Nine, which is sort of its own _pivotal_ thing. It’s a definitive no-skip symphony. Every movement is sublime in its own way. The first movement for its vigor and speed. The second for its solemn opening that builds and builds into a big, emotional moment. The third for its frolic. The final movement for feeling several minutes of emphatic, resolving punctuation and resolution.\n\nSymphony No. 8 has a wonderful opening. The structure and melodic quality is closer to what came _before_ Beethoven’s Symphony No. 1. It sounds like a nod back to Haydn or Mozart, Beethoven’s predecessors. But the harmony and orchestration is distinctly of Beethoven. It’s a great bridge from Beethoven’s Very Good symphonies to his _Amazing Symphony Number 9, The One with Ode to Joy_ (not the official title as recognized by music historians).\n\nThese two symphonies fit together _really well_ on CDs. So, you can find basically any conductor/ensemble you prefer performing it. I listened to the Karajan/Berlin Philharmonic version when I was playing music in high school. I’ve found this piece easy to hear little variations between conductors, so if that’s your thing, queue up a few interpretations and go hunting for little distinctions!\n\n",
"date_published": "2021-11-28T09:00:00-07:00",
"url": "https://therealadam.micro.blog/2021/11/28/great-albums-beethoven.html"
},
{
"id": "http://therealadam.micro.blog/2021/11/27/what-makes-a.html",
"title": "What makes a great album",
"content_html": "<p>There are four-ish kinds of great albums, in my mind:</p>\n<ol>\n<li>Pivotal albums: the artist or genre was distinctly different before and after the album came out. e.g., classical music was distinctly different after Beethoven, particularly <em>Symphony No. 9</em></li>\n<li>Revealing albums: pivotal to my perspective or knowledge of music. e.g., my understanding of hip-hop was distinctly different after I heard DJ Shadow’s <em>Endtroducing</em></li>\n<li>Consistent albums: no track justifies skipping, you can listen to the thing end to end, every time. e.g., Tom Petty’s <em>The Last DJ</em></li>\n<li>Under-rated albums: albums that are outshined by their extraordinary peers or contemporaries. Most folks know that <em>Born to Run</em> is great, and all other Springsteen albums (generally) rank below it. But that shouldn’t let otherwise excellent and out-of-sequence later albums like <em>The Rising</em> or <em>Human Touch</em> go unnoticed.</li>\n</ol>\n",
"content_text": "There are four-ish kinds of great albums, in my mind:\n\n1. Pivotal albums: the artist or genre was distinctly different before and after the album came out. e.g., classical music was distinctly different after Beethoven, particularly _Symphony No. 9_\n2. Revealing albums: pivotal to my perspective or knowledge of music. e.g., my understanding of hip-hop was distinctly different after I heard DJ Shadow’s _Endtroducing_ \n3. Consistent albums: no track justifies skipping, you can listen to the thing end to end, every time. e.g., Tom Petty’s _The Last DJ_\n4. Under-rated albums: albums that are outshined by their extraordinary peers or contemporaries. Most folks know that _Born to Run_ is great, and all other Springsteen albums (generally) rank below it. But that shouldn’t let otherwise excellent and out-of-sequence later albums like _The Rising_ or _Human Touch_ go unnoticed.\n\n\n",
"date_published": "2021-11-27T08:44:46-07:00",
"url": "https://therealadam.micro.blog/2021/11/27/what-makes-a.html"
},
{
"id": "http://therealadam.micro.blog/2021/11/09/the-finest-transit.html",
"title": "The finest transit system you’ll ever find in a swamp",
"content_html": "<p>Imagine all the busses, boats, monorails, trains, and gondolas in Disney World as (quasi-public) transit system. Then make a transit-style map of said system. It’s fun, but a little dismal once I think about it.</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2021/e2778c787f.jpg\" alt=\"Disney World transportation imagined as a transit map\"></p>\n<p><a href=\"https://twitter.com/grescoe/status/1450482255965691912\">Walt Disney World has significantly better transit than most cities in the US.</a></p>\n<blockquote>\n<p>America’s fantasy world, it turns out, is a place you can get around without getting into a car.</p>\n</blockquote>\n<p>Definitely a top 10 reason (but probably not top 5) I enjoy and find Walt Disney World so intriguing.</p>\n<p>Adjacent: if the best transit system many middle/upper-class Americans will experience is a rigorously-top-down, <a href=\"https://en.wikipedia.org/wiki/Reedy_Creek_Improvement_District\">corporate quasi-state</a>, well, that’s a pretty sick burn on capitalism.</p>\n<blockquote>\n<p>“A developed country is not a place where the poor have cars. It’s where the rich use public transportation” — Gustavo Petro, Mayor of Bogotá</p>\n</blockquote>\n",
"content_text": "Imagine all the busses, boats, monorails, trains, and gondolas in Disney World as (quasi-public) transit system. Then make a transit-style map of said system. It’s fun, but a little dismal once I think about it.\n\n![Disney World transportation imagined as a transit map](https://therealadam.micro.blog/uploads/2021/e2778c787f.jpg)\n\n[Walt Disney World has significantly better transit than most cities in the US.](https://twitter.com/grescoe/status/1450482255965691912)\n\n> America's fantasy world, it turns out, is a place you can get around without getting into a car.\n\nDefinitely a top 10 reason (but probably not top 5) I enjoy and find Walt Disney World so intriguing.\n\nAdjacent: if the best transit system many middle/upper-class Americans will experience is a rigorously-top-down, [corporate quasi-state](https://en.wikipedia.org/wiki/Reedy_Creek_Improvement_District), well, that’s a pretty sick burn on capitalism.\n\n> “A developed country is not a place where the poor have cars. It’s where the rich use public transportation” — Gustavo Petro, Mayor of Bogotá\n\n",
"date_published": "2021-11-09T12:00:00-07:00",
"url": "https://therealadam.micro.blog/2021/11/09/the-finest-transit.html"
},
{
"id": "http://therealadam.micro.blog/2021/11/04/very-famous-white.html",
"content_html": "<p>Very famous white guys from history who were not famous for, but known to bite pianos: <a href=\"https://twitter.com/jordandrsn/status/1455553728526827525\">Thomas Edison</a> and <a href=\"https://www.classicfm.com/composers/beethoven/guides/deaf-hearing-loss-composing/\">Ludwig van Beethoven</a>.</p>\n",
"content_text": "Very famous white guys from history who were not famous for, but known to bite pianos: [Thomas Edison](https://twitter.com/jordandrsn/status/1455553728526827525) and [Ludwig van Beethoven](https://www.classicfm.com/composers/beethoven/guides/deaf-hearing-loss-composing/).\n\n",
"date_published": "2021-11-04T05:45:43-07:00",
"url": "https://therealadam.micro.blog/2021/11/04/very-famous-white.html"
},
{
"id": "http://therealadam.micro.blog/2021/11/02/before-the-porsche.html",
"content_html": "<p>Before the Porsche 911, there was the 356…and the 904. It a looker!</p>\n<p><img src=\"https://therealadam.micro.blog/uploads/2021/88443fc0bc.jpg\" alt=\"Porsche 904 GTS\"></p>\n<p>Back in the ’60s, <a href=\"https://www.youtube.com/watch?v=utihJ2j0f7k\">you could buy a street-legal version of Porsche’s top racing car</a>. And just, ya know, drive it on the road! They are pretty pricey today, but at least <a href=\"https://www.roadandtrack.com/car-culture/classic-cars/news/g5929/1965-porsche-904-photo-gallery/?slide=1\">the auctions have great photos</a>.</p>\n",
"content_text": "Before the Porsche 911, there was the 356...and the 904. It a looker!\n\n![Porsche 904 GTS](https://therealadam.micro.blog/uploads/2021/88443fc0bc.jpg)\n\nBack in the '60s, [you could buy a street-legal version of Porsche's top racing car](https://www.youtube.com/watch?v=utihJ2j0f7k). And just, ya know, drive it on the road! They are pretty pricey today, but at least [the auctions have great photos](https://www.roadandtrack.com/car-culture/classic-cars/news/g5929/1965-porsche-904-photo-gallery/?slide=1).\n\n",
"date_published": "2021-11-02T15:21:32-07:00",
"url": "https://therealadam.micro.blog/2021/11/02/before-the-porsche.html"
},
{
"id": "http://therealadam.micro.blog/2021/09/11/into-the-milesverse.html",
"title": "Into the Miles-verse",
"content_html": "<p>I’m kicking off a new “listening project” - Miles Davis. Inspired by <a href=\"https://samenright.com/2021/06/06/a-beginners-guide-to-miles-davis/\">A Beginner’s Guide to Miles Davis</a>, I’m going to grind my way through the Miles-verse in chronological order. For posterity, my favorites from before this journey are <em>Sketches of Spain</em> and <em>Bitches Brew</em>.</p>\n<p>(I think <em>Kind of Blue</em> is properly rated but not noteworthy because it’s the jazz album that everyone knows and reveres, whether they like jazz or not. And, rightly so.)</p>\n<p>Previously in listening projects:</p>\n<p>Circa 2008, I got a little bored/annoyed with what I was listening to and decided to play through all the songs in my iTunes library, in order by artist. Discoveries (to me) lurking therein: Bruce Springsteen <em>Born to Run</em>, Talking Heads, <em>Stop Making Sense</em>. Getting through the B-artists was a real endeavor. I have a <em>lot</em> of Ben Folds, Beethoven, Billy Joel, and Brahms albums.</p>\n<p>Circa 2016, I listened to all of the Radiohead albums in chronological order. I’d previously really only known them as “the Creep guys” and “the dudes who released an album of MP3s way before everyone else”. (But probably not before Prince, who also performed <a href=\"https://www.youtube.com/watch?v=hAzzRQe6lms\">“Creep”</a>, eventually.)</p>\n",
"content_text": "I’m kicking off a new “listening project” - Miles Davis. Inspired by [A Beginner’s Guide to Miles Davis](https://samenright.com/2021/06/06/a-beginners-guide-to-miles-davis/), I’m going to grind my way through the Miles-verse in chronological order. For posterity, my favorites from before this journey are _Sketches of Spain_ and _Bitches Brew_. \n\n(I think _Kind of Blue_ is properly rated but not noteworthy because it’s the jazz album that everyone knows and reveres, whether they like jazz or not. And, rightly so.)\n\nPreviously in listening projects:\n\nCirca 2008, I got a little bored/annoyed with what I was listening to and decided to play through all the songs in my iTunes library, in order by artist. Discoveries (to me) lurking therein: Bruce Springsteen _Born to Run_, Talking Heads, _Stop Making Sense_. Getting through the B-artists was a real endeavor. I have a _lot_ of Ben Folds, Beethoven, Billy Joel, and Brahms albums.\n\nCirca 2016, I listened to all of the Radiohead albums in chronological order. I’d previously really only known them as “the Creep guys” and “the dudes who released an album of MP3s way before everyone else”. (But probably not before Prince, who also performed [“Creep”](https://www.youtube.com/watch?v=hAzzRQe6lms), eventually.)\n\n",
"date_published": "2021-09-11T11:11:16-07:00",
"url": "https://therealadam.micro.blog/2021/09/11/into-the-milesverse.html"
},
{
"id": "http://therealadam.micro.blog/2021/08/23/an-exercise-in.html",
"title": "An exercise in CPU design, in the small",
"content_html": "<p><a href=\"https://github.com/revaldinho/opc\">One Page CPU Project</a>:</p>\n<blockquote>\n<p>Welcome to the OPC series of CPUs, where everything fits on one page - one page each for specification, emulation, HDL. For details see the OPC Project web pages.</p>\n</blockquote>\n<p>Computer architecture, Verilog code to implement the design, simulation and testing of the design, writing an assembler and assembly to test the system. All within my favorite kind of constraint - fitting each component on one page.</p>\n<p>They’re not particularly useful machines, but they do de-mystify the bridge from electrical engineering to software engineering.</p>\n<p>When I was an intern at Texas Instruments, the tools for this were enormously complex, slow, and expensive. Whole clusters of Sun machines set aside for simulating the upcoming designs and verifying they did the right thing in software. Not to mention the tremendous effort of verifying the design that was coded was possible to build in the company’s chip fabrication plants and processes.</p>\n<p>That this depth of tooling is now available to hobbyists would have blown me away in 2002.</p>\n",
"content_text": "[One Page CPU Project](https://github.com/revaldinho/opc):\n\n> Welcome to the OPC series of CPUs, where everything fits on one page - one page each for specification, emulation, HDL. For details see the OPC Project web pages.\n\nComputer architecture, Verilog code to implement the design, simulation and testing of the design, writing an assembler and assembly to test the system. All within my favorite kind of constraint - fitting each component on one page.\n\nThey’re not particularly useful machines, but they do de-mystify the bridge from electrical engineering to software engineering.\n\nWhen I was an intern at Texas Instruments, the tools for this were enormously complex, slow, and expensive. Whole clusters of Sun machines set aside for simulating the upcoming designs and verifying they did the right thing in software. Not to mention the tremendous effort of verifying the design that was coded was possible to build in the company’s chip fabrication plants and processes.\n\nThat this depth of tooling is now available to hobbyists would have blown me away in 2002.\n\n",
"date_published": "2021-08-23T05:46:15-07:00",
"url": "https://therealadam.micro.blog/2021/08/23/an-exercise-in.html"
},
{
"id": "http://therealadam.micro.blog/2021/07/17/following-up-on.html",
"title": "Following up on recommendations, for the forgetful",
"content_html": "<p>It’s hard to land music, books, etc. recommendations from friends because timing is everything. The best case is a recommendation for a thing I didn’t know of and it’s <em>precisely</em> what I need to read or watch at the exact moment. Beyond that, it’s likely I’m reading some 900-page book (humble-brag) or deep into a peak television series (humble-brag) that I’m trying to finish before my attention wanders.</p>\n<p>I’ve come up with a couple of ways to more immediately act on recommendations, so they aren’t for naught:</p>\n<ul>\n<li>Download a Kindle/iBooks sample right away and read the first several pages of whatever they recommended. If I’m into it maybe I’ll stick with it. At least, it’s on my backlog of books until I forgot why it’s there and delete it (i.e., 2-3 times a decade).</li>\n<li>Watch the first several minutes of the thing on Netflix or whatever. See if it’s any good instead of watching random YouTube videos recommended by the algorithm.</li>\n</ul>\n<p>For everything else, there’s always the long, scary list of things I’d read/watch/play/listen to if we stopped doing billionaires and gave everyone a living wage. 🤷♂️</p>\n",
"content_text": "It's hard to land music, books, etc. recommendations from friends because timing is everything. The best case is a recommendation for a thing I didn't know of and it's _precisely_ what I need to read or watch at the exact moment. Beyond that, it's likely I'm reading some 900-page book (humble-brag) or deep into a peak television series (humble-brag) that I'm trying to finish before my attention wanders.\n\nI've come up with a couple of ways to more immediately act on recommendations, so they aren't for naught:\n\n- Download a Kindle/iBooks sample right away and read the first several pages of whatever they recommended. If I'm into it maybe I'll stick with it. At least, it's on my backlog of books until I forgot why it's there and delete it (i.e., 2-3 times a decade).\n- Watch the first several minutes of the thing on Netflix or whatever. See if it's any good instead of watching random YouTube videos recommended by the algorithm.\n\nFor everything else, there's always the long, scary list of things I'd read/watch/play/listen to if we stopped doing billionaires and gave everyone a living wage. 🤷♂️\n\n",
"date_published": "2021-07-17T13:23:00-07:00",
"url": "https://therealadam.micro.blog/2021/07/17/following-up-on.html"
},
{
"id": "http://therealadam.micro.blog/2021/07/08/craig-mods-simple.html",
"title": "Craig Mod’s simple search",
"content_html": "<p>Craig Mod, <a href=\"https://gist.github.com/cmod/5410eae147e4318164258742dd053993\">Fast, instant client side search for Hugo static site generator</a>:</p>\n<blockquote>\n<p>I believe <a href=\"https://craigmod.com/essays/fast_software/\">Fast Software is the Best Software</a> and wanted keyboard-based, super fast search for my <a href=\"https://craigmod.com/\">homepage</a> / online collection of essays. This method was highly inspired by Sublime Text’s CMD-P/CMD-shift-P method of opening files / using functions.</p>\n</blockquote>\n<p>I love that this is a Gist, an idea floating around. Not to reuse wholesale but to adapt and make your own. More like a recipe, less Professional Software Development 🤵♂️. Not packaged software, almost a thought-experiment wrought of relatively-accessible code incantations.</p>\n",
"content_text": "Craig Mod, [Fast, instant client side search for Hugo static site generator](https://gist.github.com/cmod/5410eae147e4318164258742dd053993):\n\n> I believe [Fast Software is the Best Software](https://craigmod.com/essays/fast_software/) and wanted keyboard-based, super fast search for my [homepage](https://craigmod.com/) / online collection of essays. This method was highly inspired by Sublime Text's CMD-P/CMD-shift-P method of opening files / using functions.\n\nI love that this is a Gist, an idea floating around. Not to reuse wholesale but to adapt and make your own. More like a recipe, less Professional Software Development 🤵♂️. Not packaged software, almost a thought-experiment wrought of relatively-accessible code incantations.\n\n",
"date_published": "2021-07-08T05:40:52-07:00",
"url": "https://therealadam.micro.blog/2021/07/08/craig-mods-simple.html"
},
{
"id": "http://therealadam.micro.blog/2021/06/28/what-makes-an.html",
"title": "What makes an excellent design doc",
"content_html": "<p><a href=\"#\">Replicache Detailed Design</a>(<a href=\"https://doc.replicache.dev/design)\">https://doc.replicache.dev/design)</a>:</p>\n<blockquote>\n<p>Replicache runs alongside your existing application infrastructure. You keep your existing server-side stack and client-side frameworks. Replicache doesn’t take ownership of data, and is not the source of truth. Its job is to provide bidirectional sync between your clients and your servers. This makes it easy to adopt: you can try it for just a small piece of functionality, or a small slice of users, while leaving the rest of your application the same.</p>\n</blockquote>\n<blockquote>\n<p>Conflicts are a fact of life when syncing, but they don’t have to be painful. Replicache rewinds and replays your transactions during sync, sort of like git rebase.</p>\n</blockquote>\n<p>I haven’t used Replicache, but this design document makes me think it has the qualities that excite me when I discover infrastructural software:</p>\n<ul>\n<li>it solves a tricky problem (distributed application state)</li>\n<li>by compressing the problem down to essential concepts</li>\n<li>those concepts are solved in a way that I can imagine “how would I use this?”</li>\n<li>and writing clearly about that solution</li>\n</ul>\n",
"content_text": "[Replicache Detailed Design](#)(https://doc.replicache.dev/design):\n\n> Replicache runs alongside your existing application infrastructure. You keep your existing server-side stack and client-side frameworks. Replicache doesn't take ownership of data, and is not the source of truth. Its job is to provide bidirectional sync between your clients and your servers. This makes it easy to adopt: you can try it for just a small piece of functionality, or a small slice of users, while leaving the rest of your application the same.\n\n> Conflicts are a fact of life when syncing, but they don't have to be painful. Replicache rewinds and replays your transactions during sync, sort of like git rebase.\n\nI haven't used Replicache, but this design document makes me think it has the qualities that excite me when I discover infrastructural software:\n\n- it solves a tricky problem (distributed application state)\n- by compressing the problem down to essential concepts\n- those concepts are solved in a way that I can imagine \"how would I use this?\"\n- and writing clearly about that solution\n\n\n",
"date_published": "2021-06-28T06:44:27-07:00",
"url": "https://therealadam.micro.blog/2021/06/28/what-makes-an.html"
},
{
"id": "http://therealadam.micro.blog/2021/06/05/perspectives-on-writing.html",
"title": "4 perspectives on writing",
"content_html": "<p>Spoiler alert: it’s all about organizing what they wrote in the past, finding it later, and remixing it into something they need in the moment. 🧠</p>\n<p>Austin Kleon, <a href=\"https://austinkleon.com/2021/05/20/indexing-filing-systems-and-the-art-of-finding-what-you-have/\">Indexing, filing systems, and the art of finding what you have</a>: writing is meticulously indexing what you may have jotted down in the past. Come for the bit on classic American authors, stay for Phyllis Diller and Joan River’s massive card catalogs of jokes! 🤯</p>\n<p>Cory Doctorow, <a href=\"https://doctorow.medium.com/the-memex-method-238c71f2fb46\">Writing is accumulation</a>: it’s easy when you accumulate a pile of text files from blogging over twenty years. He searches and surfs tags to find material for whatever he wants to write about today. An external brain.</p>\n<blockquote>\n<p>That’s how blogging is complimentary to other forms of more serious work: when you’ve done enough of it, you can get entire essays, speeches, stories, novels, spontaneously appearing in a state of near-completeness, ready to be written.</p>\n</blockquote>\n<p>Shawn Wang, <a href=\"https://www.swyx.io/writing-mise-en-place/\">Mise en Place Writing</a>: writing is like cooking. Separate the preparation/creation and the cooking/editing.</p>\n<blockquote>\n<p>By decoupling writing from pre-writing, I can write more, faster, and better.</p>\n</blockquote>\n<p>Nat Eliason, <a href=\"https://www.nateliason.com/blog/better-writer\">Tactics to Help You Become a Better Writer</a>: writing is rules. The better your rules, the better (and more) your output.</p>\n",
"content_text": "Spoiler alert: it's all about organizing what they wrote in the past, finding it later, and remixing it into something they need in the moment. 🧠\n\nAustin Kleon, [Indexing, filing systems, and the art of finding what you have](https://austinkleon.com/2021/05/20/indexing-filing-systems-and-the-art-of-finding-what-you-have/): writing is meticulously indexing what you may have jotted down in the past. Come for the bit on classic American authors, stay for Phyllis Diller and Joan River's massive card catalogs of jokes! 🤯\n\nCory Doctorow, [Writing is accumulation](https://doctorow.medium.com/the-memex-method-238c71f2fb46): it's easy when you accumulate a pile of text files from blogging over twenty years. He searches and surfs tags to find material for whatever he wants to write about today. An external brain.\n\n> That’s how blogging is complimentary to other forms of more serious work: when you’ve done enough of it, you can get entire essays, speeches, stories, novels, spontaneously appearing in a state of near-completeness, ready to be written.\n\nShawn Wang, [Mise en Place Writing](https://www.swyx.io/writing-mise-en-place/): writing is like cooking. Separate the preparation/creation and the cooking/editing.\n\n> By decoupling writing from pre-writing, I can write more, faster, and better.\n\nNat Eliason, [Tactics to Help You Become a Better Writer](https://www.nateliason.com/blog/better-writer): writing is rules. The better your rules, the better (and more) your output.\n\n\n",
"date_published": "2021-06-05T12:54:49-07:00",
"url": "https://therealadam.micro.blog/2021/06/05/perspectives-on-writing.html"
},
{
"id": "http://therealadam.micro.blog/2021/05/31/desktop-vibes.html",
"title": "Desktop vibes",
"content_html": "<p>I’ve got three “virtual” desktops going on my Mac right now. The idea each is its own functional workspace. I don’t have three separate physical workspaces to do my writing/thinking, coding/building, or communicating/collaborating. So a digital approximation is the second closest thing. 🤷♂️</p>\n<p>Leftmost is where I do the thinking. The background is one of the “scenic” images included in macOS. The idea is, if I had a little writing hut, ala <a href=\"https://pixel.nymag.com/imgs/daily/vulture/2019/11/06/dickinson/dickinson-thoreau.w700.h467.jpg\">Thoreau in <em>Dickinson</em></a> for looking off into the distance and plying some kind of writing craft, this is the kind of thing I would see when I look up.</p>\n<p>Rightmost is where I communicate with the world and my colleagues. The background is also a built-in macOS dynamic desktop of swoopy, abstract colors. Like <a href=\"https://www.thewrap.com/wp-content/uploads/2021/04/oliver-1-1024x576.jpg\">John Oliver comes to our living room from a featureless void</a>, so I think of this desktop. Ideas, questions, and data points come to me from the void of the internet, end up in this imagined space, and I respond to them in turn through this medium and back to the void. Heavy, eh?</p>\n<p>In the middle is where I do the building and coding. The background here is a flat color. I got it by color picking a photo of the <a href=\"http://www.12-gaugegarage.com\">12-Gauge Garage</a>. I noticed later that it’s close to “<a href=\"https://insidethemagic.net/2021/04/disney-go-away-green-lp1/\">go away green</a>” as used in Disney’s theme parks to draw the eye away from backstage areas where the magic may be in-progress or under-repair. The idea is I shouldn’t really see this background. I should focus on whatever I’m coding/testing/making/etc.</p>\n",
"content_text": "I've got three \"virtual\" desktops going on my Mac right now. The idea each is its own functional workspace. I don't have three separate physical workspaces to do my writing/thinking, coding/building, or communicating/collaborating. So a digital approximation is the second closest thing. 🤷♂️\n\nLeftmost is where I do the thinking. The background is one of the \"scenic\" images included in macOS. The idea is, if I had a little writing hut, ala [Thoreau in _Dickinson_](https://pixel.nymag.com/imgs/daily/vulture/2019/11/06/dickinson/dickinson-thoreau.w700.h467.jpg) for looking off into the distance and plying some kind of writing craft, this is the kind of thing I would see when I look up.\n\nRightmost is where I communicate with the world and my colleagues. The background is also a built-in macOS dynamic desktop of swoopy, abstract colors. Like [John Oliver comes to our living room from a featureless void](https://www.thewrap.com/wp-content/uploads/2021/04/oliver-1-1024x576.jpg), so I think of this desktop. Ideas, questions, and data points come to me from the void of the internet, end up in this imagined space, and I respond to them in turn through this medium and back to the void. Heavy, eh?\n\nIn the middle is where I do the building and coding. The background here is a flat color. I got it by color picking a photo of the [12-Gauge Garage](http://www.12-gaugegarage.com). I noticed later that it's close to \"[go away green](https://insidethemagic.net/2021/04/disney-go-away-green-lp1/)\" as used in Disney's theme parks to draw the eye away from backstage areas where the magic may be in-progress or under-repair. The idea is I shouldn't really see this background. I should focus on whatever I'm coding/testing/making/etc.\n\n\n",
"date_published": "2021-05-31T10:27:23-07:00",
"url": "https://therealadam.micro.blog/2021/05/31/desktop-vibes.html"
},
{
"id": "http://therealadam.micro.blog/2021/05/03/tumblelogs-a-thousand.html",
"title": "Tumblelogs, a thousand weird flowers",
"content_html": "<p>I miss <a href=\"https://kottke.org/05/10/tumblelogs\">tumblelogs</a>. Especially <a href=\"https://web.archive.org/web/20180724075432/http://project.ioni.st/\">projectionist</a>. Twitter and Tumblr fit the mold, functionally. But the vibe is not the same. That time right before centralized social media achieved critical mass was a great moment. Let a thousand weird flowers bloom in their own meadow.</p>\n",
"content_text": "I miss [tumblelogs](https://kottke.org/05/10/tumblelogs). Especially [projectionist](https://web.archive.org/web/20180724075432/http://project.ioni.st/). Twitter and Tumblr fit the mold, functionally. But the vibe is not the same. That time right before centralized social media achieved critical mass was a great moment. Let a thousand weird flowers bloom in their own meadow.\n\n",
"date_published": "2021-05-03T07:46:25-07:00",
"url": "https://therealadam.micro.blog/2021/05/03/tumblelogs-a-thousand.html"
},
{
"id": "http://therealadam.micro.blog/2021/05/01/shawn-wangs-principles.html",
"content_html": "<p>Shawn Wang’s <a href=\"https://www.swyx.io/35-principles/\">35 Principles for 35 Years</a> are a good read. A few of my favorites:</p>\n<blockquote>\n<ol start=\"8\">\n<li>Seek First To Understand, Then To Be Understood. Don’t get defensive about your point of view or perception of reality - understand theirs first. Either you will learn something new or you’ll understand how to better get your point across. Hold multiple perspectives in your head and be able to summarize the best arguments of all major parties in a way that THEY agree with.</li>\n</ol>\n</blockquote>\n<blockquote>\n<ol start=\"15\">\n<li>Don’t offer unsolicited help. Make Sure Help Is Wanted Before Offering It. Men - be especially wary about this when women are talking about their problems. Sometimes they just need support, not solutions.</li>\n</ol>\n</blockquote>\n<blockquote>\n<ol start=\"23\">\n<li>Separate Your Identity from Your Work. You can learn a lot on the Internet for the low, low price of $YOUR_EGO.</li>\n</ol>\n</blockquote>\n",
"content_text": "Shawn Wang's [35 Principles for 35 Years](https://www.swyx.io/35-principles/) are a good read. A few of my favorites:\n\n> 8. Seek First To Understand, Then To Be Understood. Don't get defensive about your point of view or perception of reality - understand theirs first. Either you will learn something new or you'll understand how to better get your point across. Hold multiple perspectives in your head and be able to summarize the best arguments of all major parties in a way that THEY agree with.\n\n> 15. Don't offer unsolicited help. Make Sure Help Is Wanted Before Offering It. Men - be especially wary about this when women are talking about their problems. Sometimes they just need support, not solutions.\n\n> 23. Separate Your Identity from Your Work. You can learn a lot on the Internet for the low, low price of $YOUR\\_EGO.\n\n\n\n",
"date_published": "2021-05-01T11:19:00-07:00",
"url": "https://therealadam.micro.blog/2021/05/01/shawn-wangs-principles.html"
},
{
"id": "http://therealadam.micro.blog/2021/03/27/the-long-game.html",
"title": "The long game of notes",
"content_html": "<p>You can do a lot of fancy stuff with your notes these days. Backlinks, graphs, embedding, “transclusion”, knowledge databases, and digital gardens are all tempting sirens. But <strong>building up a collection of ideas over time and ease of search is the most important thing.</strong></p>\n<p>Matt Webb, <a href=\"http://interconnected.org/home/2021/02/10/reservoirs\">Memexes, mountain lakes, and the serendipity of old ideas</a>:</p>\n<blockquote>\n<p>I’ve noticed that smart people keep notes, and in particular use their notes in a certain way, and it made me think of something I read recently about viruses.</p>\n<p>…</p>\n<p>And it’s interesting, right, this accretive note-taking and the process of taking core samples through the deep time of your own ideas. I’ve built something similar, not as consistently, but for about two decades too, and I keep all my notes in plain text, and all in the same searchable database. I develop nascent ideas in part by typing in keywords, spelunking my own <a href=\"https://en.wikipedia.org/wiki/Memex\">memex</a> for things I’ve previously spotted, connections I’ve made, turns of phrase… most of which I had forgotten, but there they are. And old ideas come back and get recombined and become fresh again. That database of notes is my greatest asset. It’s how I write here, and it’s also how I pretend to be clever when I’m working.</p>\n</blockquote>\n<p>The endgame of having extensive notes accumulated over a long period of time is not to put them in a grand, unified theory. <strong>The point is to play the long-game to think in them, search them for new insights, and to develop ideas over weeks and months. An antidote to thinking in Slack messages and tweet-storm hot-takes.</strong></p>\n",
"content_text": "You can do a lot of fancy stuff with your notes these days. Backlinks, graphs, embedding, “transclusion”, knowledge databases, and digital gardens are all tempting sirens. But **building up a collection of ideas over time and ease of search is the most important thing.**\n\nMatt Webb, [Memexes, mountain lakes, and the serendipity of old ideas](http://interconnected.org/home/2021/02/10/reservoirs):\n\n> I’ve noticed that smart people keep notes, and in particular use their notes in a certain way, and it made me think of something I read recently about viruses.\n> \n> …\n> \n> And it’s interesting, right, this accretive note-taking and the process of taking core samples through the deep time of your own ideas. I’ve built something similar, not as consistently, but for about two decades too, and I keep all my notes in plain text, and all in the same searchable database. I develop nascent ideas in part by typing in keywords, spelunking my own [memex](https://en.wikipedia.org/wiki/Memex) for things I’ve previously spotted, connections I’ve made, turns of phrase… most of which I had forgotten, but there they are. And old ideas come back and get recombined and become fresh again. That database of notes is my greatest asset. It’s how I write here, and it’s also how I pretend to be clever when I’m working.\n\nThe endgame of having extensive notes accumulated over a long period of time is not to put them in a grand, unified theory. **The point is to play the long-game to think in them, search them for new insights, and to develop ideas over weeks and months. An antidote to thinking in Slack messages and tweet-storm hot-takes.**\n\n",
"date_published": "2021-03-27T15:10:35-07:00",
"url": "https://therealadam.micro.blog/2021/03/27/the-long-game.html"
},
{
"id": "http://therealadam.micro.blog/2021/03/16/i-never-thought.html",
"title": "I never thought I'd think this much about wallpaper",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://en.wikipedia.org/wiki/Daveed_Diggs\">Daveed Diggs</a> mentioned this awesome wallpaper, <a href=\"https://www.flavorpaper.com/wallpaper/patterns/ez-papes/bay-area-toile\">Bay Area Toile</a>, <a href=\"https://www.architecturaldigest.com/video/watch/open-door-inside-hamilton-star-daveed-diggs-and-emmy-raver-lampmans-la-home\">in a tour of his house</a>. Amongst the Bay Area celebrities whose likenesses it features is <a href=\"https://en.wikipedia.org/wiki/Shock_G\">Humpty Hump aka Shock G</a> of <a href=\"https://en.wikipedia.org/wiki/Digital_Underground\">Digital Underground</a>. <a href=\"https://en.wikipedia.org/wiki/Jorma_Taccone\">Jorma Taccone</a> of the <a href=\"https://en.wikipedia.org/wiki/The_Lonely_Island\">Lonely Island</a> was involved in designing it.</p>\n\n<p>That’s a hell of a thing right there. And, I never thought I’d think of wallpaper as awesome.</p>\n",
"date_published": "2021-03-16T07:56:43-07:00",
"url": "https://therealadam.micro.blog/2021/03/16/i-never-thought.html"
},
{
"id": "http://therealadam.micro.blog/2021/03/10/nina-simone-mississippi.html",
"title": "Nina Simone, \"Mississippi Goddam\" 🤘",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p>“This is a showtime, but the show hasn’t been written for it”</p>\n\n<p><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/LJ25-U3jNWM\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n",
"date_published": "2021-03-10T15:51:29-07:00",
"url": "https://therealadam.micro.blog/2021/03/10/nina-simone-mississippi.html"
},
{
"id": "http://therealadam.micro.blog/2021/03/03/a-ripping-yarn.html",
"title": "A ripping yarn of hunting bugs in Destiny 2",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://www.bungie.net/en/Explore/Detail/News/50140\">The Case of the Missing Rewards</a> - Luckily, in my many hours playing Destiny 2 I haven’t been bitten by this bug. Seeing behind the curtains of something I interact with so often is pretty neat though!</p>\n\n<p>It’s fascinating to read the tale of a gnarly bug from a domain I have no practical experience working in. In this case, large-scale, long-term game development. The volume and detail of data they work with to find a strange little bug that only manifests in certain kinds of game activities and involves weird decisions made in sizing networking subsystem buffers is amazing.</p>\n\n<p>See also, <a href=\"https://nee.lv/2021/02/28/How-I-cut-GTA-Online-loading-times-by-70/\">How I cut GTA Online loading times by 70%</a></p>\n",
"date_published": "2021-03-03T06:44:27-07:00",
"url": "https://therealadam.micro.blog/2021/03/03/a-ripping-yarn.html"
},
{
"id": "http://therealadam.micro.blog/2021/03/01/a-good-newsletter.html",
"title": "A good newsletter is an interesting conversation, not a monologue",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p>A good email newsletter is like the conversation you may have had over coffee with an interesting pal. A surprising topic, a novel theory, perhaps an amusing tangent or two.</p>\n\n<p>I’m feeling the trough of newsletter overload, like many folks. I’ve put my own on hiatus because it seems more useful to write broadly on the web than narrowly via email.</p>\n\n<p>I suspect that email newsletters have evolved from interesting conversations to (mostly) yet another medium to build eyeballs to sell to someday. Or, newsletters were the mold that blogging reinvented itself from.</p>\n\n<p>But, I still think good newsletters could still exist. But, they have to feel more like a conversation and less like a monologue.</p>\n",
"date_published": "2021-03-01T09:06:27-07:00",
"url": "https://therealadam.micro.blog/2021/03/01/a-good-newsletter.html"
},
{
"id": "http://therealadam.micro.blog/2021/02/21/walking-through-the.html",
"title": "Walking through the current customer acquisition hypothesis",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p>Paul Ford, <a href=\"https://www.wired.com/story/the-secret-essential-geography-of-the-office/\">The Secret, Essential Geography of the Office</a>:</p>\n\n<blockquote>\n<p>Offices have their own mental maps. “Oh,” they say, “she’s moving to the 17th floor.” And everyone says: the 17th floor! And you know, being a social primate, exactly where you are in the organization relative to that floor. Offices all have their formal and informal maps, whether inside a bank, statehouse, cathedral, museum, school, or open-plan tech firm. I say “West Wing” and you know what I’m talking about. </p>\n</blockquote>\n\n<p>I once worked at a company where the hypothesis behind customer acquisition was currently in flux. A couple times a quarter, a new concept would come along. With a new concept almost always came a change in the sequencing of handoffs between teams. This month, outside sales hands off to the onboarding team hands off to customer support. The next month, marketing hands off to outside sales hands off to onboarding.</p>\n\n<p>It so happens this company had a large, somewhat raucous open office layout. All of sales, support, and marketing were in one big room. (With three different Sonos systems playing three different songs at any given time. Madness.)</p>\n\n<p>It also so happened that this was a high-energy sales culture. (Are there kinds of sales culture? Someone tell me there are monk-ish sales people, making one call per day, speaking only a few quiet words, ringing a small bell, and going home for the day. 😆)</p>\n\n<p>Thus, when the current concept of how customers were handed off from the top of the funnel downward, a few people would move the desks around so hand-offs happened across aisles of the office and not from one corner of the office to a remote corner sixty feet away.</p>\n\n<p>The upside of all this apparent chaos was that on any given day, you could walk into the office and see the current hypothesis of customer acquisition. As long as you knew who was in sales, marketing, support, etc. or their typical posture (walking around talking on a headset, answering emails as quickly as possible, looking at marketing campaign mockups), you could tell what’s going on. One could literally walk through the funnel, from marketing to sales to onboarding (assuming that was the hypothesis of the day).</p>\n\n<p>Besides the madness of open offices with multiple songs within speaking distance of each other, I think this is not the worst way to arrange a physical workspace.</p>\n",
"date_published": "2021-02-21T13:25:05-07:00",
"url": "https://therealadam.micro.blog/2021/02/21/walking-through-the.html"
},
{
"id": "http://therealadam.micro.blog/2021/02/21/chonkr.html",
"title": "CHONKR",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p>I saw this BMW at <a href=\"https://www.radwood.com\">Radwood</a> in Austin last year. </p>\n\n<p><img style=\"display:block; margin-left:auto; margin-right:auto;\" src=\"https://therealadam.micro.blog/uploads/2021/a5d3e8b009.jpg\" alt=\"IMG 1152\" title=\"IMG_1152.jpeg\" border=\"0\" width=\"1035\" height=\"1035\" /></p>\n\n<p>In hindsight, I would kinda like to know the whole story behind this car <em>and</em> the custom plate.</p>\n",
"date_published": "2021-02-21T13:25:02-07:00",
"url": "https://therealadam.micro.blog/2021/02/21/chonkr.html"
},
{
"id": "http://therealadam.micro.blog/2021/02/20/notes-on-the.html",
"title": "Notes on the invention of networked video gaming",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://fabiensanglard.net/quakeSource/johnc-log.aug.htm\">QuakeWorld by John Carmack</a> - the .plan notes (basically a Unix-local blog) written during the development of internet networking (not just LAN-local) for Quake. It’s amazing to read the notes of a super-sharp person inventing the foundations of the multi-billion dollar gaming industry as we know it today.</p>\n\n<p>Of course there’s great technical details, like this bit that should be familiar to anyone who has mysteriously died in an online gaming match:</p>\n\n<blockquote>\n<p>I am reining in the client side prediction to a fairly minimal amount.\nIt has too many negative effects in different circumstances. The problem\nof running away from or in front of your missiles was so bad that I\nconsidered simulating the missiles on the client side, but that is the\nsecond step on a slippery slope. If just the missiles were simulated,\nthen a missile would fire through an enemy until the server informed\nyou it exploded on them. Then you consider simulating interactions,\nbut then you have to guess at other player inputs (which is hopeless)…</p>\n</blockquote>\n\n<p>And complaining about Ferrari ownership, which is always a rich-people tragicomedy:</p>\n\n<blockquote>\n<p>My testarossa snapped another input shaft (the third time).<br/>\ndamn dman damn.</p>\n</blockquote>\n\n<p><a href=\"https://fabiensanglard.net\">Fabien Sanglard’s website</a> is full of this stuff, if that’s your jam.</p>\n",
"date_published": "2021-02-20T13:35:38-07:00",
"url": "https://therealadam.micro.blog/2021/02/20/notes-on-the.html"
},
{
"id": "http://therealadam.micro.blog/2021/01/29/darlene-love-re.html",
"title": "Darlene Love re: Phil Spector 🔥",
"content_html": "<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n<!-- raw HTML omitted -->\n",
"content_text": "<p><a href=\"https://www.npr.org/2021/01/21/959057719/the-voices-of-black-women-were-essential-to-phil-spectors-wall-of-sound\">The Voices Of Black Women Were Essential To Phil Spector’s Wall Of Sound</a></p>\n\n<blockquote>\n<p>Darlene Love began her partnership with Spector in 1962, when she came to the attention of Lester Sill, Spector’s business partner and co-founder of their label Philles Records. In a hurry to record the song “He’s a Rebel,” but unable to cut the song with the vocalists they had under contract, the New York-based group The Crystals, Sill and Spector turned to Love, who lived in Los Angeles. Spector was racing to release his version of the Gene Pitney-penned tune before a version recorded by Vikki Carr could come out and pre-empt his sales. Spector paid Love a flat fee and triple scale to record the song and to allow him to release it under the name The Crystals. The arrangement, made without consulting with The Crystals, was indicative of the power producers had over artists. Describing her experience recording with Spector in her memoir, Love recalled that Spector encouraged what Love calls “the low, growling side of my voice, the righteous indignation and in-your-face testimony that I usually saved for church.” Accentuating vocal Blackness in the early 1960s was a daring move in the segregated U.S., but it paid off.</p>\n</blockquote>\n\n<p>I saw Darlene Love perform, oddly enough, at EPCOT Center. I wonder if they offer musicians a big vacation package for that, of it was just a price-is-right situation?</p>\n\n<p>Between songs, she alluded to having worked with Phil Spector. She basically called him out for the shady behavior described in the NPR story. I’m guessing it was not for the first time. She concluded the retelling of her history by saying “I don’t care if he hears about me saying this! He’s in jail, can’t do anything about it!” 😆</p>\n\n<p>Wall of Sound is one of my favorite maximalist musical styles and all, but I hope Darlene Love is updating her sick burns on (convicted murderer) Phil Spector to end with “don’t matter because he’s dead now!”</p>\n",
"date_published": "2021-01-29T07:01:52-07:00",
"url": "https://therealadam.micro.blog/2021/01/29/darlene-love-re.html"
},
{
"id": "http://therealadam.micro.blog/2021/01/20/when-i-first.html",
"content_html": "<!-- raw HTML omitted -->\n",
"content_text": "<p>When I first walked past the TV and saw Biden behind the big-fancy desk in the Oval Office, it sunk in for me: competence is back. Bluster and bullying, for the moment, are on the decline.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">President Biden begins signing a tall stack of executive orders during his first Oval Office appearance for press. <a href=\"https://t.co/oh1JqG0iJP\">pic.twitter.com/oh1JqG0iJP</a></p>— Jennifer Epstein (@jeneps) <a href=\"https://twitter.com/jeneps/status/1352016112687439872?ref_src=twsrc%5Etfw\">January 20, 2021</a></blockquote> <script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>\n",
"date_published": "2021-01-20T16:31:09-07:00",