Introduction to Django 3.1
We are going to create a poll application which is similar to the one in the Django Docs. Django is very high level and most of the things come out…
We are going to create a poll application which is similar to the one in the Django Docs. Django is very high level and most of the things come out…
Install Laravel Passport: Run the following command from the terminal to install the Laravel Passport package using the composer. composer require laravel/passport Go to the Laravel project folder and run…
Introduction To containerize an application refers to the process of adapting an application and its components in order to be able to run it in lightweight environments known as containers. I am going…
Progressive web app (PWAs) is a web app that does somethings that a native app does. It can work offline and you can install it from a browser with one…
Jenkins is an open-source CI/CD (Continuous Integration and Continuous Delivery) automation server built in Java. In this tutorial, I will show how to install Jenkins on Ubuntu-20.04, 18.04. Jenkins requires Java,…
Add these lines in your ~/.bashrc file # Show git branch name force_color_prompt=yes color_prompt=yes parse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' } if […
Docker is the best thing to happen to computing since forever. This is a simple tutorial to show you how to restore an .SQL file on your MySQL container Copy…
Today we are going to build a Laravel 7 API, to book process cinema bookings API Endpoints Documentation The end product will look like this https://documenter.getpostman.com/view/8975783/SzmfYxP4?version=latest Lets Start composer create-project…
https://github.com/emuroiwa/react-concepts/tree/master/src/components/Lifecycle When a React JS (we should find a short way to write this) component is created it goes through several stages of its lifecycle, React gives us methods we…
I am going to look at the typescript basics, Microsoft was fed up with JS and made TS. The code for this post and similar posts will be in this…