Gallery

Workspaces people published. Open one to read how it works — every block, every line of code — then fork it into your own account and run it.

Being forked

What people are taking into their own accounts.

Automation

Watch a page for changes

A cron that fetches pages, strips the noise, compares a hash against last time, and says nothing at all unless something really moved.

admin 1 fork
API

Password sign-in done properly

PBKDF2 with a per-user salt, a constant-time check that costs the same for an unknown account, rate limits on both the address and the caller, and sessions stored as hashes.

admin
Data

CRUD API over your own Postgres

A REST resource over a database you already have. Parameterised queries throughout, credentials only ever as a vault handle, honest status codes.

admin
Real-time

Live status page

A page that updates itself without polling. One held-open request per viewer, a full state published on every change, correct after a reconnect.

admin
Site

Landing page with a contact form

A real page on its own domain, plus the endpoint behind its form: rate limit, honeypot, validation, and an inbox you can read back.

admin
API

API behind a JWT you did not issue

Auth0, Entra, Cognito or your own issuer in front of an endpoint: signature and claims verified against a JWKS, scope checked separately, rows scoped to the proved subject.

admin
Webhook

Stripe webhook to Slack

Verifies the signature against the raw body, keeps the events worth reading, posts them to a channel. The signing secret never touches the code.

admin
Data

Form submissions to a downloadable CSV

Collects submissions and hands them back as a file a spreadsheet opens correctly: stable columns, a BOM so accents survive Excel, and no formula injection.

admin
Data

Feature flags with percentage rollout

Flags evaluated server-side so a rollout needs no deploy, bucketed by a stable hash so nobody sees a feature flicker, written with compare-and-swap.

admin
Automation

Daily digest email

A weekday cron that reads a time window out of the store, groups it, and emails a digest — or stays quiet when nothing happened.

admin
API

Cached API proxy with a rate limit

Put your own endpoint in front of somebody else’s API: a fixed-window rate limit in one call, a cache that also remembers misses, and an honest 502.

admin
Webhook

GitHub webhook router

Verifies the HMAC against the raw body, drops duplicate deliveries, and turns the handful of events worth reading into one line each.

admin

Just published

The newest arrivals.

API

URL shortener

Three endpoints and a key-value store. Mints unguessable codes, refuses to become an open redirect, counts follows atomically.

admin
Webhook

Stripe webhook to Slack

Verifies the signature against the raw body, keeps the events worth reading, posts them to a channel. The signing secret never touches the code.

admin
API

Password sign-in done properly

PBKDF2 with a per-user salt, a constant-time check that costs the same for an unknown account, rate limits on both the address and the caller, and sessions stored as hashes.

admin
Automation

Watch a page for changes

A cron that fetches pages, strips the noise, compares a hash against last time, and says nothing at all unless something really moved.

admin 1 fork
Data

CRUD API over your own Postgres

A REST resource over a database you already have. Parameterised queries throughout, credentials only ever as a vault handle, honest status codes.

admin
Real-time

Live status page

A page that updates itself without polling. One held-open request per viewer, a full state published on every change, correct after a reconnect.

admin
Site

Landing page with a contact form

A real page on its own domain, plus the endpoint behind its form: rate limit, honeypot, validation, and an inbox you can read back.

admin
API

API behind a JWT you did not issue

Auth0, Entra, Cognito or your own issuer in front of an endpoint: signature and claims verified against a JWKS, scope checked separately, rows scoped to the proved subject.

admin
Webhook

GitHub webhook router

Verifies the HMAC against the raw body, drops duplicate deliveries, and turns the handful of events worth reading into one line each.

admin
Data

Form submissions to a downloadable CSV

Collects submissions and hands them back as a file a spreadsheet opens correctly: stable columns, a BOM so accents survive Excel, and no formula injection.

admin
Data

Feature flags with percentage rollout

Flags evaluated server-side so a rollout needs no deploy, bucketed by a stable hash so nobody sees a feature flicker, written with compare-and-swap.

admin
Automation

Daily digest email

A weekday cron that reads a time window out of the store, groups it, and emails a digest — or stays quiet when nothing happened.

admin