• Joined on 2026-09-27
A minimalist blog engine API in Zig 0.16: std.http.Server with a thread per connection and an arena per request, Postgres via pg.zig, argon2id from std.crypto.pwhash, and a hand-rolled HS256 JWT in about 70 lines. No web framework.
Updated 2026-09-27 21:26:33 +02:00
The blog engine API in Zig 0.16 on MongoDB: std.http.Server with a thread per connection and an arena per request, the official C driver (libmongoc) used directly through @cImport, argon2id from std.crypto.pwhash, and a hand-rolled HS256 JWT. No web frame
Updated 2026-09-27 21:26:29 +02:00
A minimalist blog engine API in Rust: axum + tokio, Postgres via sqlx (runtime queries, no macros, no ORM), argon2 password hashing and HS256 JWTs. Five small source files you can read in one sitting.
Updated 2026-09-27 21:26:28 +02:00
The blog engine API in Rust on MongoDB: axum + tokio, the official mongodb driver, argon2 password hashing and HS256 JWTs. Same API as the Postgres flavor — documents instead of rows, indexes instead of a schema.
Updated 2026-09-27 21:26:25 +02:00
A small blog client in React 19, Vite 8, TypeScript and Tailwind CSS v4 — post list, post page with rendered markdown, login, and an editor with a publish toggle. No component library, no state framework. It works against any backend of the devai.io blo
Updated 2026-09-27 21:26:21 +02:00
A minimalist blog engine API in Python: FastAPI + asyncpg (raw SQL, no ORM), argon2 password hashing and HS256 JWTs. Four small modules and one schema file.
Updated 2026-09-27 21:26:20 +02:00
A minimalist blog engine API in Python: FastAPI + MongoDB through PyMongo's native async API (no ODM), argon2 password hashing and HS256 JWTs. Four small modules.
Updated 2026-09-27 21:26:17 +02:00
A minimalist blog engine API in Go: stdlib net/http routing, Postgres via pgx/v5, bcrypt passwords and HS256 JWTs. Raw SQL, no ORM, no framework — four source files you can read in one sitting.
Updated 2026-09-27 21:26:14 +02:00
A minimalist blog engine API in Go: stdlib net/http routing, MongoDB via the official mongo-driver/v2, bcrypt passwords and HS256 JWTs. No ODM, no framework — four source files you can read in one sitting.
Updated 2026-09-27 21:26:10 +02:00
The blog client as a Flutter app — Material 3, a post list, a post screen with rendered markdown, login, and an editor with a publish switch. Plain setState plus one ChangeNotifier for auth — no state-management package, no code generation. It works a
Updated 2026-09-27 21:26:09 +02:00
The blog client as a hand-rolled Dart web SPA — no Flutter, no framework, no CSS library: package:web for the DOM, a hash router, one stylesheet, and dart compile js. Post list, post page with rendered markdown, login, and an editor with a publish toggl
Updated 2026-09-27 21:26:06 +02:00
The blog client in modern Angular 22 — standalone components, signals, the built-in control flow (@if, @for), zoneless change detection and Tailwind CSS v4. Post list, post page with rendered markdown, login, and an editor with a publish toggle. It work
Updated 2026-09-27 21:26:03 +02:00