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 cheat sheet – Important AWS concepts explained in short
Hello cloud devs! In this blog we have come up with a cheat sheet 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…
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…
