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
Blog
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
Top five essential figma plugins
Figma is a cloud-based vector graphics editor and prototyping tool that is quickly becoming one of the most popular choices among UI and UX designers. It allows for real-time collaboration and has a range of features that make it easy to use, flexible, and efficient. With the ability to create responsive designs and animations, export… Continue reading Top five essential figma plugins
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
Top Chrome Extensions For Developers
If you’re a developer working in Google Chrome, chances are you’ve already discovered the wealth of extensions available to make your life easier. But with so many options out there, it can be overwhelming to try and figure out which ones are worth your time. That’s why I have put together a list of my… Continue reading Top Chrome Extensions For Developers
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
Blockchain For Dummies – Cryptocurrency, Banking, Supply Chain Management
Blockchain is a technology that has the potential to transform a wide range of industries and disrupt traditional business models.
Disable WordPress Core Sitemaps
WordPress started pushing own sitemaps after their Version 5.5 release. This is a wonderful feature which provides effortless sitemap generation. Works great for sites where all the pages and posts needs indexing. The default sitemap can then be submitted to the search engines and periodically sitemap gets updated as and when there is an update… Continue reading Disable WordPress Core Sitemaps
Top 10 Useful Features in Pixel Phone
In the world of premium smartphones, Google Pixel disrupted the binary choice between the iPhone and Samsung…
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