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, […]
Systems
Regular expressions – insights (part 2)
Let’s see other structures and details on what the world of regular expressions is. Special characters, greedy searches and back references. […]
Prevent UI update on every frame in Unity
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 […]
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 […]
Fix the HTTPD “Name or service not known” problem
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 […]