Host a simple HTML page on AWS EC2

Following are the major steps needed to host a simple HTML page on your EC2…

React quick revision:

React Commands: React application Directory structure: Following directory structure automatically gets created when you run…

AWS Services Cheat Sheet (2026) – 50+ Services Explained for Beginners

Looking for a quick AWS cheat sheet? This guide explains 50+ AWS services in simple…

Python Function

Function is a block of code which when called , perform the task and return…

Python Comprehension

Python comprehensions are a concise way to create lists, dictionaries, and sets. They allow for…

Python map(), filter() , any() and all()

map(): The map() function is used to apply a given function to every item of an iterable, such…

lambda Function in Python

They are basically anonymous function. A lambda expression starts with the word lambda then followed…

Set in Python

Set is an unordered collection of unique items . Since it is an unordered collection…

Shallow Copy Vs Deep Copy

Consider a dictionary: animals= { "lion" : "scary", "elephant" : "big", "teddy" : "cuddly", }…

Python DocString and Function Annotation

Docstring stands for documentation strings. Python docstrings are the string literals that appear right after…