Posts

How to Use the Twilio Java Helper Library and AWS CDK to Deploy AWS Lambda Functions

In this post, learn how to leverage the AWS Cloud Development Kit (CDK) to build and deploy a serverless AWS Lambda function that uses Twilio’s Programmable SMS API to send SMS to users.
How to Use the Twilio Java Helper Library and AWS CDK to Deploy AWS Lambda Functions

How to Record a Phone Call using Twilio Java SDK?

In this tutorial, I will walk you through the process of recording a phone call using Twilio’s voice APIs as part of its Java SDK.
How to Record a Phone Call using Twilio Java SDK?

Top Testing Programming Languages for 2022

In this article, I will talk about the top 6 programming languages for testing in 2022.
Top Testing Programming Languages for 2022

An Introduction To AWS Cloud Development Kit (CDK)

In this article, I will provide a brief introduction AWS Cloud Development Kit (CDK) which is increasingly becoming a popular tool for managing AWS-based infrastructure. We’ll take a closer look into CDK concepts, and then how to use the AWS CDK toolkit to deploy a sample application to an AWS account.
An Introduction To AWS Cloud Development Kit (CDK)

Functional Testing Strategy in Agile Environments

In this article, I will discuss the significance and strategy of functional testing in an agile environment, along with some key points to consider while planning testing scopes
Functional Testing Strategy in Agile Environments

Functional Testing for Frontend Applications

In this article, I will be discussing the types of generic tests, their benefits, and the important differences between them
Functional Testing for Frontend Applications

Code Coverage Best Practices for Frontend Apps

This post will talk about the best practices for achieving high code coverage in frontend applications.
Code Coverage Best Practices for Frontend Apps

Start Learning Ml and Deep Learning With Python

If you’re a self-taught programmer, you’re probably familiar with the struggle of deciding which direction to upskill in. After all, trends in the job market fluctuate, making it challenging to pin down what skills employers will want even after a few months spent learning that new skill.
Start Learning Ml and Deep Learning With Python

Using Weighted Random Sampler in PyTorch

Sometimes there are scenarios where you have way lesser number of samples for some of the classes where as other classes have lots of samples. In such a scenario, you don’t want a training batch to be contain samples just from a few of the classes with lots of samples.
Using Weighted Random Sampler in PyTorch

Handling corrupted data in Pytorch Dataloader

Recently, while working on a video dataset, I noticed that some of the videos contained a few corrupted frames. While running the training, my dataloader used to return an incorrect shaped tensor since it was not able to read the corrupted frame.
Handling corrupted data in Pytorch Dataloader