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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Posts from July to December 2025</title>
<link rel="shortcut icon" type="image/gif" href="/favicon.ico" />
<link rel="stylesheet" href="../style.css" />
<link rel="stylesheet" href="style-override.css" />
</head>
<body>
<p class="header">
<a href="https://foo.zone">Home</a> | <a href="https://codeberg.org/snonux/foo.zone/src/branch/content-md/gemfeed/2026-01-01-posts-from-july-to-december-2025.md">Markdown</a> | <a href="gemini://foo.zone/gemfeed/2026-01-01-posts-from-july-to-december-2025.gmi">Gemini</a> | <a href="https://snonux.foo">Microblog</a> | <a href="https://irregular.ninja">Street photography</a>
</p>
<h1 style='display: inline' id='posts-from-july-to-december-2025'>Posts from July to December 2025</h1><br />
<br />
<span class='quote'>Published at 2025-12-31T15:49:06+02:00</span><br />
<br />
<span>Hello there, I wish you all a happy new year! These are my social media posts from the last six months. I keep them here to reflect on them and also to not lose them. Social media networks come and go and are not under my control, but my domain is here to stay. </span><br />
<br />
<span>These are from Mastodon and LinkedIn. Have a look at my about page for my social media profiles. This list is generated with Gos, my social media platform sharing tool.</span><br />
<br />
<a class='textlink' href='../about/index.html'>My about page</a><br />
<a class='textlink' href='https://github.com/snonux/gos'>https://github.com/snonux/gos</a><br />
<br />
<h2 style='display: inline' id='table-of-contents'>Table of Contents</h2><br />
<br />
<ul>
<li><a href='#posts-from-july-to-december-2025'>Posts from July to December 2025</a></li>
<li>⇢ <a href='#july-2025'>July 2025</a></li>
<li>⇢ ⇢ <a href='#in-golang-values-are-actually-copied-when-'>In <span class='inlinecode'>#Golang</span>, values are actually copied when ...</a></li>
<li>⇢ ⇢ <a href='#same-experiences-i-had-but-it-s-a-time-saver-'>Same experiences I had, but it's a time saver. ...</a></li>
<li>⇢ ⇢ <a href='#we-programmers-all-use-them-i-hope-'>We (programmers) all use them (I hope): ...</a></li>
<li>⇢ ⇢ <a href='#shells-of-the-early-unices-didnt-understand-'>Shells of the early unices didnt understand ...</a></li>
<li>⇢ ⇢ <a href='#i-ve-picked-up-a-few-techniques-from-this-blog-'>I've picked up a few techniques from this blog ...</a></li>
<li>⇢ ⇢ <a href='#i-ve-published-the-sixth-part-of-my-kubernetes-'>I've published the sixth part of my "Kubernetes ...</a></li>
<li>⇢ ⇢ <a href='#the-book-coders-at-work-offers-a-fascinating-'>The book "Coders at Work" offers a fascinating ...</a></li>
<li>⇢ ⇢ <a href='#for-me-that-s-all-normal-couldn-t-imagine-a-'>For me, that's all normal. Couldn't imagine a ...</a></li>
<li>⇢ ⇢ <a href='#this-is-similar-to-my-dtail-project-it-got-'>This is similar to my <span class='inlinecode'>#dtail</span> project. It got ...</a></li>
<li>⇢ ⇢ <a href='#i-also-feel-the-most-comfortable-in-the-'>I also feel the most comfortable in the ...</a></li>
<li>⇢ ⇢ <a href='#i-have-been-enjoying-lately-as-an-alternative-'>I have been enjoying lately as an alternative ...</a></li>
<li>⇢ ⇢ <a href='#jonathan-s-reflection-of-10-years-of-'>Jonathan's reflection of 10 years of ...</a></li>
<li>⇢ ⇢ <a href='#some-neat-zero-copy-golang-tricks-here-'>Some neat zero-copy <span class='inlinecode'>#Golang</span> tricks here ...</a></li>
<li>⇢ ⇢ <a href='#what-was-it-like-working-at-gitlab-a-scary-'>What was it like working at GitLab? A scary ...</a></li>
<li>⇢ ⇢ <a href='#i-have-learned-a-lot-from-the-practical-ai-'>I have learned a lot from the Practical <span class='inlinecode'>#AI</span> ...</a></li>
<li>⇢ <a href='#august-2025'>August 2025</a></li>
<li>⇢ ⇢ <a href='#at-the-end-of-the-article-it-s-mentione-that-'>At the end of the article it's mentione that ...</a></li>
<li>⇢ ⇢ <a href='#great-blog-post-a-out-openbsdamsterdam-of-'>Great blog post a out <span class='inlinecode'>#OpenBSDAmsterdam</span>, of ...</a></li>
<li>⇢ ⇢ <a href='#interesting-llm-ai-slowdown-'>Interesting. <span class='inlinecode'>#llm</span> <span class='inlinecode'>#ai</span> <span class='inlinecode'>#slowdown</span> ...</a></li>
<li>⇢ ⇢ <a href='#with-the-help-of-genai-i-could-generate-this-'>With the help of genai, I could generate this ...</a></li>
<li>⇢ ⇢ <a href='#i-tinkered-a-bit-with-local-llms-for-coding-'>I tinkered a bit with local LLMs for coding: ...</a></li>
<li>⇢ ⇢ <a href='#good-stuff-10-years-of-functional-options-and-'>Good stuff: 10 years of functional options and ...</a></li>
<li>⇢ ⇢ <a href='#top-5-performance-boosters-golang-'>Top 5 performance boosters <span class='inlinecode'>#golang</span> ...</a></li>
<li>⇢ ⇢ <a href='#this-person-found-the-balance-although-i-'>This person found the balance.. although I ...</a></li>
<li>⇢ ⇢ <a href='#let-s-rewrite-all-slow-in-assembly-surely-'>Let's rewrite all slow in <span class='inlinecode'>#assembly</span>, surely ...</a></li>
<li>⇢ ⇢ <a href='#how-to-store-data-forever-storage-'>How to store data forever? <span class='inlinecode'>#storage</span> ...</a></li>
<li>⇢ ⇢ <a href='#no-wonder-that-almost-everyone-doing-something-'>No wonder, that almost everyone doing something ...</a></li>
<li>⇢ ⇢ <a href='#another-drawback-of-running-load-tests-in-a-'>Another drawback of running load tests in a ...</a></li>
<li>⇢ ⇢ <a href='#interesting-read-learnings-from-two-years-of-'>Interesting read Learnings from two years of ...</a></li>
<li>⇢ ⇢ <a href='#neat-little-story-a-school-girl-writing-her-'>Neat little story a school girl writing her ...</a></li>
<li>⇢ ⇢ <a href='#happy-that-i-am-not-yet-obsolete-llm-'>Happy, that I am not yet obsolete! <span class='inlinecode'>#llm</span> ...</a></li>
<li>⇢ <a href='#september-2025'>September 2025</a></li>
<li>⇢ ⇢ <a href='#loving-this-as-well-slackware-linux-'>Loving this as well: <span class='inlinecode'>#slackware</span> <span class='inlinecode'>#linux</span> ...</a></li>
<li>⇢ ⇢ <a href='#some-fun-random-weird-things-part-iii-blog-'>Some <span class='inlinecode'>#fun</span>: Random Weird Things Part III blog ...</a></li>
<li>⇢ ⇢ <a href='#yes-write-more-useless-software-i-agree-that-'>Yes, write more useless software. I agree that ...</a></li>
<li>⇢ ⇢ <a href='#i-learned-a-lot-from-this-openbsd-relayd-'>I learned a lot from this <span class='inlinecode'>#OpenBSD</span> <span class='inlinecode'>#relayd</span> ...</a></li>
<li>⇢ ⇢ <a href='#six-weeks-of-claude-code'>Six weeks of claude code</a></li>
<li>⇢ ⇢ <a href='#it-s-good-that-there-is-now-a-truly-open-source-'>It's good that there is now a truly open-source ...</a></li>
<li>⇢ ⇢ <a href='#have-to-try-this-at-some-point-'>Have to try this at some point ...</a></li>
<li>⇢ ⇢ <a href='#i-could-not-agree-more-for-me-a-personal-'>I could not agree more. For me, a personal ...</a></li>
<li>⇢ ⇢ <a href='#the-true-enterprise-developer-can-write-java-in-'>The true enterprise developer can write Java in ...</a></li>
<li>⇢ ⇢ <a href='#fx-is-a-neat-little-tool-for-viewing-json-'><span class='inlinecode'>#fx</span> is a neat little tool for viewing JSON ...</a></li>
<li>⇢ ⇢ <a href='#i-wish-i-had-as-much-time-as-this-guy-he-'>I wish I had as much time as this guy. He ...</a></li>
<li>⇢ ⇢ <a href='#what-exactly-was-the-point-of--xvar--'>What exactly was the point of [ “x$var” = ...</a></li>
<li>⇢ ⇢ <a href='#neat-zfs-feature-here-freebsd-which-i-'>Neat <span class='inlinecode'>#ZFS</span> feature (here <span class='inlinecode'>#FreeBSD</span>) which I ...</a></li>
<li>⇢ ⇢ <a href='#longer-hours-help-only-short-term-about-40-'>Longer hours help only short term. About 40 ...</a></li>
<li>⇢ ⇢ <a href='#you-could-also-use-bpf-instead-of-strace-'>You could also use <span class='inlinecode'>#bpf</span> instead of <span class='inlinecode'>#strace</span>, ...</a></li>
<li>⇢ ⇢ <a href='#some-great-things-are-approaching-bhyve-on-'>Some great things are approaching <span class='inlinecode'>#bhyve</span> on ...</a></li>
<li>⇢ ⇢ <a href='#another-synchronization-tool-part-of-the-'>Another synchronization tool part of the ...</a></li>
<li>⇢ ⇢ <a href='#too-many-open-files-linux-'>Too many open files <span class='inlinecode'>#linux</span> ...</a></li>
<li>⇢ ⇢ <a href='#just-posted-part-4-of-my-bash-golf-'>Just posted Part 4 of my <span class='inlinecode'>#Bash</span> <span class='inlinecode'>#Golf</span> ...</a></li>
<li>⇢ ⇢ <a href='#perl-is-like-a-swiss-army-knife-as-one-of-'><span class='inlinecode'>#Perl</span> is like a swiss army knife, as one of ...</a></li>
<li>⇢ ⇢ <a href='#personally-mainly-working-with-colorless-'>Personally, mainly working with colorless ...</a></li>
<li>⇢ ⇢ <a href='#how-do-gpus-work-usually-people-only-know-'>How do GPUs work? Usually, people only know ...</a></li>
<li>⇢ ⇢ <a href='#for-unattended-upgrades-you-must-have-a-good-'>For unattended upgrades you must have a good ...</a></li>
<li>⇢ ⇢ <a href='#surely-in-the-age-of-ai-and-llm-people-'>Surely, in the age of <span class='inlinecode'>#AI</span> and <span class='inlinecode'>#LLM</span>, people ...</a></li>
<li>⇢ ⇢ <a href='#on-ai-changes-everything-'>On <span class='inlinecode'>#AI</span> changes everything... ...</a></li>
<li>⇢ ⇢ <a href='#maps-in-go-under-the-hood-golang-'>Maps in Go under the hood <span class='inlinecode'>#golang</span> ...</a></li>
<li>⇢ ⇢ <a href='#a-project-that-looks-complex-might-just-be-'>"A project that looks complex might just be ...</a></li>
<li>⇢ ⇢ <a href='#i-must-admit-that-partly-i-see-myself-there-'>I must admit that partly I see myself there ...</a></li>
<li>⇢ ⇢ <a href='#makes-me-think-of-good-old-times-where-i-'>Makes me think of good old times, where I ...</a></li>
<li>⇢ ⇢ <a href='#neat-little-blog-post-showcasing-various-'>Neat little blog post, showcasing various ...</a></li>
<li>⇢ ⇢ <a href='#share-didn-t-know-that-on-macos-besides-of-'>share Didn't know, that on MacOS, besides of ...</a></li>
<li>⇢ ⇢ <a href='#i-think-this-is-the-way-use-llms-for-code-you-'>I think this is the way: use LLMs for code you ...</a></li>
<li>⇢ ⇢ <a href='#always-enable-keepalive-i-d-say-most-of-the-'>Always enable keepalive? I'd say most of the ...</a></li>
<li>⇢ ⇢ <a href='#i-just-finished-reading-chaos-engineering-by-'>I just finished reading "Chaos Engineering" by ...</a></li>
<li>⇢ ⇢ <a href='#fx-is-a-neat-and-tidy-command-line-tool-for-'>fx is a neat and tidy command-line tool for ...</a></li>
<li>⇢ ⇢ <a href='#some-nice-golang-tricks-there-'>Some nice <span class='inlinecode'>#Golang</span> tricks there ...</a></li>
<li>⇢ <a href='#october-2025'>October 2025</a></li>
<li>⇢ ⇢ <a href='#word-what-are-we-losing-with-ai-llm-ai-'>Word! What Are We Losing With AI? <span class='inlinecode'>#llm</span> <span class='inlinecode'>#ai</span> ...</a></li>
<li>⇢ ⇢ <a href='#it-s-not-yet-time-for-the-friday-fun-but-'>It's not yet time for the friday <span class='inlinecode'>#fun</span>, but: ...</a></li>
<li>⇢ ⇢ <a href='#finally-i-retired-my-awsecs-setup-for-my-'>Finally, I retired my AWS/ECS setup for my ...</a></li>
<li>⇢ ⇢ <a href='#a-great-blog-post-about-my-favourite-text-'>A great blog post about my favourite text ...</a></li>
<li>⇢ ⇢ <a href='#one-of-the-more-confusing-parts-in-go-nil-'>One of the more confusing parts in Go, nil ...</a></li>
<li>⇢ ⇢ <a href='#strong-engineers-are-pragmatic-work-fast-have-'>Strong engineers are pragmatic, work fast, have ...</a></li>
<li>⇢ ⇢ <a href='#i-am-currently-binge-listening-to-the-google-'>I am currently binge-listening to the Google ...</a></li>
<li>⇢ ⇢ <a href='#looks-like-a-neat-library-for-writing-'>Looks like a neat library for writing ...</a></li>
<li>⇢ ⇢ <a href='#where-gen-ai-shines-is-the-generation-and-'>Where Gen AI shines is the generation and ...</a></li>
<li>⇢ ⇢ <a href='#at-work-everybody-is-replacable-some-with-a-'>At work, everybody is replacable. Some with a ...</a></li>
<li>⇢ ⇢ <a href='#i-actually-would-switch-back-to-freebsd-as-'>I actually would switch back to <span class='inlinecode'>#FreeBSD</span> as ...</a></li>
<li>⇢ ⇢ <a href='#amazing-print-is-amazing-'>Amazing Print is amazing ...</a></li>
<li>⇢ ⇢ <a href='#always-worth-a-reminde-what-are-bloom-filters-'>Always worth a reminde, what are bloom filters ...</a></li>
<li>⇢ ⇢ <a href='#some-ruby-book-notes-of-mine-'>Some <span class='inlinecode'>#Ruby</span> book notes of mine: ...</a></li>
<li>⇢ ⇢ <a href='#sad-story-work-scrum-jira-'>Sad story. <span class='inlinecode'>#work</span> <span class='inlinecode'>#scrum</span> <span class='inlinecode'>#jira</span> ...</a></li>
<li>⇢ ⇢ <a href='#one-of-my-favorite-books-some-thoughts-on-'>One of my favorite books: "Some Thoughts on ...</a></li>
<li>⇢ ⇢ <a href='#ltex-ls-is-great-for-integrating-'>ltex-ls is great for integrating ...</a></li>
<li>⇢ ⇢ <a href='#supernote-tool-is-awesome-as-i-can-now-'>supernote-tool is awesome, as I can now ...</a></li>
<li>⇢ ⇢ <a href='#fun-story---the-case-of-the-500-mile-email-'>Fun story! :-) The case of the 500-mile email ...</a></li>
<li>⇢ ⇢ <a href='#operating-myself-some-software-over-10-years-of-'>Operating myself some software over 10 years of ...</a></li>
<li>⇢ ⇢ <a href='#git-worktrees-are-awesome-'><span class='inlinecode'>#git</span> worktrees are awesome! ...</a></li>
<li>⇢ ⇢ <a href='#llms-for-anomaly-detection-while-some-'>LLMs for anomaly detection? "While some ...</a></li>
<li>⇢ ⇢ <a href='#after-having-heavily-vibe-coded-personal-pet-'>After having heavily vibe-coded (personal pet ...</a></li>
<li>⇢ ⇢ <a href='#slowly-one-after-another-i-am-switching-all-'>Slowly, one after another, I am switching all ...</a></li>
<li>⇢ ⇢ <a href='#some-neat-slice-tricks-for-go-golang-'>Some neat slice tricks for Go: <span class='inlinecode'>#golang</span> ...</a></li>
<li>⇢ ⇢ <a href='#i-spent-way-too-much-time-on-this-site-it-s-'>I spent way too much time on this site. It's ...</a></li>
<li>⇢ ⇢ <a href='#i-share-similar-experiences-with-rust-but-i-'>I share similar experiences with <span class='inlinecode'>#rust</span>, but I ...</a></li>
<li>⇢ ⇢ <a href='#pipelines-in-go-using-channels-golang-'>Pipelines in Go using channels. <span class='inlinecode'>#golang</span> ...</a></li>
<li>⇢ ⇢ <a href='#some-nifty-ruby-tricks-in-my-opinion-ruby-'>Some nifty <span class='inlinecode'>#Ruby</span> tricks: In my opinion, Ruby ...</a></li>
<li>⇢ ⇢ <a href='#reflects-my-experience-'>Reflects my experience ...</a></li>
<li>⇢ ⇢ <a href='#i-like-the-fact-that-markdown-fikes-a-rcs-an-'>I like the fact that Markdown fikes, a RCS. an ...</a></li>
<li>⇢ ⇢ <a href='#rich-interactive-widgets-for-terminal-uis-it-'>Rich Interactive Widgets for Terminal UIs, it ...</a></li>
<li>⇢ ⇢ <a href='#always-fun-to-dig-in-the-perl-perl-woods-'>Always fun to dig in the <span class='inlinecode'>#Perl</span> @Perl woods. ...</a></li>
<li>⇢ ⇢ <a href='#how-does-virtual-memory-work-ram-'>How does <span class='inlinecode'>#virtual</span> <span class='inlinecode'>#memory</span> work? <span class='inlinecode'>#ram</span> ...</a></li>
<li>⇢ ⇢ <a href='#flamelens---an-interactive-flamegraph-viewer-in-'>flamelens - An interactive flamegraph viewer in ...</a></li>
<li>⇢ ⇢ <a href='#you-can-now-run-ansible-playbooks-and-shell-'>You can now run Ansible Playbooks and shell ...</a></li>
<li>⇢ ⇢ <a href='#for-people-working-with-k8s-this-tool-is-'>For people working with <span class='inlinecode'>#k8s</span>, this tool is ...</a></li>
<li>⇢ <a href='#november-2025'>November 2025</a></li>
<li>⇢ ⇢ <a href='#yes-using-the-right-tool-for-the-job-and-'>Yes, using the right <span class='inlinecode'>#tool</span> for the job and ...</a></li>
<li>⇢ ⇢ <a href='#some-neat-go-tricks-golang-'>Some neat Go tricks: <span class='inlinecode'>#golang</span> ...</a></li>
<li>⇢ ⇢ <a href='#there-are-some-truths-in-this-sre-article-'>There are some truths in this <span class='inlinecode'>#SRE</span> article: ...</a></li>
<li>⇢ ⇢ <a href='#the-go-flight-recorder-is-a-tool-that-allows-'>The Go flight recorder is a tool that allows ...</a></li>
<li>⇢ ⇢ <a href='#this-is-useful-golang-'>This is useful <span class='inlinecode'>#golang</span> ...</a></li>
<li>⇢ ⇢ <a href='#great-visually-animated-guide-how-raft-'>Great visually animated guide how <span class='inlinecode'>#raft</span> ...</a></li>
<li>⇢ ⇢ <a href='#todays-junior-devs-who-skip-the-hard-'>"Today’s junior devs who skip the “hard ...</a></li>
<li>⇢ ⇢ <a href='#i-actually-enjoyed-readong-through-the-fish-'>I actually enjoyed readong through the <span class='inlinecode'>#Fish</span> ...</a></li>
<li>⇢ ⇢ <a href='#there-can-be-many-things-which-can-go-wrong-'>There can be many things which can go wrong, ...</a></li>
<li>⇢ ⇢ <a href='#imho-motivation-is-not-always-enough-there-'>IMHO, motivation is not always enough. There ...</a></li>
<li>⇢ ⇢ <a href='#have-been-generating-those-cpu-flame-graphs-on-'>Have been generating those CPU flame graphs on ...</a></li>
<li>⇢ ⇢ <a href='#i-personally-don-t-like-the-typical-whiteboard-'>I personally don't like the typical whiteboard ...</a></li>
<li>⇢ ⇢ <a href='#if-you-ve-wondered-how-cpus-and-operating-'>If you've wondered how CPUs and operating ...</a></li>
<li>⇢ ⇢ <a href='#and-there-s-an-unexpected-winner---erlang-'>And there's an unexpected winner :-) <span class='inlinecode'>#erlang</span> ...</a></li>
<li>⇢ ⇢ <a href='#is-it-it-this-is-it-what-is-it-in-ruby-34-'>Is it it? This is it. What Is It (in Ruby 3.4)? ...</a></li>
<li>⇢ ⇢ <a href='#from-my-recent-london-trip-i-ve-uploaded-'>From my recent <span class='inlinecode'>#London</span> trip, I've uploaded ...</a></li>
<li>⇢ ⇢ <a href='#agreed-you-should-make-your-own-programming-'>Agreed, you should make your own programming ...</a></li>
<li>⇢ ⇢ <a href='#principles-for-c-programming-c-'>Principles for C programming <span class='inlinecode'>#C</span> ...</a></li>
<li>⇢ ⇢ <a href='#typst-appears-to-be-a-great-modern-'><span class='inlinecode'>#Typst</span> appears to be a great modern ...</a></li>
<li>⇢ ⇢ <a href='#things-you-can-do-with-a-debugger-but-not-with-'>Things you can do with a debugger but not with ...</a></li>
<li>⇢ ⇢ <a href='#neat-tutorial-i-think-i-ve-to-try-jujutsu-'>Neat tutorial, I think I've to try <span class='inlinecode'>#jujutsu</span> ...</a></li>
<li>⇢ ⇢ <a href='#wise-words-best-practices-are-not-rules-they-'>Wise words Best practices are not rules. They ...</a></li>
<li>⇢ ⇢ <a href='#how-to-build-a-linux-container-from-'>How to build a <span class='inlinecode'>#Linux</span> <span class='inlinecode'>#Container</span> from ...</a></li>
<li>⇢ ⇢ <a href='#when-i-reach-the-point-where-i-am-trying-to-'>When I reach the point where I am trying to ...</a></li>
<li>⇢ ⇢ <a href='#personally-one-of-the-main-benefits-of-using-'>Personally one of the main benefits of using ...</a></li>
<li>⇢ <a href='#december-2025'>December 2025</a></li>
<li>⇢ ⇢ <a href='#rhese-are-some-nice-ruby-tricks-ruby-is-onw-'>Rhese are some nice <span class='inlinecode'>#Ruby</span> tricks (Ruby is onw ...</a></li>
<li>⇢ ⇢ <a href='#that-s-fun-use-the-c-preprocessor-as-a-html-'>That's fun, use the C preprocessor as a HTML ...</a></li>
<li>⇢ ⇢ <a href='#jq-but-for-markdown-thats-interesting-'><span class='inlinecode'>#jq</span> but for <span class='inlinecode'>#Markdown</span>? Thats interesting, ...</a></li>
<li>⇢ ⇢ <a href='#elvish-seems-to-be-a-neat-little-shell-it-s-'>Elvish seems to be a neat little shell. It's ...</a></li>
<li>⇢ ⇢ <a href='#google-sre-required-better-wifi-on-the-'>Google <span class='inlinecode'>#SRE</span> required better Wifi on the ...</a></li>
<li>⇢ ⇢ <a href='#indeed-'>Indeed ...</a></li>
<li>⇢ ⇢ <a href='#very-interesting-post-how-pods-are-scheduled-'>Very interesting post how pods are scheduled ...</a></li>
<li>⇢ ⇢ <a href='#i-have-added-observability-to-the-kubernetes-'>I have added observability to the <span class='inlinecode'>#Kubernetes</span> ...</a></li>
<li>⇢ ⇢ <a href='#wondering-where-i-could-make-use-of-it-'>Wondering where I could make use of it ...</a></li>
<li>⇢ ⇢ <a href='#trying-out-cosmic-desktop-seems-'>Trying out <span class='inlinecode'>#COSMIC</span> <span class='inlinecode'>#Desktop</span>... seems ...</a></li>
<li>⇢ ⇢ <a href='#best-thing-i-ve-ever-read-about-container-'>Best thing I've ever read about <span class='inlinecode'>#container</span> ...</a></li>
<li>⇢ ⇢ <a href='#while-acknowledging-luck-in-finding-the-right-'>While acknowledging luck in finding the right ...</a></li>
<li>⇢ ⇢ <a href='#great-explanation-slo-sla-sli-sre-'>Great explanation <span class='inlinecode'>#slo</span> <span class='inlinecode'>#sla</span> <span class='inlinecode'>#sli</span> <span class='inlinecode'>#sre</span> ...</a></li>
<li>⇢ ⇢ <a href='#nice-service-you-send-a-drive-they-host-'>Nice service, you send a drive, they host ...</a></li>
</ul><br />
<h2 style='display: inline' id='july-2025'>July 2025</h2><br />
<br />
<h3 style='display: inline' id='in-golang
|