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…

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…

Regular expressions – metacharacters (part 1)

Today’s topic is separated from programming languages but included in. Regular expressions are a very efficient meta-language when it comes to performing validations, replacements or searches where accuracy of intent is crucial. In particular, in this part, we will analyze the syntax of regular expressions metacharacters.Many hate them as they […]

Read More…

Fix the HTTPD “Name or service not known” problem

Resolve error name or service not known

Once you have set up a new domain you will be faced with this error when starting the apache web server: All this even if the domain you have configured is apparently correct. The solution is located under one of the server configurations: In it, the new domain created to […]

Read More…