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 […]
What do you want to browse today?
Middlewares – Node Express – the power is in the middle
When building web applications with Node.js and Express.js, the framework’s power lies in its simplicity and extensibility, which is almost entirely attributed to the concept of middlewares. A middleware function is essentially a function that has access to the request object (req), the response object (res), and the next middleware […]
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 […]
S3 buckets for high-performance static site hosting
S3 buckets (Simple Storage Service) are a robust, scalable object storage service that has become a popular choice for hosting static websites. By configuring an S3 bucket to serve as a web host, you can take advantage of its durability, availability, and cost-effectiveness. Key benefits of using S3 buckets for […]
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 […]