Blog Posts

Automating S3 Events with AWS Lambda

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

12/09/2024
AWSS3
The art of Javascript Generators

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

20/03/2024
JavaScriptReact
S3 Server-Side Encryption

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,

20/02/2024
AWSS3
AWS IAM Service

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

03/02/2024
AWSIAM
AWS Global Infrastructure

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

12/01/2024
AWS
Proxies & Load balancers

Proxies & Load balancers

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

02/11/2023
System design
ReactJS: the reconciliation algorithm

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

09/02/2023
react
this.bind(), this.apply() and this.call()

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

12/05/2022
javaScript
React.js: debouncing and throttling

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.

09/01/2022
javaScriptreact
Asynchronous JavaScript:Promises and async-await

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

12/12/2021
javaScript
How does javascript work in the background (part 2)

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

30/10/2021
javaScript
How does javascript work in the background (Part 1)

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

04/10/2021
javaScript