AI and Git Self-Reflection System: How to Remove Tags from Entries https://sudonull.com/ai-and-git-self-reflection-system-how-to-remove-tags-from-entries
How to Combine Notes, Diary, and Work Log into a Single System with AI Analysis. Technical Implementation on plain text and Git. Learn How to Reduce Retrospective Cost.
Log levels in embedded: debugging without waterfall https://sudonull.com/log-levels-in-embedded-debugging-without-waterfall
Setting log levels via CLI for modular debugging. Macros, facility, serializers. Integration into firmware without overhead. For middle/senior dev.
Merkle Tree on Go: generics and proof https://sudonull.com/merkle-tree-on-go-generics-and-proof
Implementation of Merkle Tree on Golang with generics. Proof of inclusion in O(log N), CBOR hashing, code examples. For middle/senior dev — study and apply in blockchains.
Search Algorithms O(log n) vs O(n) in Python https://sudonull.com/search-algorithms-o-log-n-vs-o-n-in-python
Breakdown of linear, binary, exponential search and hash tables. Code, complexity, selection checklist. For middle/senior developers. Benchmarks and LeetCode examples.
O(1) vs O(log n) Gap: Cache in Data Structures https://sudonull.com/o-1-vs-o-log-n-gap-cache-in-data-structures
Why hash table O(1) loses to binary search O(log n) by 40%? Analysis of cache misses, array/list benchmarks and memory hierarchy for RISC-V. Learn real performance.