Skip to content
Carl Victor Fontanos
Carl Victor Fontanos

Carl Victor Fontanos

Software Engineer

I build web applications and share what I learn along the way.

© 2026

Tutorials

128 tutorials

Step-by-step programming tutorials on PHP, JavaScript, Laravel, WordPress and more.

JavaScript Beginner

Stop Parsing Query Strings by Hand

Splitting location.search on & and = is a bug farm: encoding, arrays and empty values all break it. URLSearchParams and the URL API handle every edge case and read better.

2 min 1,804
JavaScript Beginner

console.log Is the Least Interesting Thing About the Console

console.table, console.groupCollapsed, console.time and a few DevTools-only helpers like $0 and copy() will change how you debug. Most of them are one keystroke away and almost nobody uses them.

2 min 2,612
JavaScript Intermediate

One AbortController Can Tear Down All Your Event Listeners

AbortController is not just for fetch(). Pass its signal to addEventListener and you can remove dozens of listeners with a single abort() call - no more keeping references to bound functions.

2 min 980