Modal with generic content in Angular app

Today we will see a way to add a modal with generic content in Angular, for web sites with many lists of resources, often even very complex.We can handle it like another “page” in router, allowing every content we need in it. This approach can be useful in cases where, […]

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…

Azure Blob Storage: deep dive into Cloud object storage

Cloud Azure Blob Storage

Azure Blob Storage is a massively scalable object storage solution provided by Microsoft Azure. It is designed to store and retrieve any amount of unstructured data, such as text, binary data, documents, media files, and more. This article will explore the key features, benefits, and practical use cases of Azure […]

Read More…