Tag list

JavaScript
12/11/2023

AWS Lambda Retry Pattern

This article will examine the AWS Lambda Retry Policy, as well as various error-handling strategies and recommended practices.

4/1/2021

AWS Launches S3 Object Lambda

Amazon introduced a feature to process data as it is being retrieved from S3. This allows use cases such as on-the-fly format conversion or PII redaction.

2/19/2021

JavaScript, All for Loops Explained

There’s numerous ways to loop over arrays and objects in JavaScript, each with their own advantages and disadvantages. Some guidelines (like AirBnB’s) recommend to avoid looping functions in favor of native constructs. In this article, I’ll try to explain the differences between the main array iterators: for loop, for…in, for…of and .forEach().