Login
Discover
Waves
Communities
Login
Signup
Topics
#zig
Global
Trending
Hot
New
Top
#zig
Trending
Top communities
Create your community
latest #zig trending 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.537
13
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
rayhanhiveman
Hive Learners
2026-08-13 16:22
Published via Ecency
Promoted
My Last Gift to My Family
Hello everyone today, I will discuss about an important topic which is cloning. I have been thinking about this differently. Most of the people would not like this idea because maybe they are not thinking
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