Rock • Paper • Scissors (Modal)
One-time welcome modal with accessible dialog, best-of-3 game loop, and sessionStorage gate.
Open on Home →I build small, purposeful front-end pieces that support clear communication—interactive demos, UI components, and utilities.
One-time welcome modal with accessible dialog, best-of-3 game loop, and sessionStorage gate.
Open on Home →Lightweight rotation with ARIA live region and defensive mounting; vanilla JS, no dependencies.
Live Demo →Small functions in vanilla JS. Click an exercise to view code and run it with sample inputs.
Browse Exercises ↓
Small utility: run a function once per session using
sessionStorage
.
// Run a function once per session
function oncePerSession(key, fn){
try {
if (!sessionStorage.getItem(key)) {
fn();
sessionStorage.setItem(key, '1');
}
} catch(e) { fn(); }
}
Cisco Networking Academy • Issued 2025
Verify Badge ↗Cisco Networking Academy • Issued 2025
Verify Badge ↗See also: Resume →