-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWTFIndex.html
2907 lines (2884 loc) · 407 KB
/
WTFIndex.html
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
<!DOCTYPE html>
<html dir="auto">
<head>
<title>WTF Drafts Index</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@charset "utf-8";
:root {
--main-bg-color: #000056;
--main-color: #ffe8bd;
--alternate-bg-color: #1c0021;
--alternate-color: #fff4e6;
--main-border-color: #f43f32;
--link-color: #36fd63;
}
@media (prefers-color-scheme: dark) {
:root {
--main-bg-color: #fff4e6;
--main-color: #00006b;
--alternate-bg-color: #fffdeb;
--alternate-color: #1c0021;
--main-border-color: #f43f32;
--link-color: #ff0000;
}
}
html {
font-size: 100%;
font-family: -apple-system, BlinkMacSystemFont, "helvetica neue", helvetica, roboto, noto, "segoe ui", arial, sans-serif;
line-height: 1.4;
}
body {
margin: 0;
padding: 1em;
background-color: var(--main-bg-color);
color: var(--main-color);
}
@media (max-device-width: 480px) {}
@media (min-device-width: 481px) {
body {
margin: auto;
max-width: 600px;
}
}
blockquote {
font-style: italic;
margin: 1.5em 2em;
padding: 1em;
background-color: var(--alternate-bg-color);
color: var(--alternate-color);
}
a {
color: var(--link-color);
}
pre {
display: block;
overflow: scroll;
width: 100%;
background-color: var(--alternate-bg-color);
padding: .5em 1em;
margin: 1em 0;
}
code {
background-color: var(--alternate-bg-color);
color: var(--alternate-color);
font-family: Menlo, Courier, sans-serif;
padding: 2px 3px;
}
table {
margin: 1.5em 0;
border: 1px solid var(--main-border-color);
border-collapse: collapse;
}
th {
padding: .25em .5em;
background: var(--alternate-bg-color);
border: 1px solid var(--main-border-color);
}
td {
padding: .25em .5em;
border: 1px solid var(--main-border-color);
}
img {
max-width: 90%;
}
footer {
font-size: 9px;
}
</style>
</head>
<body>
<h1>WTF Drafts Index</h1>
<p>Updated <code>08182022-082329</code></p>
<hr />
<ul>
<li><a href="https://davidblue.wtf/drafts/030B0B0C-5EF8-43EC-9C6C-5629961F964C.html"><em>This was originally intended as a response to <a href="https://forum.obsidian.md/t/obsidian-github-integration-for-sync-and-version-control/6369">a post on the Obsidian forums</a>, but apparently it included too many hyperlinks for one's post there, so trying to post it got my account suspended. (lol)</em></a></li>
<li><a href="https://davidblue.wtf/drafts/DCA364D7-6EBC-4D57-B73D-207F6CA2B599.html">- A new typeface! (San Francisco Rounded variant)</a></li>
<li><a href="https://davidblue.wtf/drafts/F4AE66A8-DED7-4054-8C2E-D80FEA10FD63.html">- <img src="https://user-images.githubusercontent.com/43663476/146764040-ad594066-24e5-41de-983d-02d86f32e924.JPG" alt="𝘍 𝘙 𝘈 𝘔 𝘌 𝘚 - 2 of 176" /></a></li>
<li><a href="https://davidblue.wtf/drafts/E0511C2A-CB73-47FB-A978-E437A1140455.html">- <a href="https://itunes.apple.com/us/app/id1415599567">ASCII Converter on the App Store</a></a></li>
<li><a href="https://davidblue.wtf/drafts/17030896-E24F-4F56-AC06-E0DC43101BDC.html">- <a href="https://spectrum.ieee.org/computing/software/did-bill-gates-steal-the-heart-of-dos">Did Bill Gates Steal the Heart of DOS? - IEEE Spectrum</a></a></li>
<li><a href="https://davidblue.wtf/drafts/C5DE92AA-09B2-489F-822E-468D57D8E624.html">- <a href="https://write.as/6gkvlgdmr8besrtj">killall -HUP mDNSResponder — Write.as</a></a></li>
<li><a href="https://davidblue.wtf/drafts/DE91F7CD-3135-404E-8E2A-0FC0C72DB0D4.html">- <a href="drafts://open?uuid=3510B68D-180E-4847-A976-72BEFCADCD24">Snippets Template</a></a></li>
<li><a href="https://davidblue.wtf/drafts/7F5434FD-5B8C-4481-BA5B-F51548253C90.html">- <a href="https://routinehub.co/user/zachary7829">zachary7829</a></a></li>
<li><a href="https://davidblue.wtf/drafts/07D7338F-CFBB-4348-AB91-B243BCC61387.html">- # 02212022-055503 <a href="https://handsetmag.wordpress.com/?p=364">link</a></a></li>
<li><a href="https://davidblue.wtf/drafts/3B942576-B501-4C35-A8A9-A1B4C413C574.html">- # Templates</a></li>
<li><a href="https://davidblue.wtf/drafts/6F8F3152-F9C3-4DA6-A885-ED6B129D3C81.html">- https://github.com/extratone/iOSSystemSounds/raw/main/base64/3rdParty_DirectionDown_Haptic.txt</a></li>
<li><a href="https://davidblue.wtf/drafts/70ECF999-CDE7-457A-BC04-065EDAFC6253.html">- https://www.pscp.tv/w/cy6EYjU0ODY4ODB8MXluSk9CQWtXbXZHUryBLCEuLwI5a9kn5CHUddJ3v1AjySBqRmJb_r-4D709</a></li>
<li><a href="https://davidblue.wtf/drafts/7E8FB6FC-2B27-4AE8-8590-E2550EC7E5AA.html">- macOS Ventura Wallpaper Siri Shortcuts <a href="https://handsetmag.wordpress.com/?p=649">link</a></a></li>
<li><a href="https://davidblue.wtf/drafts/5A5D4BCA-FC26-467E-989A-B688CC594CE6.html">- Markdown Capture Selected URL - ⌥O</a></li>
<li><a href="https://davidblue.wtf/drafts/99A373C1-D711-4FE5-832F-C81B528F6B53.html">- Markdown Capture Selected URL - ⌥O</a></li>
<li><a href="https://davidblue.wtf/drafts/909F49F3-CFA3-4DEE-8417-476B3BC865AE.html">- Markdown Capture Selected URL,⌥O</a></li>
<li><a href="https://davidblue.wtf/drafts/0B926520-F0BA-48B0-871A-C784B23921DB.html">- Markdown Header, ⌃⌘H</a></li>
<li><a href="https://davidblue.wtf/drafts/F009F9C1-76CA-4340-A6EB-7476BAC38639.html">- Save or unsave a story: Command + S</a></li>
<li><a href="https://davidblue.wtf/drafts/B0595FDB-1451-419A-B6F5-81611A8B4F59.html">- TAD-Load Action Group - ThoughtAsylum - Power User: ⌘5</a></li>
<li><a href="https://davidblue.wtf/drafts/C705FA2D-FC0B-4CAC-A109-9DDBEF06DBFF.html">- Telegram Themes 2 <a href="https://handsetmag.wordpress.com/2022/04/21/tgthemes2/">link</a></a></li>
<li><a href="https://davidblue.wtf/drafts/F2521895-9001-4AAE-9798-35E713BAC7AC.html">- Watch 🇨🇳李铁锤's broadcast: The last day of periscope!</a></li>
<li><a href="https://davidblue.wtf/drafts/11C80008-1968-4D17-A695-8ECE39A3CFEE.html">---</a></li>
<li><a href="https://davidblue.wtf/drafts/9DE97735-9370-4040-AA8F-CE052A45E78B.html">---</a></li>
<li><a href="https://davidblue.wtf/drafts/B1444341-B46D-4423-8C64-79CB017C3213.html">---</a></li>
<li><a href="https://davidblue.wtf/drafts/39C421EE-143E-4356-8C61-51B4F92A040F.html">—blank—</a></li>
<li><a href="https://davidblue.wtf/drafts/9009A5B8-25FB-4A1E-8596-DFBDAF4F5603.html">—blank—</a></li>
<li><a href="https://davidblue.wtf/drafts/E9CAD477-DA40-4F2D-864E-50E3E1A6AA50.html">—blank—</a></li>
<li><a href="https://davidblue.wtf/drafts/F253DA7D-64A1-4189-805A-C5AAC1F215FD.html">::Before I go on, I suppose I should also note that it’s been at least two or three years since I last set foot inside the church building at all - my <em>only</em> recent experiences/engagement with <em>The Crossing</em> has been with their digital content from a relative distance.::</a></li>
<li><a href="https://davidblue.wtf/drafts/B692C8F8-220E-4F7C-BA29-4F0B2830DB68.html"><img src="https://i.snap.as/tdAaqF9P.png" alt="Adobe Express" /></a></li>
<li><a href="https://davidblue.wtf/drafts/4BD56000-A849-452E-9938-90128BBCC938.html"><img src="https://i.snap.as/KtqMF5Ky.jpg" alt="Big Boy; Big Phone" /></a></li>
<li><a href="https://davidblue.wtf/drafts/6A4E7E29-932C-4105-959E-16C150DAEDC4.html"><img src="https://i.snap.as/0pdzxP1X.png" alt="Day One" /></a></li>
<li><a href="https://davidblue.wtf/drafts/AD066993-109C-47A3-BDCD-952865B5B290.html"><img src="https://i.snap.as/Jp9cMy3.jpeg" alt="Deacon Patrick" /></a></li>
<li><a href="https://davidblue.wtf/drafts/074CF430-555C-4DC2-91FF-D8D54E3AB5C7.html"><img src="https://user-images.githubusercontent.com/43663476/142074991-fbe671b8-a413-4564-b909-298c8b9c1c48.jpeg" alt="Extratone" /></a></li>
<li><a href="https://davidblue.wtf/drafts/C3C1A73E-1670-44BE-AAB1-2EBDA045B7BA.html"><img src="https://user-images.githubusercontent.com/43663476/151458197-5f6ccd23-1a36-441d-a66f-ec02cebc18b7.png" alt="image" /></a></li>
<li><a href="https://davidblue.wtf/drafts/05164272-176A-42F2-BC97-61BD6174454A.html"><img src="https://i.snap.as/X3rV4nPq.png" alt="iOS 15 is Not His Year" /></a></li>
<li><a href="https://davidblue.wtf/drafts/A71289ED-A37F-4178-8523-747A56E1F14B.html"><img src="https://i.snap.as/D6SijbwF.png" alt="Marco! Banner" /></a></li>
<li><a href="https://davidblue.wtf/drafts/3B7DA836-7353-4D01-BDCD-DF498BF293E0.html"><img src="https://i.snap.as/CU23BAyn.png" alt="The new macOS Ventura Wallpaper (Dark)" /></a></li>
<li><a href="https://davidblue.wtf/drafts/67744285-C2A3-4520-93B1-AA16D7B64EAD.html"><img src="https://i.snap.as/hAYKYfwL.jpg" alt="Tweetbot Resurrection" /></a></li>
<li><a href="https://davidblue.wtf/drafts/5E7A074A-E9BC-450B-A161-01FC0C883351.html"><img src="https://i.snap.as/hKqfPWNd.png" alt="Twitter Follow Limits" /></a></li>
<li><a href="https://davidblue.wtf/drafts/F478CEF7-6C23-46EC-ACED-DE83533DCAAC.html">!/bin/sh</a></li>
<li><a href="https://davidblue.wtf/drafts/B9189A80-9FAB-4B82-8413-9AA29FBC0F5A.html">‽‽‽</a></li>
<li><a href="https://davidblue.wtf/drafts/933C6B79-254E-4BC7-8524-B1601D971980.html">.textexpander File Format Example</a></li>
<li><a href="https://davidblue.wtf/drafts/FCC80503-3787-4B63-8E59-BDAAB5501CEE.html">.wgetrc Configuration</a></li>
<li><a href="https://davidblue.wtf/drafts/351FC77F-90E2-40F3-AF84-0475F06AC5D7.html">‘Mom and Dad’’s Discrepant Defense Against Stale Industry and the Population Problem</a></li>
<li><a href="https://davidblue.wtf/drafts/5078F7C5-E6FC-4D8A-B2FB-4C2C358B3B8C.html">‘Mom and Dad’’s Discrepant Defense Against Stale Industry and the Population Problem</a></li>
<li><a href="https://davidblue.wtf/drafts/45AC3B0E-054E-460B-AC70-2292BB3979FC.html">‘Mom and Dad’’s Discrepant Defense Against Stale Industry and the Population Problemv</a></li>
<li><a href="https://davidblue.wtf/drafts/C5200235-9B2B-4A31-AD5F-44E0AD81ADD6.html">"'Where Are They Now?' – Twitter Apps"</a></li>
<li><a href="https://davidblue.wtf/drafts/130AC8CE-C345-4577-8FBC-95D729BCB2B3.html">""</a></li>
<li><a href="https://davidblue.wtf/drafts/3696FF8F-B915-43F1-BFE8-AA233A4A09C5.html">""</a></li>
<li><a href="https://davidblue.wtf/drafts/4025FE63-7464-4479-947C-598925669973.html">"<a href=""><strong>Raindrop</strong> · Issue #141 · extratone/bilge</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/F63E5266-3E61-4D73-81C6-B0216C1A610B.html">"<a href="https://www.macstories.net/ios/a-comprehensive-guide-to-all-120-settings-urls-supported-by-ios-and-ipados-13-1/">A Comprehensive Guide to All 120+ Settings URLs Supported by iOS and iPadOS 13.1</a>" Oct 1, 2019 at 10:00</a></li>
<li><a href="https://davidblue.wtf/drafts/4F535430-4E39-4934-BEF1-1BBFCCFDB7B6.html">"<a href="">A Guide to Good Templates</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/1A4752C4-78AE-463A-BE08-290008E67A96.html">"<a href="https://www.peerreviewed.io/blog/2021/8/18/a-shortcut-for-generating-local-timestamps-in-discord">A Shortcut for Generating Local Timestamps in Discord — Peer Reviewed</a>" Aug 18, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/54B0F225-8AB1-44A8-9F6B-352FC85F770D.html">"<a href="">A year of blasphemy</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/00BFE539-4C11-47F7-9463-B12B0639673F.html">"<a href="">About Me — BRU.BUILD</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/10BC7147-EA1C-486A-95FE-8C7985B16ABE.html">"<a href="https://help.twitter.com/en/using-twitter/twitter-blue">About Twitter Blue</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/77B7E665-B481-42C0-9C97-2ADF05F2E3B5.html">"<a href="https://extratone.com/about">About</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/808A78D4-8CB3-45C1-AA55-73D0E2DF0790.html">"<a href="https://telegram.org/blog/animated-backgrounds#bot-menu">Animated Backgrounds</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/D1FC4643-A95D-4347-AC57-0F2667EC30C6.html">"<a href="">Apollo for Reddit</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/B9108A5D-C62A-4491-9E02-BD7011A72FB1.html">"<a href="https://www.theverge.com/2021/9/3/22655644/apple-delays-controversial-child-protection-features-csam-privacy">Apple delays controversial child protection features after privacy outcry</a>" Sep 3, 2021 at 08:40</a></li>
<li><a href="https://davidblue.wtf/drafts/81255E83-655D-4B65-9B2E-CC6CC3AF7776.html">"<a href="https://www.macstories.net/news/apple-one-subscription-bundles-are-now-available/">Apple One Subscription Bundles Are Now Available</a>" Oct 30, 2020 at 16:40</a></li>
<li><a href="https://davidblue.wtf/drafts/0E76CC16-7642-4F29-B377-87C06F11DE7C.html">"<a href="">Apple’s fortress of secrecy is crumbling from the inside</a>" Sep 30, 2021 at 14:00</a></li>
<li><a href="https://davidblue.wtf/drafts/0AF7E106-F0B5-4B7C-94BC-BDEA992C8167.html">"<a href="">Autocomplete</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/2A4738B5-498E-40BB-B031-0BFA1EF3E338.html">"<a href="">Autocomplete</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/4A87404A-4DC6-4DBD-9213-3109DE54CEC1.html">"<a href="">Autocomplete</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/F80D00C3-AA0F-4AB7-B5CE-9452FEF71B1A.html">"<a href="">Autocomplete</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/D4AD73C9-E2AD-48DD-8FCC-CABD2E12DB87.html">"<a href="">Automating Markdown with Taio, Part 1</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/8651DB0F-B737-450D-AB1A-8450B6B988FC.html">"<a href="">Automating Markdown with Taio, Part 2</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/38BAA7A0-7873-4441-B3D7-F391FCBD3548.html">"<a href="https://club.macstories.net/posts/automation-academy-diving-deeper-into-shortcuts-files-actions-for-ios-and-ipados-15">Automation Academy: Diving Deeper into Shortcuts' Files Actions for iOS and iPadOS 15</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/BC1D3970-62C5-4AE5-B5EC-E307E4EF4DB5.html">"<a href="">Block Party is out of beta and ready to block anyone who likes bad tweets</a>" Oct 14, 2021 at 18:04</a></li>
<li><a href="https://davidblue.wtf/drafts/C1EDF6FA-D62E-4604-A0E1-1EF7FD07B259.html">"<a href="">Block Party is out of beta and ready to block anyone who likes bad tweets</a>" Oct 14, 2021 at 18:04</a></li>
<li><a href="https://davidblue.wtf/drafts/080D46FF-07E8-4771-9609-DD6550315E9C.html">"<a href="https://xmflsct.com/2021/tooot/">Building my first app - tooot</a>" | Zhiyuan' Portfolio</a></li>
<li><a href="https://davidblue.wtf/drafts/25104389-D370-4097-A6A8-D791E59161BB.html">"<a href="https://support.apple.com/et-ee/guide/mac-help/mchlp2313/mac">Change icons for files or folders on Mac</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/F6AC52A4-EB3F-499D-BB06-1F86CAF1F594.html">"<a href="">Chief Laugh Officer</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/9C5681C5-F23A-4015-B228-05BA1AE21D56.html">"<a href="https://www.apple.com/tv-pr/originals/coda/">CODA - Apple TV+ Press</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/2B982C2F-ACE5-4C20-9F0A-7E866D423438.html">"<a href="https://club.macstories.net/posts/command-browser">Command Browser</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/191C2663-C48E-474E-8F3E-50E3823C62A6.html">"<a href="https://command.canny.io/">Command Feedback</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/28BCF4C0-B89E-47C0-AF2A-0BB0A7C0860B.html">"<a href="">davidblue</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/42FE4F86-461A-47DC-88BB-3BE95F652E9B.html">"<a href="">Dino Bansigan</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/A35F7FEA-8D7A-4563-92FB-A51B1B16229D.html">"<a href="https://www.alfredapp.com/blog/productivity/dont-miss-a-date-with-fantastical-2-and-workflows/">Don't Miss A Date with Fantastical 2 and Workflows - Alfred Blog</a>" Mar 26, 2015 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/7FBF98D4-9181-4156-8B9F-62EA8FB37551.html">"<a href="">Drafts 28</a>" Sep 28, 2019 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/823AFA2E-749C-4D1B-833B-597E0AC81649.html">"<a href="">Drafts 28</a>" Sep 28, 2019 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/703E7501-A152-4C43-80BA-25766C11DF76.html">"<a href="">Drafts 29: Autocomplete</a>" Sep 28, 2019 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/D7562FC7-D1E9-4FC8-9FB9-350CDB696B54.html">"<a href="">Drafts Directory: Process Template</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/5F53A354-6DA7-4422-B0F5-B0B82E432816.html">"<a href="">Episode 62: The Etymology of Insults</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/9D9FF1F1-810A-49CB-B280-A2F5C1361B39.html">"<a href="https://www.macstories.net/stories/facetimes-audio-and-video-take-a-leap-forward-with-apples-upcoming-iphone-ipad-and-mac-os-updates/">FaceTime’s Audio and Video Take a Leap Forward With Apple’s Upcoming iPhone, iPad, and Mac OS Updates</a>" Sep 9, 2021 at 15:07</a></li>
<li><a href="https://davidblue.wtf/drafts/64DDD26A-05BA-482C-912A-CCE31965B3EA.html">"<a href="https://write.as/matt/finding-inspiration-again">Finding Inspiration Again</a>" Sep 17, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/2A876085-4DC5-4AF4-8780-D3AD835126C2.html">"<a href="https://flexibits.com/about">Flexibits | About</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/E7D2EA3C-1ABB-490D-B825-369338FA5A05.html">"<a href="">Full transcript: YouTube Music head Lyor Cohen on Recode Media</a>" Jun 12, 2018 at 14:02</a></li>
<li><a href="https://davidblue.wtf/drafts/B022B31B-3ECA-4626-9959-9486A7D4122B.html">"<a href="">GitHub Command Palette - GitHub Docs</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/F0395929-6691-460A-B963-9965431B12EB.html">"<a href="">GitHub for Academics: the open-source way to host, create and curate knowledge</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/8E3C108A-4591-490B-92C1-6660B4EEEC1F.html">"<a href="https://help.twitter.com/en/resources/glossary">Glossary</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/AE1F1229-1224-4696-8A35-39E9962CB1B3.html">"<a href="https://applescoop.org/story/guide-how-to-use-the-new-safari-in-ios-15">Guide: How to use the new Safari in iOS 15 — Apple Scoop</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/B4735D37-696D-4D31-B44E-5DD961784AB4.html">"<a href="">How to export posts from Tinyletter</a>" Aug 4, 2020 at 16:58</a></li>
<li><a href="https://davidblue.wtf/drafts/82FE67C4-A828-4BB5-91F3-787D628235AF.html">"<a href="">iCloud</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/D704291C-2D59-4546-AF5E-22658F14126B.html">"<a href="https://club.macstories.net/posts/interview-anders-borum">Interview: Anders Borum</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/E6202F20-F784-4A3D-9871-5F43D2AB160B.html">"<a href="https://www.apple.com/ios/ios-15-preview/features/">iOS 15 - Features</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/7F12BB8E-EED9-409E-A008-2FA83858E5FD.html">"<a href="https://www.theverge.com/22683681/ios-15-ipados-review-iphone-ipad-apple">iOS 15 and iPadOS 15 review: foundational fixes</a>" Sep 20, 2021 at 12:03</a></li>
<li><a href="https://davidblue.wtf/drafts/0C854EEC-8AB0-4A75-8A57-E56A33ACBFE5.html">"<a href="https://www.macworld.com/article/353957/ios-15-features-missing-at-launch.html">iOS 15 and iPadOS 15 will launch this month without these features</a>" Sep 7, 2021 at 11:10</a></li>
<li><a href="https://davidblue.wtf/drafts/4A17A4A4-E518-4F0F-B406-14A4C5F61529.html">"<a href="">iOS 15.1 brings delayed SharePlay feature to iPhones and iPads</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/F15D20B8-CE0D-4BFE-A2EC-7E4B3DB4C137.html">"<a href="">iOS and iPadOS 15: The MacStories Review</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/25D5341E-6A1C-4F8D-9169-3D28053CDCB0.html">"<a href="">Is Apple One a bargain? It’s complicated</a>" Sep 17, 2020 at 07:54</a></li>
<li><a href="https://davidblue.wtf/drafts/C45AB2DF-5292-45E2-A990-E39EFD6E0B72.html">"<a href="">Ivy Style Enters Its Dirtbag Era</a>" Oct 5, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/F5F59725-8BB1-40C8-8966-F5C7B56D95FB.html">"<a href="">L'Hote v. New Orleans, 177 U.S. 587 (1900)</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/A9604C27-4824-47A1-B564-A0A5CB67A7F1.html">"<a href="">macOS Monterey is now available</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/C25AF192-B266-4CE5-8428-2A38AC978456.html">"<a href="">MacStories Interviews: Greg Pierce</a>" Jan 2, 2013 at 09:26</a></li>
<li><a href="https://davidblue.wtf/drafts/A7E84438-DFD1-411D-A030-F1DD7DC43D3F.html">"<a href="">MacStories Weekly: Issue 294</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/C0B451B9-8EBA-4FBA-BB8C-F3E75713FEF2.html">"<a href="">Making the Case for an iPhone Pro</a>" Apr 3, 2020 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/0CB14A87-71C7-454E-9FBB-AFAEA2515D33.html">"<a href="">Market with the App Store</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/18281E91-7733-4442-9074-2B66EF4DD059.html">"<a href="">Market with the App Store</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/2897647F-70AF-4B4B-81F4-E85DF0EE25DF.html">"<a href="">Market with the App Store</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/444D7F27-325E-47A9-B4CD-21E1D123F0D5.html">"<a href="">Market with the App Store</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/6CDDC975-A9A6-4990-9419-59E9BA014A10.html">"<a href="">Market with the App Store</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/75E0DC1A-613E-4EDB-8595-ECA5BC7FF57B.html">"<a href="">My Obsidian Setup, Part 4: Templates for Weekly Posts and Custom Mobile Toolbar</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/CC81164D-4D29-451E-A3BC-323891A4F0F2.html">"<a href="https://evernote.com/blog/new-features-new-plans-bold-future/">New Features, New Plans, and a Bold Future for Evernote</a>" Jul 21, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/09F9D9F1-788A-4219-B047-766194FEBF59.html">"[Periscope] has made me a better person and a better scientist."</a></li>
<li><a href="https://davidblue.wtf/drafts/F7CC4E20-189A-4B4F-A06C-F2F4A3F15574.html">"<a href="https://www.newyorker.com/culture/photo-booth/picturing-the-humanity-and-dread-of-the-infinite-scroll">Picturing the Humanity and Dread of the Infinite Scroll</a>" Sep 1, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/73E5FACA-A89E-4DED-8D37-B0A158E99E4E.html">"<a href="">Platformer</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/549B57EE-197B-48BE-8333-518689C8303A.html">"<a href="">Porting A Port 📲</a>" Oct 12, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/064BD70F-9F16-4903-A5EE-C3F842C3ACD7.html">"<a href="">Privacy Policy | Discord</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/5892A1A3-31C9-4E32-BBD9-59FA2C6D8AA3.html">"<a href="">Privacy Policy</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/7B962F3E-BCA2-43DE-83E0-C625F8789D3D.html">"<a href="">Privacy Policy</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/9EC6701F-AD12-4E72-96A9-047A48A3EB48.html">"<a href="">Publish Your Book Online with GitBook</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/E7B1F4C7-8308-4E6B-8AEA-9A5BD0714771.html">"<a href="">r/AskReddit - What useful unknown website do you wish more people knew about?</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/3B5FC9D6-962C-4864-9CB6-EFD15F5A2313.html">"<a href="https://www.smashingmagazine.com/2021/09/reducing-carbon-emissions-on-web/">Reducing Carbon Emissions On The Web — Smashing Magazine</a>" Sep 3, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/A6DE3754-F684-4BEB-AE39-76985699F49E.html">"<a href="https://docs.getdrafts.com/changelog/">Release Notes</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/37669A64-E10B-478E-B907-E8C7DCB384E3.html">"<a href="https://tryrizewatch.com/special/checkout/?affid=9EAE67BE&pub=14&click_id=1044429&c1=14&c2=&c3=db20dqdxrscqq438&c4=&c5=">Rize Smart Watch</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/AB5E4C86-8791-4816-8645-37C427A7533E.html">"<a href="https://www.macstories.net/stories/shortcuts-a-new-vision-for-siri-and-ios-automation/">Shortcuts: A New Vision for Siri and iOS Automation</a>" Jun 13, 2018 at 09:27</a></li>
<li><a href="https://davidblue.wtf/drafts/4F7CB95D-7662-40F1-96FE-4B2969FDAFFB.html">"<a href="https://tilde.club/signup/">sign up for the tilde.club!</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/038A873A-77BB-4C22-9F33-2091E61B3B43.html">"<a href="">Siri Shortcuts for Scrubs · Issue #209 · extratone/bilge</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/B1329D49-FDD7-4577-8C7A-EF030EA4D61D.html">"<a href="https://snap.com/en-US/terms/spotlight-terms">Snap Spotlight Submission and Revenue Terms - Snap Inc.</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/4377158F-DCEB-4B98-9F8D-4905CBA859F6.html">"<a href="">Starting Fresh: The Painful But Productive Process of Setting Up an iPhone and iPad from Scratch</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/2CFE67A5-86D2-4136-9BFC-6816CD6F235A.html">"<a href="">Terms of Service | Discord</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/4C798110-3BC2-41CC-AF64-2BF28E9F1FC2.html">"<a href="">Terms of Service</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/D6750E18-D839-4309-A128-5B0CF15FDF86.html">"<a href="">Textcraft | PNGuin</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/482724C7-D055-4FF6-B0EA-8ED2C1C6A908.html">"<a href="https://www.applevis.com/blog/accessibility-bugs-introduced-and-resolved-ios-15-and-ipados-15-blind-and-low-vision-users">The Accessibility Bugs Introduced and Resolved in iOS 15 and iPadOS 15 for Blind and Low Vision Users | AppleVis</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/CACBA9D4-F47B-4B6C-844C-97B88D212726.html">"<a href="">The history of the word 'Podcast'</a>" Oct 5, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/D7F6F5A1-ECEF-410E-AE22-36026AF104CD.html">"<a href="">Trump's new social media platform found using Mastodon code</a>" Oct 29, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/4400E6F3-3FA0-49C8-B0B1-1ECDB1B36E3A.html">"<a href="">Twitter launches Spaces Recording feature to testers on iOS, global launch to follow – TechCrunch</a>" Oct 29, 2021 at 13:00</a></li>
<li><a href="https://davidblue.wtf/drafts/26817856-1A3D-4F22-AB19-A9B8BA4E4991.html">"<a href="https://techcrunch.com/2021/09/16/twitter-super-follows-has-generated-only-around-6k-in-its-first-two-weeks/">Twitter Super Follows has generated only around $6K+ in its first two weeks – TechCrunch</a>" Sep 17, 2021 at 14:24</a></li>
<li><a href="https://davidblue.wtf/drafts/393E3324-A5CF-4738-B784-137B0B18A716.html">"<a href="">Using Drafts with Obsidian</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/BA9CB08E-51F4-42DF-8974-9358D3D8C064.html">"<a href="">Using Drafts with Obsidian</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/CBE141D1-CB95-4081-ADE4-1A39E0C0EFBD.html">"<a href="">Using Drafts with Obsidian</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/F69CB4CF-D6B1-4700-B2AF-F4871FCFD631.html">"<a href="https://support.apple.com/guide/shortcuts/variable-types-apdd2b316022/5.0/ios/15.0">Variable types used in Shortcuts on iPhone or iPad</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/D0DC77EA-FC6C-411A-92F5-BE0057BF8D58.html">"<a href="">What Happened When Facebook Became Boomerbook</a>" Oct 5, 2021 at 12:15</a></li>
<li><a href="https://davidblue.wtf/drafts/1390F068-F920-4CE2-8E10-3E16CFB83CE0.html">"<a href="https://blog.emojipedia.org/whats-new-in-unicode-14-0/">What's New in Unicode 14.0</a>" Sep 14, 2021 at 12:00</a></li>
<li><a href="https://davidblue.wtf/drafts/54B4CAC4-4938-4762-9D40-C839D754A4F5.html">"<a href="">What's this thing running?</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/4A8F3C8E-2F91-446A-8678-861138E19AAA.html">"<a href="">YouTube Music isn't perfect, but it's still heaven for music nerds | Engadget</a>"</a></li>
<li><a href="https://davidblue.wtf/drafts/B6448502-16D8-4A39-B17D-45A0B6E46F48.html">"<a href="">YouTube will now let you pay to QA test new features</a>" Oct 6, 2020 at 16:11</a></li>
<li><a href="https://davidblue.wtf/drafts/B6FDB61B-CE79-4801-BC8F-C373B1F51FDF.html">"28 Cool Telegram Messenger Tricks You Should Know"</a></li>
<li><a href="https://davidblue.wtf/drafts/8B0377CF-40F2-4E19-B476-65BC9A5A783A.html">"A Decade of Drafts" | Tim Nahumck</a></li>
<li><a href="https://davidblue.wtf/drafts/15924F7F-6ED7-4EAF-A535-4982C270906E.html">"A heartfelt farewell from Dieter Bohn"</a></li>
<li><a href="https://davidblue.wtf/drafts/C4613F35-B096-4C5B-AF04-248F35A2B821.html">"A note from our editor-in-chief" - The Verge</a></li>
<li><a href="https://davidblue.wtf/drafts/4D099DE0-25FF-4CEF-8030-B76FB13D9221.html">"A Standard for Universal Digital Ad Transparency"</a></li>
<li><a href="https://davidblue.wtf/drafts/B9F5E631-7EC6-4AC0-A56D-761FD7CBEFDB.html">"A Twitter tightrope without a net: Journalists’ reactions to newsroom social media policies"</a></li>
<li><a href="https://davidblue.wtf/drafts/80BEDA8B-6325-4CDD-8284-43D40F1EB255.html">"About Twitter Blue"</a></li>
<li><a href="https://davidblue.wtf/drafts/EA90AD17-426D-45DF-B94A-F93D7A27104E.html">"About"</a></li>
<li><a href="https://davidblue.wtf/drafts/04F332B1-B571-4708-A8F7-3585934C761E.html">"Accessibility - Vox Media"</a></li>
<li><a href="https://davidblue.wtf/drafts/CE3E333A-9901-4662-9CB2-12AE871D43CE.html">"Account Info - E888-06237E62 - NearlyFreeSpeech.NET Member Interface"</a></li>
<li><a href="https://davidblue.wtf/drafts/E8165A80-94F3-4C91-B156-0B86FEBB76E4.html">"Adobe Chat"</a></li>
<li><a href="https://davidblue.wtf/drafts/3B88014F-476A-4FFF-8935-E8A2F5BB430B.html">"Advanced HTML Previews"</a></li>
<li><a href="https://davidblue.wtf/drafts/1E88FFED-827B-485A-A210-570A4ED9B10D.html">"All 105 Disney Channel Original Movies, Ranked"</a></li>
<li><a href="https://davidblue.wtf/drafts/B375F842-8AB5-40B5-B9E1-831ED74E5507.html">"an anthem for a trash generation"</a></li>
<li><a href="https://davidblue.wtf/drafts/6A0A0F69-23ED-4324-A19E-C53E285BAA22.html">"Announcing List lookup endpoints for the Twitter API v2 - Announcements - Twitter Developers"</a></li>
<li><a href="https://davidblue.wtf/drafts/E1474640-F9E0-4DF1-B2B7-E88EA58A138D.html">"App Store Awards honor the best apps and games of 2021"</a></li>
<li><a href="https://davidblue.wtf/drafts/449E5B34-6A7D-40ED-82C5-BE62F76552B2.html">"App Tracking Transparency | Apple Developer Documentation"</a></li>
<li><a href="https://davidblue.wtf/drafts/646E8716-8F41-46D7-B905-E247A83B8B2B.html">"Apple announces Self Service Repair"</a></li>
<li><a href="https://davidblue.wtf/drafts/A6D24D49-2149-4E32-BF84-FE9B3385650D.html">"Apple Music Style Guide"</a></li>
<li><a href="https://davidblue.wtf/drafts/0038C30F-5017-4B97-BE8B-47D115D6F1F6.html">"Apple Names the 2021 App of the Year Award Winners"</a></li>
<li><a href="https://davidblue.wtf/drafts/0EB48C7B-37C0-4742-AEA9-BD82D37E3D6B.html">"Apple Podcasts presents the Best of 2021"</a></li>
<li><a href="https://davidblue.wtf/drafts/13C4FCAF-D498-4704-8287-8E8292288FE0.html">"Apple Releases iOS and iPadOS 13.4 with iPad Cursor Support and Keyboard Improvements, iCloud Drive Shared Folders, and More"</a></li>
<li><a href="https://davidblue.wtf/drafts/7BE34A79-4DF2-4A43-807B-1ECB85512E01.html">"Apple Releases iOS and iPadOS 13.4 with iPad Cursor Support and Keyboard Improvements, iCloud Drive Shared Folders, and More"</a></li>
<li><a href="https://davidblue.wtf/drafts/F5ACD85B-4042-453C-B240-3E9733ABD725.html">"Apple to developers: Heads I win, tails you lose | Mobile Dev Memo by Eric Seufert"</a></li>
<li><a href="https://davidblue.wtf/drafts/07683F5A-FFDD-4B6F-B439-235C350196B1.html">"Apple’s unexciting 2021 Mac and iPhone software prove it should take a break from annual OS updates"</a></li>
<li><a href="https://davidblue.wtf/drafts/ECC14EFF-E675-42DB-9B9B-D432A6BFC37B.html">"As We May Think"</a></li>
<li><a href="https://davidblue.wtf/drafts/4F67735C-DAD5-4E42-85EA-3D4B887C46E1.html">"Ask HN: Why the obsession with note taking? | Hacker News"</a></li>
<li><a href="https://davidblue.wtf/drafts/A944CF95-DE24-47AA-BC50-CB03E1A20396.html">"Automating iOS: A Comprehensive Guide to URL Schemes and Drafts Actions"</a></li>
<li><a href="https://davidblue.wtf/drafts/E6870071-E8F0-428E-B9E2-84A0AFEE0F9E.html">"Automating iOS: A Comprehensive Guide to URL Schemes and Drafts Actions"</a></li>
<li><a href="https://davidblue.wtf/drafts/4DD63F41-FD71-4A0F-AB73-307B34011452.html">"Bare Bones Software | BBEdit 14.0 Release Notes"</a></li>
<li><a href="https://davidblue.wtf/drafts/8895AA71-0AE9-4AB9-B8F6-82CA1986F95F.html">"Build what’s next with the new Twitter Developer Platform"</a></li>
<li><a href="https://davidblue.wtf/drafts/E1F0EF1D-D112-4099-A542-E68D8D4F501E.html">"Can Matt Mullenweg save the internet?"</a></li>
<li><a href="https://davidblue.wtf/drafts/DF146105-8E19-4DED-BA7D-EABCCF422F0D.html">"Chat with David Blue" | Writeas Community Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/B7D48A32-8FF1-4CB5-9683-AADF189634C4.html">"City Museum"</a></li>
<li><a href="https://davidblue.wtf/drafts/3D83657E-A8D5-4DD0-A0F8-B071D5C42FA3.html">"Clause - Free Software Directory"</a></li>
<li><a href="https://davidblue.wtf/drafts/EACE4FDC-30D1-4802-A4DF-01C4DCE36885.html">"Compiling and Exporting Tagged Notes in Drafts 5"</a></li>
<li><a href="https://davidblue.wtf/drafts/403EC88A-0FD3-4514-ABAE-22A37C855C63.html">"Complete List of iOS URL Schemes for Third-Party Apps (Always-Updated)"</a></li>
<li><a href="https://davidblue.wtf/drafts/FC911386-B39B-4ABD-8278-4CE92D915251.html">"Complete List of iOS URL Schemes for Third-Party Apps (Always-Updated)"</a></li>
<li><a href="https://davidblue.wtf/drafts/1C99E7DB-D702-4F32-AB79-ABF5264F4252.html">"Computers as I used to love them"</a></li>
<li><a href="https://davidblue.wtf/drafts/A8166F61-1913-40DA-B331-4A051DE159E7.html">"Conceptual Personae" - <em>The Baffler</em></a></li>
<li><a href="https://davidblue.wtf/drafts/44395F4F-03AE-48F1-A4BC-4A67B46020F2.html">"Copyright, What You Need To Know"</a></li>
<li><a href="https://davidblue.wtf/drafts/C862085D-0603-482A-A75E-9A00ED84ACF9.html">"Cory Doctorow's linkblog (@[email protected])"</a></li>
<li><a href="https://davidblue.wtf/drafts/39C14D58-39E7-498B-9928-48B9E3940BE4.html">"Curious about Curious Cat?"</a></li>
<li><a href="https://davidblue.wtf/drafts/AB22337F-EF48-4BAA-B9A9-3C224C88A5ED.html">"Drafts 15 Review: Multiwindow, Shortcuts, and More"</a></li>
<li><a href="https://davidblue.wtf/drafts/BAE737F4-B66E-43C1-9B0E-5B0842D50131.html">"Drafts 15 Review: Multiwindow, Shortcuts, and More"</a></li>
<li><a href="https://davidblue.wtf/drafts/C3670318-F206-4414-A6D5-17E4898CB897.html">"Drafts 2.0: New Fonts, New Look, A Brand New Kind of Sync, And Now On iPad"</a></li>
<li><a href="https://davidblue.wtf/drafts/B3DA3FFC-B9D2-408D-A6E2-6791F3DB5F29.html">"Drafts 5 Review"</a></li>
<li><a href="https://davidblue.wtf/drafts/964182CC-8C2A-446B-929E-FCD5D637B467.html">"Drafts Directory: Append comment to Todoist task"</a></li>
<li><a href="https://davidblue.wtf/drafts/391F1351-B2B2-4E9C-B5C7-79C0F3DA4B18.html">"Drafts Review"</a></li>
<li><a href="https://davidblue.wtf/drafts/A5927A16-6206-4F0C-BF4C-2CDA438FF55F.html">"Elizabeth Holmes was always in control"</a></li>
<li><a href="https://davidblue.wtf/drafts/EE448508-FE8E-45EC-A6F6-A3E8382EFB09.html">"Flexibits | Cardhop for iOS | Help"</a></li>
<li><a href="https://davidblue.wtf/drafts/02148815-6117-4326-A91E-9C675C198B29.html">"Hall of fame: Loren Brichter and Tweetie"</a></li>
<li><a href="https://davidblue.wtf/drafts/B393188D-66A0-4C77-87EB-C65A9DE02E1D.html">"Hello?" - <em>Reply All</em></a></li>
<li><a href="https://davidblue.wtf/drafts/3380E9AB-605C-4C51-90AB-66ED23FB1079.html">"Helping communities build their own LTE networks" | Stack Overflow Podcast</a></li>
<li><a href="https://davidblue.wtf/drafts/1B33AE14-69B7-4DA6-BE43-8AEA5BCEC7A9.html">"How Push Works"</a></li>
<li><a href="https://davidblue.wtf/drafts/E4758039-5620-4519-96CC-4E54E3A1B7C5.html">"How Push Works"</a></li>
<li><a href="https://davidblue.wtf/drafts/206BEA53-DE89-4A75-A1A4-0CB3995BA2ED.html">"How to use Twitter for iOS"</a></li>
<li><a href="https://davidblue.wtf/drafts/320AD238-2BB8-4A72-B947-2C205E476557.html">"How To Write Therapy Progress Notes Faster"</a></li>
<li><a href="https://davidblue.wtf/drafts/4427754F-FFB9-4C27-A907-CE88CA6D7004.html">"I Finally Reached Computing Nirvana. What Was It All For?" | <em>WIRED</em></a></li>
<li><a href="https://davidblue.wtf/drafts/66A16E5F-E827-4097-AD4C-4E0F017D218F.html">"I tried Twitter Blue so you don't have to — here's what I found"</a></li>
<li><a href="https://davidblue.wtf/drafts/2AEC35D7-663B-4B49-A017-1BCDA6C30B09.html">"I Trust Telegram"</a></li>
<li><a href="https://davidblue.wtf/drafts/D1C53570-B8C3-494C-B8C1-86990A02CCAF.html">"Inside Apple’s Decision to Blow Up the Digital Ads Business" | <em>The Information</em></a></li>
<li><a href="https://davidblue.wtf/drafts/C276182A-6F70-4F7D-8189-C0E0F19753A0.html">"Interview: Anders Borum"</a></li>
<li><a href="https://davidblue.wtf/drafts/DABC00E0-3C57-4A35-A8F0-6A7D95EE7E22.html">"Interview: Greg Pierce"</a></li>
<li><a href="https://davidblue.wtf/drafts/ECDF27E4-A224-4A9C-BDCD-3B3F9CA8B927.html">"Introducing Automation April: A Month-Long Community Event About Automation, Featuring Shortcuts, Interviews, Discord Workshops, and a Shortcut Contest"</a></li>
<li><a href="https://davidblue.wtf/drafts/1CEA4628-3D7B-474B-857A-5486233651E7.html">"Introducing Twitter Blue - Twitter’s first-ever subscription offering "</a></li>
<li><a href="https://davidblue.wtf/drafts/0CDF7630-2D63-4E27-AE82-D8117A2B646C.html">"iOS & iPadOS 15.4 Beta Release Notes | Apple Developer Documentation"</a></li>
<li><a href="https://davidblue.wtf/drafts/DFC4D255-5688-419D-9075-9307E65D2FAD.html">"iOS 15.2 RC now available for developers, here are the full release notes"</a></li>
<li><a href="https://davidblue.wtf/drafts/76E703E2-0D69-4E89-9AFC-8C692A2E7566.html">"iOS shortcuts – Bugs and Suggestions"</a></li>
<li><a href="https://davidblue.wtf/drafts/BD392CCE-7AE7-475A-9FBA-3F6605121BD3.html">"iPad Air 2022 review: It’s time to make iPads water-resistant" | Input</a></li>
<li><a href="https://davidblue.wtf/drafts/0DFACC65-C085-49BA-84FF-9C17585C15F9.html">"iPad Diaries: ‘Type to Siri’ as a Smart Command Line"</a></li>
<li><a href="https://davidblue.wtf/drafts/839829FD-8792-4E95-97C9-800490ED83F9.html">"iPad Diaries: Working with Drag and Drop – Bear and Gladys"</a></li>
<li><a href="https://davidblue.wtf/drafts/A7CFE695-0618-4F5C-BF48-F2CB4C141BEC.html">"iPhone 12 and 12 Pro review: Virtually flawless"</a></li>
<li><a href="https://davidblue.wtf/drafts/B211745B-FC9F-4080-B8BF-DB4126223D92.html">"iPhone 4S review"</a></li>
<li><a href="https://davidblue.wtf/drafts/4A8802D8-59EF-40AC-88B0-F3F0E6CA9219.html">"Is jail breaking an iPhone worth it?"</a></li>
<li><a href="https://davidblue.wtf/drafts/B8FAF543-53A4-4CBF-80AE-BC94D4CD9566.html">"Jack steps back"</a></li>
<li><a href="https://davidblue.wtf/drafts/2248EF42-0E49-48DC-9DD8-3F6D1DDFA3ED.html">"Katie Couric Is Not for Everyone"</a></li>
<li><a href="https://davidblue.wtf/drafts/A5F1AFBC-9582-433F-96F2-95DEAE59C1E2.html">"Keyboard Shortcuts"</a></li>
<li><a href="https://davidblue.wtf/drafts/7392E46D-AEFB-4243-B804-F2648AC4EB5A.html">"macOS Monterey releases today: 5 features you need to know about - AppleMagazine"</a></li>
<li><a href="https://davidblue.wtf/drafts/B937F5AF-731B-4980-9D2A-C86AB070F929.html">"macOS Monterey releases today: 5 features you need to know about - AppleMagazine"</a></li>
<li><a href="https://davidblue.wtf/drafts/E9D10238-6294-4911-904D-F141EB20EC0E.html">"macOS Monterey releases today: 5 features you need to know about - AppleMagazine"</a></li>
<li><a href="https://davidblue.wtf/drafts/343B6B18-3FE9-4AD4-BCBA-0F2F4AF60FCD.html">"MacStories Selects 2021: Recognizing the Best Apps of the Year"</a></li>
<li><a href="https://davidblue.wtf/drafts/74FB17FE-AF2A-4C43-899E-9D7595271065.html">"MacStories Weekly: Issue 301"</a></li>
<li><a href="https://davidblue.wtf/drafts/11C1A402-648E-4DA4-82D8-0D8D9FDD2D03.html">"Market with the App Store"</a></li>
<li><a href="https://davidblue.wtf/drafts/FAE88BDD-E070-47BA-8072-CE5BDB067C8B.html">"Market with the App Store"</a></li>
<li><a href="https://davidblue.wtf/drafts/B5A64DD6-2EA7-4968-AF1F-DC4948692544.html">"Mastodon 3.5"</a></li>
<li><a href="https://davidblue.wtf/drafts/D0F47445-BA0A-42FE-A740-4AAE82046A0B.html">"Memento: Modern Reminders"</a></li>
<li><a href="https://davidblue.wtf/drafts/D863D65F-E02C-4D35-9C59-551828AC83DE.html">"Minimal Web Browsers: Why You Need Less Stuff On Your Browser"</a></li>
<li><a href="https://davidblue.wtf/drafts/047F0715-7D39-4178-AAA4-4627111888BA.html">"My Favorite Obsidian Plugins for Automating the Management of Notes"</a></li>
<li><a href="https://davidblue.wtf/drafts/61AD2284-A520-40C1-AC43-23D2686909C8.html">"My Obsidian Setup, Part 5: Appending Text and Webpage Links to Specific Sections of My 'Dashboard' Note"</a></li>
<li><a href="https://davidblue.wtf/drafts/8C9D0DCF-53BB-46DA-8AD3-BD5E3F40F66D.html">"My Obsidian Setup, Part 5: Appending Text and Webpage Links to Specific Sections of My 'Dashboard' Note"</a></li>
<li><a href="https://davidblue.wtf/drafts/606E4131-B901-481C-AEDA-2EEDA1F8E1C4.html">"My Obsidian Setup, Part 9: Saving Articles and Music Albums for Later with Shortcuts and Dataview"</a></li>
<li><a href="https://davidblue.wtf/drafts/74A0AA94-6E7D-4033-B897-1774C680B41F.html">"Nearly Free Speech | Linux Journal"</a></li>
<li><a href="https://davidblue.wtf/drafts/0C46CFF7-D930-4315-83B4-FC2F6AC0331B.html">"Neocities"</a></li>
<li><a href="https://davidblue.wtf/drafts/68090A0A-4AAE-4F38-9F58-D17C8180DE49.html">"New features to help you organize, find, and do more with your digital content"</a></li>
<li><a href="https://davidblue.wtf/drafts/8750D913-6FEE-429A-BC97-E663DF2C642E.html">"New Lists lookup functionality on Twitter Developer Platform Roadmap | Trello"</a></li>
<li><a href="https://davidblue.wtf/drafts/3D6EDB59-15F8-4A22-ACFD-D8FC66A01D27.html">"NSRegularExpression Tutorial and Cheat Sheet"</a></li>
<li><a href="https://davidblue.wtf/drafts/1657C00E-CCFB-414C-8BE2-E31B719127CC.html">"Obsidian - Obsidian Help"</a></li>
<li><a href="https://davidblue.wtf/drafts/75391D11-8562-4A8C-9D4B-1110C71776AB.html">"orientador (@[email protected])"</a></li>
<li><a href="https://davidblue.wtf/drafts/E7AC93C9-BB48-4378-9FDE-4945BAEAA8BE.html">"Panda release notes 1.0(2510)"</a></li>
<li><a href="https://davidblue.wtf/drafts/BBF9C4AA-9FC3-4BB8-8D11-73D992F9866D.html">"Physically, it’s nearly impossible for a human being not to be deeply and instinctively alarmed by yelling." https://www.newyorker.com/culture/cultural-comment/the-decline-of-yelling</a></li>
<li><a href="https://davidblue.wtf/drafts/34B843DE-71AA-4066-9F84-3802353E87A1.html">"r/iphone - What are some little known iPhone hacks?"</a></li>
<li><a href="https://davidblue.wtf/drafts/D630EE4D-04E9-4FD5-8292-E5951012CE37.html">"RA Podcast"</a></li>
<li><a href="https://davidblue.wtf/drafts/B350A7D0-09EA-4FFF-AF3C-C47CFB868A55.html">"Rebuilding Drafts"</a></li>
<li><a href="https://davidblue.wtf/drafts/1504A9F7-D6B9-4FFD-B073-538A3F3A7C80.html">"Remark.as"</a></li>
<li><a href="https://davidblue.wtf/drafts/E00EFF3E-009B-4F8C-BA5D-EE908F3273D3.html">"Review: TextExpander Touch 2 a typing timesaver for iOS" | <em>MacWorld</em></a></li>
<li><a href="https://davidblue.wtf/drafts/CAC8E08C-D48F-46E7-AA3E-2D072F6325EC.html">"Search Results for VIN : 3VWE57BU6KM070759"</a></li>
<li><a href="https://davidblue.wtf/drafts/D471DE48-0C06-47BD-BDE0-60B8FA133F8D.html">"Setting up an iPad for coding is my greatest feat as a computer user"</a></li>
<li><a href="https://davidblue.wtf/drafts/F5C7C035-CC00-4963-BC72-1414ECA0B7E8.html">"Shortcut for Text Replacement" - r/Shortcuts</a></li>
<li><a href="https://davidblue.wtf/drafts/AD4698F4-16BD-4B68-AA3D-48F0B1AF3627.html">"Shortcuts for Mac: 27 of Our Favorite Third-Party Integrations"</a></li>
<li><a href="https://davidblue.wtf/drafts/04A4151A-67FA-4257-AB78-D74E738D7F8C.html">"Shortcuts Live with special guest Rosemary Orchard – Matthew Cassinelli"</a></li>
<li><a href="https://davidblue.wtf/drafts/9251B05C-B862-4C18-85E2-E5EF51D44ECD.html">"Shrek movie review & film summary | Roger Ebert"</a></li>
<li><a href="https://davidblue.wtf/drafts/782A4D85-4DA5-497E-9CE0-757D6887CAB5.html">"Something New in Something Old"</a></li>
<li><a href="https://davidblue.wtf/drafts/E81E6C12-72CC-484D-8FB7-21FEC31C1BD0.html">"Telegram Extras"</a></li>
<li><a href="https://davidblue.wtf/drafts/883182E1-CFBB-461E-8ECE-A309E7E101D3.html">"Test under adverse device conditions (iOS) - Xcode Help"</a></li>
<li><a href="https://davidblue.wtf/drafts/F4C87D99-B5BD-44A5-8820-19786132ED25.html">"TextExpander Touch 2.0 Brings Fill-In Snippets, Formatted Text To iOS"</a></li>
<li><a href="https://davidblue.wtf/drafts/44DBD867-1F69-4C41-BECB-AA07D506447E.html">"The Best Email App for iPhone and iPad – The Sweet Setup"</a></li>
<li><a href="https://davidblue.wtf/drafts/28A16D6F-E892-4788-866B-0C216CC96D6C.html">"The iPad's original software designer and program lead look back on the device's first 10 years"</a></li>
<li><a href="https://davidblue.wtf/drafts/926F4B0A-4F0B-4791-9D66-06F2015023F0.html">"The Ladies Room" | Nancy Powaga</a></li>
<li><a href="https://davidblue.wtf/drafts/C5666F67-B0AC-4FF1-A7EA-B0D7D4EA46B6.html">"The Line Width Slider: any chance I’ll see it again? - Feedback - Bear Beta"</a></li>
<li><a href="https://davidblue.wtf/drafts/4E595A1E-9B77-46A2-AF36-9D1FCFE06A33.html">"The Scourge of “On Background” in Silicon Valley"</a></li>
<li><a href="https://davidblue.wtf/drafts/B3C786A2-E7CD-4C8B-A246-E2295DEC1528.html">"the thing that makes me so angry is that we could bounce back from a <em>mass shooting</em>, but I do not know if we can bounce back and survive corporate ownership." https://www.npr.org/2021/03/10/975601926/capital-gazette-we-are-the-newsroom</a></li>
<li><a href="https://davidblue.wtf/drafts/FB88C185-4845-413A-B8EF-36CB9DE18545.html">"The Verge updates its policy for tech PR people speaking “on background,” noting the practice can be “hilariously stupid”"</a></li>
<li><a href="https://davidblue.wtf/drafts/E2222CA6-4BB0-49D3-87F5-2F77E257AA70.html">"Thermal Notifications in iOS App"</a></li>
<li><a href="https://davidblue.wtf/drafts/BF4F865B-A6D4-4E6F-AECB-C75E8CA91F05.html">"Things 3.4 Brings Powerful New Automation Features and App Integrations"</a></li>
<li><a href="https://davidblue.wtf/drafts/F39811CF-76C9-423A-8DCA-1B4C7E6F0A93.html">"Tilde.Club: I had a couple drinks and woke up with 1,000 nerds"</a></li>
<li><a href="https://davidblue.wtf/drafts/8F5FD8CC-C349-42D1-9CEB-57D4A2289CEC.html">"Toolbox Pro Review: A Must-Have Companion Utility for Shortcuts Power Users"</a></li>
<li><a href="https://davidblue.wtf/drafts/C369E0E4-D944-4330-85AF-5A66B7CA75B8.html">"tooot"</a></li>
<li><a href="https://davidblue.wtf/drafts/EBF8A8EB-2D6C-4421-BD51-95F3E5E40E10.html">"Toot" is officially no more.</a></li>
<li><a href="https://davidblue.wtf/drafts/4AFCDC77-7853-4A50-B773-91CE20699A10.html">"Tweetbot for iPhone Review"</a></li>
<li><a href="https://davidblue.wtf/drafts/985FED12-A793-4FE8-8A02-5EAEED9F25EA.html">"Twitter acquires Threader, an app that compiles and shares threads – TechCrunch"</a></li>
<li><a href="https://davidblue.wtf/drafts/05BD31FE-619A-4381-A082-328593E77CC8.html">"Twitter Blue Is Now Available. Here's Why We Hate It..."</a></li>
<li><a href="https://davidblue.wtf/drafts/07604377-913C-412E-81BB-616BD71D8D9F.html">"Twitter Developers"</a></li>
<li><a href="https://davidblue.wtf/drafts/40A3C0CF-5FC4-4CEF-8B7E-29F6F44F19D4.html">"Twitter is building a more open developer platform"</a></li>
<li><a href="https://davidblue.wtf/drafts/DEBCC16D-4516-4DF6-81A0-3A81914F8F92.html">"Twitter shouldn’t be hiding basic app improvements behind its Blue paywall"</a></li>
<li><a href="https://davidblue.wtf/drafts/E8E13C82-782F-4760-96BD-D2C224A6909B.html">"Twitter shouldn’t be hiding basic app improvements behind its Blue paywall"</a></li>
<li><a href="https://davidblue.wtf/drafts/C8E41AE6-501D-4C6F-9F6B-C00BAF6677FE.html">"Twitter smarter, Twitter harder with Twitter Blue"</a></li>
<li><a href="https://davidblue.wtf/drafts/728C1D48-EC48-4DB8-8A1E-2E03BAEB2F94.html">"Twitter Spaces hosts can now record conversations and share them in tweets"</a></li>
<li><a href="https://davidblue.wtf/drafts/8F5A8028-A9B2-4750-8C76-498D97104242.html">"Twitter Spaces hosts can now record conversations and share them in tweets"</a></li>
<li><a href="https://davidblue.wtf/drafts/7D1CF938-22F7-4A9E-9FC7-F68866B9D520.html">"Updating The Verge’s background policy"</a></li>
<li><a href="https://davidblue.wtf/drafts/DDE86636-38DF-42B5-B3A9-EEC923BD1402.html">"URL Schemes"</a></li>
<li><a href="https://davidblue.wtf/drafts/84E87ACE-D5CC-440D-97D9-6A3223F1F9FE.html">"Use 1Password CLI to Create Items | 1Password Developer Documentation"</a></li>
<li><a href="https://davidblue.wtf/drafts/8E146868-0859-4554-A399-BCCA8899B999.html">"Use 1Password CLI to Create Items | 1Password Developer Documentation"</a></li>
<li><a href="https://davidblue.wtf/drafts/DF1A1CA0-5AFC-40B2-B549-D2C91CAD4EA9.html">"Use 1Password CLI to Create Items | 1Password Developer Documentation"</a></li>
<li><a href="https://davidblue.wtf/drafts/10E0DA9D-86E6-4DA0-A984-AF2F31E088F1.html">"Use zsh as the default shell on your Mac"</a></li>
<li><a href="https://davidblue.wtf/drafts/57B4EBA4-A22A-43C8-9793-2F26AA47945C.html">"Using Drafts Templates - Integration Guides - Drafts Community"</a></li>
<li><a href="https://davidblue.wtf/drafts/6E922D1C-84B4-4BA7-95D8-49F8D5D7FA45.html">"Using Drafts Templates"</a></li>
<li><a href="https://davidblue.wtf/drafts/7E487CCA-5A10-40BD-8457-36CC9B8A22C8.html">"Using the iPad Pro as my development machine"</a></li>
<li><a href="https://davidblue.wtf/drafts/AF9AC6C2-8192-4B0A-9B32-F4B1F5956C6A.html">"we should collab on a how to have a good first time experience [media of some kind] sincerely."</a></li>
<li><a href="https://davidblue.wtf/drafts/C4DA05B1-EAFD-4DBF-B041-D068535BD033.html">"What is Apple Digital Legacy and how to add a Legacy Contact"</a></li>
<li><a href="https://davidblue.wtf/drafts/4950F69C-2404-45CC-B070-FBF5AD9A4B5F.html">"What's New in Shortcuts - Issue #25"</a></li>
<li><a href="https://davidblue.wtf/drafts/230204D9-86D2-4339-A351-20D425419CAF.html">"What's new in Shortcuts in iOS 15.4 and macOS 12.3"</a></li>
<li><a href="https://davidblue.wtf/drafts/62EC8186-3239-47C0-8D18-61A9C0FDE15C.html">"What's New in Shortcuts" Newsletter by Matthew Cassinelli</a></li>
<li><a href="https://davidblue.wtf/drafts/E202E3E4-948F-40AC-B3B3-A2DAC9B90DEF.html">"When people started talking about 'The Real Hip-Hop,' DOOM was lookin at you like 'let's go smoke some weed and get away from these guys…' Like… 'how fast can we run the other direction?'" LMAO https://pca.st/episode/bce6fccd-2a68-493f-a979-70621756b388?t=4315.0</a></li>
<li><a href="https://davidblue.wtf/drafts/E962DFF9-62F6-4F0F-8C32-CB2143F219AE.html">"Why Apple's ATT is casting a long shadow over latest quarter"</a></li>
<li><a href="https://davidblue.wtf/drafts/9A1218CA-723C-4046-9447-E8043031BD34.html">"Why I’m Considering Bear as a Notes App Replacement"</a></li>
<li><a href="https://davidblue.wtf/drafts/853C6F61-F281-4E99-BA81-4E0F5B284D65.html">"Why Is Telegram So Special?"</a></li>
<li><a href="https://davidblue.wtf/drafts/3304D639-7649-405C-AE37-80EC5AAE8D8C.html">"WorldWideWeb, Part II • The Breakroom"</a></li>
<li><a href="https://davidblue.wtf/drafts/3BC17756-F243-4481-BB46-684631293F26.html">"Write.as Platform Guidelines"</a></li>
<li><a href="https://davidblue.wtf/drafts/6F0F5BB4-65FA-4CC4-BD18-C846641663E7.html">"Writer | Sign in"</a></li>
<li><a href="https://davidblue.wtf/drafts/8EEAB47C-063D-4694-85AA-4F5D7A175BB5.html">"Writer’s automated style guide for anyone writing online brings in $21M A round – TechCrunch"</a></li>
<li><a href="https://davidblue.wtf/drafts/596EB314-A0E8-4235-96B0-B610F47C42C8.html">"You.com wants to hit Google where it counts: Search"</a></li>
<li><a href="https://davidblue.wtf/drafts/227AA173-41D9-4ABF-BF64-FB9354C7F6A0.html">“”””Privacy”””” (Telegram)</a></li>
<li><a href="https://davidblue.wtf/drafts/FEF3B401-5AEA-4E05-BDE3-62611BA060DC.html">“A Germanophile, Teutonophile or Teutophile is a person who is fond of German culture, German people and Germany in general or who exhibits German patriotism in spite of not being either an ethnic German or a German citizen.”</a></li>
<li><a href="https://davidblue.wtf/drafts/DFBC917C-2B4C-4222-B05B-45B49DBA42AA.html">“A table view that allows navigation and selection using a hardware keyboard.” | Swift Snippet by Douglas Hill</a></li>
<li><a href="https://davidblue.wtf/drafts/D56E7E97-FBEB-4F41-B89D-79709942ACDB.html">“Drafts 28” | Tim Nahumck"</a></li>
<li><a href="https://davidblue.wtf/drafts/9D5D9957-6304-4A1E-BA1A-7FC9F46D8314.html">“Fanboys” - The Verge</a></li>
<li><a href="https://davidblue.wtf/drafts/19541905-994D-4BD6-9BD4-C4A511697546.html">“How to Fuck Text”’s Purpose Statement</a></li>
<li><a href="https://davidblue.wtf/drafts/AD9789DE-08C8-4144-B6ED-93F50214F708.html">“Text Modifier...” Action - Tim Nahumck</a></li>
<li><a href="https://davidblue.wtf/drafts/43C2D17A-9237-4445-A3EB-A016C94B4CC1.html">“The Walled Garden:”</a></li>
<li><a href="https://davidblue.wtf/drafts/03EC2619-92B4-4D1E-AA50-B0F4C7AF30D6.html">“What’s new in Shortcuts 15.5 for iPhone or iPad”</a></li>
<li><a href="https://davidblue.wtf/drafts/DC14C80C-0029-42E2-8EFB-E4BAC9FD2F68.html">“What’s new in Shortcuts in iOS 15.4 and macOS 12.3”</a></li>
<li>[(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.toMarkdown = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:<a href="https://davidblue.wtf/drafts/F9176C25-FEC3-43DE-9780-594759FA064D.html">function(require,module,exports){</a></li>
<li><a href="https://davidblue.wtf/drafts/C4C983C9-517D-442E-886C-87FD2A313218.html"><a href="https://www.reddit.com/r/CallOfDutyMobile/comments/n1o26r/call_of_duty_mobile_april_30th_community_update/">(28) Call of Duty: Mobile - April 30th Community Update + Public Test Build : CallOfDutyMobile</a></a></li>
<li><a href="https://davidblue.wtf/drafts/87B25BB8-9F47-4240-9229-5BCD98F63E5E.html">[[term]], [[definitions]] [[note]] -<a href="[[term_url]]">[[term]]</a></a></li>
<li><a href="https://davidblue.wtf/drafts/D3E7A55F-91F0-41AF-88F6-59A233AA1E80.html">[[w:correspondence]] Index - 03832022-142351</a></li>
<li><a href="https://davidblue.wtf/drafts/782F9576-D3B3-42CE-AAEB-00F2327EFAB1.html">[[w:Dev]] Index - 03832022-140156</a></li>
<li><a href="https://davidblue.wtf/drafts/C9DEA2D3-DD7E-424D-A284-FA6513B5BE2F.html">[[w:keys]] Index - 03832022-144011</a></li>
<li><a href="https://davidblue.wtf/drafts/38DAA0B3-09A5-4A09-A3E4-A0F96E02EB38.html"><a href="#fn:1" id="fnref:1" title="see footnote" class="footnote"><sup>1</sup></a></a></li>
<li><a href="https://davidblue.wtf/drafts/28637F81-2647-41C2-8FDD-0132A02670DF.html"><a href="https://www.theverge.com/2022/3/9/22967468/volkswagen-id-buzz-electric-microbus-photos-specs">2024 Volkswagen ID Buzz electric microbus revealed: less flower, more power - The Verge</a></a></li>
<li><a href="https://davidblue.wtf/drafts/0B9E77B6-143C-49EB-8EB5-A3E629BA16E6.html"><a href="https://systematicpod.com/ep/237">237: Indie Software Development in the Time of Coronavirus with Greg Pierce – Systematic</a></a></li>
<li><a href="https://davidblue.wtf/drafts/6559AF11-5DE3-4906-86AB-2B7342B29600.html"><a href="https://mjdescy.me/2018/06/11/a-hardware-keyboard-shortcuts-tip-for-drafts-5/">A Hardware Keyboard Shortcuts Tip for Drafts 5 | Michael Descy</a></a></li>
<li><a href="https://davidblue.wtf/drafts/1934910E-5A51-444E-9020-DAFD8BAA07BA.html"><a href="https://extratone.com/about">About — Extratone</a></a></li>
<li><a href="https://davidblue.wtf/drafts/C1CC80EE-07EB-40BF-ABB1-7046F39143C2.html"><a href="https://nr.apple.com/dH5n9r4q1v">Apple announces Self Service Repair</a></a></li>
<li><a href="https://davidblue.wtf/drafts/7A6973CA-C9C9-4C6F-8EFC-16809F7066A6.html"><a href="https://www.gsmarena.com/apple_iphone_12_pro_max-10237.php">Apple iPhone 12 Pro Max - Full phone specifications</a></a></li>
<li><a href="https://davidblue.wtf/drafts/B246C5DC-5954-4C8A-B036-B8ABEB11207F.html"><a href="https://mastodon.social/settings/applications/900361">Application: 𝙳𝙰𝚅𝙴𝙳𝚁𝙰𝙵𝚃𝚂 - Mastodon</a></a></li>
<li><a href="https://davidblue.wtf/drafts/ECA9EB56-4FF2-4DE2-BF06-417BAE687103.html"><a href="https://apps.apple.com/us/app/aviary/id1522043420">Aviary for iOS Documentation</a></a></li>
<li><a href="https://davidblue.wtf/drafts/16C0E6BF-6D5D-46E0-A2C7-2CA8C14F49A1.html"><a href="https://support.iconfactory.com/kb/tot/can-i-customize-the-colors-of-the-dots">Can I customize the colors of the dots? / Tot / Knowledge Base - The Iconfactory Support</a></a></li>
<li><a href="https://davidblue.wtf/drafts/01A5A7EC-A86C-416D-BA6B-CFCE829B71E2.html"><a href="https://www.icloud.com/shortcuts/0156db493ecb455a834060c7f905f95f">CarPlay Frames</a></a></li>
<li><a href="https://davidblue.wtf/drafts/1E919F61-4995-41C0-8010-B0B4B8834D3B.html"><a href="https://write.as/compaq/dir/">Church of Compaq Directory</a></a></li>
<li><a href="https://davidblue.wtf/drafts/C5FD21CE-A0E8-4A65-9862-E4E50A7289A4.html"><a href="https://write.as/compaq/dir/">Church of Compaq Directory</a></a></li>
<li><a href="https://davidblue.wtf/drafts/BC3D5487-027F-43FD-A855-554C4461C13D.html"><a href="https://bilge.world/twitter-blue">David Blue on Twitter Blue</a>,December 6 2021</a></li>
<li><a href="https://davidblue.wtf/drafts/6D59C75C-7D58-4028-8D5F-4468A2D0CDBF.html">[details="Reveal"]</a></li>
<li><a href="https://davidblue.wtf/drafts/7D3D2E16-0C91-444B-B130-C9D393602ED7.html"><a href="https://youtu.be/KCIzOoa8TD4">DIY READ-ALOUDS - Recorded, Edited, Produced, Uploaded and Embedded ALL with iPhone!</a></a></li>
<li><a href="https://davidblue.wtf/drafts/CD66A078-1E88-435A-A668-F1E4A1DC5B8C.html">[Drafts Community] [News & Updates] Drafts Beta Program - Summer 2022</a></li>
<li><a href="https://davidblue.wtf/drafts/282B9DE2-37EA-4027-905F-41B577BD9CB5.html">[Drafts Community] [News & Updates] Drafts Beta Program - Summer 2022agiletortoiseJuly 20</a></li>
<li><a href="https://davidblue.wtf/drafts/F283C4B5-350C-4853-86DD-F6818E06E712.html"><a href="https://docs.getdrafts.com/docs/extensions/web-capture">Drafts Web Capture - Drafts User Guide</a></a></li>
<li><a href="https://davidblue.wtf/drafts/10431B79-846F-4F33-AE00-2E59A436DF98.html"><a href="https://getdrafts.com/">Drafts. Where Text Starts. | Drafts</a></a></li>
<li><a href="https://davidblue.wtf/drafts/D464F922-6202-4332-ACEB-941F101355CD.html"><a href="https://apps.apple.com/us/app/drafts/id1435957248">Drafts</a> App Store Review</a></li>
<li><a href="https://davidblue.wtf/drafts/F4C59026-4ECB-4002-801B-01E5AF6BACC4.html"><a href="https://apps.apple.com/us/app/for-all-mankind-time-capsule/id1541425599">For All Mankind: Time Capsule on the App Store</a></a></li>
<li><a href="https://davidblue.wtf/drafts/E3586608-5F05-40A7-B6FE-08FC118081C1.html">[GitHub] GitHub access token found in commit</a></li>
<li><a href="https://davidblue.wtf/drafts/547B9209-816A-4F9A-80FC-33D8E37DC981.html"><a href="https://www.icloud.com/shortcuts/d923350f705e4b7d8dc3338667e0ac32">GPS Buddy</a> (Shortcut)</a></li>
<li><a href="https://davidblue.wtf/drafts/8CCCA2A5-205A-44A2-BC69-75B5D17E1D35.html"><a href="https://twitter.com/HaggardHawks/status/1482645897372700676">Haggard Hawks 🦅 on Twitter: "The SYNERGASTIC theory is the idea that all human language originally evolved from grunts of effort, which would have become rhythmically coordinated as groups of early humans worked together on physical tasks. Today, it is better known as the YO-HE-HO theory." / Twitter</a></a></li>
<li><a href="https://davidblue.wtf/drafts/7DB3E168-CC3C-4FB7-BDDA-023C0EE5A589.html">[image:E2063BE5-A08F-46E0-B708-283AA05930DA-2288-0000011143EFEE20/d1d1f727d5c2723bed12b94f090e81a8.jpeg]</a></li>
<li><a href="https://davidblue.wtf/drafts/44753649-A84C-4C27-9B0B-424EC67C4684.html"><a href="https://forums.getdrafts.com/t/keyboard-shortcuts-on-ipad/10389/7">Keyboard shortcuts on iPad? - General Discussion - Drafts Community</a></a></li>
<li><a href="https://davidblue.wtf/drafts/A27AAB4F-A959-4285-9540-59BA74A3E664.html"><a href="https://support.apple.com/en-us/HT201236">Mac keyboard shortcuts - Apple Support</a></a></li>
<li><a href="https://davidblue.wtf/drafts/06255995-8E6F-48C9-94E5-5AFF6FF5141F.html"><a href="https://bilge.world/mark-zuckerberg">Mark Fuck and the Goofy Godheads — The Psalms</a></a></li>
<li><a href="https://davidblue.wtf/drafts/3CE950D4-28A6-48A6-82EC-8FC5A0DC272C.html"><a href="https://www.theverge.com/2021/4/1/22361687/microsoft-cortana-shut-down-ios-android-mobile-app">Microsoft shuts down Cortana on iOS and Android - The Verge</a></a></li>
<li><a href="https://davidblue.wtf/drafts/058D531A-69F5-4218-93D2-D3395F380789.html"><a href="https://nipunbatra.github.io/blog/setup/2021/06/14/setup-ipad.html">My iPad Setup</a></a></li>
<li><a href="https://davidblue.wtf/drafts/AC0F72D7-F622-459A-BA52-3C42B12D446F.html"><a href="https://nahumck.me/#">nahumck.me</a>content</a></li>
<li><a href="https://davidblue.wtf/drafts/D2FC11D4-D860-4F05-A1ED-19F44CE91349.html"><a href="drafts://open?uuid=[[UUID]]">REFERENCE</a></a></li>
<li><a href="https://davidblue.wtf/drafts/D7EB9BB6-97D2-4BE9-B54B-01F7BD215570.html"><a href="prefs://root=SAFARI">Safari Settings</a></a></li>
<li><a href="https://davidblue.wtf/drafts/86CF2D49-F00E-481D-B3EC-33EE5FEB45B0.html"><a href="message:%3C4a77dae67a768bc3b920d4961.732189b901.20211224171513.67138d9b78.fb3092d6@mail206.atl61.mcsv.net%3E">Sentences I saved this year</a></a></li>
<li><a href="https://davidblue.wtf/drafts/66319AB6-5EE4-4860-B582-74378B34FB74.html"><a href="https://docs.getdrafts.com/docs/actions/steps/services#webdav">Services - Drafts User Guide</a></a></li>
<li><a href="https://davidblue.wtf/drafts/3A286924-9CBD-44E6-A115-F826F43F6DFB.html"><a href="https://www.icloud.com/shortcuts/7909bdf3628140f282380423c6d92e0b">Shortcuts</a></a></li>
<li><a href="https://davidblue.wtf/drafts/1422FB70-8DEF-4D6B-AAEF-596A06E2D376.html"><a href="https://www.icloud.com/shortcuts/904394403aac4f7e99dc8742f1db1a7f">Shortcuts</a></a></li>
<li><a href="https://davidblue.wtf/drafts/32400DD0-9321-4C09-AEF9-BBA8CAA1F9BB.html">[Take 2] iOS 15 Reviewed for My Family</a></li>
<li><a href="https://davidblue.wtf/drafts/5ABCC300-6F7E-4B36-9567-C5310336E42D.html"><a href="blinkshell://run?key=361DC9&cmd=sshTilde.Town">Test</a></a></li>
<li><a href="https://davidblue.wtf/drafts/B0B07AAF-F5A7-47BC-A66D-6B8B99890F21.html"><a href="https://gist.github.com/extratone/140a11428b5dd1dda500b3928e0438b1">The Unlicense, Dave Edition</a></a></li>
<li><a href="https://davidblue.wtf/drafts/53B70B64-1B1B-41CC-AA04-BB688B8769B8.html"><a href="https://twitter.com/NeoYokel">Twitter</a> - <a href="https://mastodon.social/@DavidBlue">Mastodon</a> - <a href="https://t.me/davidblue">Telegram</a></a></li>
<li><a href="https://davidblue.wtf/drafts/C230D712-97B3-4FBC-8C46-2F5709BDC712.html"><a href="https://www.icloud.com/shortcuts/68b1d8edadb9446599c90d988ef21eb3">What’s on KUTX?</a>, a Music Discovery Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/1F491B1C-4E85-41A6-A256-B50B27078508.html"><a href="https://wojciechkulik.pl/">Wojciech Kulik - Software Engineer</a></a></li>
<li><a href="https://davidblue.wtf/drafts/C65B1C57-5D61-4117-AFC4-2E1524D28A7C.html"><a href="https://davidblue.wtf/drafts/D92E5CEF-AD38-4F67-9FA9-B38E6ECD4C89.html">WTF</a></a></li>
<li><a href="https://davidblue.wtf/drafts/4500A647-57CE-4EBB-86BE-1EE478B4BA59.html">{"data":[{"reply_settings":"everyone","text":"In the latest iOS beta you can now try out 2 GPT-3-powered text generation actions:\n\n⚙️ Generate Text\n✏️ Edit Text\n\nThis let’s you do some truly ✨magical✨ things - from creative writing & language translations to unstructured data parsing & sentiment analysis. https://t.co/OyiQuzCCIi","context_annotations":[{"domain":{"id":"47","name":"Brand","description":"Brands and Companies"},"entity":{"id":"10026364281","name":"Apple"}},{"domain":{"id":"47","name":"Brand","description":"Brands and Companies"},"entity":{"id":"10026364281","name":"Apple"}},{"domain":{"id":"48","name":"Product","description":"Products created by Brands. Examples: Ford Explorer, Apple iPhone."},"entity":{"id":"10044903039","name":"Apple - iOS"}}],"id":"1546539867634532352","entities":{"urls":[{"start":270,"end":293,"url":"https://t.co/OyiQuzCCIi","expanded_url":"https://twitter.com/ToolboxProApp/status/1546539867634532352/photo/1","display_url":"pic.twitter.com/OyiQuzCCIi","media_key":"3_1546539861980717063"},{"start":270,"end":293,"url":"https://t.co/OyiQuzCCIi","expanded_url":"https://twitter.com/ToolboxProApp/status/1546539867634532352/photo/1","display_url":"pic.twitter.com/OyiQuzCCIi","media_key":"3_1546539862114934784"},{"start":270,"end":293,"url":"https://t.co/OyiQuzCCIi","expanded_url":"https://twitter.com/ToolboxProApp/status/1546539867634532352/photo/1","display_url":"pic.twitter.com/OyiQuzCCIi","media_key":"3_1546539862542749696"},{"start":270,"end":293,"url":"https://t.co/OyiQuzCCIi","expanded_url":"https://twitter.com/ToolboxProApp/status/1546539867634532352/photo/1","display_url":"pic.twitter.com/OyiQuzCCIi","media_key":"3_1546539863150829574"}]},"attachments":{"media_keys":["3_1546539861980717063","3_1546539862114934784","3_1546539862542749696","3_1546539863150829574"]},"created_at":"2022-07-11T17:00:12.000Z","conversation_id":"1546539867634532352"}],"includes":{"media":[{"media_key":"3_1546539861980717063","type":"photo","url":"https://pbs.twimg.com/media/FXZpz4BXoAc0FC4.jpg"},{"media_key":"3_1546539862114934784","type":"photo","url":"https://pbs.twimg.com/media/FXZpz4hXoAA6L4W.jpg"},{"media_key":"3_1546539862542749696","type":"photo","url":"https://pbs.twimg.com/media/FXZpz6HXkAAoeNi.jpg"},{"media_key":"3_1546539863150829574","type":"photo","url":"https://pbs.twimg.com/media/FXZpz8YWIAYReII.jpg"}]}}</a></li>
<li><a href="https://davidblue.wtf/drafts/12FDB5E9-2897-4CF4-89C5-EA3673482D88.html">{"errors":[{"resource_id":"876191633146073088","parameter":"ids","resource_type":"tweet","section":"data","title":"Authorization Error","value":"876191633146073088","detail":"Sorry, you are not authorized to see the Tweet with ids: [876191633146073088].","type":"https://api.twitter.com/2/problems/not-authorized-for-resource"}]}</a></li>
<li><a href="https://davidblue.wtf/drafts/D1E9AB41-D8EF-42F6-A79F-44B36A9F1E33.html">{</a></li>
<li><a href="https://davidblue.wtf/drafts/059D684E-C347-4BD6-995D-E2E43036921F.html">drafts%3A//open?uuid%3D%5B%5BUUID%5D%5D</a></li>
<li><a href="https://davidblue.wtf/drafts/8EA1532D-4C94-4404-A1D4-6608F97BC1A0.html">{\rtf1\ansi\ansicpg1252\cocoartf2638</a></li>
<li><a href="https://davidblue.wtf/drafts/82968D83-5401-4508-81C8-2BD082977583.html">@[email protected] on Post-Privacy</a></li>
<li><a href="https://davidblue.wtf/drafts/0BF17783-7B6E-43CE-A613-52A2736ABD79.html">@agiletortoise Gotta let the spirit move you</a></li>
<li><a href="https://davidblue.wtf/drafts/46BF2BA4-CDEB-4CF7-8327-C050CE185B86.html">@agiletortoise Really not looking forward to meeting any more characters in the Covid Cinematic Universe.</a></li>
<li><a href="https://davidblue.wtf/drafts/0016D1DF-F64A-4433-A416-D5D22C2B4D2A.html">@blue - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/0A18FE54-229F-4EA7-B57E-18CC77022A56.html">@blue - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/447F9C19-1759-4B2A-8A53-F11F43A191F1.html">@blue - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/960EB17B-E7F7-4ED0-B07C-CFE33F5EAADE.html">@blue - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/9B944E2C-6D4A-47C0-A762-0E06BF3BF6C2.html">@ColtonLikesTech - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/0DD4E5C4-9C5F-421D-8F77-2A756FB4C795.html">@FreemenMuaddib - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/4F57EC00-0D9C-4EAE-B5D3-72570BC26D69.html">@gferreroferri - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/3C4DAA7B-D686-48A7-AB5B-9D45C6C78434.html">@gluebyte - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/B2AE6692-0989-4DF7-9850-98DCAB84101C.html">@gluebyte - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/BF278F0C-A7FC-4045-A884-52EC40953AD8.html">@iamrbn - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/F2C0C94C-AE85-4E51-8ED8-765BB652CAFA.html">@jaymcgavren I was really into YouTube toward the end of the gadget blog era when the first generation of HD tech YouTubers (SKB, Jon4Lakers, iJustine) were starting to edge into legitimate business.</a></li>
<li><a href="https://davidblue.wtf/drafts/1FD2D0F8-DC6C-4712-8BB9-738B4AFA781F.html">@JimSauer - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/09225123-496E-4A92-8ABA-AE4D36CEB3E8.html">@martindb1988 - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/35EC90A0-3996-47F8-9476-527E4E43372B.html">@martindb1988 - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/6B61FE46-38AF-456F-A0B1-B19D69AEA637.html">@mralexhay - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/96C5F316-A98F-49E0-8F70-3C6286485E24.html">@mralexhay - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/B81A197C-11FC-4A31-8150-95123AC3268E.html">@mvan231 - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/C4BFF1BE-5454-407A-BA08-3387F75511CE.html">@mvan231 - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/32B5570D-B24C-498F-8CF5-10356BE36C7A.html">@nicolobedendo - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/78AEB5D0-7665-4D83-B21D-1490A4606F98.html">@nongthienman - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/67684472-7F4A-4CF4-AF18-6FFF9DB1D654.html">@RonaldoChig - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/52C06371-AF6F-44EF-8CE2-BC3F5D6B77FB.html">@ROP - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/CF3B80FA-1B19-43DA-BF54-6ACC3F2A43AA.html">@rtermere's Notetaking App</a></li>
<li><a href="https://davidblue.wtf/drafts/B2307655-B42F-43BF-B0B0-EF3CE83DB470.html">@TheLemon - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/B3C11A4D-6CAA-44E4-9B7D-1BBF6AA8AA39.html">@TheLemon - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/C80C1A95-3FA5-4B65-920C-790CA72D5B3D.html">@TheLemon - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/8C08CE98-05B1-4B3F-86CE-91A2C591275B.html">@zachary7829 - RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/0FFF3711-873A-470F-A7AD-94E61C8BA1E4.html">* “<a href="https://www.washingtonpost.com/education/2021/05/05/florida-teen-homecoming-conspiracy/?utm_source=nextdraft&utm_medium=email">Homecoming election scheme: Florida teen Emily Grover will be tried as an adult - The Washington Post</a>”</a></li>
<li><a href="https://davidblue.wtf/drafts/72F47CB3-D62C-4BAC-8D8D-314C112C22F9.html">* “<a href="https://www.rssboard.org/rss-specification">RSS 2.0 Specification (version 2.0.11)</a>”</a></li>
<li><a href="https://davidblue.wtf/drafts/483B061E-A1C3-4185-85F2-11CF030EA358.html">* “<a href="https://www.theinformation.com/articles/why-media-brands-arent-dead?utm_campaign=Comment+like+email&utm_content=1000313&utm_medium=email&utm_source=cio&utm_term=1000067#comment-10120">Why Media Brands Aren’t Dead — The Information</a>”</a></li>
<li><a href="https://davidblue.wtf/drafts/9B3A8C8B-CB45-4B05-BAA0-FD41D39E7893.html">* <a href="https://www.theverge.com/2021/4/1/22359046/april-fools-day-brands-pr-bad-stop">Let this be the year April Fools’ Day for brands dies - The Verge</a></a></li>
<li><a href="https://davidblue.wtf/drafts/DD82DEB6-997D-418B-955D-93C98477EE00.html">* <a href="https://mastodon.social/web/notifications">Mastodon</a></a></li>
<li><a href="https://davidblue.wtf/drafts/B4021AAF-E320-483A-8D6F-AFF80675D530.html">** Haven't you heard? Audio is the hippest medium, now.</a></li>
<li><a href="https://davidblue.wtf/drafts/463D6083-2C4E-4181-AFD6-33CC75FF8C7F.html"><strong><em>Constraints can be powerful.</em></strong></a></li>
<li><a href="https://davidblue.wtf/drafts/479F7586-E901-4DBF-B8C1-7E56448449A0.html"><strong><em>Constraints can be powerful.</em></strong></a></li>
<li><a href="https://davidblue.wtf/drafts/E5791C85-EDF8-498A-901C-74E39D6D4C65.html"><strong><em>Constraints can be powerful.</em></strong></a></li>
<li><a href="https://davidblue.wtf/drafts/015BDCBE-8E29-4BDA-A9B9-9FD2EAB2EED4.html"><strong>Aggregation</strong></a></li>
<li><a href="https://davidblue.wtf/drafts/3F43C169-5627-42D6-B9A4-7E9283D559F9.html"><strong>Citation Number: 160330502-01</strong></a></li>
<li><a href="https://davidblue.wtf/drafts/BE1F1A0F-F7E6-420E-81F6-75246364105C.html"><strong>Drafts Version:</strong> 36</a></li>
<li>[<strong>Go To Bookmark</strong>----⇧⌃](https://davidblue.wtf/drafts/160EADB8-679E-4472-AE44-7CE4B8C68AF5.html)</li>
<li>[<strong>Go To Bookmark</strong>, ⇧⌃](https://davidblue.wtf/drafts/86D0200A-DFCD-4B57-ACA1-C4D2525A3BED.html)</li>
<li><a href="https://davidblue.wtf/drafts/6B658FE9-7C08-4F8E-B023-49F43F19BBBD.html"><strong>Mac History</strong></a></li>
<li><a href="https://davidblue.wtf/drafts/C859A43D-B120-470F-B4B6-ABE39F6D323C.html"><strong>Testing</strong></a></li>
<li><a href="https://davidblue.wtf/drafts/00E78494-04D1-4CFF-9D45-5FF2AB75B25A.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/017BF922-9C6F-4ED4-8647-5464A835A132.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/046C6559-0FA8-423E-A8EC-31A43467CEC5.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/0CDE2CA4-B1F9-4020-B67B-9CF6704FE5BD.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/10127260-2234-4FCF-BE5A-6D7EAF97961C.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/1057DDDB-733B-44C6-ABE3-97D0E323B398.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/150ABA67-1284-4577-B234-8D34DF14FAA2.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/18DA0EC3-31F8-4073-B4AC-2A85CCA1732C.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/1A90603C-6DCC-4E2E-9C3B-CABEE0FE953A.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/1BEAAFA5-FEC5-460E-B232-E2E4BBA91746.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/250D9F34-EF66-4041-8449-7D91356BE164.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/3FEC5D4A-E94C-4113-8657-5A90F7C1BEAE.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/4B2F1340-D718-4801-85EA-663420472348.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/4BDA03E3-51BA-4666-BE10-765E0BD42280.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/4C28B3BA-2C8A-4F6E-96D7-C3D68DF45013.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/4C4D7C2A-CB9E-4F5B-95EC-FA12F52EEED1.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/65DF09F0-A481-4879-9E99-117C2DCC0165.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/68F989A8-852D-4FD0-8A12-E63CA883E1C7.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/7827EA96-1C9F-4239-9073-14FFFBE23E93.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/7FBF42C1-439B-48C7-8EA1-3BB93F3891F0.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/83C7FD8D-4724-4A20-8E30-CFF3ADDB7B3C.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/8B346A43-A241-4772-9ACA-B3853B3883FA.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/99F1D28D-8603-465F-A402-1FAFC5325141.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/A94855B4-E329-4A7F-A6C7-221EF8E474D7.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/B788FBEF-07C9-4E90-BFD1-B295BC4A2703.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/C4C418B6-CFC8-41F8-8953-00821144B272.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/D65FD5CE-85EB-4BD4-AB5A-D8F58481F49F.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/DD2A9C5F-3C5B-4371-8E6E-5ECA695E993F.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/DF97A32F-F0D7-47F4-BAC8-09DAE6032D7D.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/F15A1E63-0102-43C6-9466-4FC784D93234.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/FF1080C3-E57C-4C64-A476-D5914948FA9F.html"><em>|MC_PREVIEW_TEXT|</em></a></li>
<li><a href="https://davidblue.wtf/drafts/127EC7E6-8C52-4DCE-A466-AFD0788E7923.html"><em>MacStories</em> Annotation</a></li>
<li><a href="https://davidblue.wtf/drafts/71AFC3F0-F8BF-490D-914C-A1F5470A1BE9.html">/* Written in November 2020 by David Blue for bilge.world.</a></li>
<li><a href="https://davidblue.wtf/drafts/CA46851F-DA83-479D-8E70-CE839D2CA8C8.html">/*</a></li>
<li><a href="https://davidblue.wtf/drafts/89F45256-81E6-4830-BC0A-14797AFFA279.html">// draft.actionLogs</a></li>
<li><a href="https://davidblue.wtf/drafts/5B7950B5-F8A6-461D-83FA-B0C585F26E8F.html">// setup and request credentials</a></li>
<li><a href="https://davidblue.wtf/drafts/4E54CD70-1551-41A6-9576-3D06606D4F77.html">//-//</a></li>
<li><a href="https://davidblue.wtf/drafts/151D3BD0-F08A-48F1-A4BE-DCC5764ADD6C.html">//Initialise</a></li>
<li><a href="https://davidblue.wtf/drafts/6257890A-EAFB-4AAA-B7E6-1627970CA461.html">/\Slashes/</a></li>
<li><a href="https://davidblue.wtf/drafts/0988E96B-9980-4A86-86F0-2E16EFF86D80.html">/raindrop Index 05192022-082006</a></li>
<li><a href="https://davidblue.wtf/drafts/473BE92C-D29C-4231-ACA7-DAB9B62FD1F5.html">/t Repo README</a></li>
<li><a href="https://davidblue.wtf/drafts/237F4F0A-E40F-4ADD-91DD-02A6E732C1D3.html">/Users/blue/Library/Mobile Documents/com<sub>apple</sub>CloudDocs/Attribution/EssentialsBackup.zip</a></li>
<li><a href="https://davidblue.wtf/drafts/1032B421-624F-4503-BF8F-D804A9103F94.html">/var/mobile/Containers/Data/Application/60F54864-C08B-40FB-B566-7ABD652AC095/Documents/Downloads/LethalHardcore - Dixie Lynn - PAWG Goes To Town On Friend's Dad</a></li>
<li><a href="https://davidblue.wtf/drafts/C9F90079-AAE3-47E8-8E5C-9665570B5E4D.html">/var/mobile/Containers/Data/Application/60F54864-C08B-40FB-B566-7ABD652AC095/Documents/Downloads/LethalHardcore - Dixie Lynn - PAWG Goes To Town On Friend's Dad</a></li>
<li><a href="https://davidblue.wtf/drafts/0BD143DC-76CD-411C-A1D1-B968F9762279.html">\documentclass[sigconf,anonymous=<span class="math">\(anonymous\)</span>]{acmart}</a></li>
<li>[%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A%0A)%0A%5BTweet%5D(https%3A%2F%2Ftwitter.com%2F_anthropoid%2Fstatus%2F1375899651052736514%3Fs%3D21)%0A%5BTweet%5D(https%3A%2F%2Ftwitter.com%2F_anthropoid%2Fstatus%2F1375899651052736514%3Fs%3D21)%0A%5BWatch%20%F0%9F%87%A8%F0%9F%87%B3%E6%9D%8E%E9%93%81%E9%94%A4's%20broadcast%3A%20The%20last%20day%20of%20periscope!%0A%5D(Watch%20%F0%9F%87%A8%F0%9F%87%B3%E6%9D%8E%E9%93%81%E9%94%A4's%20broadcast%3A%20The%20last%20day%20of%20periscope!%0A%23%20%22%5BPeriscope%5D%20has%20made%20me%20a%20better%20person%20and%20a%20better%20scientist.%22%0A%23%20%22%5BPeriscope%5D%20has%20made%20me%20a%20better%20person%20and%20a%20better%20scientist.%22%0AA%20bunch%20of%20Periscope-related%20stuff%20incoming%2C%20but%20I%20just%20happen%20to%20catch%20%20this%20quote%20and%20thought%20it%20particularly%20important%20to%20save.%20%0AA%20bunch%20of%20Periscope-related%20stuff%20incoming%2C%20but%20I%20just%20happen%20to%20catch%20%20this%20quote%20and%20thought%20it%20particularly%20important%20to%20save.%20%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2F1yoKMAknoEWKQ%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2F1yoKMAknoEWKQ%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6EYjU0ODY4ODB8MXluSk9CQWtXbXZHUryBLCEuLwI5a9kn5CHUddJ3v1AjySBqRmJb_r-4D709%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6EYjU0ODY4ODB8MXluSk9CQWtXbXZHUryBLCEuLwI5a9kn5CHUddJ3v1AjySBqRmJb_r-4D709%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6I-TU0ODY4ODB8MUJSS2pCckFvZ1ZLdw7rha8BTDG5bbB_pDEafZleSqYpQPbZQSv2_fGjgZH6%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6I-TU0ODY4ODB8MUJSS2pCckFvZ1ZLdw7rha8BTDG5bbB_pDEafZleSqYpQPbZQSv2_fGjgZH6%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6ICTU0ODY4ODB8MXluSk9CQWtvdm5HUu0sa8MIr59tvC5begZjIz8AvGmH0FaGJvXKCK1kORzI%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6ICTU0ODY4ODB8MXluSk9CQWtvdm5HUu0sa8MIr59tvC5begZjIz8AvGmH0FaGJvXKCK1kORzI%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6JdDU0ODY4ODB8MXluS09Cb3lxdkF4UsxbjkyYI9BvdKLeZbmqoJR-yXhxm0N5x-7hxOPuAseP%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6JdDU0ODY4ODB8MXluS09Cb3lxdkF4UsxbjkyYI9BvdKLeZbmqoJR-yXhxm0N5x-7hxOPuAseP%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6JVzU0ODY4ODB8MVlxSkRlZEROb2F4VoHqZjGLopQ14USTonZeW9JZItNS5fLcukBf3TgcAEzw%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6JVzU0ODY4ODB8MVlxSkRlZEROb2F4VoHqZjGLopQ14USTonZeW9JZItNS5fLcukBf3TgcAEzw%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6JZzU0ODY4ODB8MVJEeGxQZG9SbXJ4TI1tyBiLHNhzSnQ6XJDP24u8q4DJcyF_Tw0SOILcDlae%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6JZzU0ODY4ODB8MVJEeGxQZG9SbXJ4TI1tyBiLHNhzSnQ6XJDP24u8q4DJcyF_Tw0SOILcDlae%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6KzzU0ODY4ODB8MWt2SnBvV3FrUWtHRVs5SBdnbNi4wpZoH4dFyb55Jp6TQmElvkKHfhUZAOTB%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6KzzU0ODY4ODB8MWt2SnBvV3FrUWtHRVs5SBdnbNi4wpZoH4dFyb55Jp6TQmElvkKHfhUZAOTB%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6L5DU0ODY4ODB8MXlvS01Ba25vRVdLUXYesGUAYsikUVEAE2UogSPk4WzCOLaRls7EVE36edrn%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6L5DU0ODY4ODB8MXlvS01Ba25vRVdLUXYesGUAYsikUVEAE2UogSPk4WzCOLaRls7EVE36edrn%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6LljU0ODY4ODB8MWxQSnFYbllnRExHYoJ-MvmCDeTvHOJhyBsp5dnTXxNXG62c4iSitqjkLTyk%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6LljU0ODY4ODB8MWxQSnFYbllnRExHYoJ-MvmCDeTvHOJhyBsp5dnTXxNXG62c4iSitqjkLTyk%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6MATU0ODY4ODB8MXlvSk1Ba0RPWk5KUcqDu6uExvShCRFAvbHjn_akSgy94lGqIRxBDPWthzuN%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6MATU0ODY4ODB8MXlvSk1Ba0RPWk5KUcqDu6uExvShCRFAvbHjn_akSgy94lGqIRxBDPWthzuN%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6MGTU0ODY4ODB8MXlOeGFXa0FNVmdHasgT8zhUWmnADZHAgSNz9vuBrtZxuWivLU58E5JJXSpa%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6MGTU0ODY4ODB8MXlOeGFXa0FNVmdHasgT8zhUWmnADZHAgSNz9vuBrtZxuWivLU58E5JJXSpa%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6MUjU0ODY4ODB8MWpNSmdwcXJsTmd4TCYgDVwfWOaHZMadPGy5xqEPW2DnEZZHNhawqf_QK-kC%0Ahttps%3A%2F%2Fwww.pscp.tv%2Fw%2Fcy6MUjU0ODY4ODB8MWpNSmdwcXJsTmd4TCYgDVwfWOaHZMadPGy5xqEPW2DnEZZHNhawqf_QK-kC%0AWatch%20%40_Anthropoid's%20broadcast%3A%20I%E2%80%99m%20a%20brain%20scientist%2C%20ask%20me%20anything%20one%20last%20time%20(on%20Periscope)%0AWatch%20%40_Anthropoid's%20broadcast%3A%20I%E2%80%99m%20a%20brain%20scientist%2C%20ask%20me%20anything%20one%20last%20time%20(on%20Periscope)%0AWatch%20%40Dj_Zap's%20broadcast%3A%20The%20Last%20Saturday%20in%20the%20Scope%203-27-21%20%23Thedungeonparty%20%23Thedungeonfam%20%23fortheloveofmusic%20%23musicheals%20%23LetRideYall%0AWatch%20%40Dj_Zap's%20broadcast%3A%20The%20Last%20Saturday%20in%20the%20Scope%203-27-21%20%23Thedungeonparty%20%23Thedungeonfam%20%23fortheloveofmusic%20%23musicheals%20%23LetRideYall%0AWatch%20%40DOOMSDAY_2021's%20broadcast%3A%20Good%20bye%F0%9F%91%8B%F0%9F%94%A5Periscope%F0%9F%94%A5%F0%9F%93%B9%F0%9F%8C%8E%F0%9F%93%B9%F0%9F%A4%A3%0AWatch%20%40DOOMSDAY_2021's%20broadcast%3A%20Good%20bye%F0%9F%91%8B%F0%9F%94%A5Periscope%F0%9F%94%A5%F0%9F%93%B9%F0%9F%8C%8E%F0%9F%93%B9%F0%9F%A4%A3%0AWatch%20%40Jculturefan1's%20broadcast%3A%20Depressed%0AWatch%20%40Jculturefan1's%20broadcast%3A%20Depressed%0AWatch%20%40JeffsJourney_Eh's%20broadcast%3A%20Broadcast%20%235%20-%20Our%20last%20Saturday%20night%20here%F0%9F%99%81let's%20have%20dinner%20%F0%9F%A5%A9%F0%9F%A5%A6and%20fun%20%23love%20%23chat%20%23BeKind%20%F0%9F%99%8F%F0%9F%A4%97%0AWatch%20%40JeffsJourney_Eh's%20broadcast%3A%20Broadcast%20%235%20-%20Our%20last%20Saturday%20night%20here%F0%9F%99%81let%E2%80%99s%20have%20dinner%20%F0%9F%A5%A9%F0%9F%A5%A6and%20fun%20%23love%20%23chat%20%23BeKind%20%F0%9F%99%8F%F0%9F%A4%97%0AWatch%20%40kanji_k's%20broadcast%3A%206days%20to%20go%20until%20Periscope%20will%20go%20away.%20From%20my%20neighborhood%20%F0%9F%8C%B8%0AWatch%20%40kanji_k's%20broadcast%3A%206days%20to%20go%20until%20Periscope%20will%20go%20away.%20From%20my%20neighborhood%20%F0%9F%8C%B8%0AWatch%20%40kcjarvis's%20broadcast%3A%20Good%20BYE%20Periscope%20HELLO%20Happs%20%20TEST%20BROADCAST.%20%F0%9F%8E%A5%20Subscribe%20at%20Happs%3A%20https%3A%2F%2Fhapps.tv%2F%40KenJarvis%20%23live%0AWatch%20%40kcjarvis's%20broadcast%3A%20Good%20BYE%20Periscope%20HELLO%20Happs%20%20TEST%20BROADCAST.%20%F0%9F%8E%A5%20Subscribe%20at%20Happs%3A%20https%3A%2F%2Fhapps.tv%2F%40KenJarvis%20%23live%0AWatch%20%40kcjarvis's%20broadcast%3A%20MAJOR%20ANNOUNCEMENT%3A%20LAST%20PERISCOPE!!!!!!!%20New%20Group%2C%20New%20Platform%20%23KJsAmazingSummer2021%20%23TodayInTravel%0AWatch%20%40kcjarvis's%20broadcast%3A%20MAJOR%20ANNOUNCEMENT%3A%20LAST%20PERISCOPE!!!!!!!%20New%20Group%2C%20New%20Platform%20%23KJsAmazingSummer2021%20%23TodayInTravel%0AWatch%20%40mikuohashi_ch's%20broadcast%3A%20%23Goodbye%20%23Periscope%20%23http%3A%2F%2Flive.sk-knower.com%2Fuser%2Fxmikuohashix%0AWatch%20%40mikuohashi_ch's%20broadcast%3A%20%23Goodbye%20%23Periscope%20%23http%3A%2F%2Flive.sk-knower.com%2Fuser%2Fxmikuohashix%0AWatch%20%40TimothyDavidTV's%20broadcast%3A%20Follow%20me%20on%20%40HappsNews%20https%3A%2F%2Fhapps.tv%2Finvite%2F%40TimothyDavidTV%0AWatch%20%40TimothyDavidTV's%20broadcast%3A%20Follow%20me%20on%20%40HappsNews%20https%3A%2F%2Fhapps.tv%2Finvite%2F%40TimothyDavidTV%0AWatch%20t's%20broadcast%3A%20for%20the%20last%20mfn%20time%0AWatch%20t's%20broadcast%3A%20for%20the%20last%20mfn%20time](https://davidblue.wtf/drafts/E8F454C2-F13B-4C95-B2A7-09B9B85A0A06.html)</li>
<li>[%PDF-1.4](https://davidblue.wtf/drafts/6390148C-E386-4216-B28D-6CE155AE7FBC.html)</li>
<li><a href="https://davidblue.wtf/drafts/4ABE7443-DCD6-4811-91CC-6D1077701664.html">•<strong>Drafts Version:</strong> 36</a></li>
<li><a href="https://davidblue.wtf/drafts/D1E2EEA4-95BC-4837-BE96-387BC11E0037.html">※ G o o d M o r n i n g ※</a></li>
<li><a href="https://davidblue.wtf/drafts/850A6263-7E33-4FE6-BEA0-086467445CA4.html">```</a></li>
<li><a href="https://davidblue.wtf/drafts/1CBF6E57-D494-473F-9FF7-771FA57A443D.html"><code>27.1.1</code></a></li>
<li><a href="https://davidblue.wtf/drafts/1D2F1F67-1FC5-448B-A74E-4CB7D1065AE5.html">⇧⌃ Go To Bookmark</a></li>
<li><a href="https://davidblue.wtf/drafts/D86356C3-8A0A-4C70-9FC7-A0CB67C34789.html">+1 (314) 540-8315</a></li>
<li><a href="https://davidblue.wtf/drafts/1BFDF5C8-723F-4E96-A237-DE0B9757AAD5.html"><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/A0CF2976-DB1F-4FED-90FA-1C7782FA1913.html"><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/24DFB2A0-62B1-4E89-8B5C-E2D42CAA7689.html"><!DOCTYPE html> <html class=client-js lang=en dir=ltr style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/7C4C9F0B-B35D-4D97-98EF-FE95DD755221.html"><!DOCTYPE html> <html lang=en style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/C70804F2-D70D-45AB-BB58-97DCB6D21464.html"><!DOCTYPE html> <html lang=en style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/DB99397B-8068-4C23-8FAA-1BD39EBB99FC.html"><!DOCTYPE html> <html lang=en-US class=js style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/E0667F89-5ED6-4A8D-AA92-FB58196862C9.html"><!DOCTYPE html> <html style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/47F8F7C3-64B8-4333-9399-905A4D5DFBA1.html"><!DOCTYPE html> <html xmlns=http://www.w3.org/1999/xhtml xml:lang=en lang=en style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/A13C5CE1-8146-4F68-9A1A-4DA02940B722.html"><!DOCTYPE html> <html xmlns=http://www.w3.org/1999/xhtml xml:lang=en lang=en style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/D129A4CB-CF15-4D68-B97D-6B0C80899800.html"><!DOCTYPE html> <html xmlns=http://www.w3.org/1999/xhtml xml:lang=en lang=en style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/E0AF5411-B3B6-44AD-9C9E-4A6865E36689.html"><!DOCTYPE html> <html xmlns=http://www.w3.org/1999/xhtml xml:lang=en lang=en style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/59B162A7-1AF1-4B25-9DCA-9408B07458CD.html"><!DOCTYPE html> <html xmlns=http://www.w3.org/1999/xhtml xml:lang=tr lang=tr style><!--</a></li>
<li><a href="https://davidblue.wtf/drafts/C1CD4F84-1938-4712-8F5D-01729FB834B0.html"><!DOCTYPE html></a></li>
<li><a href="https://davidblue.wtf/drafts/C7B607E7-CA0D-4995-861D-7EDEA08686C6.html"><!doctype html></a></li>
<li><a href="https://davidblue.wtf/drafts/FC81DCC8-11EB-4FA5-818B-3810E6E80FA4.html"><!doctype html></a></li>
<li><a href="https://davidblue.wtf/drafts/90AAB767-A443-4400-8C27-C8A4B4E82EDB.html"><!ENTITY % plistObject "(array | data | date | dict | real | integer | string | true | false )" ></a></li>
<li><a href="https://davidblue.wtf/drafts/105D1DCA-9039-4454-9FCE-552AA27768A6.html"><?xml version="1.0" encoding="UTF-8" standalone="no"?></a></li>
<li><a href="https://davidblue.wtf/drafts/7081F7C1-9D0B-4171-844B-8C4B7A164EA7.html"><?xml version="1.0" encoding="UTF-8" standalone="no"?></a></li>
<li><a href="https://davidblue.wtf/drafts/E507405D-5930-4F62-A1C7-DDAEF1DE0E2C.html"><audio controls></a></li>
<li><a href="https://davidblue.wtf/drafts/6E487169-1925-413E-9316-70F2404B5B03.html"><audio> Element Embed</a></li>
<li><a href="https://davidblue.wtf/drafts/37997BC4-6668-47F0-A23F-B2FCBA1A3A52.html"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>Raindrop</title><style></a></li>
<li><a href="https://davidblue.wtf/drafts/2FCA0BA5-C17D-4F8F-B8AF-924E4219ABDF.html"><iframe frameborder="0" src="https://www.wnyc.org/widgets/ondemand_player/thenewyorker/?share=1#file=/audio/json/958186/" width="100%" height="54"></iframe></a></li>
<li><a href="https://davidblue.wtf/drafts/41CACFA4-4E08-4CAB-9A11-DFC6E03171AB.html"><iframe src="https://embed.music.apple.com/us/playlist/best-of/pl.u-KVXBXqVuV4xjEy?app=music&itsct=music_box_player&itscg=30200&ls=1" height="450px" frameborder="0" sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation-by-user-activation" allow="autoplay *; encrypted-media *;" style="width: 100%; max-width: 660px; overflow: hidden; border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom-right-radius: 10px; border-bottom-left-radius: 10px; background-color: transparent;"></iframe></a></li>
<li><a href="https://davidblue.wtf/drafts/3F861DCC-73EC-42CF-9E2A-99BBF15BE3D9.html"><p>Markdown Header (#): ⌃⌘H</a></li>
<li><a href="https://davidblue.wtf/drafts/87C9573C-8383-4862-8F81-DF468412EF4D.html"><p>Must-have apps for your Mac</a></li>
<li>[> What do you mean "didn’t succeed"? A five year run, before abandonment, is typical for most Microsoft products. Haven’t you looked at all the Microsoft electronic waste on that top shelf in your office? I chuckle at the thought that Microsoft thinks Cortana can be repositioned as "an assistant that can improve Microsoft’s enterprise-focused offerings". Heck, since Windows 7, in late 2009, every "enterprise" has had built-in voice dictation in their Windows operating system, and almost all of them didn’t know it existed and never used it. I wonder if the staff in Redmond realizes they could be dictating most of their documents?](https://davidblue.wtf/drafts/E10F9349-0B32-4E5E-BE4A-31AF2833EB4C.html)</li>
<li><a href="https://davidblue.wtf/drafts/AC6D4DA0-3311-4DC2-901A-A1EE4F98ACEA.html">| Action | Command |</a></li>
<li><a href="https://davidblue.wtf/drafts/0FC2E5D0-618C-4CDE-B840-B41004249B52.html">| Header | Header | Header | Header | Header | Header | Header | Header | Header | Header | Header | Header | Header | Header | Header |</a></li>
<li><a href="https://davidblue.wtf/drafts/B2D04575-CE15-444D-B763-DD9009CF88D4.html">~~Markdown Header (#),⌃⌘H~~</a></li>
<li><a href="https://davidblue.wtf/drafts/91ADE268-324B-4629-BC0D-E77B832091C6.html">⌃⌘H Markdown Header (#)</a></li>
<li><a href="https://davidblue.wtf/drafts/1F1D905A-47BC-4050-9653-8FBA64AC87CE.html">⌃⌥⌘🌐︎↓</a></li>
<li><a href="https://davidblue.wtf/drafts/3B97EAFC-8E6E-49A6-8A2B-D78B977F171A.html">⌃G Send to Saved Messages (Telegram)</a></li>
<li><a href="https://davidblue.wtf/drafts/EADA8BBE-9B24-4C7C-A46E-07F81F19CB88.html">⌥P Pbcl</a></li>
<li><a href="https://davidblue.wtf/drafts/3A63433F-38ED-458A-9ED3-AE27CF4DD827.html">⨃🄝ɨ∁ɧ⍙℟ for iOS Review</a></li>
<li><a href="https://davidblue.wtf/drafts/7AD59C86-C06E-452B-8A90-E2F66AFC9DCE.html">⨃🄝ɨ∁ɧ⍙℟ for iOS Review</a></li>
<li><a href="https://davidblue.wtf/drafts/83C4A1C4-6D12-4A81-B5E9-BD4A80663DD1.html">⬛⬛⬛⬛⬛</a></li>
<li><a href="https://davidblue.wtf/drafts/F682A8B6-1311-42DF-9FD4-158FA9303FD6.html">🌠 Roadmap updates, OCR & Podcast notesThere were so many new guides and showcases I had to group them by topic: daily notes, dashboards, academic uses, links vs. folders, etc.🌠 Roadmap updates, OCR & Podcast notes</a></li>
<li><a href="https://davidblue.wtf/drafts/29A750C3-DC3D-4DFE-8FCE-0E1EBB93FFF9.html">001</a></li>
<li><a href="https://davidblue.wtf/drafts/C7AE8F43-028A-47FA-9954-8228C3D8EC91.html">002</a></li>
<li><a href="https://davidblue.wtf/drafts/28494B93-1D8F-4E10-BFED-7C266E6C34FE.html">003</a></li>
<li><a href="https://davidblue.wtf/drafts/D48C7E30-6434-42FF-8224-0C4D064207BC.html">003</a></li>
<li><a href="https://davidblue.wtf/drafts/332E27FB-394C-46B4-952F-9B1F95E5F6F1.html">004</a></li>
<li><a href="https://davidblue.wtf/drafts/ABE72AA4-8DD5-4591-814A-13719857A305.html">004</a></li>
<li><a href="https://davidblue.wtf/drafts/32CC353F-71AB-469C-9477-82EE7F3BA40F.html">005</a></li>
<li><a href="https://davidblue.wtf/drafts/24E9981A-E402-4B7F-947D-38F30387F57B.html">006</a></li>
<li><a href="https://davidblue.wtf/drafts/2644717D-F8B4-440E-8E3E-FA9BC8D29441.html">007</a></li>
<li><a href="https://davidblue.wtf/drafts/DEC95E4C-B368-49DE-AF0F-C2BF2DBF9992.html">007</a></li>
<li><a href="https://davidblue.wtf/drafts/6F8EC623-E596-43E8-9F16-0C70696DD357.html">02052022-161510 | ~ Town Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/F3767CBC-53A1-4BCE-AB99-A156F890C523.html">02052022-161510 | ~ Town Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/3BC6278D-AB43-4747-B667-E7B6F744CFEA.html">02092022-231353 | Tilde.Town Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/D2E87BB9-FDB8-4C0A-B65A-578BFE80079B.html">02092022-231353 | Tilde.Town Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/BECCCAA2-816C-49C1-8B5C-926A433416DD.html">02122022-194602 | Tilde Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/C1692CC5-33FA-446A-9F38-1B1739E0B0DD.html">02122022-194602 | Tilde Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/2EDC6693-DD57-452D-9784-85C2139B7355.html">02212022-055503</a></li>
<li><a href="https://davidblue.wtf/drafts/94CD878B-4A30-4E85-A8E9-6C04D627CECF.html">02252022-115907</a></li>
<li><a href="https://davidblue.wtf/drafts/8C147889-F0FC-46E3-A1BA-ACDC8E866420.html">03132022-221629 | Town Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/F0244E93-2123-49E1-ACBD-0C382A5E5074.html">07142022-045115 Tabs</a></li>
<li><a href="https://davidblue.wtf/drafts/AE6AD2DB-2B4D-462E-92ED-D2B47B82FE67.html">07152022-044822</a></li>
<li><a href="https://davidblue.wtf/drafts/491196F2-C31B-469A-B138-291448366816.html">07152022-051134</a></li>
<li><a href="https://davidblue.wtf/drafts/3C68320B-8CC6-4F3E-9121-34B001EF5B1E.html">071982022-033531 Tabs</a></li>
<li><a href="https://davidblue.wtf/drafts/949CBA40-0C3C-4C72-ACCE-822F51B2EE10.html">08132022-185902</a></li>
<li><a href="https://davidblue.wtf/drafts/DEB896D1-181D-4AC7-81C6-66EB87DAC2FB.html">1. Like a Tweet.</a></li>
<li><a href="https://davidblue.wtf/drafts/57AD10ED-5A99-438A-88E7-68C5F41D1564.html">1</a></li>
<li><a href="https://davidblue.wtf/drafts/7BD0FE65-76C1-4164-A71F-CAEB43390EA2.html">100 Years - Life Simulator: https://itunes.apple.com/us/app/id1524755868</a></li>
<li><a href="https://davidblue.wtf/drafts/3CBDD2E5-6079-4B57-B831-369E3D684682.html">101 mph</a></li>
<li><a href="https://davidblue.wtf/drafts/CA01FD77-C056-4044-B306-2AD584C16748.html">12-13-2016</a></li>
<li><a href="https://davidblue.wtf/drafts/41EED59A-117E-421C-88DA-28D1159AB389.html">12-17-2021 Network Speed Test Data Export</a></li>
<li><a href="https://davidblue.wtf/drafts/133AF208-B748-47D2-A71B-3077583D2153.html">1Password 8 for iOS Beta</a></li>
<li><a href="https://davidblue.wtf/drafts/58670698-D610-4195-82AE-89BD142EEC27.html">2.6 Git Basics - Tagging</a></li>
<li><a href="https://davidblue.wtf/drafts/C4E91F15-95BC-4858-8922-86FE9F8FD303.html">2</a></li>
<li><a href="https://davidblue.wtf/drafts/FB25DDDB-03AD-4B73-B19A-713D62404E03.html">2019 Jeep Compass 4x4 Limited
</a></li>
<li><a href="https://davidblue.wtf/drafts/AEAE1363-2E50-4FB1-B9C6-0C55620A1EC5.html">2021 PERDITION Icon Set</a></li>
<li><a href="https://davidblue.wtf/drafts/A341BD68-D66B-455D-9051-48FFD6FEF80D.html">2021 Tweets</a></li>
<li><a href="https://davidblue.wtf/drafts/20CE6A31-3907-43E5-86BD-40499C6FE075.html">2022-01-17-19.08.08.982 - INFO: Hey, I'm the chief here. Bake him away, toys. [Chief Wiggum]</a></li>
<li><a href="https://davidblue.wtf/drafts/627F5628-D9CA-4927-819F-8F5735CC6EEF.html">2022-01-17-19.08.08.982 - INFO: Hey, I'm the chief here. Bake him away, toys. [Chief Wiggum]</a></li>
<li><a href="https://davidblue.wtf/drafts/C74BA62C-C8B5-4AAA-A541-BEEE3FB7FB28.html">3.5.1 Brace Expansion - Bash Reference Manual</a></li>
<li><a href="https://davidblue.wtf/drafts/2734FEC9-9F48-431C-9EAA-0C9D79A29D03.html">3</a></li>
<li><a href="https://davidblue.wtf/drafts/3034C95C-F12C-49D7-8B03-D2DC89B5D37B.html">346</a></li>
<li><a href="https://davidblue.wtf/drafts/5D3D62C3-F5B7-4980-9DBA-6E29C084EAD2.html">3910 Buttonwood Dr.</a></li>
<li><a href="https://davidblue.wtf/drafts/3F5439FD-8587-4F98-A6ED-598810B393D5.html">4</a></li>
<li><a href="https://davidblue.wtf/drafts/6FB07C7A-41B6-4E40-8942-D82707E514B2.html">5</a></li>
<li><a href="https://davidblue.wtf/drafts/91545B82-30C9-4EB2-BE7B-BC01F5286265.html">6-28-18undefined 04:06 Office Lens(1)</a></li>
<li><a href="https://davidblue.wtf/drafts/80F40208-15F0-4B84-9711-707E70D7D8A5.html">6</a></li>
<li><a href="https://davidblue.wtf/drafts/5D709EBE-3738-4436-B24D-3EF10914EC60.html">7</a></li>
<li><a href="https://davidblue.wtf/drafts/1B6B6C3E-12FA-44DF-8210-E8473D2A7272.html">776471405776</a></li>
<li><a href="https://davidblue.wtf/drafts/31EEE10C-3617-4845-9EF2-3DBCD76F0433.html">8991143</a></li>
<li><a href="https://davidblue.wtf/drafts/5D770DFC-9FFF-4D34-8CF7-481B2D725114.html">A Bunch of New Drafts Errors in Dev Beta 5</a></li>
<li><a href="https://davidblue.wtf/drafts/2E9B80C8-4484-486D-9EE3-00D761FFE1BD.html">A Calm Summer, 2022 — Write.as Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/5FEC20EA-ADBB-4873-8A50-582D265F8FD7.html">A demonstration of the highly-considered onboarding feature coming in the official Mastodon app for iOS.</a></li>
<li><a href="https://davidblue.wtf/drafts/F3E54744-0952-4836-BF04-2C7A8520D47D.html">A Nauseous Plea for iterative terminology</a></li>
<li><a href="https://davidblue.wtf/drafts/E0E5FF5B-381F-4913-8FA0-33762592C879.html">A Note on What’s Coming in iOS 15.2</a></li>
<li><a href="https://davidblue.wtf/drafts/F955E308-1DCB-48D0-9CCA-D7E18503E11C.html">A P P S</a></li>
<li><a href="https://davidblue.wtf/drafts/2442A4E3-5815-40AC-9D99-0A3BAE390BFA.html">A simple toggle feature | Discuss Writeas</a></li>
<li><a href="https://davidblue.wtf/drafts/D70D7323-83C5-4DE6-AF0F-07995B49A7C7.html">A Symbol of Excess - A less-than-walled garden.mp3 Transcript</a></li>
<li><a href="https://davidblue.wtf/drafts/D4F73327-BEAF-4883-9BBD-49728A7F2A7D.html">a-Shell Commands</a></li>
<li><a href="https://davidblue.wtf/drafts/F97F0DB5-CDB7-4C0A-B871-6E054BB59BE8.html">a-Shell Native Commands</a></li>
<li><a href="https://davidblue.wtf/drafts/278DA94D-63CA-4F9D-A68E-45AF990FBBBC.html">a-Shell README</a></li>
<li><a href="https://davidblue.wtf/drafts/007993BF-CB9F-4FAB-8FB1-C7D378BBF18D.html">a</a></li>
<li><a href="https://davidblue.wtf/drafts/3A5D7699-3992-4029-AFDA-78487BC7AA35.html">AAAAHGZ0eXBNNEEgAAAAAE00QSBtcDQyaXNvbQAABWFtb292AAAAbG12aGQAAAAA3Ij+NtyI/jYA
</a></li>
<li><a href="https://davidblue.wtf/drafts/1F0A8F2F-FF24-4972-BBDE-9A95B3B2B97C.html">About</a></li>
<li><a href="https://davidblue.wtf/drafts/B3E7D5BF-466E-4A1B-A06F-CF4AA4FA19B1.html">About</a></li>
<li><a href="https://davidblue.wtf/drafts/7699BC61-63C0-4360-A720-C4BEE5EAB8EA.html">abstergify</a></li>
<li><a href="https://davidblue.wtf/drafts/B300F68B-0A54-4C40-AAB5-1E4F9CF5B26C.html">abstruse</a></li>
<li><a href="https://davidblue.wtf/drafts/C2679472-03FE-4BFF-9BF4-A4F66A954C95.html">abyssal</a></li>
<li><a href="https://davidblue.wtf/drafts/1668F230-C545-4ACD-B662-FBEC4DAA778C.html">Accessibility Default (All Off) Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/F0B257BA-C6A5-4661-9D32-E2A8B62B8108.html">accost</a></li>
<li><a href="https://davidblue.wtf/drafts/D8E4BC82-C978-491C-B9B4-0827C4512ECD.html">accoy</a></li>
<li><a href="https://davidblue.wtf/drafts/1B2716D2-8C89-4745-A943-CC86C9B3ED91.html">𝔄ℭℭ𝔘ℜ𝔖𝔈𝔇 𝔒𝔅𝔍𝔈ℭ𝔗 iPad Pro Magic Keyboard Social Post</a></li>
<li><a href="https://davidblue.wtf/drafts/893DFEB2-02A9-4993-9A76-10F33F6F4EDF.html">acdsafds</a></li>
<li><a href="https://davidblue.wtf/drafts/3DB9B5E2-45FA-41FC-AB60-1AEAD7E516F8.html">Achieving Indexed File Share with iCloud Drive</a></li>
<li><a href="https://davidblue.wtf/drafts/0B611936-DEB8-4317-A15F-DCFA6F204413.html">acidulous</a></li>
<li><a href="https://davidblue.wtf/drafts/514954C9-3F18-4AA3-9C0C-CEDF51A23F47.html">acquiesce</a></li>
<li><a href="https://davidblue.wtf/drafts/56018F10-2667-45C6-BCD4-FE37FA02F7F2.html">ACQUIRE</a></li>
<li><a href="https://davidblue.wtf/drafts/4E27CC34-1D09-4359-A9EA-83A100D458D3.html">acquisitive</a></li>
<li><a href="https://davidblue.wtf/drafts/8B6C0F6D-E3C2-4249-99FA-582C801AE463.html">acrimony</a></li>
<li><a href="https://davidblue.wtf/drafts/997D193E-6011-422B-8121-A4F54DB6C593.html">Action Directory Shortcut Documentation</a></li>
<li><a href="https://davidblue.wtf/drafts/37C67B90-10A3-4EE7-A49B-1EFE972A5793.html">Action Groups</a></li>
<li><a href="https://davidblue.wtf/drafts/029ADCC9-33C1-4A2D-8FD9-3F738C939212.html">Action to open random draft</a></li>
<li><a href="https://davidblue.wtf/drafts/8E809D31-7640-4556-9EDE-00B0A813789F.html">Action to remove brackets and content between them</a></li>
<li><a href="https://davidblue.wtf/drafts/74B0F658-4CA0-44DC-BF8B-E769B1F758C6.html">action, command</a></li>
<li><a href="https://davidblue.wtf/drafts/95097280-D665-4E28-A184-96127541110A.html">Action, Command</a></li>
<li><a href="https://davidblue.wtf/drafts/E16FFFB6-85C2-4C7F-9439-649272A351E2.html">Action, Command</a></li>
<li><a href="https://davidblue.wtf/drafts/4313C2DA-D224-45AE-9994-A19DB5F1DCF4.html">Action,Command</a></li>
<li><a href="https://davidblue.wtf/drafts/FE01D76C-6074-42A8-8A08-BD04D7AF405C.html">Actions Index (Minus TAD)</a></li>
<li><a href="https://davidblue.wtf/drafts/07851DAD-4E66-4298-8026-5F22DA52E23A.html">Actions Template %|</a></li>
<li><a href="https://davidblue.wtf/drafts/0CC81F56-2CA6-49A6-A6E1-806AC48EF7F7.html">Ad-Free Articles</a></li>
<li><a href="https://davidblue.wtf/drafts/C54B7D48-643A-4DDE-A3CF-D07EEE2F9AE7.html">Adam Overholtzer</a></li>
<li><a href="https://davidblue.wtf/drafts/6AFE25C8-D49B-415D-9373-4ECD3612B8A1.html">Add to Letterboxd Watchlist Action</a></li>
<li><a href="https://davidblue.wtf/drafts/435711C3-7314-4818-9581-6B079DE224D1.html">aegis</a></li>
<li><a href="https://davidblue.wtf/drafts/9B08B4C4-E245-4999-96FF-EBFC6543696B.html">aeriform</a></li>
<li><a href="https://davidblue.wtf/drafts/68E0D288-F6BD-426B-9014-2026F6B92762.html">Aesthetic: Absolving Democratization</a></li>
<li><a href="https://davidblue.wtf/drafts/F8CB19FB-6A06-49C1-882B-A0AC5B355A63.html">after having grown up on a midwestern farm, I had never <em>really</em> listened to black music until my friends exposed me to it at <sub>15</sub>. I like to say that I didn’t know what music was for until I first heard black music.</a></li>
<li><a href="https://davidblue.wtf/drafts/541AA9C1-630C-4508-94DC-043ACF10A916.html">Against All Strategic Social</a></li>
<li><a href="https://davidblue.wtf/drafts/E33DD0DF-7BE5-4EF2-ACE8-3CAE8F39A969.html">Against All Strategic Social</a></li>
<li><a href="https://davidblue.wtf/drafts/DFB024B2-0BDA-40ED-B66D-3F51FA46CE4B.html">Agiletortoise - Drafts Directory</a></li>
<li><a href="https://davidblue.wtf/drafts/E168130E-53ED-4BB7-B9A6-A168DEE16C57.html">aight ima toss you another semi ranty request to read later cuz I can't think about anything else I guess.</a></li>
<li><a href="https://davidblue.wtf/drafts/99C86F10-FC16-4BCB-9DCA-F71E37DC3DE5.html">AirMail Reading</a></li>
<li><a href="https://davidblue.wtf/drafts/B4766A62-D515-42A0-9F1A-7FA1AD863525.html">alacrity</a></li>
<li><a href="https://davidblue.wtf/drafts/E7675CFE-097E-462D-897A-E0B10B8E0427.html">alate</a></li>
<li><a href="https://davidblue.wtf/drafts/7E5E7777-1437-4589-A841-8E680A9891B4.html">Alex Clare-Too Close</a></li>
<li><a href="https://davidblue.wtf/drafts/419BAC04-A889-4153-9659-71B005D9A0F7.html">Alexa, Maniac</a></li>
<li><a href="https://davidblue.wtf/drafts/DD3C3C5E-DFF2-4298-8AC2-58544B7F28D4.html">Alexis Message Log</a></li>
<li><a href="https://davidblue.wtf/drafts/4FC395AC-ACC4-4AF0-A55D-3E9589856276.html">Alexis Queue</a></li>
<li><a href="https://davidblue.wtf/drafts/6A811D11-04A2-49B0-83BA-AC4ABCB069E9.html">alic/sO thomys</a></li>
<li><a href="https://davidblue.wtf/drafts/376880A7-678B-40F4-A5A3-3EFF60A25DFE.html">All @blue RoutineHub Links</a></li>
<li><a href="https://davidblue.wtf/drafts/53B9D898-21BB-40A2-84A6-0A7F342CDA40.html">all I have to say is...</a></li>
<li><a href="https://davidblue.wtf/drafts/043A2B5B-EEDB-4266-AA1A-EC7EED9796A2.html">All Template Tags</a></li>
<li><a href="https://davidblue.wtf/drafts/95CA98AA-ADEF-4627-BFDF-7C3BC72F888C.html">All Template Tags</a></li>
<li><a href="https://davidblue.wtf/drafts/29C28F2E-FB04-49DB-BD23-0C42588014BA.html">allegorically</a></li>
<li><a href="https://davidblue.wtf/drafts/DE5D383F-37A6-4E9C-8318-9AB73AF11AE3.html">allegorically</a></li>
<li><a href="https://davidblue.wtf/drafts/9F5DA336-1CA2-4CAA-930C-43D04CDF31E5.html">alright so let me just acknowledge the spectrum of arguments on this issue real quick... I hear you, mmkay, BUT... yes, there would be nothing better than if good ole Jeff could just write a $100 billion check or something and just "end world hunger." https://www.dailydot.com/unclick/jeff-bezos-world-hunger-twitter-account/</a></li>
<li><a href="https://davidblue.wtf/drafts/FCF11975-8935-4851-B865-E8D961E76C6A.html">also worth considering: uploading to youtube even if you are audio-only. I could’ve sworn youtube briefly allowed users to just straight upload audio files, but my YouTuber friend just corrected me on Twitter (apparently not) so I might be delirious.</a></li>
<li><a href="https://davidblue.wtf/drafts/4DB4A259-C925-4A11-98E6-9942EA3FBBFA.html">Alt text is an essential part of web accessibility.</a></li>
<li><a href="https://davidblue.wtf/drafts/766CD93A-4DCA-4212-80E4-DCAD04C6D523.html">Amanda (iPad Pro) Geekbench</a></li>
<li><a href="https://davidblue.wtf/drafts/8720321A-0F51-461D-879A-5E76F084AB68.html">Amanda Battery Log</a></li>
<li><a href="https://davidblue.wtf/drafts/2AA827F2-3707-4C0A-A4E2-9A766EE7026C.html">Amanda Hardware Specifications & Information</a></li>
<li><a href="https://davidblue.wtf/drafts/BF081909-563A-4412-8C44-F71B59F45D07.html">Ameba Labs (iOS Developers)</a></li>
<li><a href="https://davidblue.wtf/drafts/FC164F83-9A02-4DF7-A129-48F7E87087FC.html">amorphous</a></li>
<li><a href="https://davidblue.wtf/drafts/91DD813F-737E-4FD8-86D2-0DFEAFFA85AD.html">An Index of Methods to save Web Page Content on iOS (2022)</a></li>
<li><a href="https://davidblue.wtf/drafts/C5445BDF-37E3-4B9E-BF37-33D052AEC6FF.html">An Index of Methods to save Web Page Content on iOS (2022)</a></li>
<li><a href="https://davidblue.wtf/drafts/E37FEC56-7D23-4A39-A9AF-6C87F4E154AC.html">anchorite</a></li>
<li><a href="https://davidblue.wtf/drafts/E6B46753-1C00-4BF0-A457-FBA15A22B288.html">and here I thought - having seen literally zero toxicity in the Call of Duty Phone Game - that all the mechanisms of hatred/irony in the fringe groups of <em>my</em> gaming youth, some 15 years ago, were gone entirely. https://twitter.com/cecianasta/status/1410269506560270340</a></li>
<li><a href="https://davidblue.wtf/drafts/DEE964F1-8433-44DF-AF40-DDE61147E7AD.html">androgyny</a></li>
<li><a href="https://davidblue.wtf/drafts/2E18D314-8022-4C90-ADE0-E34B5451B7E5.html">Anecdote Template</a></li>
<li><a href="https://davidblue.wtf/drafts/B6856A8E-929E-4CE4-A7D4-52170243F23C.html">Anecdote Template</a></li>
<li><a href="https://davidblue.wtf/drafts/678B20C1-1D04-49C8-B29F-D273E1899CE1.html">Anecdote: The Unknowables of Modern Gasoline Dispensation</a></li>
<li><a href="https://davidblue.wtf/drafts/B166FE08-A3D8-4FB2-8949-5D6D9EFD2494.html">anhedonia</a></li>
<li><a href="https://davidblue.wtf/drafts/7D351CE8-28C1-43BC-AE86-9AD6B473B3BC.html">Annotation - Regarding Twitter Blue</a></li>
<li><a href="https://davidblue.wtf/drafts/37E312DF-898B-46B1-898B-69A7DD0BC2E2.html">annul</a></li>
<li><a href="https://davidblue.wtf/drafts/2B9534BE-DADB-4140-B90E-222B17976958.html">Another Update on Writas Emails</a></li>
<li><a href="https://davidblue.wtf/drafts/8FC45E73-A8C2-4C54-96CB-72B414E3E815.html">antagonistic</a></li>
<li><a href="https://davidblue.wtf/drafts/C62E5DB8-E7F1-484D-B0B6-A4E2511A6CEE.html">API Tester</a></li>
<li><a href="https://davidblue.wtf/drafts/9A903B38-FC46-4ECE-B997-90970D789020.html">apodicticity</a></li>
<li><a href="https://davidblue.wtf/drafts/71BE1721-7F80-4A87-9FAC-E12A7234AE18.html">apogee</a></li>
<li><a href="https://davidblue.wtf/drafts/CCD222B5-A6B1-4A6E-95E4-01C00C8D7691.html">Apologies if this question has been asked here a billion times but…</a></li>
<li><a href="https://davidblue.wtf/drafts/865C62F2-3C6F-40C4-A07D-EF4A65572A1A.html">App Notes: The State of Mastodon Clients on iOS</a></li>
<li><a href="https://davidblue.wtf/drafts/955F55BA-F62D-4738-AB5E-3BC29F6C93F9.html">App Notes: The State of Mastodon Clients on iOS</a></li>
<li><a href="https://davidblue.wtf/drafts/49576A89-C21D-49A5-BD07-25803768D094.html">App Store ⇨ Market Tools Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/269CF0B7-74F8-4C12-8727-EA4968255DB0.html">App Store Review Day</a></li>
<li><a href="https://davidblue.wtf/drafts/461912F9-A3F0-4EA9-9397-A910FDF349E2.html">App Store Review Day</a></li>
<li><a href="https://davidblue.wtf/drafts/00CB3B9B-786A-46DB-8E1D-8C40543968EC.html">App Store Review Template</a></li>
<li><a href="https://davidblue.wtf/drafts/C8F4C80C-C4C4-455B-A2CD-D151B0D33296.html">App Store Reviews Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/0D2A7EEA-143D-4546-94CB-8E153084A5F4.html">App Store Stories Raindrop Collection</a></li>
<li><a href="https://davidblue.wtf/drafts/CC81D273-6E13-40CC-9F14-7C411B728453.html">App Wish List</a></li>
<li><a href="https://davidblue.wtf/drafts/05BAEC3B-2EC4-4BFF-88E2-3A7A490C1456.html">Append to 7th Tot Dot | Drafts Action</a></li>
<li><a href="https://davidblue.wtf/drafts/4C79E250-773B-4937-B003-22F57F1DEE12.html">Append to 7th Tot Dot | Drafts Action</a></li>
<li><a href="https://davidblue.wtf/drafts/699D48F4-A299-4EC6-8813-7C90DE5962EB.html">Apple and Streaming Music in 2021 (Notes)</a></li>
<li><a href="https://davidblue.wtf/drafts/5723D029-7D3E-42BB-8DE1-BA2D1696036D.html">Apple announces Self Service Repair</a></li>
<li><a href="https://davidblue.wtf/drafts/6853BE0D-4338-49CD-919C-DF3CEF6654DC.html">Apple Design Resources Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/50C5B79E-367C-4998-A6C9-4A12E8F5918C.html">Apple Design Resources</a></li>
<li><a href="https://davidblue.wtf/drafts/8C66EB08-F52B-471C-9456-D7778498ABE3.html">Apple Developer Summer 2021 Newsletter #1</a></li>
<li><a href="https://davidblue.wtf/drafts/D5638AF5-017D-47CB-9B1F-C444EFB46EEF.html">Apple Feedback Template</a></li>
<li><a href="https://davidblue.wtf/drafts/73DE1954-A9AA-4EAE-9212-936CD8F85B11.html">Apple introduces Apple Business Essentials</a></li>
<li><a href="https://davidblue.wtf/drafts/BECDFFD5-CDBF-4DFD-907F-5333B075D936.html">Apple News ⇨ Safari</a></li>
<li><a href="https://davidblue.wtf/drafts/65E71ABA-8739-4ACF-999D-20B799F728D6.html">Apple News for iOS Keyboard Shortcuts</a></li>
<li><a href="https://davidblue.wtf/drafts/151E6D62-7016-4585-B6DD-68AE44E58E86.html">Apple News+ Publication Index</a></li>
<li><a href="https://davidblue.wtf/drafts/3A18B85E-2AA2-4738-B400-14E8F72DA7D0.html">Apple Notes Index</a></li>
<li><a href="https://davidblue.wtf/drafts/35E3D560-E441-4964-9817-1377175B5376.html">Apple Notes, Word Processor of The Scorned.mp3 Transcript</a></li>
<li><a href="https://davidblue.wtf/drafts/C2166752-61DC-446A-B833-96D156B75C00.html">Apple Rag Review</a></li>
<li><a href="https://davidblue.wtf/drafts/3253CB8B-B1A4-47CB-8C53-3E4D1D6C849A.html">Apple services enrich peoples’ lives throughout the year</a></li>
<li><a href="https://davidblue.wtf/drafts/18D5A27C-295B-40C2-A2D1-896754EC7074.html">Apple Watch. iOS 10 From Ignorance</a></li>
<li><a href="https://davidblue.wtf/drafts/58DB1C16-57D9-481A-B2F2-546031FC2A4C.html">Apple’s C.E.O. Is Making Very Different Choices From Mark Zuckerberg (Transcript)</a></li>
<li><a href="https://davidblue.wtf/drafts/4359BD63-F4E6-433A-B202-EA5851A4B85D.html">Apple’s C.E.O. Is Making Very Different Choices From Mark Zuckerberg</a></li>
<li><a href="https://davidblue.wtf/drafts/7DAEC200-CAED-4C7B-95F3-AAF843FC190F.html">AppleScript | Drafts Script Reference</a></li>
<li><a href="https://davidblue.wtf/drafts/F2020CE1-4ACA-434B-8F0E-F04D198FC50E.html">applescript Repository</a></li>
<li><a href="https://davidblue.wtf/drafts/C5159EAE-2260-4A63-A417-1AF03E81979B.html">apposite</a></li>
<li><a href="https://davidblue.wtf/drafts/7126A4EC-AB64-48AE-A939-D494B9C7365B.html">Appreciating Overtired</a></li>
<li><a href="https://davidblue.wtf/drafts/DC157778-1F89-4774-8500-9DCC334405AD.html">AppWish App Store Review</a></li>
<li><a href="https://davidblue.wtf/drafts/210AD78F-B883-47FE-9002-A74DABECF6AF.html">AppWish exported apps:</a></li>
<li><a href="https://davidblue.wtf/drafts/C6CB1A7D-0183-4F3A-A1C3-C91BA26BA2A7.html">AppWish exported apps:</a></li>
<li><a href="https://davidblue.wtf/drafts/7179B627-2CAC-4527-9281-8294D250A685.html">AppWish</a></li>
<li><a href="https://davidblue.wtf/drafts/AAE1D3A4-32A0-4117-AFD4-024DA70B2020.html">aquiline</a></li>
<li><a href="https://davidblue.wtf/drafts/713F38D5-BE8C-4252-B8EE-CBA298ACF50B.html">archipelago</a></li>
<li><a href="https://davidblue.wtf/drafts/78E7E376-72FB-41F5-A4AB-167E86B839D6.html">Archive.org Raindrop Collection</a></li>
<li><a href="https://davidblue.wtf/drafts/F04AB5D5-5828-4821-A421-3121777A9F86.html">Archiving a (WordPress) website with wget</a></li>
<li><a href="https://davidblue.wtf/drafts/1D4121A0-7FF4-48FC-8229-02524A99D553.html">Are y'all talking about embedding image <em>files</em> within an email? As far as I understand email, technically, that sounds like it would be a nightmare.</a></li>
<li><a href="https://davidblue.wtf/drafts/7AE554E4-FC5C-45C5-9698-5EB7F334FB44.html">Artemis can’t stand my static. I must be moving, and it must not be petting this bluetooth keyboard. I don’t think she feels anything for me as a being, particularly - I think my hands are all that truly matters to her. But should this be a problem? Certainly much less so than depending on the habit of beginning sentences with “but.”</a></li>
<li><a href="https://davidblue.wtf/drafts/94B6FBA1-7F26-4213-8216-D79007EFA699.html">Artvee.com</a></li>
<li><a href="https://davidblue.wtf/drafts/10AC57C2-3526-435C-A8CD-E8BCF230CF3C.html">as a former auto journo & also longtime iJustine fan, I’d just like to express my full support & enthusiasm about automakers finally realizing they should have been treating y'all tech youtubers as real tech journos this whole time. I know there's some bitterness about it from legacy auto media (which I understand but lament,) but it's very important for all of us to take this opportunity to <em>discuss how we can work together</em> toward a better future for the whole industry spectrum.</a></li>
<li><a href="https://davidblue.wtf/drafts/D958D73A-1D8A-491F-80F1-4BAC9C4F0AF8.html">Ashley Carman DM Regarding Tinder Photo Tip</a></li>
<li><a href="https://davidblue.wtf/drafts/EDC08AC1-8EF7-4816-A501-3B6D09148513.html">ask <a href="drafts://open?uuid=7AC9D388-A91B-4ED1-B256-71C0304C81E3">James Rath</a> to "forward on" ExtraKeys Request</a></li>
<li><a href="https://davidblue.wtf/drafts/930951B6-BF5F-41C2-9988-0D52F43A767C.html">Askeptical spectacle in the day-to-day typhoon of Faith’s modern enterprise.</a></li>
<li><a href="https://davidblue.wtf/drafts/5086A314-FEAB-45EA-AE55-28A2FC2D294E.html">Assorted Birthday Configurables</a></li>
<li><a href="https://davidblue.wtf/drafts/CDCA857E-A59A-44BF-974B-D8CA823CBDF2.html">Assorted Twitter Spaces Feedback - End User</a></li>
<li><a href="https://davidblue.wtf/drafts/AC162701-9C53-449E-82AF-162581EB332C.html">Assorted Unlisted David Blue Configurables</a></li>
<li><a href="https://davidblue.wtf/drafts/AD0B9B98-2A67-466A-8E30-9F6377980CC2.html">assuasive</a></li>
<li><a href="https://davidblue.wtf/drafts/2F5F1BDC-DE21-46B2-BD20-ECED52476F2A.html">At this point, I’m surprised Apple hasn’t just configured iOS to respond to audio playback identically to MacOS - that is, allowing multiple audio sources to play at once without interrupting one another. ::I would like to know how Android handles this, actually.:: With the possible exception of opening a camera application (or not really, actually,) there is no reason to interrupt Apple Music, Bandcamp, Soundcloud, or a simple audio stream in a browser - <em>especially</em> when the device is unlocked and in use.</a></li>
<li><a href="https://davidblue.wtf/drafts/756DAAC5-BD65-4402-87D7-66A673032A98.html">At this point, I’m surprised Apple hasn’t just configured iOS to respond to audio playback identically to MacOS - that is, allowing multiple audio sources to play at once without interrupting one another. ::I would like to know how Android handles this, actually.:: With the possible exception of opening a camera application (or not really, actually,) there is no reason to interrupt Apple Music, Bandcamp, Soundcloud, or a simple audio stream in a browser - <em>especially</em> when the device is unlocked and in use.</a></li>
<li><a href="https://davidblue.wtf/drafts/4F4F0F3A-A826-45FC-8B9B-6B83CA94C6BF.html">atavism</a></li>
<li><a href="https://davidblue.wtf/drafts/32785CDA-4C6B-4AB5-B07A-E718941758C7.html">atrabilious</a></li>
<li><a href="https://davidblue.wtf/drafts/A9A8E5BA-A7BB-4DDB-A62F-018A84C93B8B.html">Attach to Process Write.as Theme</a></li>
<li><a href="https://davidblue.wtf/drafts/7DDB9A8D-F571-425C-8096-969B2AB5FC0E.html">attrition</a></li>
<li><a href="https://davidblue.wtf/drafts/6C965F5D-21A9-448F-8E64-C01037AEADA9.html">Audio file ⇨ Base64 Text Shortcut Documentation</a></li>
<li><a href="https://davidblue.wtf/drafts/053A02C7-D314-46B2-B1F7-CFD2BDB65E7D.html">Audio File Example Siri Shortcut Documentation</a></li>
<li><a href="https://davidblue.wtf/drafts/CB4F08DB-F65F-41B7-8CA8-CB12DE65CEBB.html">Audio Trimmer App Store Review</a></li>
<li><a href="https://davidblue.wtf/drafts/B5833D7F-5E29-4A5A-B13D-5F839A0879AA.html">Austin's Webs Site Archive</a></li>
<li><a href="https://davidblue.wtf/drafts/78B07BBF-5040-4D98-865E-9DF9BF29A06B.html">Authenticate with Write.as API Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/CD1AA128-FB80-4939-ABA3-1F8A5399891B.html">Author’s Note - Feebles</a></li>
<li><a href="https://davidblue.wtf/drafts/BF9B883A-FECC-4521-B692-58621F0B30F3.html">Auto - Twitter List</a></li>
<li><a href="https://davidblue.wtf/drafts/A5059CF4-3DCB-4150-86D6-0B3731D8653C.html">Autocompletes</a></li>
<li><a href="https://davidblue.wtf/drafts/ED5DB471-693D-4C8D-B9B9-03FB2BC42D63.html">Automating Write.as Posts on macOS with Siri Shortcuts calling the Writeas CLI</a></li>
<li><a href="https://davidblue.wtf/drafts/DC7A1B0D-1F71-445F-8813-3EF9F0BC3967.html">Automating Write.as Posts on macOS</a></li>
<li><a href="https://davidblue.wtf/drafts/3B21F879-CFC4-40AA-AB5D-F75E274E406A.html">Automation April Winning Shortcuts</a></li>
<li><a href="https://davidblue.wtf/drafts/114E449F-7518-4158-87EB-C817F633FBF2.html">Automation April</a></li>
<li><a href="https://davidblue.wtf/drafts/CCCDAF2C-17B2-41B0-8697-B9EB49D851EE.html">🅐🅤🅣🅞🅜🅐🅣🅘🅞🅝</a></li>
<li><a href="https://davidblue.wtf/drafts/F4B309B9-5932-4318-A98A-D7E6FF6CAADC.html">automation</a></li>
<li><a href="https://davidblue.wtf/drafts/0AE6460A-F762-4358-AF4A-06F6C2AE33A9.html">autotelic</a></li>
<li><a href="https://davidblue.wtf/drafts/1CBB9CB6-6D32-47B4-9874-957240AD39FA.html">autotelic</a></li>
<li><a href="https://davidblue.wtf/drafts/227202F5-CF3C-4B53-8043-32E2C32D4F93.html">autotelic</a></li>
<li><a href="https://davidblue.wtf/drafts/869A1061-316C-4B55-B3F3-EC4278B490FE.html">autotelic</a></li>
<li><a href="https://davidblue.wtf/drafts/0C3B49DC-218F-4494-B9E0-E669F2EF2E84.html">Aviary 2 Review</a></li>
<li><a href="https://davidblue.wtf/drafts/2C7F7152-E7BD-41B8-AA07-E64B5955FCD3.html">Awesome Drafts integration! But also, a heads up!</a></li>
<li><a href="https://davidblue.wtf/drafts/7C99BCDE-37FA-4716-BAD0-FC0C7E99B5F3.html">awesome-macOS</a></li>
<li><a href="https://davidblue.wtf/drafts/A59DAB8D-0379-427B-A9F6-8D4E3AC6674D.html">axiomatic</a></li>
<li><a href="https://davidblue.wtf/drafts/58D38008-6997-4487-AED8-D505F6329BAE.html">Baby crying for deaf parent - r/Shortcuts</a></li>
<li><a href="https://davidblue.wtf/drafts/ED486A78-B6CE-4760-97CE-C84A200D2950.html">Back Tap Physical Demonstration</a></li>
<li><a href="https://davidblue.wtf/drafts/8C065207-C919-44B6-AAE7-959E3FD4276B.html">bajulate</a></li>
<li><a href="https://davidblue.wtf/drafts/217FDCBA-BD6D-41CC-9B8D-E59D76EF0973.html">bamboozle</a></li>
<li><a href="https://davidblue.wtf/drafts/81F4C51C-B88D-431B-9579-A5EDEEF95040.html">Bandcamp Bound Apple Books</a></li>
<li><a href="https://davidblue.wtf/drafts/F2E58819-60F0-4824-8CC4-232A829764B9.html">Bandcamp, Streaming's Secret Savior
</a></li>
<li><a href="https://davidblue.wtf/drafts/A1B709F9-99C0-4A54-9F62-03179D4D9B51.html">Bandcamp: Streaming's Secret Savior</a></li>
<li><a href="https://davidblue.wtf/drafts/DDCA42F5-BE83-43CB-99CA-7D527CAF926D.html">Bandcamp: Streaming's Secret Savior</a></li>
<li><a href="https://davidblue.wtf/drafts/02463E3B-15DB-46A7-9FF1-52DEEA49D086.html">bandylan</a></li>
<li><a href="https://davidblue.wtf/drafts/A31427A5-9D56-458D-AE51-9CE75BCF5B2E.html">Bare Bones Software | BBEdit Expert Preferences</a></li>
<li><a href="https://davidblue.wtf/drafts/07B76028-8E7D-47D7-8B48-8CFB13DAC87B.html">Basic Strip Metadata Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/03AEAC14-EB74-44F0-8010-9844B15E5DE3.html">Batch Shortcuts Signer (iOS) Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/5D4D9120-69EC-4449-AB7F-35C0D97BBA7D.html">Batch Shortcuts Signer (macOS) Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/E2246611-FC0D-4712-B01D-5952AD51533E.html">Bathurst 2022</a></li>
<li><a href="https://davidblue.wtf/drafts/34FB3FDA-EC34-4C21-B2C3-A3C595358566.html">bathyscaphe</a></li>
<li><a href="https://davidblue.wtf/drafts/ED3C2FD6-DC11-406B-BFEC-C11E7DCB3C68.html">bathysphere</a></li>
<li><a href="https://davidblue.wtf/drafts/ECF8939E-5DC1-46D9-B158-7A4435BBA68D.html">bauble</a></li>
<li><a href="https://davidblue.wtf/drafts/B18F25A6-E272-4E59-9848-82D8F6801AF7.html">bbb</a></li>
<li><a href="https://davidblue.wtf/drafts/816D6041-B902-4E3D-9441-39D77C3748BC.html">BBEdit Learning</a></li>
<li><a href="https://davidblue.wtf/drafts/7E091FCE-DD45-476B-AFD2-A55173D484F9.html">BDSM Test</a></li>
<li><a href="https://davidblue.wtf/drafts/74676E01-5110-42F8-A0C8-260307D6F548.html">Bear App Configuration</a></li>
<li><a href="https://davidblue.wtf/drafts/AEF5E05E-2B80-4FCA-ADDB-55F2AFB555E6.html">Bear for iOS Keyboard Shortcuts</a></li>
<li><a href="https://davidblue.wtf/drafts/61056CDD-19F4-4B25-BA31-B2128D865B01.html">Bear Orientation Issue</a></li>
<li><a href="https://davidblue.wtf/drafts/B9429776-4292-449B-AC99-9D2A20540DAC.html">Bear Press Kit</a></li>
<li><a href="https://davidblue.wtf/drafts/46FE7452-9AA5-4479-A868-AAD7168A7BBF.html">bearing</a></li>
<li><a href="https://davidblue.wtf/drafts/26986D62-34CB-4E28-96F0-2DD42B4500EA.html">BearSys Marked 2 Theme</a></li>
<li><a href="https://davidblue.wtf/drafts/9CC44BAE-9B47-4B39-BFA5-F65ABB87520A.html">bearsys Marked 2 Theme</a></li>
<li><a href="https://davidblue.wtf/drafts/2A7D82B2-0D81-40CF-9F62-4990F05721B7.html">beatitude</a></li>
<li><a href="https://davidblue.wtf/drafts/C3A69CD8-39ED-42C9-9EBF-7FE06A0AED15.html">Beep</a></li>
<li><a href="https://davidblue.wtf/drafts/3791ECDE-D0F3-46B2-8A8E-5F60D88AFE19.html">before I try to explain further about the statement, though... idk if you've ever been exposed to the girl side of local Tinder, but it is just saturated with photos of girls like... SUPER smiling. the sort that almost immediately appears forced/insincere at best and (maybe I'm just dramatic) at worst ... fucking maniacal.</a></li>
<li><a href="https://davidblue.wtf/drafts/ADC619BC-71E6-48D2-A73F-3DF8ABF16DDE.html">bemoan</a></li>
<li><a href="https://davidblue.wtf/drafts/AD1690CF-26DD-40AE-8DA9-1A9069224E47.html">bemuse</a></li>
<li><a href="https://davidblue.wtf/drafts/ECCDC20F-E733-463F-87C6-C6DF154A245C.html">Benoît Bourdon</a></li>
<li><a href="https://davidblue.wtf/drafts/84CD97CC-1066-433F-A654-5163B92DDFE1.html">Best of 2021 (Odesli Links Table)</a></li>
<li><a href="https://davidblue.wtf/drafts/DDA36ED8-1624-4620-A921-E5959F5882CC.html">Best of 2021 (Odesli Links)</a></li>
<li><a href="https://davidblue.wtf/drafts/B5890BB9-3B64-4F9C-9F55-81A6287BC679.html">Best of 2021 (Playlist)</a></li>
<li><a href="https://davidblue.wtf/drafts/08FB093B-362A-4361-B177-537F67873308.html">Best of 2021 Apple Music Playlist</a></li>
<li><a href="https://davidblue.wtf/drafts/8602E1E5-7597-412B-82F2-78CDBDEE9008.html">Best of RoutineHub</a></li>
<li><a href="https://davidblue.wtf/drafts/08F91DD8-B3F3-4774-8BFC-E6D423DACF49.html">bevy</a></li>
<li><a href="https://davidblue.wtf/drafts/FD4DA622-352F-4B3C-94B7-5FDDB1D6A9EB.html">Bible API Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/97B729BF-E7ED-4944-BAC9-AD3867223E63.html">BIG WORDLE 𝘗𝘙𝘖 Siri Shortcut Documentation</a></li>
<li><a href="https://davidblue.wtf/drafts/5D32542D-D9BB-429E-BECC-FA244B7DE081.html">BIG WORDLE Siri Shortcut Documentation</a></li>
<li><a href="https://davidblue.wtf/drafts/D036185B-50B7-4BAF-8F7F-6DBF83ABC1B9.html">Billie Eilish: The World's A Little Blurry</a></li>
<li><a href="https://davidblue.wtf/drafts/9BABD20E-F32C-40F5-9375-2D35DF973B79.html">Birthday Actions Updates</a></li>
<li><a href="https://davidblue.wtf/drafts/F80D90A4-2AAB-4AAF-A69A-3B99BA6C9875.html">bit</a></li>
<li><a href="https://davidblue.wtf/drafts/176A79AE-BE6C-4192-B0EE-8623CB9C5617.html">bitch</a></li>
<li><a href="https://davidblue.wtf/drafts/CCE4D003-E6DE-465C-82D6-C52E08021F32.html">bitch</a></li>
<li><a href="https://davidblue.wtf/drafts/80504995-9ADC-4465-971B-D3B85329E2AF.html">BKHDZBZ7U5</a></li>
<li><a href="https://davidblue.wtf/drafts/80864DA6-24EE-4431-94CC-769A749D0819.html">BKHDZBZ7U5</a></li>
<li><a href="https://davidblue.wtf/drafts/C92AA672-6D09-4BCF-A094-6EB32D809946.html">Black & Yellow Drafts Theme</a></li>
<li><a href="https://davidblue.wtf/drafts/CD4D3460-8859-4476-94D1-83118CB538C6.html">Black Venice</a></li>
<li><a href="https://davidblue.wtf/drafts/BF3739DD-D91B-4BF2-84F5-30B08501F69E.html">Blessed Web Utilities Collection</a></li>
<li><a href="https://davidblue.wtf/drafts/65A088EB-4362-49FD-94B6-1E2E87237D3B.html">Blimp's Burden Apple Books</a></li>
<li><a href="https://davidblue.wtf/drafts/D9DFE069-9927-494A-91BB-C9497B2BC82E.html">blimpism</a></li>
<li><a href="https://davidblue.wtf/drafts/9160D7A6-14B4-4A25-A10E-489C8B09BAC2.html">Blink Custom Presses</a></li>
<li><a href="https://davidblue.wtf/drafts/A70AF5BE-6301-4A0E-B2B3-90A80B9333D1.html">Blink Keys</a></li>
<li><a href="https://davidblue.wtf/drafts/58CD787C-9794-4A87-80F9-622E88B559F6.html">Blink Selection Action</a></li>
<li><a href="https://davidblue.wtf/drafts/D750DE85-E3B1-4FCD-9A0B-0A412CB0EACF.html">Blink Shell Discord Hello</a></li>
<li><a href="https://davidblue.wtf/drafts/57B7A11A-2292-4C87-A259-5C6B4A9AA40F.html">Blink Xcall Docs</a></li>
<li><a href="https://davidblue.wtf/drafts/1D46C596-0BB2-477B-9BD0-1595C0F812A3.html">Bluetooth Keyboard Considerations on iPhone in iOS 15</a></li>
<li><a href="https://davidblue.wtf/drafts/016B77F0-F48D-4D36-A5A3-4C84FD27199F.html">Bluetooth Keyboard Section in the Official iPhone User Guide</a></li>
<li><a href="https://davidblue.wtf/drafts/0513B785-F84C-4C71-8B0A-2389E8FF9E11.html">Bluetooth Keyboard Shortcuts Support on iPhone (Request)</a></li>
<li><a href="https://davidblue.wtf/drafts/964A37F2-39B3-48B1-941B-34DD6E114FEF.html">bokeh</a></li>
<li><a href="https://davidblue.wtf/drafts/CBF168E9-9E9B-4FFF-8001-09298A5E797B.html">bole</a></li>
<li><a href="https://davidblue.wtf/drafts/D1C34CD2-332C-4E19-869D-10D7191802E0.html">bombastic</a></li>
<li><a href="https://davidblue.wtf/drafts/BD6AD691-345E-47D8-9FDC-AAF1CCCD1C93.html">bombinate</a></li>
<li><a href="https://davidblue.wtf/drafts/8B0D0651-E875-4F2F-9A27-4F08C2072327.html">Bookmark Folders</a></li>
<li><a href="https://davidblue.wtf/drafts/EE3D6DF8-E640-437D-9B16-D0B35B5BFA34.html">Bookmarked Folder Index Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/02D619D4-05C5-40FF-8FAF-1267C3F7310D.html">boolean</a></li>
<li><a href="https://davidblue.wtf/drafts/FD32E5A4-1C3A-4275-817C-9028924E4DD0.html">🅱️oolin</a></li>
<li><a href="https://davidblue.wtf/drafts/17AAF2B4-AC8F-4F5E-BCB4-34E0578CE68E.html">Botany</a></li>
<li><a href="https://davidblue.wtf/drafts/3C24091B-D0F3-4B9A-82BB-6F30FAF264D6.html">bouffant</a></li>
<li><a href="https://davidblue.wtf/drafts/BF579C32-5215-46E5-87AC-C252C665E49E.html">Bouke van der Bijl</a></li>
<li><a href="https://davidblue.wtf/drafts/52A11EC1-19C5-454B-9C61-5BBB8E2076E7.html">bout</a></li>
<li><a href="https://davidblue.wtf/drafts/719E1519-62AC-45B8-AA3A-905910CCE1B3.html">bowdlerizer</a></li>
<li><a href="https://davidblue.wtf/drafts/6C7D4FE5-1C4A-4E18-B561-5E96F60741B8.html">bozo</a></li>
<li><a href="https://davidblue.wtf/drafts/4D3B59B3-4A6D-41FD-99C5-E6D64EBA4736.html">bplist00“<em>WebSubresources</em>WebMainResource£
‘ </a></li>
<li><a href="https://davidblue.wtf/drafts/4BEECFB1-3541-4ACB-AB15-27467CEB64B2.html">Brandfolder</a></li>
<li><a href="https://davidblue.wtf/drafts/0489C448-E259-4BEA-B767-562B1A0CA7C1.html">Branding Raindrop Collection</a></li>
<li><a href="https://davidblue.wtf/drafts/18071D92-2AC9-46D4-A48F-78FC0D15F4CC.html">Brat Mode Ultimate Wishlist for iOS (Mostly iPhone)</a></li>
<li><a href="https://davidblue.wtf/drafts/B20D3C21-B5CF-43BC-90AC-722567D26226.html">Brave Playlist</a></li>
<li><a href="https://davidblue.wtf/drafts/3F4B03EA-DDD7-4B65-87DA-7B74F41607F4.html">broke</a></li>
<li><a href="https://davidblue.wtf/drafts/31F7CF58-C3F1-4439-ABDA-8A51120A8EA2.html">Bruce's iOS Shortcut Catalog</a></li>
<li><a href="https://davidblue.wtf/drafts/944AE5CB-6D3A-47BA-89A4-8FEFCC099ADC.html">brusk</a></li>
<li><a href="https://davidblue.wtf/drafts/BAD858C5-EF51-4380-BC48-283290700187.html">BT Inspector Shortcuts Actions</a></li>
<li><a href="https://davidblue.wtf/drafts/46565F1C-509F-4EE5-9EC9-C6EBF104EF0D.html">bugaboo</a></li>
<li><a href="https://davidblue.wtf/drafts/7E0EC59C-58EC-41EA-8F77-553B5A3CB6EE.html">Buhby, CuriousCat</a></li>
<li><a href="https://davidblue.wtf/drafts/A3C4E227-E6F9-41C3-A6DE-36E1FA36980F.html">Bulk Background Removal Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/48E50B36-AF3F-4FDB-B034-8319C15A16BF.html">Bulk High Resolution Artwork Downloader</a></li>
<li><a href="https://davidblue.wtf/drafts/B544474F-5338-43F8-A69A-C03BCADD1B03.html">Bunch (Brett Terpstra's App)</a></li>
<li><a href="https://davidblue.wtf/drafts/90632EB2-78D1-4141-AAFD-435824F7E2E9.html">BuzzFeedNews/everything</a></li>
<li><a href="https://davidblue.wtf/drafts/C67A26E3-82BB-4BC3-8796-18A9DD3CDB2D.html">Bye Bye Dieter Bohn</a></li>
<li><a href="https://davidblue.wtf/drafts/A21140B6-CB5E-4649-A1C8-B5BAD4592F26.html">Call Action</a></li>
<li><a href="https://davidblue.wtf/drafts/402B3CB3-1E21-4971-9243-5BE6B85DDDF7.html">Can you create a shortcut to send a message to a Telegram group every hour?</a></li>
<li><a href="https://davidblue.wtf/drafts/5175FC46-DE8E-4DEE-8EB6-C3E8774CCC5E.html">cantabile</a></li>
<li><a href="https://davidblue.wtf/drafts/3EB80052-BCCE-488D-8F04-D2EBB5C392E2.html">capitulate</a></li>
<li><a href="https://davidblue.wtf/drafts/47451873-C05C-45E3-B99F-F6C873899325.html">Capture Web Page in Markdown</a></li>
<li><a href="https://davidblue.wtf/drafts/E57CCC2E-F865-4CBD-AF3C-F8972B84AC69.html">Capture Web Page to Drafts (macOS) Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/7657EB0A-706D-4309-AF02-9684368632E8.html">Capture Web Page to Drafts</a></li>
<li><a href="https://davidblue.wtf/drafts/2EF12558-A385-46C5-BA82-09F5A325B315.html">Capture with Bear Action</a></li>
<li><a href="https://davidblue.wtf/drafts/5E21BE0B-E681-4266-A3B2-95394628CC5D.html">carp</a></li>
<li><a href="https://davidblue.wtf/drafts/573E4A80-2C27-4AA4-862F-19557944CC9E.html">carping</a></li>
<li><a href="https://davidblue.wtf/drafts/7F94BD9C-18BA-468A-842F-02A3489A5F80.html">Cartwright Circuit Tour and Flying Lap</a></li>
<li><a href="https://davidblue.wtf/drafts/308B424A-BF03-45E1-A33E-2B4BA1282482.html">Casey Newton + Kara Swisher’s Post-Jack Resignation Twitter Space</a></li>
<li><a href="https://davidblue.wtf/drafts/DE30BFD5-AE21-40D5-894A-A69387F02210.html">castrametation</a></li>
<li><a href="https://davidblue.wtf/drafts/284C1498-C427-445D-B457-C1320BED67DB.html">Catch up on redirects documentation</a></li>
<li><a href="https://davidblue.wtf/drafts/33D59595-CC52-4F9A-831B-B4C0A8311C21.html">Celebrating Two Decades of Chordophone Symbiosis</a></li>
<li><a href="https://davidblue.wtf/drafts/C6A6CA2D-9889-4DFF-84E1-C966FC809985.html">celerity</a></li>
<li><a href="https://davidblue.wtf/drafts/64D8E76D-5A54-4683-A16D-89E65A00CA1F.html">centertown.fun (Hometown) Server Application</a></li>
<li><a href="https://davidblue.wtf/drafts/0F9CDCE9-264A-499C-BE1B-1EB8A7CDD6AF.html">CHAMPIONNAT DU MONDE D’ENDURANCE DE LA FIA 2019-2020 2019-2020 FIA WORLD ENDURANCE CHAMPIONSHIP</a></li>
<li><a href="https://davidblue.wtf/drafts/8D14BC26-B365-432F-9B0D-3D3AAFD3DFF0.html">Chapter 1: Krash Course</a></li>
<li><a href="https://davidblue.wtf/drafts/1855A4A9-96C2-4947-A92C-EB362F23E491.html">Chat with David Blue - Write.as Community Blog</a></li>
<li><a href="https://davidblue.wtf/drafts/4F2C0C58-5013-4DFC-B604-02C9EABDBE0A.html">Chat with Dino Bansigan — Community</a></li>
<li><a href="https://davidblue.wtf/drafts/80F78B55-BD71-41A9-84FF-3AB5658B975C.html">Cheatsheets Template</a></li>
<li><a href="https://davidblue.wtf/drafts/CA50DD89-2AF3-49AB-B149-03A54DB94611.html">Cheatsheets Template</a></li>
<li><a href="https://davidblue.wtf/drafts/51EE3DC7-C2EA-4589-8BEC-98FE9ED83869.html">cheque</a></li>
<li><a href="https://davidblue.wtf/drafts/7D2F97A1-D246-48E9-A9C7-4BDF00B454A1.html">chicanery</a></li>
<li><a href="https://davidblue.wtf/drafts/2D5A8213-A4D5-4634-B10F-81ECEBF83808.html">Chill</a></li>
<li><a href="https://davidblue.wtf/drafts/9B56F4E8-C75A-431F-8310-64D3323DE983.html">Chill</a></li>
<li><a href="https://davidblue.wtf/drafts/68A7EEB2-6BF0-40F8-9757-E1F435A4A2D6.html">chivvy</a></li>
<li><a href="https://davidblue.wtf/drafts/4FB2AC55-72D3-4158-99B6-B5A4A1A9E4FA.html">Chris Grieser's Drafts as Twitter Client</a></li>
<li><a href="https://davidblue.wtf/drafts/AAA2438B-814F-48BC-B958-1D28704771D5.html">Christopher Lawley’s Shortcuts</a></li>
<li><a href="https://davidblue.wtf/drafts/3805BF06-FF2A-4AD2-A99F-43691E9A5732.html">Chuck [Old]</a></li>
<li><a href="https://davidblue.wtf/drafts/4951E904-A025-46C7-82B2-97ED52F4F5B1.html">Chuck Klosterman [Old]</a></li>
<li><a href="https://davidblue.wtf/drafts/BBC76875-2100-4359-A12A-9AE1406646A2.html">Chuck Klosterman Is in Control</a></li>
<li><a href="https://davidblue.wtf/drafts/3D0B7483-D375-4719-BC11-2AA0AA8A6CF2.html">cinch</a></li>
<li><a href="https://davidblue.wtf/drafts/90E530C2-52DC-4AF2-9855-065C0052BA93.html">Circling Back to Tweetbot 6.3</a></li>
<li><a href="https://davidblue.wtf/drafts/9DFCF44B-AEC9-4BE5-82AA-1506EFBBF3E3.html">Circling Back to Tweetbot 6.3</a></li>
<li><a href="https://davidblue.wtf/drafts/DD71726D-8489-4E4B-A484-84B75845649C.html">Circling Back to Tweetbot 6.3</a></li>
<li><a href="https://davidblue.wtf/drafts/5D6FD073-D978-4988-849F-6BD9CF15B31F.html">classificatory</a></li>
<li><a href="https://davidblue.wtf/drafts/E55EFF3A-571B-4B5A-9E01-004BAA38C35F.html">Clean URLs Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/F4F062E4-F265-40A3-B101-03413D7996F8.html">Clear Dot Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/25995731-B9CC-4CCE-A399-E9294955AA27.html">Clear Touch Resources</a></li>
<li><a href="https://davidblue.wtf/drafts/1F4E5E76-FB3B-4010-8040-E06AAA8D6984.html">Cleverbot</a></li>
<li><a href="https://davidblue.wtf/drafts/6F2D2786-739A-4B93-8D8D-C83B6F9BE7E4.html">Cliché Consequences Post - TextExpander Facebook Group</a></li>
<li><a href="https://davidblue.wtf/drafts/09F4975F-776B-47E0-B2AF-58271BB07C46.html">Click feature headers to filterPriceiPhoneiPadSYNCDropboxiCloudWebDAViTunesProprietaryDocument ProviderEXPORTPlain textCopy HTMLEmailHTML EmailPDFPrintOpen in…FEATURESTextExpanderMarkdown preview/exportMarkdown editing featuresAppearance optionsSyntax HighlightingExtra Keyboard rowIn-document text searchSearch and replaceFull-text file searchWord countChar countPage countReading timeURL handler(s)Web BrowserDesktop AppSplit Screen</a></li>
<li><a href="https://davidblue.wtf/drafts/601F9B72-216C-4CE3-BFC1-C875D78FE5B0.html">Click feature headers to filterPriceiPhoneiPadSYNCDropboxiCloudWebDAViTunesProprietaryDocument ProviderEXPORTPlain textCopy HTMLEmailHTML EmailPDFPrintOpen in…FEATURESTextExpanderMarkdown preview/exportMarkdown editing featuresAppearance optionsSyntax HighlightingExtra Keyboard rowIn-document text searchSearch and replaceFull-text file searchWord countChar countPage countReading timeURL handler(s)Web BrowserDesktop AppSplit Screen</a></li>
<li><a href="https://davidblue.wtf/drafts/3D0D5004-A60E-46A3-ADF6-0D4B5DC65C42.html">Clipboard ⇨ Mastodon Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/30138EC1-6FA4-475B-A42C-B7B1374BBABC.html">Clipboard ⇨ Telegram Message Shortcut</a></li>
<li><a href="https://davidblue.wtf/drafts/0139E749-78E3-4A6D-A9E4-152DF4A4806D.html">Clyp Archive</a></li>
<li><a href="https://davidblue.wtf/drafts/B25D5768-0B4A-42AC-B460-083ACE947B88.html">Co-Star for iOS (App Store) Review</a></li>
<li><a href="https://davidblue.wtf/drafts/489D4580-DCC7-4F1F-95DF-3E6C95576422.html">coalesce</a></li>
<li><a href="https://davidblue.wtf/drafts/DD98587B-FBF6-46B8-9C41-3D42B87FE8D2.html">Cobalt2 Drafts Theme Port</a></li>
<li><a href="https://davidblue.wtf/drafts/F1269349-39EB-4956-AAEE-29A0CD3F8D38.html">Coda: A marketing exercise</a></li>
<li><a href="https://davidblue.wtf/drafts/D6D76612-9B08-4C00-9833-E08653EE832B.html">Coding Interview University</a></li>
<li><a href="https://davidblue.wtf/drafts/702C703B-7DB8-4044-A45B-42A85B89B554.html">Cody Chrunos</a></li>
<li><a href="https://davidblue.wtf/drafts/624EE499-4652-40BD-925E-EFFFD31BC17C.html">cogitate</a></li>
<li><a href="https://davidblue.wtf/drafts/673AC0E0-679B-4B94-923F-20611E913CEF.html">Collaborative Writing Thread</a></li>
<li><a href="https://davidblue.wtf/drafts/0359F02A-40D1-405A-BFDF-9D56D253E9CC.html">Collect References Shortcut Documentation</a></li>
<li><a href="https://davidblue.wtf/drafts/9D43C900-95DD-4DF2-B50E-B28FBB4E8E8A.html">Collectibles</a></li>
<li><a href="https://davidblue.wtf/drafts/6376D3F5-758B-463E-A479-E28BE9AAE5D1.html">collocation</a></li>
<li><a href="https://davidblue.wtf/drafts/D367416E-62A1-4385-ACA1-C8EAA22FBC77.html">collocation</a></li>
<li><a href="https://davidblue.wtf/drafts/75CFF33C-9753-4E56-A7BF-A066CD1E83E1.html">Colloquy for iOS Original Sounds</a></li>