Mastering responsive images: srcset, picture, WebP

In today’s diverse device landscape, delivering optimized images for optimal performance and user experience is crucial. This article delves into the world of responsive images, equipping you with the knowledge and code examples to implement efficient solutions using srcset, sizes, the <picture> tag, and the versatile WebP format. Understanding the […]

Read More…

A comprehensive guide to optimizing WordPress

In today’s fast-paced online world, website speed is crucial for user engagement and SEO ranking. This article delves into optimizing your WordPress website for maximum speed, providing practical tips and code examples to put into action. Understanding the Importance of PageSpeed for optimizing WordPress: Analyzing Your Current PageSpeed: Before diving […]

Read More…

Prevent UI update on every frame in Unity

Unity - prevent UI update on every frame

Let’s prevent UI update on every frame.When creating a UI within a game, during a level, the first temptation is to put the UI update inside the Update method. This practice is wrong because for most of the time the interface surrounding our game will always be the same and […]

Read More…

The JSON format, this unknown

Meta language JSON

It has happened to me many times that issues discussed and re-discussed a million times, came back into vogue as doubts, perhaps trivial but always dangerous, being able to give rise to unknown outputs. I’m talking about the very useful JSON (JavaScript Object Notation) format, often useful in case of […]

Read More…

Angular client-side pagination vs server-side pagination

Data-rich applications present a challenge: displaying large datasets without overwhelming users. Pagination comes to the rescue, breaking down information into manageable chunks. Angular offers two primary approaches: client-side pagination and server-side pagination. This article delves into both methods, providing code examples and helping you choose the best fit for your […]

Read More…