After a while working at the CFF, I realized that I was looking for a different thing because I felt like my work with the CFF was already at its end and I wanted to move on to another. I still wanted to remain in the PaaS and also do open source work in the process because I strongly believe in it.
All Posts
Exploring technical writing, DevOps practices, and cloud architecture through detailed guides and tutorials.
Categories
Over the past 7 months, we've built a new DevRel program from scratch, and in this article, I'll share some tips, ideas, and frameworks we've built to help us with our work and some lessons we've learned along the way.
In this tutorial, we will be deploying a full-stack application on Cloud Foundry with a Node.js backend and a MongoDB database service.
If you look closely at the music scene in Africa, South Africa is the original music powerhouse of Africa. South Africans have steadily been creating their sound without copying sound from other African countries, unlike Nigerians.
n8n is a free and open fair-code licensed node-based workflow automation tool, the main aim of n8n is to allow people automate processes with little or no-code. With n8n you can build a lot of interesting workflows and automate a lot of processes from event registrations, to sharing updates when an event happens etc.
Code used in production is different from development code. In production, you need to build packages that run fast, manage dependencies, automate tasks, load external modules, and more. Tools that make it possible to turn development code into production code are called build tools.
React is a fantastic Javascript library for building rich user interfaces, it provides a great component abstraction for organising your interfaces into well-functioning code but what about the look and feel of the app? In the browser, the look and feel of the app are mostly defined by CSS which is a means of styling our web applications and websites. There are various ways of styling React components from using stylesheets to using external styling libraries etc.
In this tutorial, we are going to learn about how to consume REST APIs in React using the fetch API and the Axios client. In the process, we will also build a simple react applications that is consuming an API. At the end of this tutorial, the readers would understand what a REST API is and how to consume them in React with the best practices.