Add jQuery to your NextJS App

The best way is to add jQuery via npm and include the inject file in the root file. Let me show you how. or you can also try this approach

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

How to 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 How to delete all commit records from Github without deleting the source

Published
Categorized as TIL

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

Javascript – The Weird Parts

JavaScript is a powerful and versatile programming language that has been widely adopted by developers around the world. However, as with any programming language, javascript possesses certain quirks and weird parts that can cause confusion and frustration for developers. One such example is the behavior of the built-in JavaScript functions and operators when dealing with… Continue reading Javascript – The Weird Parts

Published
Categorized as TIL