Blog Posts

Automating S3 Events with AWS Lambda
Amazon S3 events let you automatically respond to changes in your storage, like when files are uploaded ," " deleted , or modified . By linking S3 wit…

The art of Javascript Generators
JavaScript Generators are a powerful feature that can give you the ability to create functions that can be paused and then resumed. Besides handling a…

S3 Server-Side Encryption
AWS enforces encryption for objects stored within an S3 bucket to ensure data security at rest. This practice is known as server-side encryption SSE, …

AWS IAM Service
IAM Identity and Access Management stands out as a global AWS service, distributed across all regions, serving as the foundational service for managin…

AWS Global Infrastructure
AWS is a global cloud platform powered by a global infrastructure that consists of a network of data centers and facilities around the world. AWS prov…

Proxies & Load balancers
Proxies and Load Balancers are two essential technologies for businesses, whether large-scale enterprises or small startups, seeking to optimize their…

ReactJS: the reconciliation algorithm
Hello, community 🙌🏻, One of the key features of React is its reconciliation algorithm, which determines how the library updates the DOM in response …

this.bind(), this.apply() and this.call()
Hello, community 🙌🏻, JavaScript provides several ways to invoke a function, and among them are the methods bind, call and apply. These methods are u…

React.js: debouncing and throttling
Hello, community 🙌🏻, In order to build a professional web application, optimization and performance are two important things you need to care about.…

Asynchronous JavaScript:Promises and async-await
Hello community 🙌🏻, As a JavaScript developer, knowing how to deal with asynchronous operations is an essential skill. 1. What are Promises 🤔 ? Pro…

How does javascript work in the background (part 2)
Hello community 🙌🏻, This is part 2 of“ How does javascript work in the background” blog series 📒. Today we will talk about Global memory, Local mem…

How does javascript work in the background (Part 1)
Hello, community 🙌🏻, Right now javascript is one of the most popular programming languages in the world. In this blog, I will share the most importa…