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 ...
Congratulations! 🎉 You’ve joined a startup, and they greeted you with a sign-on bonus and a hefty number of options. Amidst all the hype of joining the unicorn 🦄 of your dream, you start realising that the financial lingo goes far above your head....
What’s Innersource? It can be summed up as applying the principles of open source within a company. This is usually a common practice in small tech companies, since during the start-up phase there are usually fewer people, and founding members are...