We talk about JSON Web Tokens (JWT) before to explain the OAuth flow. At the time the example was about a JWT that was signed using a symmetric key (HMAC - Hash-based Message Authentication Code), which can be used for both encoding and decoding t...
Introduction AI (artificial intelligence) is trending, expected to be the new industrial revolution; there’s a lot to wonder about it. Each big company developing their own AIs or tools to play with like Open AI’s chatGPT, IBM watson X or Google’...
Essentials What is Kpack❓ Kpack is a Kubernetes-native build service that utilises the Cloud Native Buildpacks project to transform your source code into container images. It’s designed to automate the process of creating runnable application i...
Everything you need to know about Go to get started! Let’s have a look at what go has to offer, some of the quirks, the syntax and some tips. This is assuming you have installed go, but you didn’t look too much into the documentation. Talking abou...
A bit of history Buildpacks were created by Heroku in 2011 and then adopted by Cloud Foundry, Google App Engine and other Platforms as a Service (PaaS). In 2018, the Cloud Native Buildpacks (CNB) project was started to maintain specifications and...
Here are some tips that I missed in my previous React venture, I go over some React essentials, refactoring tips, testing tips illustrated with some code examples. Now let’s get to it! 🤓 🧰 React Functional component In typescript, you can crea...
We have talked previously about creating a multi-package typesript project using only node’s workspace feature. This could be considered as a monorepo where you’d have an application with some libraries. However, if you want to scale up, this simp...
I have been doing some new projects in React with Typescript, and I wanted to dump here the configuration I had been using. Usually, that type of boilerplate can either be generated by the npx command or established via trial and error. Since it ...
Wait, is Node.js multi-threaded? A question you might be asking yourself. 🤓 Le’s have an in-depth look at how Node.js works, then dive into how to run multiple tasks concurrently in Node.js. Node.js engine Introduction Node.js is single-threade...
To increase the stability of your Kubernetes cluster, you can use horizontal auto-scaling. This means to automatically increase the number of deployed pods for an application based on the load it receives. This can be done dynamically without any ...