5 Tips for Learning AWS as a beginner

AWS (Amazon Web Services) is a comprehensive cloud computing platform that provides a range of services for businesses, developers, and individuals. If you’re looking to learn AWS, you’ve come to the right place. Here are 5 tips to help you get started: 1. Start with the basics Before diving into the more complex services offered … Read more

Access google sheets for private domains using domain-wide delegation of authority

Recently, I came across a situation where I needed to access a google sheet programmatically. I was pretty happy since I have done this before using my personal account. I also have an article written on it. Check it out here. So during the process when I shared the client_email to the google sheet, I … Read more

Add layers, troubleshoot and common mistakes in AWS lambda

AWS Lambda provides an amazing feature called the layer which allows you to add your custom library. It allows you to stop code repetition. In this article, we are going to see how to achieve this. In case you are someone new to AWS then take a look at this article to know what AWS … Read more

Send HTML webpage as an email along with an attachment file using python SMTP

Let us see how to send a webpage as an email along with an attachment file using python SMTP. Previously, I have covered how to send plain text email using python SMTP.  Import statement import smtplib from email.mime.multipart import MIMEMultipart from email.mime.application import MIMEApplication from email.mime.text import MIMEText import os The smtplib is responsible for … Read more

How to use Udemy to learn a course without spending money

As a programmer, you need to be updated on your field and it is natural that we rely more on Youtube. And that is also perfectly fine. But have you ever thought about why does someone need to buy a course when everything is already available? And in most cases, you would see the same … Read more

What is Git and why should you use it?

Let us assume you are a solo programmer working on a project. You will try to achieve your requirements without concentrating on adding extra features initially. Now you have completed your project with no additional features. And then naturally we will get tempted to add more features. You are showing a demo to your clients … Read more

How I got 937 marks in the AWS Certified Developer Associate exam?

Amazon Web Service is undoubtedly one of the leading cloud service providers. AWS offers several certifications in which AWS Certified Developer is one of those. I recently completed this exam and scored 937 out of 1000. This article is all about what that exam is all about and how to clear it. Prerequisites Why should … Read more