-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2735 lines (1504 loc) · 130 KB
/
index.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>
<head>
<meta name="generator" content="Hugo 0.54.0" />
<title>
Nick Kaczmarek
</title>
</head>
<body>
<div class="h-feed">
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/12/19/i-released-my.html">I released my app!</a></h1>
<a href="https://www.nickkaczmarek.com/2022/12/19/i-released-my.html" class="u-url"><time class="dt-published" datetime="2022-12-19 22:24:21 -0600">Dec 19, 2022</time></a>
<div class="e-content">
<p>Just over a week ago today, I released my first app to the iOS App Store. If you’re really curious, you can find it <a href="https://apps.apple.com/us/app/threesongdj/id1637762776">here</a>.</p>
<p><strong>Spoiler:</strong> it requires an Apple Music subscription to <em>really</em> work.</p>
<p>I have a 1.1 coming soon with some bug fixes and improvements from my small TestFlight community. Send me a message/email/smoke signal if you want to be on future beta tests.</p>
<p>It’s really freeing to be so unknown that I can release something that I’m not entirely happy with and not feel a large amount of stress over it. Maybe one day that will change. Here’s hoping.</p>
<p>P.S. here’s <a href="https://nickkaczmarek.com/threesongdj">the little website</a> I made for the app.</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/11/27/im-working-on.html">I'm working on an iOS app</a></h1>
<a href="https://www.nickkaczmarek.com/2022/11/27/im-working-on.html" class="u-url"><time class="dt-published" datetime="2022-11-27 23:09:05 -0600">Nov 27, 2022</time></a>
<div class="e-content">
<p>I’m working on an iOS app and I’m getting so close to releasing the 1.0. I was looking at App Store Connect and noticed that I needed screenshots and I remembered that <a href="https://fastlane.tools">Fastlane</a> has the ability to automate screenshot creation.</p>
<p>Pretty cool I think. So I go through <a href="https://docs.fastlane.tools/getting-started/ios/screenshots/">the process</a> of setting up and starting to work on the UI Tests that need to run in order to trigger the screens I want to show and then it hits me.</p>
<p>The app I’m working on uses <a href="https://developer.apple.com/musickit/">MusicKit</a> and unfortunately the Xcode Simulators aren’t able to really do anything with MusicKit i.e. they can’t search or play music which is kind of a big deal. This hadn’t been much an issue during development because I could just run the app on my phone.</p>
<p>From what I can tell I will not be able to use Fastlane to automate this screenshot creation because it relies on using simulators for running the UI Tests that would then capture screenshots. What a bummer (though I sure hope I’m wrong!).</p>
<p>Fortunately I found <a href="https://benoitpasquier.com/automating-appstore-localized-screenshot-xctest/">another resource from Benoit Pasquier</a> that <em>might</em> make it possible for me to use UI Tests to automate screenshots to some degree. It won’t be quite as extensive, but my wife has a regular sized iPhone and I have a big one so at least I’ll have two sets of screenshots. No luck on the iPhone SE size. Hopefully that isn’t a dealbreaker, but we’ll see. This is all very new to me.</p>
<p>This is my first time writing (re: rambling) about this app and if you’d like to hear more or be invited to the TestFlight, feel free to comment on this post or shoot me an email at <a href="mailto:[email protected]">[email protected]</a>.</p>
<p>Cheers 🥂</p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/11/21/first-day-of.html" class="u-url"><time class="dt-published" datetime="2022-11-21 18:01:46 -0600">Nov 21, 2022</time></a>
<div class="e-content">
<p>First day of the fall feast. I love eating this food so much. Tried crockpot mashed potatoes today and boy was it a lot easier.</p>
<p><img src="uploads/2022/11ac98a497.jpg" width="599" height="600" alt=""></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/11/04/143058.html" class="u-url"><time class="dt-published" datetime="2022-11-04 13:30:58 -0600">Nov 4, 2022</time></a>
<div class="e-content">
<p>👨👩👧 + 👶🏽 = 👨👨👧👧</p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/11/02/pushing-my-daughter.html" class="u-url"><time class="dt-published" datetime="2022-11-02 13:12:28 -0600">Nov 2, 2022</time></a>
<div class="e-content">
<p>Pushing my daughter in her car around the neighborhood.</p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/a9be18e3fc.jpg" alt="IMG_2506.jpeg" title="IMG_2506.jpeg" border="0" width="3024" height="4032" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/11/02/picture-from-my.html" class="u-url"><time class="dt-published" datetime="2022-11-02 13:11:10 -0600">Nov 2, 2022</time></a>
<div class="e-content">
<p>Picture from my garage this morning. The sky was particularly pretty.</p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/630b566f8b.jpg" alt="IMG_2505.jpeg" title="IMG_2505.jpeg" border="0" width="4032" height="3024" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/11/02/vegan-buffalo-chicken.html" class="u-url"><time class="dt-published" datetime="2022-11-02 13:07:38 -0600">Nov 2, 2022</time></a>
<div class="e-content">
<p>Vegan buffalo chicken wrap with homemade ranch. I’ll share the recipe if anyone is interested. Very tasty. 🤤</p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/ec9b2b0996.jpg" alt="IMG_2487.jpeg" title="IMG_2487.jpeg" border="0" width="1512" height="2016" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/10/22/the-sun-says.html" class="u-url"><time class="dt-published" datetime="2022-10-22 10:26:52 -0600">Oct 22, 2022</time></a>
<div class="e-content">
<p>The sun says hello.</p>
<p><img src="uploads/2022/635fe2d033.jpg" width="600" height="450" alt=""></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/10/22/purple-beautyberry-callicarpa.html" class="u-url"><time class="dt-published" datetime="2022-10-22 10:26:03 -0600">Oct 22, 2022</time></a>
<div class="e-content">
<p><a href="https://plants.ces.ncsu.edu/plants/callicarpa-dichotoma/">Purple beautyberry (Callicarpa dichotoma)
</a></p>
<p><img src="uploads/2022/5daffe4397.jpg" width="450" height="600" alt=""></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/10/22/went-to-a.html" class="u-url"><time class="dt-published" datetime="2022-10-22 10:21:46 -0600">Oct 22, 2022</time></a>
<div class="e-content">
<p>Went to a park with a prairie this morning. Amazing to think that this used to be what much of the midwestern United States looked like.</p>
<p><img src="uploads/2022/ae84bf6d04.jpg" width="600" height="450" alt=""></p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/10/13/vulture-against-the.html">Vulture against the blue sky.</a></h1>
<a href="https://www.nickkaczmarek.com/2022/10/13/vulture-against-the.html" class="u-url"><time class="dt-published" datetime="2022-10-13 11:28:03 -0600">Oct 13, 2022</time></a>
<div class="e-content">
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/0406c77d87.jpg" alt="Vulture against the blue sky" title="IMG_2273.jpeg" border="0" width="300" height="225" /></p>
<blockquote>
<p>Taken at 12 pm CT in Eastern Missouri, USA.</p>
</blockquote>
<p>I took this while taking my daily walk around our neighborhood with my daughter. The sky is very clear and it was quite windy so this vulture was just gliding around.</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/10/06/what-called-are.html">What called are you named?</a></h1>
<a href="https://www.nickkaczmarek.com/2022/10/06/what-called-are.html" class="u-url"><time class="dt-published" datetime="2022-10-06 07:15:34 -0600">Oct 6, 2022</time></a>
<div class="e-content">
<p>It seems in the UK (and perhaps other UK influenced places) they say “a person called Nick”, but in the US we say “a person named Nick”. I wonder why that is. Do you know?</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/10/05/a-word-that.html">A word that doesn't exist and yet it does.</a></h1>
<a href="https://www.nickkaczmarek.com/2022/10/05/a-word-that.html" class="u-url"><time class="dt-published" datetime="2022-10-05 13:51:08 -0600">Oct 5, 2022</time></a>
<div class="e-content">
<blockquote>
<p>I’ll make it easy on you, this is the word: <code>smalm</code></p>
</blockquote>
<p>I was playing <a href="https://www.nytimes.com/games/wordle/index.html">Wordle</a> with my brother and dad the other day and my dad sent me a word he tried, but he was confused because autocomplete kept correcting it. He had never heard of it. Neither had I.</p>
<p>I looked in the dictionary for the word and I couldn’t find it. I did a web search and couldn’t find it. Then I checked in the unix word list to see if I could find it there.</p>
<p>I found it!</p>
<p>But then I still couldn’t find a definition.</p>
<p>I did eventually find a couple links to it on the web for scrabble word lists.</p>
<p>My guess is that like map makers, dictionary makes must create fake words as a sort of copyright mechanism to check if people are copying their work. And because word game makers can’t check every word to see if they’re real, they include a word from a common list of words.</p>
<p>Don’t believe me that it doesn’t exist?</p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/1b8560cf65.png" alt="terminal window showing me searching from smalm" title="Screen Shot 2022-10-05 at 14.43.34.png" border="0" width="297" height="74" /></p>
<h3 id="references">References</h3>
<p><a href="https://www.youtube.com/watch?v=DeiATy-FfjI">Video talking about locations that don’t exist</a></p>
<p><a href="https://duckduckgo.com/?q=smalm&t=osx&safari_group=9&ia=web">DuckDuckGo search for smalm</a></p>
<p><a href="https://www.google.com/search?hl=en&q=smalm">Google search for smalm</a></p>
<p>P.S. both searches think I’ve mistyped <code>smalm</code> and meant <code>small</code> but in any case you still won’t find anything.</p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/10/04/its-chrysanthemum-season.html" class="u-url"><time class="dt-published" datetime="2022-10-04 10:04:05 -0600">Oct 4, 2022</time></a>
<div class="e-content">
<p>It’s chrysanthemum season! Shot with my iPhone 14 Pro Max’s 48 megapixel camera. Curious how this will look on the web. (And also the file size)</p>
<p><img src="uploads/2022/0c6498ad67.jpg" width="600" height="599" alt=""></p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/09/15/htmlinputelement-type-number.html">HTMLInputElement type number fun fact</a></h1>
<a href="https://www.nickkaczmarek.com/2022/09/15/htmlinputelement-type-number.html" class="u-url"><time class="dt-published" datetime="2022-09-15 08:04:51 -0600">Sep 15, 2022</time></a>
<div class="e-content">
<p>I am a web developer by day and was working on a feature that was supposed to create an input field that could only accept numbers. Super easy right?!</p>
<p><code><input type="number" /></code></p>
<p>I’m demoing said feature to the client (after having tested this) and I’m bashing on the home row and nothing is printing. I type some numbers and they print. Then I grab some text and paste it in an bam, a single letter <code>e</code>. That’s weird. I try another word. Another letter <code>e</code>. Hmm. I tell the client we’ll look into it.</p>
<p>I shared this with a coworker and they were able to produce the same behavior. I then decided to look up the issue on the internet and of course this is a well known thing. I dig a little deeper and realize that the HTML spec allows for this behavior because of floating point numbers. For instance <code>2e5</code>.</p>
<p>Anyways, that was a fun little journey.</p>
<p><a href="https://html.spec.whatwg.org/multipage/input.html#number-state-(type%3Dnumber)">Link to the HTML spec for input type=number</a></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/09/11/burrito-with-refried.html" class="u-url"><time class="dt-published" datetime="2022-09-11 08:40:49 -0600">Sep 11, 2022</time></a>
<div class="e-content">
<p>Burrito with refried pinto beans, Mexican rice, roasted potatoes, grilled on a comal, smothered in vegan cheese sauce, vegan sour cream, and herdez salsa chipotle cremosa. Outstanding. 🌯</p>
<p><img src="uploads/2022/df564f0636.jpg" width="600" height="599" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/09/07/some-sort-of.html" class="u-url"><time class="dt-published" datetime="2022-09-07 14:05:15 -0600">Sep 7, 2022</time></a>
<div class="e-content">
<p>Some sort of gray tree frog was on my patio umbrella. 🐸 ☂</p>
<p><img src="uploads/2022/d6e7945419.jpg" width="599" height="600" alt="" /><img src="uploads/2022/691d0db0d7.jpg" width="599" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/08/21/another-burger-this.html" class="u-url"><time class="dt-published" datetime="2022-08-21 11:17:43 -0600">Aug 21, 2022</time></a>
<div class="e-content">
<p>Another burger. This time half beyond meat, half impossible, field roast chao cheese, pretzilla bun, bens spicy mustard, sir kensington ketchup, home made salsa verde, and Whole Foods “tater puffs”. Delicious!!!</p>
<p><img src="uploads/2022/19f256728a.jpg" width="599" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/08/20/wow-i-really.html" class="u-url"><time class="dt-published" datetime="2022-08-20 18:48:14 -0600">Aug 20, 2022</time></a>
<div class="e-content">
<p>Wow I really like this idea. Sharing code in SwiftUI has always felt weird to me.</p>
<p><a href="https://www.jessesquires.com/blog/2022/08/19/sharing-code-in-swiftui-apps/">Sharing code in SwiftUI apps on www.jessesquires.com</a></p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/08/02/friday-trip-to.html">Friday trip to Bombay Food Junkies</a></h1>
<a href="https://www.nickkaczmarek.com/2022/08/02/friday-trip-to.html" class="u-url"><time class="dt-published" datetime="2022-08-02 06:53:38 -0600">Aug 2, 2022</time></a>
<div class="e-content">
<p>I got off a little early this past Friday and we decided to take a trip to Bombay Food Junkies. It’s a vegan indian restaurant in Creve Coeur, MO that has an amazing selection of food. We had taken a trip there a few weeks ago for an ice cream social and had the chance to try their wings, milkshakes, and sundaes. Everything was amazing we couldn’t wait to go back!</p>
<p>Last time we tried the buffalo wings, the chocolate milkshake, and the brownie sundae. This time we tried the mango habanero wings, the butter chicken with naan, the buffalo chicken sandwich with masala fries, and of course the brownie sundae. All I can say is wow. I can’t wait to go back. This weekend. 👀</p>
<h4 id="mango-habanero-wings">mango habanero wings</h4>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/8c7e220bdb.jpg" alt="IMG_0928.jpeg" title="IMG_0928.jpeg" border="0" width="300" height="225" /></p>
<h4 id="butter-chicken-with-naan">butter chicken with naan</h4>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/ed202ef5c0.jpg" alt="IMG_0929.jpeg" title="IMG_0929.jpeg" border="0" width="300" height="225" /></p>
<h4 id="buffalo-chicken-sandwich-with-masala-fries">buffalo chicken sandwich with masala fries</h4>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/9d6918f369.jpg" alt="IMG_0930.jpeg" title="IMG_0930.jpeg" border="0" width="300" height="225" /></p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/68abb8c3dd.jpg" alt="IMG_0931.jpeg" title="IMG_0931.jpeg" border="0" width="300" height="225" /></p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/c33b0a3501.jpg" alt="IMG_0932.jpeg" title="IMG_0932.jpeg" border="0" width="300" height="225" /></p>
<h4 id="brownie-sundae">brownie sundae</h4>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/fad280f44c.jpg" alt="IMG_0933.jpeg" title="IMG_0933.jpeg" border="0" width="225" height="300" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/08/01/finally-made-my.html" class="u-url"><time class="dt-published" datetime="2022-08-01 08:09:41 -0600">Aug 1, 2022</time></a>
<div class="e-content">
<p>Finally made my own salsa verde. For about $7 I made 32 oz of salsa. Comparing this to the 16 oz jars of salsa I buy for $4 it’s a huge win. Less waste, better taste. I’ll fine tune this as I go, but I’m happy with the results.</p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/e803db63b5.jpg" alt="IMG_0976.jpg" title="IMG_0976.jpg" border="0" width="300" height="225" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/30/i-was-listening.html" class="u-url"><time class="dt-published" datetime="2022-07-30 08:37:59 -0600">Jul 30, 2022</time></a>
<div class="e-content">
<p>I was listening to the FunFact (@funfactfm) podcast recently and they mentioned this website. I finally got around to looking at it and it’s so cool! <a href="https://neal.fun/deep-sea/">Here is the site</a> by Neal Agarwal (@nealagarwal) about the deep sea. He also has a bunch of other cool sites at <a href="https://neal.fun">his website</a>. Enjoy!</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/07/29/lentil-chili-with.html">Lentil chili with cashew sour cream.</a></h1>
<a href="https://www.nickkaczmarek.com/2022/07/29/lentil-chili-with.html" class="u-url"><time class="dt-published" datetime="2022-07-29 06:28:52 -0600">Jul 29, 2022</time></a>
<div class="e-content">
<p>Delicious bowl of lentil chili that my wife made. She also made cashew sour cream and cornbread to go with it. Absolutely amazing! Picture is a little messy, but I added more cayenne and chili powder, violife cheddar, nutritional yeast, and the cashew sour cream. I also ended up crumbling a little bit of corn tortilla chips in, but didn’t take a picture of that or the cornbread. 🌶🌽🫘</p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/e8c84588b9.jpg" alt="IMG 0894" title="IMG_0894.jpg" border="0" width="225" height="300" /></p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/07/27/how-to-showhide.html">How to show/hide desktop icons on macOS</a></h1>
<a href="https://www.nickkaczmarek.com/2022/07/27/how-to-showhide.html" class="u-url"><time class="dt-published" datetime="2022-07-27 13:40:41 -0600">Jul 27, 2022</time></a>
<div class="e-content">
<p>I often want to do this while doing a demo or filming my screen so I’m writing this down so I remember. I found this on <a href="https://osxdaily.com/2009/09/23/hide-all-desktop-icons-in-mac-os-x/">osxdaily.com</a> and have amended it slightly. Maybe this is a mac app I could make…</p>
<p>To hide:</p>
<pre><code class="language-shell">defaults write com.apple.finder CreateDesktop -bool false && killall Finder
</code></pre>
<p>To show:</p>
<pre><code class="language-shell">defaults write com.apple.finder CreateDesktop -bool true && killall Finder
</code></pre>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/07/26/dont-delete-your.html">Don't delete your analytics if you want to see analytics.</a></h1>
<a href="https://www.nickkaczmarek.com/2022/07/26/dont-delete-your.html" class="u-url"><time class="dt-published" datetime="2022-07-26 08:01:19 -0600">Jul 26, 2022</time></a>
<div class="e-content">
<p>I’m so curious about who views my site (as some may have noticed from <a href="https://www.nickkaczmarek.com/2022/07/12/who-are-you.html">previous</a> <a href="https://www.nickkaczmarek.com/2022/06/06/site-analytics-with.html">posts</a>) I was confused why my views dropped to zero this week. Was it because I hadn’t posted? No, it was because I accidentally deleted the script that captures views and sends them to <a href="https://goatcounter.com">GoatCounter</a>. 🤦🏽♂️</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/07/25/trip-to-the.html">Trip to the local Thai restaurant.</a></h1>
<a href="https://www.nickkaczmarek.com/2022/07/25/trip-to-the.html" class="u-url"><time class="dt-published" datetime="2022-07-25 06:55:33 -0600">Jul 25, 2022</time></a>
<div class="e-content">
<p>Pictured are spring rolls, yellow curry with tofu, and pad thai with tofu. All delicious, all vegan. The server was even kind enough to realize we were vegan (just by the way we were ordering) and mentioned that something we had planned to get was not vegan. I love when that happens.</p>
<p><img src="uploads/2022/2d2a6f4911.jpg" width="600" height="450" alt="" /><img src="uploads/2022/31db4810f3.jpg" width="600" height="450" alt="" /><img src="uploads/2022/4a3dee6e87.jpg" width="600" height="450" alt="" /><img src="uploads/2022/206a4de441.jpg" width="600" height="450" alt="" /><img src="uploads/2022/7334ed293b.jpg" width="450" height="600" alt="" /><img src="uploads/2022/568c2b5161.jpg" width="450" height="600" alt="" /><img src="uploads/2022/912f961956.jpg" width="600" height="450" alt="" /><img src="uploads/2022/842e9cd15a.jpg" width="600" height="450" alt="" /><img src="uploads/2022/269a219b23.jpg" width="600" height="450" alt="" /><img src="uploads/2022/2aedd5a19d.jpg" width="450" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/25/a-little-breakfast.html" class="u-url"><time class="dt-published" datetime="2022-07-25 06:45:56 -0600">Jul 25, 2022</time></a>
<div class="e-content">
<p>A little breakfast for dinner that my wife prepared last night. Homemade biscuits, vegan sausage gravy, and tofu scramble. So delicious. 🤤</p>
<p><img src="uploads/2022/d44e7e4104.jpg" width="450" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/24/til-on-macos.html" class="u-url"><time class="dt-published" datetime="2022-07-24 21:35:21 -0600">Jul 24, 2022</time></a>
<div class="e-content">
<p>TIL: On macOS you can click <code>⌘F</code> and trigger the search in Maps and other apps. 🤦🏽♂️</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/07/16/what-cable-does.html">What cable does the iPad Pro use again? 🤪</a></h1>
<a href="https://www.nickkaczmarek.com/2022/07/16/what-cable-does.html" class="u-url"><time class="dt-published" datetime="2022-07-16 20:38:13 -0600">Jul 16, 2022</time></a>
<div class="e-content">
<p>I’m working on an iOS app. Looks decent on my phone, but I’d like to check it out on my iPad. I grab the lightning cable (😑) plugged into my computer and try to plug it in. Reader, you probably know what happened next… 🙈</p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/16/this-is-the.html" class="u-url"><time class="dt-published" datetime="2022-07-16 20:20:59 -0600">Jul 16, 2022</time></a>
<div class="e-content">
<p>This is the meat lovers with cashew cheese from Pizza Head and while it may not look creamy and delicious, looks can be deceiving. It’s phenomenal. Glad you’re aware of how bad STL style pizza is <a href="https://micro.blog/danielpunkass">@danielpunkass</a>. It was a shock to me when I moved here.</p>
<p><img src="uploads/2022/7a22cae224.jpg" width="600" height="450" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/16/the-most-responses.html" class="u-url"><time class="dt-published" datetime="2022-07-16 18:28:21 -0600">Jul 16, 2022</time></a>
<div class="e-content">
<p>The most responses I’ve had to a tweet was a picture of a beyond burger. Good thing I’ve got another I want to post. 🤣</p>
<p><img src="uploads/2022/056faff7e1.jpg" width="600" height="599" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/14/beyond-burger-with.html" class="u-url"><time class="dt-published" datetime="2022-07-14 15:33:26 -0600">Jul 14, 2022</time></a>
<div class="e-content">
<p style="text-align:center;">Beyond burger with pretzel bun and homemade pickles.</p>
<p><img src="uploads/2022/5f250bbcf8.jpg" width="600" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/14/i-will-never.html" class="u-url"><time class="dt-published" datetime="2022-07-14 13:05:11 -0600">Jul 14, 2022</time></a>
<div class="e-content">
<p><a href="https://icecreamsandwichcomics.com/post/157923361474/you-are-only-making-him-more-powerful-full-image">I will never tire of this comic.</a></p>
<p><img src="uploads/2022/df81870784.png" width="600" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/14/i-am-really.html" class="u-url"><time class="dt-published" datetime="2022-07-14 07:52:07 -0600">Jul 14, 2022</time></a>
<div class="e-content">
<p>I am really a big fan of this Apple keyboard. The wireless one that charges with lightning. I am <strong>really</strong> not a fan of the half height up/down arrows and full height left/right arrows. Pick a lane Apple!!!</p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/13/this-is-how.html" class="u-url"><time class="dt-published" datetime="2022-07-13 19:45:45 -0600">Jul 13, 2022</time></a>
<div class="e-content">
<p>This is how everyone pours a glass of water right? Right?</p>
<p><img src="uploads/2022/500fb18e76.jpg" width="450" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/13/weve-made-it.html" class="u-url"><time class="dt-published" datetime="2022-07-13 10:45:26 -0600">Jul 13, 2022</time></a>
<div class="e-content">
<p>We’ve made it to level 3.</p>
<p><img src="uploads/2022/486543817a.jpg" width="450" height="600" alt="baby climbing on monkey bars" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/13/just-purchased-airbuddy.html" class="u-url"><time class="dt-published" datetime="2022-07-13 10:33:36 -0600">Jul 13, 2022</time></a>
<div class="e-content">
<p>Just purchased <a href="https://v2.airbuddy.app">AirBuddy</a> and <a href="https://xscopeapp.com">xScope</a>. What a day!</p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/13/my-wife-made.html" class="u-url"><time class="dt-published" datetime="2022-07-13 07:16:07 -0600">Jul 13, 2022</time></a>
<div class="e-content">
<p>My wife made this last night and it was amazing. <a href="https://www.veganbell.com/lemon-spinach-risotto/">Lemon Kale Risotto. (She also doubled the nutritional yeast)</a></p>
<p><img src="uploads/2022/1c5c9e7eba.jpg" width="450" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/13/frying-potato-tacos.html" class="u-url"><time class="dt-published" datetime="2022-07-13 07:08:24 -0600">Jul 13, 2022</time></a>
<div class="e-content">
<p>Frying potato tacos. Started with enchilada mix of corn, onion, garlic, zucchini, and salsa verde then mixed in boiled and mashed yellow potatoes. Forgot to take a picture of the finished product. 🤷🏽♀️</p>
<p><img src="uploads/2022/9f45da0eb5.jpg" width="450" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/07/12/link-to-petapixel.html">Link to PetaPixel - Comparing Webb's First Photos to what Hubble Saw</a></h1>
<a href="https://www.nickkaczmarek.com/2022/07/12/link-to-petapixel.html" class="u-url"><time class="dt-published" datetime="2022-07-12 14:23:08 -0600">Jul 12, 2022</time></a>
<div class="e-content">
<p>Following up on my post of the Carina Nebula from earlier, <a href="https://petapixel.com/2022/07/12/comparing-webbs-first-photos-to-what-hubble-saw/">here’s a link from PetaPixel showing the differences between Hubble and JWST</a>.</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/07/12/who-are-you.html">Who are you and what are you doing here?</a></h1>
<a href="https://www.nickkaczmarek.com/2022/07/12/who-are-you.html" class="u-url"><time class="dt-published" datetime="2022-07-12 12:58:35 -0600">Jul 12, 2022</time></a>
<div class="e-content">
<p>I added analytics (<a href="https://www.goatcounter.com">https://www.goatcounter.com</a>) to my website so I can see people are seeing it but who are you!? And how are you finding these posts? Is this just my wife? 🤣</p>
<p>P.S. I have comments now so write some, yo.</p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/12/enchiladas-verdes-con.html" class="u-url"><time class="dt-published" datetime="2022-07-12 12:38:48 -0600">Jul 12, 2022</time></a>
<div class="e-content">
<p>Enchiladas verdes con arroz y frijoles.</p>
<p><img src="uploads/2022/f54a26d276.jpg" width="450" height="600" alt="" /><img src="uploads/2022/6759f7d32d.jpg" width="450" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/12/my-dog-named.html" class="u-url"><time class="dt-published" datetime="2022-07-12 12:19:36 -0600">Jul 12, 2022</time></a>
<div class="e-content">
<p>My dog, named Wednesday, sitting up in a car seat while resting her head against the back.</p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/964ec82ea8.jpg" title="IMG_5376.jpeg" border="0" width="225" height="300" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/12/113315.html" class="u-url"><time class="dt-published" datetime="2022-07-12 10:33:15 -0600">Jul 12, 2022</time></a>
<div class="e-content">
<p>First images from James Webb Space Telescope</p>
<p><img src="uploads/2022/6dec4603d7.jpg" width="600" height="347" alt="" /></p>
<p><a href="https://stsci-opo.org/STScI-01G7ETPF7DVBJAC42JR5N6EQRH.png">Link to full res</a></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/12/113232.html" class="u-url"><time class="dt-published" datetime="2022-07-12 10:32:32 -0600">Jul 12, 2022</time></a>
<div class="e-content">
<p>Some colorful lines from a child’s toy.</p>
<p><img src="uploads/2022/f52f33806e.jpg" width="600" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/10/great-post-by.html" class="u-url"><time class="dt-published" datetime="2022-07-10 13:20:09 -0600">Jul 10, 2022</time></a>
<div class="e-content">
<p>Great post by <a href="http://basicappleguy.com">@basicappleguy.com</a>. I really need to evaluate my own subs again. I did it recently, but it’s amazing how quickly these numbers can add up. 💰</p>
<blockquote>
<p><a href="https://basicappleguy.com/basicappleblog/999month">basicappleguy.com</a></p>
</blockquote>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/07/09/drafts-custom-action.html">Drafts custom action to create new draft in current workspace with keyboard shortcut</a></h1>
<a href="https://www.nickkaczmarek.com/2022/07/09/drafts-custom-action.html" class="u-url"><time class="dt-published" datetime="2022-07-09 08:03:46 -0600">Jul 9, 2022</time></a>
<div class="e-content">
<p>I made a <a href="https://getdrafts.com">Drafts</a> <a href="https://docs.getdrafts.com/actions/">custom action</a> that looks at the current <a href="https://docs.getdrafts.com/docs/drafts/workspaces">workspace</a>, grabs the <a href="https://docs.getdrafts.com/docs/drafts/tagging">tags</a>, and applies them to a new draft that is opened in the editor. It also supplies a keyboard shortcut:</p>
<pre><code class="nohighlight">
(option + control + command + N)
⌥⌃⌘N
</code></pre>
<p>I hope someone else finds this as useful as I do.</p>
<p><a href="https://directory.getdrafts.com/a/2BC">Link to action</a></p>
<h1 id="code">Code</h1>
<pre><code class="language-javascript">/// a drafts script that looks for the current workspace
/// and adds a new draft with the associated tags
/// then opens that draft in the editor
const currentWorkspace = app.currentWorkspace;
const workspaceName = currentWorkspace.name
const tags = currentWorkspace.tagFilter.split(",");
let d = new Draft();
tags.forEach(tag => d.addTag(tag));
editor.load(d);
</code></pre>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/08/221156.html" class="u-url"><time class="dt-published" datetime="2022-07-08 21:11:56 -0600">Jul 8, 2022</time></a>
<div class="e-content">
<p>Cut wheat, corn field, sky.</p>
<p>Driving down the highway in rural Missouri can lead to some pretty photos.</p>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/9bd4d8d0cb.jpg" title="IMG_0217.jpeg" border="0" width="2016" height="1512" /></p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/07/07/add-a-dark.html">Add a dark (or light) theme to your website using prefers-color-scheme</a></h1>
<a href="https://www.nickkaczmarek.com/2022/07/07/add-a-dark.html" class="u-url"><time class="dt-published" datetime="2022-07-07 21:57:26 -0600">Jul 7, 2022</time></a>
<div class="e-content">
<p>This is one way to add a dark or light theme to your website. I use <a href="https://micro.blog">Micro.blog</a> for my website, but this should be the same for basically any website hosting service or static website that one would use.</p>
<blockquote>
<p><strong>Caveat:</strong> while I work as a software engineer and have spent many years building web code, I don’t know everything so some of the nitty gritty details might be wrong, but the code will make your website gain the ability to display a light and dark mode.</p>
<p><strong>Important note:</strong> I may say theme here, but what I really mean is this is how you can set your website to automatically change colors based on the device’s settings. In macOS this is called appearance (found in System Preferences -> General -> Appearance). In windows they call it colors (found in Settings -> Personalize -> Colors) and I have no idea what Linux distributions call it.</p>
</blockquote>
<p><a href="#code">tl;dr (too long; didn’t read. take me to the code)</a></p>
<h1 id="how-to-do-the-thing">How to do the thing</h1>
<p>Finally, how to do the thing.</p>
<blockquote>
<p>This tutorial assumes you know a little bit about html and css or at the very least can use a search engine to find the relevant details if I miss something. I’ll do my best to cover it all and provide links.</p>
</blockquote>
<p>Open either your website’s main html file or main css file.</p>
<p>Figure out what your <code>background-color</code> and <code>color</code> are in the css. If you haven’t set them that’s fine too. By default the background color of your website will be unset which will likely render as white or <code>#fff</code> in hex and your foreground color will likely be black or <code>#000</code> in hex. (Hex colors are one way to define colors in css, <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color_keywords#list_of_all_color_keywords">but there are a group of named colors as well</a>.)</p>
<blockquote>
<p><strong>Note:</strong> color refers to text or foreground <code>color</code> and <code>background-color</code> refers to…background color.
The below code snippet will leave your background as white and set your foreground color to gray. It will also set your font to the apple system font, but feel free to put whatever you want there. You’ll notice there are a bunch of fonts separated by commas. Those are fallbacks in case the first one isn’t present.</p>
</blockquote>
<p>Assuming you’re starting with an un-styled light mode website, you’re going to put your colors from the above step in a chunk of code that will either live in your css file or in a <code><style></style></code> tag in your html.</p>
<h1 id="code">Code</h1>
<h2 id="starter-light-mode">Starter light mode</h2>
<pre><code class="language-css">@media (prefers-color-scheme: light) {
html {
color: #555;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol';
}
}
</code></pre>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/434f043547.png" alt="Screenshot of gray text on a white background" title="Screen Shot 2022-07-07 at 21.57.25.png" border="0" width="76" height="65" /></p>
<p>Next you’ll add a dark theme. You can choose whatever colors you want for background and foreground, but for simplicity I’ll stick with black (#000) for the background and white (#fff) for the foreground. Keep in mind that black background and white text is a bit intense to look at so feel free to mess with these colors. I’ve included the <code>font-family</code> attribute in both snippets, but you don’t need it in both or either unless you plan on setting a different font when in dark mode versus light mode.</p>
<p>There are likely other elements that you’ll want to include in your dark mode styles (like <code>pre</code> or <code>code</code>) that will look weird if you only have body styled, but I’ll leave that as an exercise for the reader.</p>
<h2 id="starter-dark-mode">Starter dark mode</h2>
<pre><code class="language-css">@media (prefers-color-scheme: dark) {
html {
background-color: #000;
color: #fff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol';
}
}
</code></pre>
<p><img style="display:block; margin-left:auto; margin-right:auto;" src="https://www.nickkaczmarek.com/uploads/2022/db2dd09dce.png" alt="Screenshot of white text on a black background" title="Screen Shot 2022-07-07 at 22.20.27.png" border="0" width="78" height="57" /></p>
<h1 id="ending-thoughts">Ending thoughts</h1>
<p>I wrote probably way more than I needed to for what amounts to less than 20 lines of css, but I wanted to give some background and context.</p>
<p>My inspiration for doing this to my website was browsing the web at night and being blinded by other’s websites. I wanted to be able to make my website not to searing and I made this post to hopefully share this information with others. At the end of the day you can take the two snippets and put them on your website and you’ll enable the ability to have two different themes for your site that follow what the operating system is rendering in terms of appearance.</p>
<p>You can also get much more creative and have a number of themes, but you’ll likely need some sort of javascript to enable something like that. Maybe I’ll write about that in the future. Who knows.</p>
<p>If you enjoyed this post, feel free to leave a comment or let me know on <a href="https://twitter.com/nickkacz/">twitter @nickkacz</a> or if you use micro.blog (I hope you do) send me a mention there. I’d love to hear about it or what I could do to help.</p>
<p>– Nick</p>
<h1 id="my-theme">My theme</h1>
<p>And finally this is what my dark theme looks like:</p>
<pre><code class="language-css">@media (prefers-color-scheme: dark) {
html {
background-color: #000;
color: #b4b4b4;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol';
}
.site__name {
color: #b4b4b4;
}
pre {
background-color: #282828;
color: #b4b4b4;
}
}
</code></pre>
<p>And here is my light theme:</p>
<pre><code class="language-css">@media (prefers-color-scheme: light) {
html {
color: #555;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
'Segoe UI Symbol';
}
}
</code></pre>
<h1 id="links">Links</h1>
<p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme">MDN prefers-color-scheme docs</a></p>
<p><a href="https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color_keywords#list_of_all_color_keywords">MDN css color keywords docs</a></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/07/161926.html" class="u-url"><time class="dt-published" datetime="2022-07-07 15:19:26 -0600">Jul 7, 2022</time></a>
<div class="e-content">
<p><img src="uploads/2022/6419f24268.jpg" width="450" height="600" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/06/202137.html" class="u-url"><time class="dt-published" datetime="2022-07-06 19:21:37 -0600">Jul 6, 2022</time></a>
<div class="e-content">
<p><img src="uploads/2022/4a3a7252e7.jpg" width="600" height="588" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/07/06/pm-is-much.html" class="u-url"><time class="dt-published" datetime="2022-07-06 19:04:55 -0600">Jul 6, 2022</time></a>
<div class="e-content">
<p>8pm is much too late to ring someone’s doorbell asking for them to vote for you. It’s much to late to ring someone’s doorbell period. Especially when they might have a small child sleeping.</p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/06/22/stop-suggesting-i.html">Stop suggesting I upgrade to macOS Monterey on a computer that isn't allowed to update to macOS Monterey!</a></h1>
<a href="https://www.nickkaczmarek.com/2022/06/22/stop-suggesting-i.html" class="u-url"><time class="dt-published" datetime="2022-06-22 18:03:52 -0600">Jun 22, 2022</time></a>
<div class="e-content">
<p>It’s just kinda rude.</p>
<p><img title="Screen Shot 2022-06-22 at 19.01.53.png" src="https://www.nickkaczmarek.com/uploads/2022/067ae18cf1.png" alt="macOS Notification suggesting upgrading to macOS Monterey" width="370" height="100" border="0" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/06/20/got-to-see.html" class="u-url"><time class="dt-published" datetime="2022-06-20 18:55:10 -0600">Jun 20, 2022</time></a>
<div class="e-content">
<p>Got to see my brother from Colorado today. Also my brother who lives in the same city.</p>
<p><img src="uploads/2022/b352055f9c.jpg" width="600" height="449" alt="" /></p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/06/16/its-kind-of.html" class="u-url"><time class="dt-published" datetime="2022-06-16 06:59:54 -0600">Jun 16, 2022</time></a>
<div class="e-content">
<p>It’s kind of odd that we call some plants weeds and some not. If you’re planting a plant and something else is growing with it that you didn’t plant, you’re planting the weed.</p>
</div>
</div>
<div class="h-entry">
<a href="https://www.nickkaczmarek.com/2022/06/13/112724.html" class="u-url"><time class="dt-published" datetime="2022-06-13 10:27:24 -0600">Jun 13, 2022</time></a>
<div class="e-content">
<p><img src="uploads/2022/4d3f03e1b6.jpg" width="600" height="325" alt="" /></p>
</div>
</div>
<div class="h-entry">
<h1><a href="https://www.nickkaczmarek.com/2022/06/06/site-analytics-with.html">Site Analytics with GoatCounter</a></h1>
<a href="https://www.nickkaczmarek.com/2022/06/06/site-analytics-with.html" class="u-url"><time class="dt-published" datetime="2022-06-06 13:52:57 -0600">Jun 6, 2022</time></a>
<div class="e-content">
<p>I haven’t been blogging for very long, but I was very curious about who (if anyone) might be seeing my site. So I looked around a little for an analytics platform I could use that would respect user privacy. I found one called Plausible Analytics that looked really nice, but I didn’t want to pay anything (I know, I know) and I also didn’t want to host anything (which also costs money). I eventually found something called <a href="https://www.goatcounter.com">GoatCounter</a> and it seems like it’s just the right tool for the job.</p>