- 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…
- Linux Zip
Zip Zip is a compression tool. Zip files have the .zip extension. zip is very useful when you are on a limited bandwidth and need to send a big file over the internet. zip {options} {zipFilename} {files…} zip zipfile.zip test.txt test1.txt unzip {zipFilename} unzip myfile.zip Gzip gzip command…
- Linux Vi Editor
vi stands for visual editor and comes as one of default applications in every Linux/Unix system. The vi editor has two modes. Command Mode: In command mode, actions are taken on the file. The vi editor starts in command mode. Here, the typed words will act as commands in vi editor. To pass a…