Useful Secrets in Windows 11

Windows 11 brings several big and small UI as well as functional improvements. The interface is more refined than in previous versions of Windows. Here we will share some useful secrets in windows 11. Though Windows 10 was one of the finest and most stable versions of windows. Microsoft has put in some effort to… Continue reading Useful Secrets in Windows 11

Delete all commit records from Github without deleting the source

Do a temporary checkout git checkout –orphan temp Commit the changes git commit -am “cleaning” Delete the branch git branch -D main Rename the current branch to main git branch -m main Finally, force update your repository git push -f origin main At times we push the wrong update to the repository. In spite of… Continue reading Delete all commit records from Github without deleting the source

Published
Categorized as How To's

Install MongoDB6 Ubuntu LTS

MongoDB is a popular NoSQL database system that is used by many companies around the world. Installation is not straightforward like other packages and at times users have to face errors while troubleshooting. To help those who get stuck, I have prepared this post so that the steps are straightforward and easily implementable without encountering… Continue reading Install MongoDB6 Ubuntu LTS

Published
Categorized as How To's

Fetch API And Store To JSON File In WordPress Every 15 Minutes

In this previous post we managed to fetch the endpoint and store the response in a JSON file in wordpress as a static file. We have hooked the api calls to wp_footer which can put tremendous load to server as that will get executed on every new pageload. Hence we are trying to fetch API… Continue reading Fetch API And Store To JSON File In WordPress Every 15 Minutes