Developer reference

Development Snippets Cheatsheet

Regex, cron, Base64, SQL, YAML, slug, color, and CSS helper reminders for daily development.

Regex email shape

Simple test pattern for email-like text.

[^\s@]+@[^\s@]+\.[^\s@]+

Cron daily

Run around 09:00 every day.

0 9 * * *

Base64 decode

Small encoded fixture.

SGVsbG8=

CSS rem

Common CSS unit reminder.

1rem = root font size

Related tools

Related categories