Login
Discover
Waves
Communities
Login
Signup
scipio
@scipio
70
Does it matter who's right, or who's left?
Followers
1924
Following
112
Follow
Resource Credits
Available
Used
Created
2017-10-24 09:41
RSS Feed
Subscribe
Blog
Blog
Posts
Comments
Communities
Wallet
scipio
StemSocial
2026-08-02 09:00
Learn AI Series (#145) - Neuro-Symbolic AI
Learn AI Series (#145) - Neuro-Symbolic AI What will I learn Why the two oldest tribes in AI keep failing at each other's job: neural nets that perceive brilliantly but reason fuzzily, symbolic systems
$ 0.626
24
1
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
$ 0.551
16
1
scipio
StemSocial
2026-08-01 14:40
Learn Rust Series (#14) - Mini Project: A Command-Line To-Do App
Learn Rust Series (#14) - Mini Project: A Command-Line To-Do App What will I learn You will learn how to read command-line arguments with std::env::args; how to read and write a text file with std::fs,
scipio
StemSocial
2026-08-01 10:25
Learn AI Series (#144) - Few-Shot and Zero-Shot Learning
Learn AI Series (#144) - Few-Shot and Zero-Shot Learning What will I learn The N-way K-shot setup: the vocabulary of few-shot learning, and why we train in "episodes" that simulate learning from
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-31 15:28
Learn Rust Series (#13) - Concurrency: Threads, Channels, Arc & Mutex
Learn Rust Series (#13) - Concurrency: Threads, Channels, Arc & Mutex What will I learn You will learn how to spawn OS threads and wait for them with join handles; why you use move closures to hand
scipio
StemSocial
2026-07-31 10:16
Learn AI Series (#143) - Continual Learning
Learn AI Series (#143) - Continual Learning What will I learn Catastrophic forgetting: why a neural network trained on a new task quietly destroys what it knew about the old one, and the parameter-sharing
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-30 16:13
Learn Rust Series (#12) - Smart Pointers: Box, Rc & RefCell
Learn Rust Series (#12) - Smart Pointers: Box, Rc & RefCell What will I learn You will learn what a smart pointer actually is, and how it differs from the plain references we have used since episode
scipio
StemSocial
2026-07-30 09:13
Learn AI Series (#142) - AI Reasoning and Planning
Learn AI Series (#142) - AI Reasoning and Planning What will I learn The System 1 vs System 2 framing (fast intuition vs slow deliberation) and why a plain transformer is a System 1 machine bolted shut
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-29 15:49
Learn Rust Series (#11) - Closures & the Iterator Trait
Learn Rust Series (#11) - Closures & the Iterator Trait What will I learn You will learn what closures are and how they capture the surrounding environment; the three closure traits Fn, FnMut, and
scipio
StemSocial
2026-07-29 09:58
Learn AI Series (#141) - Robotics and Embodied AI
Learn AI Series (#141) - Robotics and Embodied AI What will I learn The sim-to-real gap: why a policy that is flawless in simulation faceplants in reality, and how domain randomization quietly turns that
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-28 14:06
Learn Rust Series (#10) - Lifetimes
Learn Rust Series (#10) - Lifetimes What will I learn You will learn why lifetimes exist, and how they stop dangling references at compile time before they can ever crash your program; how to read and
scipio
StemSocial
2026-07-28 10:32
Learn AI Series (#140) - Scientific AI
Learn AI Series (#140) - Scientific AI What will I learn How AlphaFold cracked the 50-year protein folding problem, and which pieces of THIS series it quietly reused to do it; AI for drug discovery --
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-27 12:56
Learn Rust Series (#9) - Modules & Crates
Learn Rust Series (#9) - Modules & Crates What will I learn You will learn the difference between a crate and a module, and when to reach for each; how to carve code into modules, split them across
scipio
StemSocial
2026-07-27 09:05
Learn AI Series (#139) - AI for Code
Learn AI Series (#139) - AI for Code What will I learn How code generation models actually work under the hood -- the training data, the objective, and what "writing code" really means to a language
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
Older →