Day 2: Control Structures and Functions

Control Structures and Functions

Welcome back to our Python learning journey! Yesterday, we covered the basics of Python programming, including data types, variables, and input/output. Today, we’ll dive into control structures and functions. Control Structures Control structures are constructs that allow us to control the flow of our program based on certain conditions. The most common control structures are … Read more

Day 1: Introduction to Python

Day 1: Introduction to Python

Introduction to Python Welcome to Day 1 of our Python curriculum! In this lesson, we’ll introduce you to the Python programming language and get you started with writing your first program. Installing Python Before we can start programming in Python, we need to install it on our computer. You can download the latest version of … Read more

Create Git Aliases On PowerShell 7

Create Git Aliases On PowerShell 7

Overview Using aliases saves you time and helps you avoid typos. On my daily work as a developer, I have to issue git commands many times. Thanks to aliases, I can avoid many mistakes when typing commands. On Linux/Mac, it is super easy to create aliases with your bashrc/zhsrc file. However, you need extra work … Read more

SQL Subqueries Tutorial

SQL Subqueries Tutorial

Overview Subquery is a powerful SQL tool. It enables users to do things that are not possible using common statements. Here are some common use cases of subqueries: In this post, I will show you how to use subqueries to get the data you need from your tables. Let’s get started. A Simple (and useless) … Read more