Learn how to use a reverse Trie to efficiently detect disposable email domains. Optimize your domain...
When Should You Implement Throttling in Your Code? For big projects, it’s usually best to...
Code can be art. Whether it's in clever syntax, elegant data structures, or refined interactions,...
After over five years in the IT industry, I've accumulated a wealth of internal tools and resources...
You can read the interactive version of this blog post! The Problem In recent years I...
When you have a lot of information to show on the screen, there are two common...
Until now, thanks to Last-Modified/If-Modified-Since or ETag/If-None-Match we mainly saved on...
Support code In the previous post, we explored the usefulness of the Last-Modified Response Header...
Less load on the server and less bandwidth usage for the same result? Where should I sign up?...
A crucial aspect of any startup is providing users with the means to authenticate themselves. There...
Like everything in existence, a generator is a function that (eventually) takes input and...
How to use go:generate? support code Setup terminal go mod init...
Disclaimer! I am not a professional benchmarker. If there is any error in my logic, please let me...
I remember that time I understood the concept of the High-Order Function. Until then I had limited...
In a previous post we saw how it's possible to get information from the GitHub REST API about which...
In a previous post we have implemented the GitHub OAuth flow from scratch. However, the redirection...
What can we build An interface that gives a GitHub-authenticated user (or any user's...
Premise This post is intended to be a light reading with the purpose to give a minimum of...
Premise Are you sure you are ensuring your code to be used as intended? Are you preventing...
Premise Make it possible to generate any range of integers with built-in-like...
Merge High Order Component and Compound Pattern The Compound Pattern allows you to...
Among the new features brought by the ES6, we find the addition of the primitive type Symbol and the...
I recently completed Udemy courses on Vue and Nuxt.js. I decided to test this framework to build a Va...
Recap In the previous post, I built a React component Image that receives two sources, one...
Abstract In this mini-series consisting of two posts I will build a React Component Image...
Recap 🏗 In the first post of the series I built a Card component that can be extended with...
In this first post of a series, I begin the implementation of a composable React component. It is a...
In the previous post we built a React component capable of building a grid. Thanks to the render prop...
What are we building A React component that allows the setting up of a grid. For more flex...
I want to be able to send logs to the console, but only in development mode. One can easily obtain th...