Author Archives: Bhawesh Kumar

A few ways to build a passive income pipeline

By | March 25, 2023

Do you want to achieve financial freedom? Are you looking for an early retirement with financial security? I can understand, A large number of the world’s population ends up as employees. Some even work two jobs to meet ends in fact, 4.9% in the US the Bureau of Labor Statistics). A small effort every day… Read More »

Make money by blogging

By | March 25, 2023

There are several ways to make money through blogging, including: Overall, there are many ways to make money through blogging, but the key to success is to provide value to your audience and build a loyal following. This takes time and effort, but with persistence and dedication, it is possible to turn your blog into… Read More »

Monolith database to Microservice database using expand contract pattern

By | March 25, 2023

Splitting a monolithic database into microservice databases using the Expand-Contract pattern involves breaking down the monolith into smaller, more focused databases that are better suited to the individual microservices they support. This can help to reduce coupling between services, improve scalability, and simplify maintenance and updates. The Expand-Contract pattern involves the following steps: Identify the… Read More »

How to manage Secrets in AWS

By | March 25, 2023

Here are some guidelines for secrets management in AWS that can help you ensure that your sensitive data such as DB credentials, API keys, and other secrets are properly protected. By following these guidelines, you can ensure that your sensitive data is properly protected and that you comply with security and compliance regulations. Auto Amazon… Read More »

Introduction to IaC using SAM and CloudFormation

By | March 25, 2023

AWS Serverless Application Model (SAM) is a framework for building serverless applications on AWS. SAM provides a simplified way of defining the Amazon API Gateway APIs, AWS Lambda functions, and Amazon DynamoDB tables needed by your serverless application. SAM also provides a command-line interface (CLI) for deploying and managing your serverless application on AWS. In… Read More »

API Best Practices

By | March 25, 2023

Introduction APIs (Application Programming Interfaces) are essential tools for developers who want to integrate third-party services or data into their applications. However, working with APIs can be challenging, especially for those who are new to this field. In this document, we’ll discuss some best practices for working with APIs. Conclusion APIs are powerful tools for… Read More »

AWS Architecture Notes Part – II

By | July 30, 2021

Please watch the YouTube video containing AWS Architecture Notes Auto Amazon Links: No products found. WEB_PAGE_DUMPER: The server does not wake up: https://web-page-dumper.herokuapp.com/ URL: https://www.amazon.com/gp/top-rated/ Cache: AAL_048d91e746d8e46e76b94d301f80f1d9

Category: AWS

AWS Architecture Notes Part – I

By | July 30, 2021

Please watch the YouTube video containing AWS Architecture Notes Auto Amazon Links: No products found. WEB_PAGE_DUMPER: The server does not wake up: https://web-page-dumper.herokuapp.com/ URL: https://www.amazon.com/gp/top-rated/ Cache: AAL_048d91e746d8e46e76b94d301f80f1d9

Category: AWS

Angular Single Page Application – TODOs

By | October 8, 2020

This post is going to walkthrough things to be considered when making design decisions on an Angular SPA application. Application Structure The application should be structured according to the recommendations from the official Angular documentation (https://angular.io/docs). We also want to have additional recommendations from NGRX documentation (https://ngrx.io/docs) for application structure. It is recommended to divide… Read More »

Angular Best Practices/Review Checklist

By | October 8, 2020

Analysis and Design activities Decide on UI structure, if the new feature creates a module. Decide on components to be built by category of presentational or container components. Decide on redux state activities to be performed Decide on redux actions, reducers, effects.  Coding rules Any additional npm package, utility or pattern to be implemented must… Read More »