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-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
wiseagent
Movies & TV Shows
2026-08-10 02:11
Promoted
The safest bet?
This publication was also writen in SPANISH and PORTUGUESE. The next edition of the Oscars is already becoming the subject of much discussion among audiences who follow this universe more closely. The
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
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
zainalbakri
INDONESIAN HIVE
2026-08-05 02:54
Published via Ecency
Promoted
Sejarah Hari Dharma Wanita, Dari Masa Orde Baru Hingga Era Modern
Sejarah Hari Dharma Wanita, Dari Masa Orde Baru Hingga Era Modern Setiap 5 Agustus diperingati sebagai Hari Dharma Wanita, sebuah momentum untuk mengenang perjalanan panjang organisasi perempuan yang menjadi
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
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
travelwritemoney
LeoFinance
2026-08-13 20:04
Published via Ecency
Promoted
Ether.fi Summer Launches: Stocks, Precious Metals & On-Chain Loans Now Available
This morning, Ether.fi Summer kicked off. The company held a video conference announcing their latest updates to the platform, which include the purchase of sto
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
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
gutuso
Hive Gaming
2026-08-13 19:28
Published via Ecency
Promoted
I JOINED THE BULLWORTH ACADEMY
IMAGE COVER EDITED BY CHATGPT The town of Bullworth was quiet.The streets were peaceful and the trees with their orange and golden leaves were gently shedding their foliage, giving the town a beautiful
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
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
Older →