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

Hidden Features

42 tutorials

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

JavaScript Advanced

for await...of: Paginated APIs as a Simple Loop

Async generators hide the pagination bookkeeping - cursors, hasMore flags, page counters - behind a clean loop that fetches pages only as you consume them.

2 min 1,692
jQuery Advanced

Write Your Own jQuery Selectors like :external

jQuery lets you define custom pseudo-selectors - :external, :blank, :offscreen - that work in every $() call, filter() and delegation rule in your codebase.

2 min 726
PHP Intermediate

PHP's match(true) Pattern Replaces if/elseif Chains

match() is not just a stricter switch. Feed it true as the subject and every arm becomes an arbitrary condition - an elegant, exhaustive replacement for elseif ladders.

2 min 2,014
CSS Advanced

Animating CSS Gradients (Yes, Really) with @property

Gradients famously cannot be transitioned - until you teach the browser that your custom property is a color or angle. @property makes CSS variables animatable with types.

2 min 2,236
CSS Advanced

content-visibility: The Rendering Shortcut Nobody Uses

One CSS property tells the browser to skip layout and paint for off-screen sections entirely. On long pages it can cut initial rendering work dramatically - no virtualization library needed.

2 min 3,697