Posts

Featured Posts

Start Your Journey with Linux Command Line

Image
Start Your Journey with the Linux Command Line: A Comprehensive Guide Whether you are a software developer, system administrator, analytics engineer, or cybersecurity enthusiast, mastering the Linux command line (terminal) is one of the single most effective skills you can acquire. While graphical user interfaces (GUIs) offer visual convenience, the command line interface (CLI) delivers unmatched speed, fine-grained system control, and seamless automation capabilities. Linux Command Line This tutorial breaks down more than 35 core Linux commands into structured, practical modules complete with real-world examples, flags, and command-chaining techniques. By building muscle memory around these fundamentals, you will elevate your daily technical workflow from basic navigation to advanced command orchestration. Why Learn the Command Line? The Linux CLI is not merely a legacy tool—it remains the foundation of modern cloud architecture, server maintenance, DevOps pipelines, and enterp...

Python 4.3.1.6 LAB: A leap year: writing your own functions

Image
Python 4.3.1.6 LAB If you're taking PCAP - Programming Essentials In Python , you may have encountered this question  4.3.1.6 LAB: A leap year: writing your own functions Objectives Familiarize the student with: projecting and writing parameterized functions; utilizing the return statement; testing the functions. Scenario Scenario Your task is to write and test a function which takes one argument (a year) and returns True if the year is a leap year, or False otherwise. The seed of the function is already sown in the skeleton code in the editor. Note: we've also prepared a short testing code, which you can use to test your function. The code uses two lists - one with the test data, and the other containing the expected results. The code will tell you if any of your results are invalid. Important to know first: Normal year is 365 days (actually they're 356.25 days as per Nasa) Leap year is 366 days . Which means, leap year has an additional day added in February which makes...

What to use? -able or -ible?

Image
Comparison between "-able" and "-ible" -able vs -ible What are "-able" and "-ible" ?  Both are called "suffixes". Suffixes are a letter or group of letters added to the ending of words to change their meaning or function . These useful, shapeshifting tools can be as small as -s, and -ed, or can be larger additions such as -ation, and -ious. Rule of thumb - If you remove - able from a word, you are left with a complete word (renewable, renew). - If you remove - ible from a word, you are not left with a complete word (sensible, sens ). But note that accessible, contemptible, digestible, flexible and suggestible are among the exceptions to this rule. The most common -ible endings   Adjectives ending in ( -able ) Adjectives ending in (-ible) Examples Navig able , afford able Comprehens ible , permiss ible When to use companion word ends in - ation : ...

Prefixes vs Suffixes ? What are they?

Image
Difference between Prefixes & Suffixes  Prefixes vs Suffixes  Prefixes: As per the dictionary, "pre" means previous to or before. So, prefixes are a group of letters placed before the original/root word. Examples and meanings: Un happy: un (prefix) means not . happy (root word, adjective). un happy means not happy. Re appear: re (prefix) means  again or back . appear (root word, verb). re appear means to appear again. Suffixes: Suffixes are a group of letters placed After/onto the end of  the original/root word. Examples and meanings: de value: value (root word, noun). de- (prefix) changes the noun to a verb with the opposite meaning. de- only means reverse, away, opposite Strong er : Strong (root word, adjective). -er ( suffix ) changes the adjective to a comparative meaning between 2 people or things. "He is strong, but his brother is stronger than him." Act ing : Act  (root word, verb). - ing ( suffix ) changes the verb to a noun/action. "She was no...

Popular Posts

PROJECT MAVEN | The Architecture of Algorithmic Warfare

Open Source: The Invisible Engine of Your Daily Life

Data Analysis Roadmap 2026: From Excel Lover to Python-Powered Analyst

Python 4.3.1.10 LAB: Converting fuel consumption

Python for Windows Beginners: Build Your First Automated Workflow in 10 Minutes