My 1st Time Speaking at a Developer Conference
In this article, I talk about my experience as a speaker and attendee at my first developer conference.…
In this article, I talk about my experience as a speaker and attendee at my first developer conference.…
Git is a version control system developers use to track changes in their code and collaborate with other developers on projects. While you can use git from the command line, many developers prefer to use a graphical user interface (GUI) client to make their workflow more efficient. This article presents…
This article will teach you how to install and run a Ghost blog or publication on a DigitalOcean droplet. Pre-requisites: * A domain * DigitalOcean account * Knowledge of working with the terminal 1. Create DigitalOcean account First of all, you need a DigitalOcean account. If you don't have one, you can create…
Content creation is quite popular nowadays, and its popularity continues to rise. As a result, more and more developers plan to start their content creation journey. It's understandable because creating content comes with freedom and many perks. Even for those that are not wildly popular. Some of the perks content…
MySQL is a widely used, open-source relational database management system (RDBMS). It uses Structured Query Language (SQL), a declarative language that enables you to communicate with a relational database and manipulate data. It allows you to store, retrieve, modify, and delete data. MySQL is known for its high performance, flexibility,…
WordPress is a free and open-source content management system that you can use to create websites and blogs. In this article, you will learn how to run WordPress on your Mac device with Docker Compose. Docker Installation The first step is to install Docker on your device. If you already…
If you are looking for a quick way to update your project dependencies to the latest versions, you are in the right place. In this article, you will learn how to do it in three steps! Problem Let's say you have a project with a couple of outdated dependencies and…
The localStorage enables you to store data in the browser. The data stored is in the form of key/value pairs and it does not expire when you close the browser. It's also important to note that the localStorage only stores strings. That brings us to the theme of this…