Sugar syntax in TS/JS: sweetening your code 🍨

In the vast realm of programming languages, syntax dictates the structure and clarity of your code. While both TypeScript and JavaScript offer various syntactic constructs, “sugar syntax” refers to concise shortcuts that improve readability and maintainability. This article explores the key sugar syntax elements in these languages, equipping you to […]

Read More…

Array functions in Javascript ES6

Let’s look at array functions today. One of the best features that the new javascript offers is the ability to work on lists of data in a few lines of code. We have them all, from mapping to searching or data aggregation. Many of the functions used, in addition to […]

Read More…

Making CSS hexagons

making css hexagons

I like the hexagons – it’s my favorite geometric shape. Not trivial as a circle can be, but not minimalist as are the forms “poorest” of angles, such as squares or triangles. Symmetry reigns supreme with them. This article is dedicated to all those people who are tired of border-radius […]

Read More…

SEO meta tags for search engine optimization

The reachability of a website and its contents from search engines has become essential nowadays. To help search engines understand what our content can offer and what added value it can give, SEO meta tags come to our rescue. To do this we will add meta information within our page […]

Read More…

Audio Manager to handle scripted sounds in Unity

When adding sounds or music within a game, it is often useful to group their management within a single object. In this way, all the sounds pass through the same point and it is easier then to manage any particularities. One result is for example volume management at one point. […]

Read More…