Make a checkpoint system in Unity games

Often in level games, in very long levels, it can be useful that the user does not go back to the beginning of the game every time and has to re-face any monster already faced but respawns at the last registered checkpoint, with some of the parts already brought to […]

Read More…

Launch WordPress in local with Docker Compose

If you are here you are bored of the classic WAMPP or XAMPP to launch your WordPress installation locally but you want to use the new technologies made available by Docker Compose and containers. It may often be necessary to make changes or updates to the WordPress installation but it […]

Read More…

Navigating the Rendering Realm: SSR vs SSG vs SPA vs MFE

Choosing the right approach for your Web App In today’s dynamic web development landscape, selecting the optimal rendering approach for your application is crucial. This article delves into four prominent contenders: Server-Side Rendering (SSR), Static Site Generation (SSG), Single-Page Applications (SPAs), and Micro Frontends (MFEs), exploring their individual strengths, weaknesses, […]

Read More…

Responsive Web: deep dive into CSS media queries

In the era of diverse devices and screen sizes, crafting beautiful and adaptable web experiences is crucial. Enter media queries, powerful tools within CSS and SCSS that allow you to tailor your styles based on specific device characteristics. This article delves into the world of media queries, empowering you to […]

Read More…

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…