In the previous article we talked about Shape UP but more in the product perspective. Meaning, that most of the action are either done by a product owner (who manages the product), rather than the actual developers. Although it’s product oriented...
Shape Up is a development methodology by Ryan Singer and used by the Basecamp company and probably enabled by its eponymous software for project management. Rian Singer was the VP of Product Strategy at Basecamp. When presented that way, agile co...
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 ...