Implementing Google Fonts in React Native App

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

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

Published
Categorized as How To's

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

Published
Categorized as How To's