Want to make your React Native apps look nice and user-friendly? Google Fonts is your best buddy! This comprehensive guide aims to simplify the integration of Google Fonts React Native, particularly beneficial for those using React Native version >= 0.69.x If you struggled to integrate Google fonts with your React native app by looking at… Continue reading Implementing Google Fonts in React Native App
Category: How To’s
Building a React Native App with Cached API Calls
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!
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
Freelancer’s Nightmare: The Struggle of Getting Paid After Project Delivery
Discover a unique solution to combat payment delays and encourage clients to fulfill financial commitments using an innovative solution
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
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
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