Hosting Gatsbyjs Website On Github Pages

Take the gasbyjs gatsbyjs boilerplate page and host it using github pages with custom domain. Website will be live on prefix.domain. In my case https://web.chaitanyavardhan.com. Dev Environment: NPM, Mac Terminal, Git Install NPM from here https://nodejs.org/en/download [Read More]

Star Wars Timeline

Two amazing links to understand the timeline of Star Wars. https://screenrant.com/star-wars-republic-eras-differences-explained/ https://starwars.fandom.com/wiki/Galactic_Empire [Read More]
Tags: trivia

Squashing Git Commits

If last X commits need to be squashed, then the git command will be git rebase -i head~X. So, for squashing 2 commits: git rebase -i head~2 [Read More]
Tags: git