- Python – Testing
If you have ever pushed code to production and immediately felt a knot in your stomach, you already understand why testing matters. Automated tests are the safety net that lets you ship with confidence. They catch bugs before your users do, give you the freedom to refactor without fear, and serve…
- Python – User Input
Every meaningful program needs a way to communicate with its users. User input is the bridge between your program and the person running it — it transforms a static script into an interactive experience. Whether you are building a command-line tool, a data processing pipeline, or a quick utility…
- Python – OOP
Introduction to Object-Oriented Programming Object-Oriented Programming (OOP) is a programming paradigm that organizes software design around objects rather than functions and logic. An object bundles together data (attributes) and the operations that act on that data (methods) into a single,…
- Python – File(read/write)
Every meaningful application eventually needs to interact with files. Whether you are reading configuration, writing logs, processing CSV reports, or persisting user data as JSON, file I/O is one of the fundamental skills that separates hobby scripts from production-grade software. Python makes…
- CSS Shadows
Text Shadow text-shadow property applies shadow to text. <div class=”row”> <div class=”col-4″> <h4>Text Shadow</h4> </div> <div class=”col-8″ id=”textShadow”> Hi my name is Folau </div> </div> <style> #textShadow{ /* text-shadow: h-shadow v-shadow blur-radius color h-shadow – The position of the…