In the era of microservices and distributed applications, traditional session-based authentication often falls short. Enter JSON Web Tokens (JWT), a compact and self-contained mechanism for encoding user information. This article dives into the heart of JWTs, exploring their workings, benefits, and implementation with JavaScript and Java code examples. Anatomy of […]
Mixed
What is present in the “mixed” section is something that usually concerns transversal languages or meta-languages and has a very specific purpose, a raison d’être that makes it necessary. Languages like JSON, for passing informations, YAML, for configurations, or regular expressions are welcome.
My regular expressions list
At least once in your life as a developer you will need a regular expression to solve some kind of filter / search / query on strings. Whenever this happened, you probably turned to the internet. This is why I decided to compile a mini list with some of the […]
Mastering Glob patterns: from regex lite to powerful file finders
Glob patterns, often seen as simpler cousins of regular expressions, play a crucial role in various programming tasks, especially when dealing with files and directories. They offer a concise and versatile way to define a set of files matching specific criteria, saving you from writing complex and error-prone code. This […]