-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.json
More file actions
2280 lines (2280 loc) · 66.3 KB
/
posts.json
File metadata and controls
2280 lines (2280 loc) · 66.3 KB
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
[
{
"slug": "the-lost-art-of-the-tactile-90s-cinema",
"title": "The Lost Art of the Tactile: Why 90s Cinema Ruined Modern Movies",
"date": "2026-03-11",
"updated": "2026-03-11",
"description": "A passionate rant about the shift from the tactile, analog weight of 80s/90s cinema to the weightless digital era, featuring McTiernan, Cameron, and the glory of practical effects.",
"tags": [
"cinema",
"movies",
"rant",
"90s",
"technology",
"practical-effects"
],
"category": "rant",
"filename": "the-lost-art-of-the-tactile-90s-cinema.txt",
"authors": [
"fezcode"
]
},
{
"slug": "side-character-conspiracy-sitcom-rant",
"title": "The Side Character Conspiracy: Solving the Sitcom's Greatest Mystery",
"date": "2026-03-08",
"updated": "2026-03-08",
"description": "A detective's deep-dive into the \"Side Character Conspiracy,\" proving why the protagonists of sitcoms are often the most boring part of the show.",
"tags": [
"sitcoms",
"pop-culture",
"rant",
"side-characters",
"analysis"
],
"category": "rant",
"filename": "side-character-conspiracy-sitcom-rant.txt",
"authors": [
"fezcode"
]
},
{
"slug": "wave-function-collapse-explained",
"title": "Wave Function Collapse: Taming Entropy in Procedural Generation",
"date": "2026-03-07",
"updated": "2026-03-07",
"description": "An in-depth guide to the Wave Function Collapse algorithm, featuring visual explanations and implementations in JavaScript and Golang.",
"tags": [
"algorithms",
"gamedev",
"javascript",
"golang",
"procedural-generation"
],
"category": "dev",
"filename": "wave-function-collapse-explained.txt",
"authors": [
"fezcode"
]
},
{
"slug": "distributed-systems-consensus-and-state",
"title": "The Deep End: Distributed Systems, Consensus, and State",
"date": "2026-03-03",
"updated": "2026-03-03",
"description": "A comprehensive deep dive into the engineering behind distributed systems. Unpacking logical clocks, the CAP theorem, Raft consensus, split-brain fencing, Sagas, and idempotency with pseudocode and examples.",
"tags": [
"architecture",
"distributed-systems",
"raft",
"consensus",
"engineering",
"backend"
],
"category": "dev",
"filename": "distributed-systems-consensus-and-state.txt",
"authors": [
"fezcode"
]
},
{
"slug": "mbti-and-astrology-modern-identity",
"title": "MBTI & Astrology: The Modern Quest for Identity",
"date": "2026-03-02",
"updated": "2026-03-02",
"description": "A gentle exploration of why we love personality frameworks like MBTI and Astrology, even if the science behind them might be a little fuzzy.",
"tags": [
"psychology",
"society",
"philosophy"
],
"category": "rant",
"filename": "mbti-and-astrology-modern-identity.txt",
"authors": [
"fezcode"
]
},
{
"slug": "encyclopedia-of-bad-arguments",
"title": "The Encyclopedia of Bad Arguments: A Guide to Logical Fallacies",
"date": "2026-02-28",
"updated": "2026-02-28",
"description": "A comprehensive deep dive into formal and informal logical fallacies, cognitive biases, and why human beings are so terrible at arguing.",
"tags": [
"logic",
"philosophy",
"fallacies",
"psychology",
"reasoning"
],
"category": "rant",
"filename": "encyclopedia-of-bad-arguments.txt",
"authors": [
"fezcode"
]
},
{
"slug": "a-colossal-rant-on-logic",
"title": "The Lost Art of Thinking: A Colossal Rant on Logic",
"date": "2026-02-28",
"updated": "2026-02-28",
"description": "A deep dive into the absolute fundamentals of logic, from ancient Greece to Boolean algebra, and a rant on why modern society desperately needs to relearn how to think.",
"tags": [
"logic",
"philosophy",
"rant",
"education",
"history"
],
"category": "rant",
"filename": "a-colossal-rant-on-logic.txt",
"authors": [
"fezcode"
]
},
{
"slug": "the-basics-of-time-travel",
"title": "The Basics of Time Travel: Theories, Paradoxes, and Spacetime",
"date": "2026-02-23",
"updated": "2026-02-23",
"description": "A deep dive into the theoretical physics of time travel, exploring Einstein's relativity, wormholes, and the paradoxes that challenge our understanding of causality.",
"tags": [
"physics",
"time-travel",
"relativity",
"science",
"theory"
],
"category": "rant",
"filename": "the-basics-of-time-travel.txt",
"authors": [
"fezcode"
]
},
{
"slug": "quadtree-algorithm-spatial-indexing",
"title": "The Quadtree: Solving the O(N^2) Spatial Nightmare",
"date": "2026-02-21",
"updated": "2026-02-21",
"description": "A deep dive into spatial partitioning with Quadtrees, explaining how to avoid O(N^2) nightmares with recursive decomposition.",
"tags": [
"algorithms",
"spatial-indexing",
"quadtree",
"dev",
"math",
"optimization"
],
"category": "dev",
"filename": "quadtree-algorithm-spatial-indexing.txt",
"authors": [
"fezcode"
]
},
{
"slug": "gobake-go-build-orchestrator",
"title": "gobake: The Build Orchestrator Go Was Missing",
"date": "2026-02-18",
"updated": "2026-02-18",
"description": "Introducing gobake, a Go-native build orchestrator that replaces Makefiles with type-safe Go recipes.",
"tags": [
"go",
"golang",
"build-system",
"automation",
"gobake",
"devops"
],
"category": "dev",
"filename": "gobake-go-build-orchestrator.txt",
"authors": [
"fezcode"
]
},
{
"slug": "tag-file-systems-explained-go-implementation",
"title": "Escape the Hierarchy Trap: How Tag File Systems Work",
"date": "2026-02-18",
"updated": "2026-02-18",
"description": "Ditch the folders! A deep dive into Tag-based File Systems, why hierarchical organization is failing us, and how FUSE and databases make tagging possible. Includes a Go implementation!",
"tags": [
"filesystems",
"go",
"databases",
"architecture",
"productivity"
],
"category": "dev",
"filename": "tag-file-systems-explained-go-implementation.txt",
"authors": [
"fezcode"
]
},
{
"slug": "dht-distributed-hash-tables-go-educational-guide",
"title": "The Chaos Coordinator: Mastering Distributed Hash Tables (DHT)",
"date": "2026-02-17",
"updated": "2026-02-17",
"description": "A deep dive into Distributed Hash Tables (DHTs), Kademlia, XOR metrics, and building decentralized routing in Go. Fun, fast, and very educational.",
"tags": [
"go",
"distributed-systems",
"p2p",
"networking",
"dht"
],
"category": "dev",
"filename": "dht-distributed-hash-tables-go-educational-guide.txt",
"authors": [
"fezcode"
]
},
{
"slug": "building-the-fezcodex-mcp-server",
"title": "Bridging the Gap: How We Built the Fezcodex MCP Server",
"date": "2026-02-16",
"updated": "2026-02-16",
"description": "A deep dive into creating a Model Context Protocol (MCP) server for Fezcodex, enabling AI agents to autonomously author and manage blog content.",
"tags": [
"mcp",
"ai",
"nodejs",
"automation",
"blog",
"dev"
],
"category": "dev",
"filename": "building-the-fezcodex-mcp-server.txt",
"authors": [
"fezcode"
],
"image": "/images/defaults/sina-salehian-HqmTUJD73mM-unsplash.jpg"
},
{
"slug": "model-context-protocol-mcp",
"title": "The Model Context Protocol (MCP): Bridging the Gap Between AI and Data",
"date": "2026-02-16",
"updated": "2026-02-16",
"description": "An introductory guide to Anthropic's Model Context Protocol (MCP). Learn how it standardizes AI connectivity with data sources and tools.",
"tags": [
"mcp",
"ai",
"anthropic",
"standard",
"protocol",
"dev"
],
"category": "ai",
"filename": "model-context-protocol-mcp.txt",
"authors": [
"fezcode"
],
"image": "/images/defaults/sina-salehian-HqmTUJD73mM-unsplash.jpg"
},
{
"title": "Prompt Engineering University",
"date": "2026-02-16",
"updated": "2026-02-16",
"slug": "prompt-engineering-university",
"description": "A comprehensive, university-style curriculum on Prompt Engineering. From foundational strategies to advanced agentic workflows.",
"series": {
"posts": [
{
"slug": "prompting-strategies",
"title": "Zero-shot, One-shot, Many-shot, and Metaprompting",
"filename": "/prompt-engineering/01-prompting-strategies.txt",
"date": "2026-02-16",
"category": "ai",
"tags": [
"prompt-engineering",
"ai",
"llm",
"zero-shot",
"few-shot",
"metaprompting"
],
"authors": [
"fezcode"
]
},
{
"slug": "structure-and-formatting",
"title": "Structure & Formatting: Taming the Output",
"filename": "/prompt-engineering/02-structure-and-formatting.txt",
"date": "2026-02-16",
"category": "ai",
"tags": [
"prompt-engineering",
"ai",
"llm",
"json",
"markdown",
"output-format"
],
"authors": [
"fezcode"
]
},
{
"slug": "reasoning-and-logic",
"title": "Reasoning & Logic: Chain of Thought and Decomposition",
"filename": "/prompt-engineering/03-reasoning-and-logic.txt",
"date": "2026-02-16",
"category": "ai",
"tags": [
"prompt-engineering",
"ai",
"llm",
"cot",
"tot",
"decomposition",
"reasoning"
],
"authors": [
"fezcode"
]
},
{
"slug": "persona-and-context",
"title": "Persona & Context: Role-Playing and The Art of Context Management",
"filename": "/prompt-engineering/04-persona-and-context.txt",
"date": "2026-02-16",
"category": "ai",
"tags": [
"prompt-engineering",
"ai",
"llm",
"persona",
"context",
"rag"
],
"authors": [
"fezcode"
]
},
{
"slug": "evaluation-and-optimization",
"title": "Evaluation & Optimization: How to Measure and Improve Your Prompts",
"filename": "/prompt-engineering/05-evaluation-and-optimization.txt",
"date": "2026-02-16",
"category": "ai",
"tags": [
"prompt-engineering",
"ai",
"llm",
"evaluation",
"optimization",
"temperature"
],
"authors": [
"fezcode"
]
},
{
"slug": "advanced-agents-and-tools",
"title": "Advanced Agents & Tools: From Chatbots to Problem Solvers",
"filename": "/prompt-engineering/06-advanced-agents-and-tools.txt",
"date": "2026-02-16",
"category": "ai",
"tags": [
"prompt-engineering",
"ai",
"llm",
"agents",
"react",
"tools",
"function-calling"
],
"authors": [
"fezcode"
]
}
]
},
"authors": [
"fezcode"
]
},
{
"slug": "linux-vs-unix-the-kernel-wars",
"title": "Linux vs. Unix: The Kernel Wars and the Philosophy of Modular Design",
"date": "2026-02-15",
"updated": "2026-02-15",
"description": "A deep dive into the history, kernel architectures, and the uncompromising philosophy that shaped modern computing. Monoliths, microkernels, and the power of the pipe.",
"tags": [
"linux",
"unix",
"kernel",
"os",
"architecture",
"history",
"dev"
],
"category": "dev",
"filename": "linux-vs-unix-the-kernel-wars.txt",
"authors": [
"fezcode"
],
"image": "/images/defaults/gabriel-heinzer-4Mw7nkQDByk-unsplash.jpg"
},
{
"slug": "the-halo-effect",
"title": "The Halo Effect: Why We Trust Idiots with Good Hair",
"date": "2026-02-14",
"updated": "2026-02-14",
"description": "The Halo Effect is the silent killer of technical debt. Exploring why we mistake a shiny coat of paint for a functional engine in software engineering.",
"tags": [
"psychology",
"halo-effect",
"bias",
"software-engineering",
"management",
"rant"
],
"category": "rant",
"filename": "halo-effect.txt",
"authors": [
"fezcode"
],
"image": "/images/defaults/sina-salehian-HqmTUJD73mM-unsplash.jpg"
},
{
"slug": "mastering-git-worktrees-and-ai",
"title": "Mastering Git Worktrees: Parallel Development with AI Agents",
"date": "2026-02-13",
"updated": "2026-02-13",
"description": "Stop context switching. Learn how to use Git Worktrees to manage multiple features simultaneously and orchestrate parallel AI agents.",
"tags": [
"git",
"worktrees",
"ai",
"workflow",
"productivity",
"dev"
],
"category": "dev",
"filename": "mastering-git-worktrees-and-ai.txt",
"authors": [
"fezcode"
],
"image": "/images/defaults/sina-salehian-HqmTUJD73mM-unsplash.jpg"
},
{
"title": "Philosophy 101",
"date": "2026-02-07",
"updated": "2026-02-07",
"slug": "philosophy-101",
"series": {
"posts": [
{
"slug": "introduction",
"title": "Introduction - The Examined Life",
"filename": "/philosophy-101/01-introduction.txt",
"date": "2026-02-01",
"updated": "2026-02-01",
"category": "rant",
"tags": [
"philosophy",
"education",
"series",
"rant",
"intro"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "logic-and-arguments",
"title": "Logic - The Toolbox",
"filename": "/philosophy-101/02-logic-and-arguments.txt",
"date": "2026-02-01",
"category": "rant",
"tags": [
"philosophy",
"logic",
"arguments",
"critical-thinking"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "epistemology",
"title": "Epistemology - How Do You Know That?",
"filename": "/philosophy-101/03-epistemology.txt",
"date": "2026-02-01",
"category": "rant",
"tags": [
"philosophy",
"epistemology",
"knowledge",
"matrix"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "metaphysics",
"title": "Metaphysics - What is Real?",
"filename": "/philosophy-101/04-metaphysics.txt",
"date": "2026-02-01",
"category": "rant",
"tags": [
"philosophy",
"metaphysics",
"reality",
"ontology"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "ethics",
"title": "Ethics - What Should We Do?",
"filename": "/philosophy-101/05-ethics.txt",
"date": "2026-02-02",
"category": "rant",
"tags": [
"philosophy",
"ethics",
"morality",
"trolley-problem"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "the-big-three",
"title": "The Big Three - Socrates, Plato, Aristotle",
"filename": "/philosophy-101/06-socrates-plato-aristotle.txt",
"date": "2026-02-02",
"category": "rant",
"tags": [
"philosophy",
"socrates",
"plato",
"aristotle",
"history"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "al-ghazali",
"title": "Al-Ghazali - The Incoherence of the Philosophers",
"filename": "/philosophy-101/06-al-ghazali-and-skepticism.txt",
"date": "2026-02-02",
"category": "rant",
"tags": [
"philosophy",
"al-ghazali",
"skepticism",
"occasionalism",
"islamic-golden-age"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "descartes",
"title": "René Descartes - The Father of Modern Philosophy",
"filename": "/philosophy-101/07-descartes-and-modern-philosophy.txt",
"date": "2026-02-03",
"category": "rant",
"tags": [
"philosophy",
"descartes",
"modern-philosophy",
"dualism"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "kant",
"title": "Immanuel Kant - The Thing-in-Itself",
"filename": "/philosophy-101/10-kant-and-the-thing-in-itself.txt",
"date": "2026-02-03",
"category": "rant",
"tags": [
"philosophy",
"kant",
"transcendental-idealism",
"categorical-imperative"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "hegel",
"title": "Hegel - The Dialectic and World Spirit",
"filename": "/philosophy-101/11-hegel-and-the-dialectic.txt",
"date": "2026-02-04",
"category": "rant",
"tags": [
"philosophy",
"hegel",
"dialectic",
"geist",
"history"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "schopenhauer",
"title": "Schopenhauer - The Will and Pessimism",
"filename": "/philosophy-101/12-schopenhauer-and-pessimism.txt",
"date": "2026-02-04",
"category": "rant",
"tags": [
"philosophy",
"schopenhauer",
"pessimism",
"will",
"art"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "kierkegaard",
"title": "Kierkegaard - The Leap of Faith",
"filename": "/philosophy-101/13-kierkegaard-and-faith.txt",
"date": "2026-02-05",
"category": "rant",
"tags": [
"philosophy",
"kierkegaard",
"faith",
"existentialism",
"anxiety"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "nietzsche",
"title": "Nietzsche - The Death of God and the Übermensch",
"filename": "/philosophy-101/08-nietzsche-and-nihilism.txt",
"date": "2026-02-06",
"category": "rant",
"tags": [
"philosophy",
"nietzsche",
"nihilism",
"ubermensch"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "heidegger",
"title": "Heidegger - Being and Time",
"filename": "/philosophy-101/14-heidegger-and-being.txt",
"date": "2026-02-06",
"category": "rant",
"tags": [
"philosophy",
"heidegger",
"dasein",
"phenomenology",
"being"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "existentialism",
"title": "Sartre & Camus - Existentialism and Absurdism",
"filename": "/philosophy-101/09-existentialism-and-camus.txt",
"date": "2026-02-07",
"category": "rant",
"tags": [
"philosophy",
"sartre",
"camus",
"existentialism",
"absurdism"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "wittgenstein",
"title": "Wittgenstein - The Fly in the Fly-Bottle",
"filename": "/philosophy-101/15-wittgenstein-and-language.txt",
"date": "2026-02-07",
"category": "rant",
"tags": [
"philosophy",
"wittgenstein",
"language",
"logic",
"games"
],
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
}
]
},
"authors": [
"fezcode"
],
"image": "/images/defaults/adrianna-geo-1rBg5YSi00c-unsplash.jpg"
},
{
"slug": "understanding-database-normalization-3nf",
"title": "Understanding Database Normalization: The Path to Third Normal Form (3NF)",
"date": "2026-02-06",
"updated": "2026-02-06",
"description": "A professional guide to database normalization, explaining the journey from 1NF to 3NF with clear examples and architectural diagrams.",
"tags": [
"database",
"sql",
"normalization",
"3nf",
"data-integrity",
"dev"
],
"category": "dev",
"filename": "understanding-database-normalization-3nf.txt",
"authors": [
"fezcode"
]
},
{
"slug": "cqrs-in-go-for-geniuses",
"title": "CQRS: Command Query Responsibility Segregation in Modern Architecture",
"date": "2026-02-06",
"updated": "2026-02-06",
"description": "An authoritative guide to CQRS (Command Query Responsibility Segregation) following Martin Fowler's principles, implemented in Golang.",
"tags": [
"golang",
"architecture",
"cqrs",
"design-patterns",
"backend",
"dev"
],
"category": "dev",
"filename": "cqrs-in-go-for-geniuses.txt",
"authors": [
"fezcode"
]
},
{
"slug": "hyrums-law",
"title": "Hyrum's Law: Why Your Bug Fix Broke My Spacebar Heating Workflow",
"date": "2026-02-05",
"updated": "2026-02-05",
"description": "With a sufficient number of users, every bug becomes a feature. Exploring why you can't fix anything without breaking someone's weird workflow.",
"tags": [
"software-engineering",
"hyrums-law",
"xkcd",
"philosophy",
"bugs",
"dev"
],
"category": "dev",
"filename": "hyrums-law.txt",
"authors": [
"fezcode"
]
},
{
"slug": "architecting-trust-preventing-insider-threats",
"title": "Architecting Trust: 5 Patterns to Prevent Insider Threats",
"date": "2026-01-23",
"updated": "2026-01-23",
"description": "Developers have God-mode access, but absolute power creates absolute risk. Here are 5 architectural patterns to prevent internal fraud and system abuse.",
"tags": [
"architecture",
"security",
"design-patterns",
"maker-checker",
"event-sourcing",
"devops"
],
"category": "dev",
"filename": "architecting-trust-preventing-insider-threats.txt",
"authors": [
"fezcode"
]
},
{
"slug": "deep-link-configuration-with-url-parameters",
"title": "Deep Link Configuration: Achieving a Global Parameter Observer in React",
"date": "2026-01-21",
"updated": "2026-01-21",
"description": "How to implement a global URL parameter observer that silently updates application state and cleans up the address bar for a seamless user experience.",
"tags": [
"react",
"webdev",
"url-parameters",
"ux",
"browser-api",
"frontend",
"dev"
],
"category": "dev",
"filename": "deep-link-configuration-with-url-parameters.txt",
"authors": [
"fezcode"
],
"image": "/images/asset/url-magic.webp"
},
{
"slug": "introducing-fezluxe-refined-architectural-elegance",
"title": "Introducing Fezluxe: A Study in Refined Architectural Elegance",
"date": "2026-01-20",
"updated": "2026-01-20",
"description": "A deep dive into the philosophy and implementation of the new Fezluxe design language. Moving beyond brutalism to find sophisticated digital calm.",
"tags": [
"design",
"luxe",
"ui/ux",
"refactor",
"architectural",
"frontend",
"feat"
],
"category": "feat",
"filename": "introducing-fezluxe-refined-architectural-elegance.txt",
"authors": [
"fezcode"
],
"image": "/images/asset/luxe-design.webp"
},
{
"slug": "gun-and-ball",
"title": "The FIFA Paradox: Why We Spend 14 Hours Playing Games We Hate",
"date": "2026-01-19",
"updated": "2026-01-19",
"description": "In the gaming world, there is a pervasive stereotype: \"Shooters and Sports games are trash for casuals, while RPGs and Strategy games are high art for intellectuals.\". Any truth?",
"tags": [
"data science",
"math",
"python",
"games",
"gun",
"ball",
"fifa",
"cod",
"uv",
"dev"
],
"category": "dev",
"filename": "gun-and-ball.txt",
"authors": [
"fezcode"
]
},
{
"slug": "what-genre-should-i-watch",
"title": "Dying is Easy, Comedy is Statistically Impossible: An IMDbayes Analysis",
"date": "2026-01-18",
"updated": "2026-01-18",
"description": "Deconstructing Hollywood: A Data Science Journey from Raw Data to p99 Insights. Why you need a 6.5 filter for laughs, but can fly blind with a Documentary.",
"tags": [
"data science",
"math",
"python",
"imdb",
"movies",
"uv",
"dev"
],
"category": "dev",
"filename": "what-genre-should-i-watch.txt",
"authors": [
"fezcode"
]
},
{
"slug": "debian-upgrade-path",
"title": "Upgrading Debian 11 to 13: The Safe Path",
"date": "2026-01-12",
"updated": "2026-01-12",
"description": "A quick gist on how to safely upgrade from Debian 11 to Debian 13 by following the required sequential path.",
"tags": [
"linux",
"debian",
"upgrade",
"sysadmin",
"gist"
],
"category": "gist",
"filename": "debian-upgrade-path.txt",
"authors": [
"fezcode"
],
"image": "/images/defaults/sina-salehian-HqmTUJD73mM-unsplash.jpg"
},
{
"slug": "steganography-lsb-deep-dive",
"title": "Steganography: Hiding Secrets in Plain Sight with LSB",
"date": "2026-01-12",
"updated": "2026-01-12",
"description": "A technical deep dive into Least Significant Bit (LSB) steganography and how we implemented it for the Fezcodex Steganography Tool.",
"tags": [
"steganography",
"lsb",
"security",
"image-processing",
"canvas",
"javascript",
"dev"
],
"category": "dev",
"filename": "steganography-lsb-deep-dive.txt",
"authors": [
"fezcode"
],
"image": "/images/defaults/sina-salehian-HqmTUJD73mM-unsplash.jpg"
},
{
"slug": "pixel-art-resources-guide",
"title": "The Ultimate Pixel Art Resources Guide",
"date": "2026-01-12",
"updated": "2026-01-12",
"description": "A curated list of essential tools, websites, and guides to start or level up your pixel art journey, inspired by JuniperDev.",
"tags": [
"pixel-art",
"resources",
"tools",
"aseprite",
"art",
"tutorial"
],
"category": "dev",
"filename": "pixel-art-resources-guide.txt",
"authors": [
"fezcode"
],
"image": "/images/defaults/sina-salehian-HqmTUJD73mM-unsplash.jpg"
},
{
"slug": "implementing-drag-and-drop-in-react",
"title": "Implementing Drag and Drop in React without Libraries",
"date": "2026-01-10",
"updated": "2026-01-10",
"description": "A deep dive into building a robust drag-and-drop system for Tier Forge using the native HTML5 Drag and Drop API.",
"tags": [
"react",
"drag-and-drop",
"javascript",
"tutorial",