Muniba Aminmuniba.dev·Jan 9, 2025Day - 5 Python LoopsUsing the for loop with Python Lists Using a for loop with Python lists allows you to iterate through each element in the list, one at a time. This is a fundamental way to work with lists in Python, making it easier to process or manipulate the eleme...40 reads100 Days of Python: My Learning JourneyPython
Muniba Aminmuniba.dev·Jan 8, 2025Day 4 - Randomisation and Python ListsRandom Module The random module in Python is used to generate random numbers or make random selections. It is widely used for games, testing, and other applications where randomization is needed. Common Functions in the random Module 1.random() Gener...100 Days of Python: My Learning JourneyPython
Muniba Aminmuniba.dev·Jan 6, 2025Day 3 - Control Flow and Logical OperatorsControl Flow with if / else and Conditional Operators if / else Statement : If Statement: Checks a condition. If the condition is True, the code inside the if block runs. Else Statement: Runs if the if condition is False Critical Points The condition...100 Days of Python: My Learning Journey100DaysOfCode
Muniba Aminmuniba.dev·Jan 3, 2025Day 2 - Understanding Data Types and How to Manipulate StringsPython Primitive Data Types Python has four basic primitive data types. . Integers: These are whole numbers Example: 1 5 -10 etc . Strings: These are used for texts enclosed in Quotes Example: name = "Muniba" . Floating Point Numbers (Floats): These...1 like·29 reads100 Days of Python: My Learning JourneyPython
Harald Branavanwhy-programmers-need-linux.hashnode.dev·Oct 8, 2024Why Every Programmer Should Embrace Linux (or Unix)When choosing an operating system, programmers often find themselves caught between options like Windows, macOS, and Linux. While each has its merits, I believe there’s a compelling case for why every programmer should seriously consider making Linux...linux for programers
Sabat Alimsabatali.hashnode.dev·Sep 28, 2024HTML: All Daily Used Tags and Their Explanation with ExamplesHTML (HyperText Markup Language) forms the foundation of web development. It structures the content on the web, allowing developers to create organized, visually appealing, and interactive web pages. In this blog, we'll cover some of the most commonl...41 readsWeb Developmentprogramming compass
Sandesh Shresthasandeshblog.hashnode.dev·Sep 24, 2024bad API fetch VS good API fetch in JavaScript.Bad API Fetch No error handling No timeout for long requests Poor readability No handling of response status codes // Bad API fetch example fetch('https://api.example.com/data') .then(response => response.json()) .then(data => { console...programming
Amit Bhattacharjeethestonedsage.hashnode.dev·Aug 14, 2024Web Architecture SimplifiedIn order to understand the working of websites and the relation between backend and frontend we are going to use a simple example of a restaurant. All of you must’ve been to a restaurant or a food joint at least once so this should be easy to relate....programing
Max Martínez Cartagenamaxmartinez.dev·Jun 29, 2024Adapter Pattern: Travel around the world as Pro Tennis PlayerImagine you are a professional tennis player who travel around the world for important tournaments but you are not able to speak any language other than English... So, in every non-english country you need someone to helps you with the speech. You mi...1 likeObject Oriented Design Patternspatterns
BlackTechXblog-blacktechx.hashnode.dev·May 30, 2024How to Read and Flash Firmware on ESP32/ESP8266 MicrocontrollersESP32 and ESP8266 File Read and Flash This repository provides comprehensive instructions and scripts to read a file from an ESP32 or ESP8266 microcontroller and flash it to another board. This process is useful for duplicating the firmware, transfer...455 readsesptool