-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.xml
1101 lines (905 loc) · 50.8 KB
/
feed.xml
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
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>Allan's Notes</title>
<link>https://allandeutsch.com/notes</link>
<description>Content from Allan's notes, via RSS.</description>
<language>en-us</language>
<copyright>Copyright (c) 2025 Allan Deutsch</copyright>
<pubDate>Thu, 16 Jan 2025 22:27:28 GMT</pubDate>
<lastBuildDate>Thu, 16 Jan 2025 22:27:28 GMT</lastBuildDate>
<ttl>60</ttl>
<item>
<title>Gifts</title>
<link>https://allandeutsch.com/notes/gifts</link>
<pubDate>Fri, 03 Jan 2025 00:00:00 GMT</pubDate>
<modified>Sat, 11 Jan 2025 00:00:00 GMT</modified>
<description>Gifts can be an unwanted obligation or a fun way to show some love. This is my attempt at shifting them towards the latter.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/gifts</guid>
</item>
<item>
<title>Cozumel travel guide</title>
<link>https://allandeutsch.com/notes/cozumel-travel-guide</link>
<pubDate>Sun, 24 Jul 2022 00:00:00 GMT</pubDate>
<modified>Sat, 05 Oct 2024 00:00:00 GMT</modified>
<description>A brief guide on having a successful trip to the SCUBA diving island paradise of Mexico, Cozumel.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/cozumel-travel-guide</guid>
</item>
<item>
<title>Classy coding - JavaScript OOP through the ages</title>
<link>https://allandeutsch.com/notes/classy-javascript</link>
<pubDate>Wed, 14 Aug 2024 00:00:00 GMT</pubDate>
<modified>Wed, 14 Aug 2024 00:00:00 GMT</modified>
<description>Embark on a journey to learn about how OOP has been done throughout JavaScript's history, with our destination set on understanding how we should do it today and what all the modern syntax is doing for us under the hood.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/classy-javascript</guid>
</item>
<item>
<title>Open neovim edgebar with focus set</title>
<link>https://allandeutsch.com/notes/focus-edgy-view</link>
<pubDate>Sat, 10 Aug 2024 00:00:00 GMT</pubDate>
<modified>Sat, 10 Aug 2024 00:00:00 GMT</modified>
<description>A deep dive into neovim config, controlling focus, pane management with edgy.nvim, and a little open source contribution to boot!</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/focus-edgy-view</guid>
</item>
<item>
<title>I use Neovim btw</title>
<link>https://allandeutsch.com/notes/use-neovim</link>
<pubDate>Tue, 30 Jul 2024 00:00:00 GMT</pubDate>
<modified>Tue, 30 Jul 2024 00:00:00 GMT</modified>
<description>Imagine a world where something as simple as editing text becomes a fun and challenging puzzle to be solved.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/use-neovim</guid>
</item>
<item>
<title>Thinking channels</title>
<link>https://allandeutsch.com/notes/thinking-channels</link>
<pubDate>Tue, 13 Jun 2023 00:00:00 GMT</pubDate>
<modified>Thu, 20 Jun 2024 00:00:00 GMT</modified>
<description>Thinking about the same concept in a different way is often a big unlock to deeper and clearer understanding</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/thinking-channels</guid>
</item>
<item>
<title>Identity functions</title>
<link>https://allandeutsch.com/notes/identity-functions</link>
<pubDate>Sat, 18 May 2024 00:00:00 GMT</pubDate>
<modified>Sun, 19 May 2024 00:00:00 GMT</modified>
<description>Identity functions make it possible to provide a much better developer experience at API boundaries by improving the type</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/identity-functions</guid>
</item>
<item>
<title>Total Typescript notes</title>
<link>https://allandeutsch.com/notes/total-typescript-notes</link>
<pubDate>Thu, 23 Nov 2023 00:00:00 GMT</pubDate>
<modified>Sun, 19 May 2024 00:00:00 GMT</modified>
<description>I've learned a lot from this course, and use this note to record bits I want to remember and riff on some of my observations.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/total-typescript-notes</guid>
</item>
<item>
<title>Dynamically generate TypeScript Playground links</title>
<link>https://allandeutsch.com/notes/dynamic-ts-playground-links</link>
<pubDate>Thu, 09 May 2024 00:00:00 GMT</pubDate>
<modified>Sat, 11 May 2024 00:00:00 GMT</modified>
<description>TypeScript playground has a URL param to specify the code content. This makes it possible to always have up-to-date playground links for example code!</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/dynamic-ts-playground-links</guid>
</item>
<item>
<title>Add a demo link to TypeScript code blocks</title>
<link>https://allandeutsch.com/notes/code-block-tsplay-demo-link</link>
<pubDate>Thu, 09 May 2024 00:00:00 GMT</pubDate>
<modified>Thu, 09 May 2024 00:00:00 GMT</modified>
<description>Seeing example code with syntax highlighting is great, but sometimes you've just gotta run the code and see what happens...</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/code-block-tsplay-demo-link</guid>
</item>
<item>
<title>Make example code interactive</title>
<link>https://allandeutsch.com/notes/make-example-code-interactive</link>
<pubDate>Thu, 09 May 2024 00:00:00 GMT</pubDate>
<modified>Thu, 09 May 2024 00:00:00 GMT</modified>
<description>Whenever possible, make code interactive. Interaction is the single most effective way to teach anything, including code!</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/make-example-code-interactive</guid>
</item>
<item>
<title>Branded Types</title>
<link>https://allandeutsch.com/notes/branded-types</link>
<pubDate>Wed, 08 May 2024 00:00:00 GMT</pubDate>
<modified>Wed, 08 May 2024 00:00:00 GMT</modified>
<description>TypeScript is a structurally typed language, but can have nominal typing semantics using a technique called type branding</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/branded-types</guid>
</item>
<item>
<title>Theory and practice</title>
<link>https://allandeutsch.com/notes/theory-practice</link>
<pubDate>Sun, 28 Apr 2024 00:00:00 GMT</pubDate>
<modified>Sun, 28 Apr 2024 00:00:00 GMT</modified>
<description>Theory and practice are often at tension with each other, but they shouldn't be. Each benefits from a health dose of the other.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/theory-practice</guid>
</item>
<item>
<title>Beautifully render code in Svelte</title>
<link>https://allandeutsch.com/notes/svelte-shiki-twoslash</link>
<pubDate>Sun, 07 Apr 2024 00:00:00 GMT</pubDate>
<modified>Wed, 24 Apr 2024 00:00:00 GMT</modified>
<description>How I transform the code in my markdown files into beautifully rendered snippets on this site.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/svelte-shiki-twoslash</guid>
</item>
<item>
<title>Linting and formatting a svelte project</title>
<link>https://allandeutsch.com/notes/lint-format-svelte</link>
<pubDate>Sat, 13 Apr 2024 00:00:00 GMT</pubDate>
<modified>Wed, 24 Apr 2024 00:00:00 GMT</modified>
<description>Pulling together a bunch of language tools can be a bother, but I find automated formatting & code review tools are worth the hassle.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/lint-format-svelte</guid>
</item>
<item>
<title>Type branding removes structural type compatibility</title>
<link>https://allandeutsch.com/notes/structural-branded-types-nominal</link>
<pubDate>Sat, 03 Feb 2024 00:00:00 GMT</pubDate>
<modified>Sat, 06 Apr 2024 00:00:00 GMT</modified>
<description>A structural type can be "branded" to add context to values by using the type system for annotations as is done with nominal types. Doing so makes them incompatible with structurally equivalent types.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/structural-branded-types-nominal</guid>
</item>
<item>
<title>Resolving CORS errors in SvelteKit</title>
<link>https://allandeutsch.com/notes/sveltekit-cors</link>
<pubDate>Wed, 27 Mar 2024 00:00:00 GMT</pubDate>
<modified>Sat, 30 Mar 2024 00:00:00 GMT</modified>
<description>Cross-origin resource sharing requests let a user access resources on one site from another, but only if the server performs the secret CORS handshake with the browser.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/sveltekit-cors</guid>
</item>
<item>
<title>Pasta Arabica</title>
<link>https://allandeutsch.com/notes/pasta-arabica</link>
<pubDate>Wed, 06 Mar 2024 00:00:00 GMT</pubDate>
<modified>Wed, 06 Mar 2024 00:00:00 GMT</modified>
<description>An improvised pasta dish made to drawn inspiration from the flavors and sounds of the Middle East. It is hearty and surprisingly bright.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/pasta-arabica</guid>
</item>
<item>
<title>TypeScript assertion functions increase type safety</title>
<link>https://allandeutsch.com/notes/assertion-functions</link>
<pubDate>Fri, 16 Feb 2024 00:00:00 GMT</pubDate>
<modified>Fri, 16 Feb 2024 00:00:00 GMT</modified>
<description>Assertion functions let the programmer narrow types using a named function, making type narrowing much more readable.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/assertion-functions</guid>
</item>
<item>
<title>Make API misuse hard</title>
<link>https://allandeutsch.com/notes/make-api-misuse-hard</link>
<pubDate>Wed, 14 Feb 2024 00:00:00 GMT</pubDate>
<modified>Tue, 13 Feb 2024 00:00:00 GMT</modified>
<description>Being hard to misuse is an underrated characteristic of exceptional APIs, especially when the possibility needs to be exposed to the client for advanced scenarios.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/make-api-misuse-hard</guid>
</item>
<item>
<title>The publishing pipeline for allandeutsch.com</title>
<link>https://allandeutsch.com/notes/publishing-this-site</link>
<pubDate>Mon, 04 Oct 2021 00:00:00 GMT</pubDate>
<modified>Wed, 07 Feb 2024 00:00:00 GMT</modified>
<description>An overview of how I avoided needing to copy+paste my notes into blogging software to publish them.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/publishing-this-site</guid>
</item>
<item>
<title>Svelte component APIs</title>
<link>https://allandeutsch.com/notes/svelte-component-apis</link>
<pubDate>Tue, 13 Feb 2024 00:00:00 GMT</pubDate>
<modified>Tue, 06 Feb 2024 00:00:00 GMT</modified>
<description>There are many ways to Svelte a component...</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/svelte-component-apis</guid>
</item>
<item>
<title>Slugs make links readable</title>
<link>https://allandeutsch.com/notes/slugs-make-links-readable</link>
<pubDate>Sun, 04 Feb 2024 00:00:00 GMT</pubDate>
<modified>Sun, 04 Feb 2024 00:00:00 GMT</modified>
<description>Special characters aren't valid in URLs, so custom slugs are used to make links easier to read.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/slugs-make-links-readable</guid>
</item>
<item>
<title>Structural types increase data compatibility</title>
<link>https://allandeutsch.com/notes/structural-types-increase-compatibility</link>
<pubDate>Sun, 04 Feb 2024 00:00:00 GMT</pubDate>
<modified>Sun, 04 Feb 2024 00:00:00 GMT</modified>
<description>Structural types are only concerned with the shape of data, rather than the names of types. This makes data types more compatible.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/structural-types-increase-compatibility</guid>
</item>
<item>
<title>Playa del Carmen travel guide</title>
<link>https://allandeutsch.com/notes/pdc-travel-guide</link>
<pubDate>Sat, 30 Dec 2023 00:00:00 GMT</pubDate>
<modified>Mon, 01 Jan 2024 00:00:00 GMT</modified>
<description>Tips from my travels to PDC, including where to eat, stay, and visit!</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/pdc-travel-guide</guid>
</item>
<item>
<title>Mac tips</title>
<link>https://allandeutsch.com/notes/mac-tips</link>
<pubDate>Wed, 23 Jun 2021 00:00:00 GMT</pubDate>
<modified>Sat, 30 Dec 2023 00:00:00 GMT</modified>
<description>Various tips, hotkeys, and software I use on my Mac that I find to be broadly helpful and think everyone should know about.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/mac-tips</guid>
</item>
<item>
<title>Adding users to new teams with Lucia auth and Prisma</title>
<link>https://allandeutsch.com/notes/customer-teams-lucia</link>
<pubDate>Mon, 16 Oct 2023 00:00:00 GMT</pubDate>
<modified>Sun, 22 Oct 2023 00:00:00 GMT</modified>
<description>When building a B2B product, most customers will want to invite their team members. This post explores how I added support for that to Doc Duck, a documentation feedback solution I'm building.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/customer-teams-lucia</guid>
</item>
<item>
<title>Value proposition</title>
<link>https://allandeutsch.com/notes/value-proposition</link>
<pubDate>Sun, 13 Jun 2021 00:00:00 GMT</pubDate>
<modified>Thu, 14 Sep 2023 00:00:00 GMT</modified>
<description>The way(s) a product or service benefits its target customers and the statement describing it.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/value-proposition</guid>
</item>
<item>
<title>Seattle area cafés I like</title>
<link>https://allandeutsch.com/notes/seattle-cafes</link>
<pubDate>Sat, 28 Aug 2021 00:00:00 GMT</pubDate>
<modified>Thu, 14 Sep 2023 00:00:00 GMT</modified>
<description>A curated list of my favorite Seattle area cafes to sit, sip, and relax or work.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/seattle-cafes</guid>
</item>
<item>
<title>Restaurants I like</title>
<link>https://allandeutsch.com/notes/restaurants</link>
<pubDate>Sun, 13 Jun 2021 00:00:00 GMT</pubDate>
<modified>Sat, 19 Aug 2023 00:00:00 GMT</modified>
<description>A list of some of my favorite places to get a meal in the Seattle area.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/restaurants</guid>
</item>
<item>
<title>I want a smaller phone</title>
<link>https://allandeutsch.com/notes/smaller-phone</link>
<pubDate>Mon, 26 Jun 2023 00:00:00 GMT</pubDate>
<modified>Sun, 09 Jul 2023 00:00:00 GMT</modified>
<description>As a tech guy, I'm often interested in the latest and greatest gadget. This has historically meant the biggest and best smart phone, but no longer...</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/smaller-phone</guid>
</item>
<item>
<title>git-cheatsheet</title>
<link>https://allandeutsch.com/notes/git-cheatsheet</link>
<pubDate>Tue, 24 May 2022 00:00:00 GMT</pubDate>
<modified>Wed, 28 Jun 2023 00:00:00 GMT</modified>
<description>Some common scenarios and how to resolve them using git.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/git-cheatsheet</guid>
</item>
<item>
<title>10 questions to evaluate a startup idea</title>
<link>https://allandeutsch.com/notes/evaluating-startup-idea</link>
<pubDate>Sat, 17 Jun 2023 00:00:00 GMT</pubDate>
<modified>Sat, 17 Jun 2023 00:00:00 GMT</modified>
<description>10 questions to ask about any startup idea that will help you evaluate if it's worth pursuing.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/evaluating-startup-idea</guid>
</item>
<item>
<title>Reflections on work-life balance</title>
<link>https://allandeutsch.com/notes/work-life-balance</link>
<pubDate>Wed, 05 Apr 2023 00:00:00 GMT</pubDate>
<modified>Wed, 05 Apr 2023 00:00:00 GMT</modified>
<description>These are my reflections on how I view work-life balance, and how that view has changed over time.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/work-life-balance</guid>
</item>
<item>
<title>Positioning statement</title>
<link>https://allandeutsch.com/notes/positioning-statement</link>
<pubDate>Wed, 11 Aug 2021 00:00:00 GMT</pubDate>
<modified>Sat, 21 May 2022 00:00:00 GMT</modified>
<description>A position statement explains how a product fits into its market.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/positioning-statement</guid>
</item>
<item>
<title>Cross-Price Elasticity of Demand (CPED)</title>
<link>https://allandeutsch.com/notes/cross-price-elasticity</link>
<pubDate>Tue, 28 Sep 2021 00:00:00 GMT</pubDate>
<modified>Sat, 21 May 2022 00:00:00 GMT</modified>
<description>Microeconomics tool for quantifying the change in demand for a product in response to price changes for substitute goods.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/cross-price-elasticity</guid>
</item>
<item>
<title>Price Elasticity of Demand (PED)</title>
<link>https://allandeutsch.com/notes/price-elasticity-demand</link>
<pubDate>Tue, 28 Sep 2021 00:00:00 GMT</pubDate>
<modified>Sat, 21 May 2022 00:00:00 GMT</modified>
<description>Price changes impact the demand for goods and services. PED is a microeconomics tool for quantifyng that impact.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/price-elasticity-demand</guid>
</item>
<item>
<title>Money market</title>
<link>https://allandeutsch.com/notes/money-market</link>
<pubDate>Sun, 23 Jan 2022 00:00:00 GMT</pubDate>
<modified>Fri, 06 May 2022 00:00:00 GMT</modified>
<description>The market for currency and the mechanics that govern it, such as interest rates, money supply, and the required reserve ratio.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/money-market</guid>
</item>
<item>
<title>Setting up a SvelteKit project with Storybook</title>
<link>https://allandeutsch.com/notes/sveltekit-storybook-setup</link>
<pubDate>Tue, 19 Apr 2022 00:00:00 GMT</pubDate>
<modified>Tue, 19 Apr 2022 00:00:00 GMT</modified>
<description>Setting up Storybook on a SvelteKit project doesn't work out of the box using the config tool. This guide walks you through a few extra steps needed to get SvelteKit and Storybook running.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/sveltekit-storybook-setup</guid>
</item>
<item>
<title>Avocado toast</title>
<link>https://allandeutsch.com/notes/avocado-toast</link>
<pubDate>Fri, 01 Oct 2021 00:00:00 GMT</pubDate>
<modified>Wed, 13 Apr 2022 00:00:00 GMT</modified>
<description>Perhaps the icon of a generation, avocado toast is a delicious and nutritious way to start the day. </description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/avocado-toast</guid>
</item>
<item>
<title>Present three options to build consensus</title>
<link>https://allandeutsch.com/notes/three-options-consensus</link>
<pubDate>Wed, 07 Apr 2021 00:00:00 GMT</pubDate>
<modified>Wed, 13 Apr 2022 00:00:00 GMT</modified>
<description>Cognitive biases lead people to evaluate options in context. There are strong biases that impact decision making when there are one or two options.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/three-options-consensus</guid>
</item>
<item>
<title>Single-option aversion bias</title>
<link>https://allandeutsch.com/notes/single-option-aversion-bias</link>
<pubDate>Fri, 26 Mar 2021 00:00:00 GMT</pubDate>
<modified>Tue, 12 Apr 2022 00:00:00 GMT</modified>
<description>People are biased against deciding on a single option. Multiple options enable people to compare and make informed decisions.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/single-option-aversion-bias</guid>
</item>
<item>
<title>Microeconomics</title>
<link>https://allandeutsch.com/notes/microeconomics</link>
<pubDate>Sun, 19 Sep 2021 00:00:00 GMT</pubDate>
<modified>Tue, 18 Jan 2022 00:00:00 GMT</modified>
<description>An overview of my notes on microeconomics.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/microeconomics</guid>
</item>
<item>
<title>Costs of production</title>
<link>https://allandeutsch.com/notes/production-cost</link>
<pubDate>Tue, 28 Sep 2021 00:00:00 GMT</pubDate>
<modified>Mon, 17 Jan 2022 00:00:00 GMT</modified>
<description>Understanding the costs facing a business is an important part of evaluating its profitability. There are two categories of costs - fixed and variable.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/production-cost</guid>
</item>
<item>
<title>Opportunity cost</title>
<link>https://allandeutsch.com/notes/opportunity-cost</link>
<pubDate>Sun, 16 Jan 2022 00:00:00 GMT</pubDate>
<modified>Sun, 16 Jan 2022 00:00:00 GMT</modified>
<description>The most valuable alternative that must be given up.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/opportunity-cost</guid>
</item>
<item>
<title>Price elasticity</title>
<link>https://allandeutsch.com/notes/price-elasticity</link>
<pubDate>Wed, 22 Sep 2021 00:00:00 GMT</pubDate>
<modified>Sun, 16 Jan 2022 00:00:00 GMT</modified>
<description>Price elasticity measures how much the demand for a good changes in response to price changes.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/price-elasticity</guid>
</item>
<item>
<title>Marginal utility</title>
<link>https://allandeutsch.com/notes/marginal-utility</link>
<pubDate>Mon, 20 Sep 2021 00:00:00 GMT</pubDate>
<modified>Sat, 15 Jan 2022 00:00:00 GMT</modified>
<description>The incremental value gained from have one more of something.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/marginal-utility</guid>
</item>
<item>
<title>Consumer demand</title>
<link>https://allandeutsch.com/notes/consumer-demand</link>
<pubDate>Wed, 22 Sep 2021 00:00:00 GMT</pubDate>
<modified>Sat, 15 Jan 2022 00:00:00 GMT</modified>
<description>Consumer demand looks at the three types of relationships between goods and how price changes to one product affects demand for another.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/consumer-demand</guid>
</item>
<item>
<title>Market forces</title>
<link>https://allandeutsch.com/notes/market-forces</link>
<pubDate>Sun, 09 Jan 2022 00:00:00 GMT</pubDate>
<modified>Sun, 09 Jan 2022 00:00:00 GMT</modified>
<description>The factors that impact the price of goods and services, which in turn drives supply and demand changes.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/market-forces</guid>
</item>
<item>
<title>Supply and demand</title>
<link>https://allandeutsch.com/notes/supply-demand</link>
<pubDate>Sun, 19 Sep 2021 00:00:00 GMT</pubDate>
<modified>Sun, 09 Jan 2022 00:00:00 GMT</modified>
<description>An area of microeconomics focused on how price influences the behavior of producers and consumers.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/supply-demand</guid>
</item>
<item>
<title>Great UI shadows imitate real shadows</title>
<link>https://allandeutsch.com/notes/ui-shadows</link>
<pubDate>Thu, 21 Oct 2021 00:00:00 GMT</pubDate>
<modified>Tue, 21 Dec 2021 00:00:00 GMT</modified>
<description>UI shadows should create an illusion of depth. For the best illusion, imitate reality.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/ui-shadows</guid>
</item>
<item>
<title>The principal-agent problem</title>
<link>https://allandeutsch.com/notes/principal-agent-problem</link>
<pubDate>Mon, 29 Nov 2021 00:00:00 GMT</pubDate>
<modified>Mon, 29 Nov 2021 00:00:00 GMT</modified>
<description>When there is a conflict in priorities between one party (the principal) and another party (the agent) that executions on their behalf.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/principal-agent-problem</guid>
</item>
<item>
<title>Grapow</title>
<link>https://allandeutsch.com/notes/grapow</link>
<pubDate>Sat, 06 Nov 2021 00:00:00 GMT</pubDate>
<modified>Sat, 06 Nov 2021 00:00:00 GMT</modified>
<description>Grapow is a sweet & spicy Thai dish made with ground meat, Thai chilis, and Thai basil. This dish is often requested by friends joining for dinner.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/grapow</guid>
</item>
<item>
<title>Improve site previews on social media by unfurling webpages</title>
<link>https://allandeutsch.com/notes/site-unfurling</link>
<pubDate>Sun, 31 Oct 2021 00:00:00 GMT</pubDate>
<modified>Sun, 31 Oct 2021 00:00:00 GMT</modified>
<description>Some webpages have nice previews when shared on social media. These can be specified in the page HTML. Previews make the site user-friendly before users even visit it!</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/site-unfurling</guid>
</item>
<item>
<title>Value innovation</title>
<link>https://allandeutsch.com/notes/value-innovation</link>
<pubDate>Sun, 12 Sep 2021 00:00:00 GMT</pubDate>
<modified>Thu, 21 Oct 2021 00:00:00 GMT</modified>
<description>Value innovation is how companies offer dramatically higher value at lower costs, escaping competition.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/value-innovation</guid>
</item>
<item>
<title>Use contrast to direct attention</title>
<link>https://allandeutsch.com/notes/use-contrast-direct-attention</link>
<pubDate>Thu, 25 Mar 2021 00:00:00 GMT</pubDate>
<modified>Mon, 11 Oct 2021 00:00:00 GMT</modified>
<description>Visual focus is naturally drawn to contrast. Use contrast in design to direct attention.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/use-contrast-direct-attention</guid>
</item>
<item>
<title>Make hard decisions quickly</title>
<link>https://allandeutsch.com/notes/hard-decisions</link>
<pubDate>Tue, 15 Jun 2021 00:00:00 GMT</pubDate>
<modified>Fri, 08 Oct 2021 00:00:00 GMT</modified>
<description>The less differentiated the options are, the harder it is to choose one.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/hard-decisions</guid>
</item>
<item>
<title>Type-1 and Type-2 Decisions</title>
<link>https://allandeutsch.com/notes/type-1-2-decisions</link>
<pubDate>Wed, 14 Jul 2021 00:00:00 GMT</pubDate>
<modified>Mon, 04 Oct 2021 00:00:00 GMT</modified>
<description>A decision dichotomy based on if the decision can be mitigated or reversed.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/type-1-2-decisions</guid>
</item>
<item>
<title>Ask, don't tell</title>
<link>https://allandeutsch.com/notes/ask-dont-tell</link>
<pubDate>Mon, 14 Jun 2021 00:00:00 GMT</pubDate>
<modified>Fri, 01 Oct 2021 00:00:00 GMT</modified>
<description>Giving unprompted advice is ineffective. Instead, lead people to ask for advice.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/ask-dont-tell</guid>
</item>
<item>
<title>Vicious and virtuous cycles</title>
<link>https://allandeutsch.com/notes/vicious-virtuous-cycles</link>
<pubDate>Fri, 24 Sep 2021 00:00:00 GMT</pubDate>
<modified>Fri, 24 Sep 2021 00:00:00 GMT</modified>
<description>Self-reinforcing cycles that act as compound growth systems. Negative cycles are vicious, positive cycles are virtuous.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/vicious-virtuous-cycles</guid>
</item>
<item>
<title>The fundamental habits</title>
<link>https://allandeutsch.com/notes/fundamental-habits</link>
<pubDate>Thu, 23 Sep 2021 00:00:00 GMT</pubDate>
<modified>Thu, 23 Sep 2021 00:00:00 GMT</modified>
<description>These simple behaviors are often challenging, but provide a rock solid foundation for the rest of life.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/fundamental-habits</guid>
</item>
<item>
<title>Categories of customer attributes</title>
<link>https://allandeutsch.com/notes/customer-attribute-categories</link>
<pubDate>Thu, 23 Sep 2021 00:00:00 GMT</pubDate>
<modified>Thu, 23 Sep 2021 00:00:00 GMT</modified>
<description>Customer attributes can be grouped as demographic, psychographic, geographic, or behavior.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/customer-attribute-categories</guid>
</item>
<item>
<title>Utility</title>
<link>https://allandeutsch.com/notes/utility</link>
<pubDate>Wed, 22 Sep 2021 00:00:00 GMT</pubDate>
<modified>Wed, 22 Sep 2021 00:00:00 GMT</modified>
<description>Utility is the microeconomics concept for how much satisfaction, pain reduction, happiness, or value a buyer gets from a product or service.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/utility</guid>
</item>
<item>
<title>Blue Ocean</title>
<link>https://allandeutsch.com/notes/blue-ocean</link>
<pubDate>Fri, 10 Sep 2021 00:00:00 GMT</pubDate>
<modified>Tue, 21 Sep 2021 00:00:00 GMT</modified>
<description>Blue oceans are markets that haven't been created yet. They are lucrative business opportunities.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/blue-ocean</guid>
</item>
<item>
<title>Common traits of successful blue ocean strategies</title>
<link>https://allandeutsch.com/notes/traits-successful-blue-ocean-strategy</link>
<pubDate>Thu, 16 Sep 2021 00:00:00 GMT</pubDate>
<modified>Tue, 21 Sep 2021 00:00:00 GMT</modified>
<description>Great strategies have a clear focus, diverge from competition, and are easy to explain.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/traits-successful-blue-ocean-strategy</guid>
</item>
<item>
<title>Value curve</title>
<link>https://allandeutsch.com/notes/value-curve</link>
<pubDate>Thu, 16 Sep 2021 00:00:00 GMT</pubDate>
<modified>Tue, 21 Sep 2021 00:00:00 GMT</modified>
<description>The line on a strategy canvas showing the emphasis a company places on each factor of competition in its industry.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/value-curve</guid>
</item>
<item>
<title>Segmentation, Targeting, and Positioning (STP)</title>
<link>https://allandeutsch.com/notes/segmentation-targeting-positioning</link>
<pubDate>Wed, 11 Aug 2021 00:00:00 GMT</pubDate>
<modified>Tue, 21 Sep 2021 00:00:00 GMT</modified>
<description>Group consumers into segments, determine which to target, and estable the product's position for them.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/segmentation-targeting-positioning</guid>
</item>
<item>
<title>Blue Ocean strategy</title>
<link>https://allandeutsch.com/notes/blue-ocean-strategy</link>
<pubDate>Wed, 15 Sep 2021 00:00:00 GMT</pubDate>
<modified>Thu, 16 Sep 2021 00:00:00 GMT</modified>
<description>Blue ocean strategy is about creating new markets to escape competition.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/blue-ocean-strategy</guid>
</item>
<item>
<title>Factors of competition</title>
<link>https://allandeutsch.com/notes/competition-factors</link>
<pubDate>Wed, 15 Sep 2021 00:00:00 GMT</pubDate>
<modified>Thu, 16 Sep 2021 00:00:00 GMT</modified>
<description>The factors that companies/products within an industry typically compete on to provide value to customers.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/competition-factors</guid>
</item>
<item>
<title>The Four Actions framework</title>
<link>https://allandeutsch.com/notes/four-actions-framework</link>
<pubDate>Wed, 15 Sep 2021 00:00:00 GMT</pubDate>
<modified>Wed, 15 Sep 2021 00:00:00 GMT</modified>
<description>Helps identify which factors a business should eliminate, reduce, raise, and create. Typically used with a strategy canvas.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/four-actions-framework</guid>
</item>
<item>
<title>The strategy canvas</title>
<link>https://allandeutsch.com/notes/strategy-canvas</link>
<pubDate>Mon, 13 Sep 2021 00:00:00 GMT</pubDate>
<modified>Mon, 13 Sep 2021 00:00:00 GMT</modified>
<description>An analytical tool that shows how much emphasis companies place on value areas in their industry.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/strategy-canvas</guid>
</item>
<item>
<title>Red ocean</title>
<link>https://allandeutsch.com/notes/red-ocean</link>
<pubDate>Fri, 10 Sep 2021 00:00:00 GMT</pubDate>
<modified>Fri, 10 Sep 2021 00:00:00 GMT</modified>
<description>Crowded markets where customers have many options to choose from, resulting in cutthroat competition.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/red-ocean</guid>
</item>
<item>
<title>Customer relationship</title>
<link>https://allandeutsch.com/notes/customer-relationship</link>
<pubDate>Wed, 16 Jun 2021 00:00:00 GMT</pubDate>
<modified>Wed, 01 Sep 2021 00:00:00 GMT</modified>
<description>The interactions a business has with customers and the strategies around those interactions.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/customer-relationship</guid>
</item>
<item>
<title>Business Model Canvas</title>
<link>https://allandeutsch.com/notes/business-model-canvas</link>
<pubDate>Mon, 14 Jun 2021 00:00:00 GMT</pubDate>
<modified>Wed, 01 Sep 2021 00:00:00 GMT</modified>
<description>A modern alternative to a business plan. It has 9 sections with details of the business, its customers, and how it provides value.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/business-model-canvas</guid>
</item>
<item>
<title>Build infrastructure after not having it becomes painful</title>
<link>https://allandeutsch.com/notes/build-infrastructure-after-pain</link>
<pubDate>Fri, 02 Jul 2021 00:00:00 GMT</pubDate>
<modified>Mon, 16 Aug 2021 00:00:00 GMT</modified>
<description>The pain caused by a lack of infrastructure proves the infrastructure is necessary.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/build-infrastructure-after-pain</guid>
</item>
<item>
<title>Distribution channel</title>
<link>https://allandeutsch.com/notes/distribution-channel</link>
<pubDate>Wed, 16 Jun 2021 00:00:00 GMT</pubDate>
<modified>Sun, 15 Aug 2021 00:00:00 GMT</modified>
<description>Distribution channels are how products and services get from a business to its customers.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/distribution-channel</guid>
</item>
<item>
<title>Monetized content creation is a compound growth system</title>
<link>https://allandeutsch.com/notes/monetized-content-compound-growth</link>
<pubDate>Wed, 07 Apr 2021 00:00:00 GMT</pubDate>
<modified>Sun, 15 Aug 2021 00:00:00 GMT</modified>
<description>New content creates new organic inbound traffic and retains the audience. Old content creates more value from new audience.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/monetized-content-compound-growth</guid>
</item>
<item>
<title>Compound growth system</title>
<link>https://allandeutsch.com/notes/compound-growth-system</link>
<pubDate>Thu, 12 Aug 2021 00:00:00 GMT</pubDate>
<modified>Thu, 12 Aug 2021 00:00:00 GMT</modified>
<description>Any system in which growth is proportional to the principal, added to that principal, and then repeated.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/compound-growth-system</guid>
</item>
<item>
<title>Compound growth is most impactful at the end</title>
<link>https://allandeutsch.com/notes/compound-growth-most-impactful-at-end</link>
<pubDate>Thu, 12 Aug 2021 00:00:00 GMT</pubDate>
<modified>Thu, 12 Aug 2021 00:00:00 GMT</modified>
<description>Compound growth is exponential. Each compounding period generates more growth than the previous one.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/compound-growth-most-impactful-at-end</guid>
</item>
<item>
<title>Customer segment</title>
<link>https://allandeutsch.com/notes/customer-segment</link>
<pubDate>Sun, 13 Jun 2021 00:00:00 GMT</pubDate>
<modified>Thu, 12 Aug 2021 00:00:00 GMT</modified>
<description>The groups of people a business aims to serve.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/customer-segment</guid>
</item>
<item>
<title>Situation analysis</title>
<link>https://allandeutsch.com/notes/situation-analysis</link>
<pubDate>Tue, 10 Aug 2021 00:00:00 GMT</pubDate>
<modified>Tue, 10 Aug 2021 00:00:00 GMT</modified>
<description>A tool for identifying and evaluating the market conditions for a product or service.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/situation-analysis</guid>
</item>
<item>
<title>The learning process</title>
<link>https://allandeutsch.com/notes/learning-process</link>
<pubDate>Tue, 27 Jul 2021 00:00:00 GMT</pubDate>
<modified>Tue, 27 Jul 2021 00:00:00 GMT</modified>
<description>A repeating cycle of receiving input, processing it to create output, evaluating that output, and evaluating results to improve future processing.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/learning-process</guid>
</item>
<item>
<title>My spaced repetition workflow</title>
<link>https://allandeutsch.com/notes/spaced-repetition-workflow</link>
<pubDate>Fri, 25 Jun 2021 00:00:00 GMT</pubDate>
<modified>Fri, 25 Jun 2021 00:00:00 GMT</modified>
<description>The setup and workflow I use to retain what I learn and deepen my understanding.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/spaced-repetition-workflow</guid>
</item>
<item>
<title>The world is recursive</title>
<link>https://allandeutsch.com/notes/world-recursive</link>
<pubDate>Wed, 14 Apr 2021 00:00:00 GMT</pubDate>
<modified>Wed, 14 Apr 2021 00:00:00 GMT</modified>
<description>The same things happen across domains and contexts all over the world. Very little is unique or novel.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/world-recursive</guid>
</item>
<item>
<title>Give mostly positive feedback</title>
<link>https://allandeutsch.com/notes/positive-feedback</link>
<pubDate>Mon, 15 Mar 2021 00:00:00 GMT</pubDate>
<modified>Mon, 15 Mar 2021 00:00:00 GMT</modified>
<description>Both positive and negative feedback are important, but on high performing teams positive feedback outweighs constructive feedback 5 to 1.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/notes/positive-feedback</guid>
</item>
</channel>
<channel>
<title>Allan's Dev Log</title>
<link>https://allandeutsch.com/devlog</link>
<description>Allan's weekly devlog, published via RSS.</description>
<language>en-us</language>
<copyright>Copyright (c) 2025 Allan Deutsch</copyright>
<pubDate>Thu, 16 Jan 2025 22:27:28 GMT</pubDate>
<lastBuildDate>Thu, 16 Jan 2025 22:27:28 GMT</lastBuildDate>
<ttl>60</ttl>
<item>
<title>devlog 12: What if MacOS was a linux distro</title>
<link>https://allandeutsch.com/devlog/12</link>
<pubDate>Sun, 18 Aug 2024 00:00:00 GMT</pubDate>
<modified>Fri, 23 Aug 2024 00:00:00 GMT</modified>
<description>The first Seattle Design meetup and an interesting question: How far can I get if I pretend MacOS is a linux distro?</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/devlog/12</guid>
</item>
<item>
<title>devlog 11</title>
<link>https://allandeutsch.com/devlog/11</link>
<pubDate>Sun, 28 Jul 2024 00:00:00 GMT</pubDate>
<modified>Tue, 09 Jul 2024 00:00:00 GMT</modified>
<description>Learning new technologies, vim, and neovim!</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/devlog/11</guid>
</item>
<item>
<title>devlog 10: CascadiaJS</title>
<link>https://allandeutsch.com/devlog/10</link>
<pubDate>Sun, 23 Jun 2024 00:00:00 GMT</pubDate>
<modified>Wed, 26 Jun 2024 00:00:00 GMT</modified>
<description>Doc Duck takes to the stage! Finding my first customer and also inspiration at the PNW's premier JS conference.</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/devlog/10</guid>
</item>
<item>
<title>devlog 9: Buildspace begins!</title>
<link>https://allandeutsch.com/devlog/9</link>
<pubDate>Sat, 15 Jun 2024 00:00:00 GMT</pubDate>
<modified>Sat, 15 Jun 2024 00:00:00 GMT</modified>
<description>Doc Duck's feedback widget is now branded!</description>
<author>Allan Deutsch</author>
<guid isPermalink="true">https://allandeutsch.com/devlog/9</guid>
</item>