Posts

How To Deploy React App …

GitHub Pages or gh-pages is one of the easiest ways to deploy static sites. But, did you know that you can also easily deploy a simple React app on GitHub Pages? Without any further ado, let’s get started. First, install gh-pages on the React app by typing: npm install gh-pages --save-dev …

Mastodon Verification

Mastodon is a Twitter-like micro-blogging platform. There are a lot of tweaks that you can make on Masto, as it’s free and open-source software. It provides you with a way to verify your websites on the platform in an indie web-style way. What Does It Mean? Imagine you have a personal blog or …

Investigating Gitignore

A few days ago, I was working on a side project and wanted to hide a few files from Git. In the process, .gitignore caught my eye, and I started digging deeper into it. .gitignore ignores files or directories but doesn’t hide them, but how? Let’s investigate! A .gitignore file is used to specify …