Skip to content

Learn.
Test.
Build.

A lightweight collection of tiny scripts to copy, test, and learn from.

Browse scripts →Bash basics →

Micro-interaction demo

A real little state machine: press the demo button and it snaps through default → armed → fired → locked.

State: default
1. DEFAULT
2. ARMED
3. SNAP
4. LOCKED

PHP
Scripts

HTML
Scripts

BASH
Scripts

Featured: MD5 Generator

Code

<?php
$input = $_POST['md5me'] ?? '';
$hash = $input !== '' ? md5($input) : '';
?>

Live Demo