Learn how to improve your app’s performance and reduce server load by caching API calls in your React Native app. Improve your app’s speed and efficiency today!
Category: How To’s
Setup CI-CD Pipeline in AWS
In the world of software development, the ability to quickly and reliably deploy code changes is crucial. This is where Continuous Integration/Continuous Deployment (CI/CD) pipelines come in. A CI/CD pipeline is a set of automated processes that allow developers to quickly build, test, and deploy code changes to production environments. This post explains the steps… Continue reading Setup CI-CD Pipeline in AWS
Create A Serverless Webservice Using DynamoDB and Lambda Function
Serverless architecture is ideal for building simple, scalable, and cost-effective applications, such as a RESTful API for a web or mobile application. This is because you only pay for the compute time consumed by your functions. Additionally, this architecture is great for building microservices, which allow you to break down a monolithic application into smaller,… Continue reading Create A Serverless Webservice Using DynamoDB and Lambda Function
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
Move All WordPress Posts To Trash
If you need to move all WordPress posts to trash, you can use a custom function and the wp_trash_post function to do so. In this post, we’ll walk through the steps to create a function that loops through all posts and then trashes all posts. And then hook it to an action so that it… Continue reading Move All WordPress Posts To Trash
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… Continue reading Fetch API and store to JSON file in WordPress
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
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… Continue reading How to remove HTML comments in VS Code without extension
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
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