Login
Discover
Waves
Communities
Login
Signup
Topics
#zig
Global
Trending
Hot
New
Top
#zig
Hot
Top communities
Create your community
latest #zig hot topics | Ecency
scipio
StemSocial
2026-08-13 21:18
Learn Zig Series (#137) - Closures and Upvalues
Learn Zig Series (#137) - Closures and Upvalues What will I learn? What a closure really is once you strip away the mystique -- a function bundled together with the variables it captured -- and why that
$ 0.545
17
1
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
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
steven-patrick
Town Square
2026-08-13 10:05
Published via Ecency
Promoted
Apples and Pears
Each morning after a morning walk and breakfast, I do a walk around of the yard, garden, and fruit trees. Hopefully check the rain gauge, but no need today ๐. Today I took some photos of my fruit trees
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
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