All
Articles 180,933Blog Posts 165,067Tech Tutorials 48,404Research Papers 35,698News 22,584
⚡ AI Lessons

Dev.to · SEN LLC
🌐 Frontend Engineering
1mo ago
Shakashaka: the rule is about whole regions, and it is exactly a rule about one lattice point
Shakashaka in the browser with five rule sets inside. Drop black triangles into the white cells —...

Dev.to · SEN LLC
🌐 Frontend Engineering
⚡ AI Lesson
1mo ago
Solving Yajilin: clues can pin the shading, but they can never steer the loop
Yajilin in the browser with four rule sets inside. Shade some cells, then run one closed loop...

Dev.to · SEN LLC
💻 AI-Assisted Coding
⚡ AI Lesson
2mo ago
Solving Nurikabe with constraint propagation: three-valued cells, a reachability flood, and a uniqueness proof
Nurikabe (ぬりかべ / "plaster wall") in the browser with a constraint-propagation solver inside. Every...

Dev.to · SEN LLC
💻 AI-Assisted Coding
⚡ AI Lesson
2mo ago
Solving Masyu with constraint propagation: an edge model, local patterns, a closure guard, and a uniqueness proof
Masyu (ましゅ / "pearls") in the browser with a single-loop constraint-propagation solver inside. Three...

Dev.to · SEN LLC
🌐 Frontend Engineering
⚡ AI Lesson
2mo ago
Solving Slitherlink with Constraint Propagation — Fixpoint Clue/Vertex Rules, Closed-Loop Pruning, and Puzzles Proven Unique
Slitherlink, the single-loop logic puzzle, built for the browser with a constraint-propagation...

Dev.to · SEN LLC
🖌️ UI/UX Design
⚡ AI Lesson
2mo ago
Building a CSS Specificity Calculator — Counting (a,b,c) and the :is() / :where() Trap Most Implementations Fall Into
A tool that computes the specificity of any CSS selector, breaks it down token by token, and tells...

Dev.to · SEN LLC
💻 AI-Assisted Coding
⚡ AI Lesson
2mo ago
A Shortest-Path CLI in Rust — Making a Min-Heap from a Max-Heap, Path Reconstruction, and Rejecting Negative Weights
A CLI that finds shortest paths in a weighted graph, in Rust, with Dijkstra's algorithm. Three...

Dev.to · SEN LLC
🖌️ UI/UX Design
⚡ AI Lesson
2mo ago
Building a WCAG Contrast Checker — Relative Luminance, sRGB Gamma, and the Step Most Implementations Skip
A tool that computes the WCAG contrast ratio between a text color and a background and reports AA /...

Dev.to · SEN LLC
⚡ Algorithms & Data Structures
⚡ AI Lesson
2mo ago
Implementing Huffman Coding in Go — Merging the Two Rarest Nodes Builds the Optimal Prefix-Free Code
A CLI that compresses text with Huffman coding and reports the ratio, in Go. The essence of Huffman...

Dev.to · SEN LLC
🌐 Frontend Engineering
3mo ago
Building a Base Converter — BigInt for Unlimited Digits, and Detecting Repeating Fractions
A converter between any radix from 2 to 36. "Isn't that just parseInt(s, 16)?" — done properly,...

Dev.to · SEN LLC
🛠️ AI Tools & Apps
⚡ AI Lesson
3mo ago
A Fuzzy-Finder CLI in Go — Two-Row Edit Distance, Unicode Correctness, and Mutex-Free Concurrency by Index
lev kitten sitting mitten prints each candidate's Levenshtein edit distance and similarity, ranked —...

Dev.to · SEN LLC
🌐 Frontend Engineering
⚡ AI Lesson
3mo ago
Visualizing git log in the Browser — Punchcard Heatmaps and the Timezone Trap
"When does everyone actually commit to this repo?" I built a tool that answers it: paste your git...

Dev.to · SEN LLC
🧠 Large Language Models
⚡ AI Lesson
3mo ago
Explaining SQL in Plain English with a Recursive-Descent Parser — and Why Logical Execution Order Is the Real Lesson
"What does this SQL actually do?" — you could paste it into an LLM, but then it won't work offline,...

Dev.to · SEN LLC
💻 AI-Assisted Coding
⚡ AI Lesson
3mo ago
A Hello World Museum for 84 Languages — and the Round-Trip Test That Makes a Tiny Syntax Highlighter Trustworthy
I built a "museum" that exhibits the Hello World of 84 programming languages on a decade timeline —...

Dev.to · SEN LLC
💻 AI-Assisted Coding
⚡ AI Lesson
3mo ago
A Quiz Is Only as Good as Its Wrong Answers — Building Algorithmic Distractor Generation for a Japanese Idiom Quiz
When you build a 4-choice quiz app, the laziest part of most implementations is how the wrong...

Dev.to · SEN LLC
📊 Data Analytics & Business Intelligence
⚡ AI Lesson
3mo ago
Try the Tech Radar #6 (Final) — Semantic Layer in 200 Lines: One Definition, Many SQL Consumers
Thoughtworks Technology Radar Vol 34 (April 2026) brought Semantic layer back to the Trial ring....

Dev.to · SEN LLC
📰 AI News & Updates
3mo ago
Try the Tech Radar #3 — JSON Schema LLM Prompt, Visualised
Thoughtworks Technology Radar Vol 34 (April 2026) puts Structured output from LLMs in the Adopt...

Dev.to · SEN LLC
📣 Digital Marketing & Growth
⚡ AI Lesson
3mo ago
Try the Tech Radar #2 — Markdown Typst Converter (Typst's Syntax Is Closer to Markdown Than LaTeX)
Thoughtworks Technology Radar Vol 34 put Typst in the Trial ring. It's the modern typesetting...

Dev.to · SEN LLC
🧠 Large Language Models
⚡ AI Lesson
3mo ago
Try the Tech Radar #1 — TOON Cuts JSON Token Cost by 71% for LLM Context
Thoughtworks Technology Radar Vol 34 (April 2026) put TOON (Token-Oriented Object Notation) in the...

Dev.to · SEN LLC
🌐 Frontend Engineering
⚡ AI Lesson
3mo ago
A Visual CSS Grid Builder in 500 Lines — How fr, minmax, and repeat Actually Compute Sizes
Almost every developer can copy grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); and...

Dev.to · SEN LLC
🌐 Frontend Engineering
⚡ AI Lesson
3mo ago
An npm Downloads Comparison Chart in 300 Lines of Vanilla JS — Nice-Tick Math and API-Direct Fetch
"react vs vue vs svelte vs solid-js — who's actually winning?" This tool answers it. Fetches daily...

Dev.to · SEN LLC
🖌️ UI/UX Design
⚡ AI Lesson
3mo ago
Building a Mini Tailwind-to-CSS Converter — How Utility Class Names Map to Real CSS
Tailwind is "just CSS." But what exactly does bg-blue-500 text-white px-6 py-3 rounded-lg font-bold...

Dev.to · SEN LLC
💻 AI-Assisted Coding
⚡ AI Lesson
3mo ago
Building a Chord Progression Generator in the Browser — Music Theory in JS, Sound via Web Audio API
Pop songs, jazz turnarounds, Pachelbel's canon. Chord progressions you've heard a thousand times all...

Dev.to · SEN LLC
⚡ Algorithms & Data Structures
⚡ AI Lesson
4mo ago
Visualizing 4 Sorting Algorithms with JavaScript Generators — O(n ) vs O(n log n) in Real Time
Sorting visualizers are a genre. This one is different in one way that matters: the algorithm code...
DeepCamp AI