Skip to main content

Two Approaches to Cross-Account Amazon S3 Access: Direct Policies vs. AssumeRole

4 min read

In AWS multi-account environments, it鈥檚 common to separate workloads, environments, or business units into different accounts. But sometimes you need to share an Amazon S3 bucket between accounts. For example, Account A might run an application that needs to read and write data into a bucket owned by Account B.

TLS Security: Understanding One-Way TLS and Mutual TLS (mTLS)

5 min read

In the modern internet, it鈥檚 highly suggested to only access the resources with TLS/SSL enabled. Even most browsers prevent accessing resources with TLS/SSL expired or not enabled. This is mainly because the secure communication is not guaranteed without TLS. I think we all know at a high level that TLS encrypts traffic at transit, enabling safe and trusted communication between two parties(client and server) but not everybody cares about behind the scenes, and yeah not even me before today 馃槉

Integration of Himalayan Bank(HBL) Payment Gateway

5 min read

In this post, I'll walk you through integrating the HBL payment gateway from scratch. Recently, I worked on a project built with React and Node.js, where I was tasked with this integration. If you've ever tried to get technical support from Nepali banks, you know how challenging it can be. That's why I decided to write this guide鈥攕o others in similar situations can find the help they need. Let's dive in!

Deploy NodeJs based application using CPanel

3 min read

When deciding between shared hosting and server hosting, the choice often hinges on your specific needs and technical expertise. Shared hosting can be a more cost-effective and hassle-free solution for smaller websites or beginners who don't require the full power of a dedicated server.

Upzip S3 files using AWS Lambda

2 min read

I developed a static web application on my local machine and attempted to deploy it using Amazon S3. I couldn鈥檛 find an option to upload the entire application folder directly, so I zipped the folder and uploaded it to the S3 bucket. However, I was unable to unzip the file inside the S3 bucket.