1.4K followers
Writing about Vue, Node.Js, AWS, JavaScript, Cloud Computing and Software Development
🙏 Sponsorships 📺 YouTube Channel
Subscribe to my newsletter and never miss my upcoming articles
Sometimes, you might want to delete all your local branches from a project. Doing it one by one might be very tedious when you have lots of branches. Thus, with the command below, you can delete all your local branches except main: git branch | grep ...
ECMAScript 2021 will introduce a new String method, called replaceAll. As you can infer from the name, this method allows you to replace all the occurrences of a String in one go. Let's see the new method in action. With the code snippet below, you r...
This tutorial is also available as a video. Click on the video below or click this link. https://www.youtube.com/watch?v=p5hf8i-OzlQ In this article, you'll see how to create a catchy, good-looking Github profile page. By the end of the tutorial, y...
Figure 1, below, shows how the application looks before centering the content with Flexbox. What I want to do, is to center the content section of the web page - that is, everything between the header and footer. Figure 1 The second picture, figur...
After deciding to start a blog, many developers have to decide whether to use an existing blogging platform or create a custom blog from scratch. Each option has its benefits and drawbacks. The purpose of this article is to answer this question and c...
There are a few scenarios where you might want to use Vue without installing it. Some examples of such scenarios are: learning Vue quickly prototyping an application ... and so on. As a result, you can include the Vue JS CDN link in your project ra...