• Find Images Missing Width Height Using JS in Chrome Console

    Website optimization is critical in delivering a seamless user experience, especially as page load times and stability become key ranking factors for search engines. One often overlooked issue is layout shifts that happen as content loads. Layout shifts are visually disruptive and frustrating for users, leading to poor user experience scores. This instability can be […]

    Read More
  • Fetch API and store to JSON file in WordPress

    At times when we have limited access to an API endpoint where the get calls are restricted to a certain number of times, yet we want to show data from API every time a user hits our page. And when we have to do all this using WordPress as a platform, there is an easy […]

    Read More
  • 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

    Read More
  • How to remove HTML comments in VS Code without extension

    Try this regex At times we push the wrong update to the repository. In spite of fixing the issue at a later stage, we just hope that we never have pushed the wrong code. We have a workaround for this. Click here to know How to delete all commit records from Github without deleting the […]

    Read More
  • High-Availability WordPress on Azure : Deployment

    Learn how to deploy a high-availability WordPress website on Azure, ensuring robust performance, scalability and security for your online presence.

    Read More
  • Conversion Rate Optimization Best Practices

    Implementing conversion rate optimization best practices is crucial to driving growth and enhancing the organization's digital performance...

    Read More
  • 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 […]

    Read More
  • 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 […]

    Read More
  • Install MongoDB6 Ubuntu LTS

    MongoDB is a popular NoSQL database system that is used by many companies around the world. It offers a flexible and scalable solution for modern applications. Its popularity stems from its ability to handle large datasets, support complex data structures and provide high performance. However, the installation process can sometimes be daunting, especially for those […]

    Read More