Login
Discover
Waves
Communities
Login
Signup
Topics
#zig
Global
Trending
Hot
New
Top
#zig
New
Top communities
Create your community
latest #zig created topics | Ecency
scipio
StemSocial
2026-08-12 20:51
Learn Zig Series (#136) - Stack-Based Virtual Machine
Learn Zig Series (#136) - Stack-Based Virtual Machine What will I learn? What a virtual machine actually is once the mystique is stripped away -- a loop, an instruction pointer, and a stack -- and why
$ 0.407
15
1
scipio
StemSocial
2026-08-11 19:31
Learn Zig Series (#135) - Bytecode Design
Learn Zig Series (#135) - Bytecode Design What will I learn? Why a tree-walking interpreter is slow by construction, and what a flat instruction stream buys you that a tree never can; What bytecode actually
$ 0.825
13
2
scipio
StemSocial
2026-08-10 19:09
Learn Zig Series (#134) - Type Checking
Learn Zig Series (#134) - Type Checking What will I learn? Why a program that parses perfectly can still be complete nonsense, and what a type checker actually is -- the stage that asks "does this
scipio
StemSocial
2026-08-09 18:40
Learn Zig Series (#133) - AST Design and Traversal
Learn Zig Series (#133) - AST Design and Traversal What will I learn? Why the bare tree we hacked together last episode is not good enough the moment you want to do anything with a program, and what a
ibarra95
DIYHub
2026-08-13 08:50
Published via Ecency
Promoted
DIY! Cactus in Decorated Pots • The perfect handmade touch that Mom will keep forever. (Tutorial) [ENG] [ESP]
Did you know? Cacti have very special meanings. They are associated with resilience, protection, strength, and enduring love—they thrive in harsh conditions with lots of sun and survive with minimal care.
scipio
StemSocial
2026-08-08 18:51
Learn Zig Series (#132) - Recursive Descent Parsing
Learn Zig Series (#132) - Recursive Descent Parsing What will I learn? Why a recursive-descent parser is just one small function per grammar rule, and how that maps almost mechanically onto the language
scipio
StemSocial
2026-08-07 19:27
Learn Zig Series (#131) - Lexing a Simple Language
Learn Zig Series (#131) - Lexing a Simple Language What will I learn? Why the tokenizer we wrote for SQL last episode is the exact same tool we need to build a whole programming language, and what changes
scipio
StemSocial
2026-08-06 21:40
Learn Zig Series (#130) - Mini Project: Database Engine - SQL Parser
Learn Zig Series (#130) - Mini Project: Database Engine - SQL Parser What will I learn? Why an index you drive by calling insert and search from Zig is a library, not a database, and what the missing piece
scipio
StemSocial
2026-08-05 19:20
Learn Zig Series (#129) - Mini Project: Database Engine - B-Tree Index
Learn Zig Series (#129) - Mini Project: Database Engine - B-Tree Index What will I learn? Why a flat heap of records in pages is storage but not yet a database, and how an index turns "scan every
wiseagent
Scrobble.life
2026-08-08 14:08
Promoted
MOVIE REVIEW: “The Forsaken” (2001)
This publication was also writen in SPANISH and PORTUGUESE. IMDb Synopsis: In the midst of an arid desert, and in a completely unexpected way, a young man finds himself caught up in a war against hungry
scipio
StemSocial
2026-08-04 20:26
Learn Zig Series (#128) - Mini Project: Database Engine - Page Storage
Learn Zig Series (#128) - Mini Project: Database Engine - Page Storage What will I learn? Why real databases store their data in fixed-size pages in stead of writing records at arbitrary offsets, and how
scipio
StemSocial
2026-08-03 19:36
Learn Zig Series (#127) - Mini Project: Search Engine - Query Parser
Learn Zig Series (#127) - Mini Project: Search Engine - Query Parser What will I learn? Why a search box that only takes a flat bag of words is missing the thing users actually type -- structure -- and
scipio
StemSocial
2026-08-02 18:39
Learn Zig Series (#126) - Mini Project: Search Engine - TF-IDF
Learn Zig Series (#126) - Mini Project: Search Engine - TF-IDF What will I learn? Why an engine that only finds matching documents is only half a search box, and what the missing half -- ranking -- actually
scipio
StemSocial
2026-08-01 19:37
Learn Zig Series (#125) - Mini Project: Search Engine - Inverted Index
Learn Zig Series (#125) - Mini Project: Search Engine - Inverted Index What will I learn? Why the obvious way to search -- scan every document for the word on every query -- is fine for a shoebox of files
orangecrush12
LeoFinance
2026-08-12 18:39
Promoted
Los Angeles Lakers Sold Again!
The Los Angeles Lakers are being sold to Bob Iger & Josh Kushner for $12.5 Billion. Mark Walter bought the Lakers for $10 Billion in the fall of 2025. #NBA
scipio
StemSocial
2026-07-31 20:55
Learn Zig Series (#124) - Consistent Hashing
Learn Zig Series (#124) - Consistent Hashing What will I learn? Why the innocent-looking hash(key) % server_count -- the first thing everyone reaches for to spread keys across a cluster -- turns into a
scipio
StemSocial
2026-07-30 22:28
Learn Zig Series (#123) - LRU Cache
Learn Zig Series (#123) - LRU Cache What will I learn? Why a cache with a hard size limit needs to answer two questions at once -- "what is this key's value?" and "which entry have I not
scipio
StemSocial
2026-07-29 20:45
Learn Zig Series (#122) - Union-Find
Learn Zig Series (#122) - Union-Find What will I learn? What the union-find (or disjoint-set) structure actually answers -- the deceptively simple question "are these two things in the same group
scipio
StemSocial
2026-07-28 22:03
Learn Zig Series (#121) - Topological Sort
Learn Zig Series (#121) - Topological Sort What will I learn? What a topological sort actually is, why it only makes sense on a directed acyclic graph (a DAG), and how it turns "these things depend
rozioo
GEMS
2026-08-10 21:52
Promoted
Hive Contest: Let’s Get to Know Each Other!
🏆 Contest! Let's Get to Know Each Other Again! 😁 There is a tradition on Hive that when you write your first post, you should introduce yourself. Tell people a little about who you are, where you're
scipio
StemSocial
2026-07-27 19:09
Learn Zig Series (#120) - Dijkstra and A*
Learn Zig Series (#120) - Dijkstra and A* What will I learn? Why the BFS shortest path we built last episode quietly breaks the moment edges stop being equal, and why that single assumption is the whole
scipio
StemSocial
2026-07-26 22:15
Learn Zig Series (#119) - BFS and DFS
Learn Zig Series (#119) - BFS and DFS What will I learn? Why breadth-first search (BFS) and depth-first search (DFS) are secretly the same algorithm, and how the only real difference is whether you pull
scipio
StemSocial
2026-07-25 18:40
Learn Zig Series (#118) - Graph Representation
Learn Zig Series (#118) - Graph Representation What will I learn? Why a graph is the right shape for data that is connected rather than ordered -- roads, dependencies, friendships, web links -- and why
scipio
StemSocial
2026-07-24 18:04
Learn Zig Series (#117) - Binary Search Variations
Learn Zig Series (#117) - Binary Search Variations What will I learn? Why binary search is the payoff that sorting buys you -- an unsorted array answers "is this here?" in O(n), a sorted one
Older →