top of page

No Collections Here

Sort your projects into collections. Click on "Manage Collections" to get started

My Portfolio

Welcome to my portfolio. Here you’ll find a selection of my work. Explore my projects to learn more about what I do.

bottom of page
// Disable right-click document.addEventListener('contextmenu', event => event.preventDefault()); // Disable common shortcuts (Ctrl+S, Ctrl+U, Ctrl+C, Ctrl+Shift+I) document.onkeydown = function(e) { if (e.ctrlKey && (e.key === 's' || e.key === 'u' || e.key === 'c' || e.key === 'i')) { e.preventDefault(); return false; } };