Working with Dates and Times in Python
Learn to create Python dates and date-time values, calculate due dates with timedelta, format readable output, and build a simple appointment schedule.
Working with Dates and Times in Python Read More »
Learn to create Python dates and date-time values, calculate due dates with timedelta, format readable output, and build a simple appointment schedule.
Working with Dates and Times in Python Read More »
Use AWS CLI and Docker to create an Amazon ECR repository, publish tagged container images, and confirm that they were stored successfully.
How to Create an ECR Repository and Push a Docker Image with AWS CLI Read More »
Understand Terraform’s dependency graph and apply lifecycle rules to protect production resources, reduce replacement downtime, and manage intentional external changes.
Terraform Resource Dependencies and Lifecycle Rules Read More »
Learn Bash case statement syntax, pattern matching, default branches, and nested examples through an environment-based deployment script.
How to Use Case Statements in Bash Read More »
Understand how SQL DISTINCT handles duplicate and NULL values, with practical examples using IS NULL, IS NOT NULL, and CASE.
SQL DISTINCT and NULL Values: Finding Unique and Missing Data Read More »
Learn how Python modules and imports help you split programs into reusable files with beginner-friendly validation and utility examples.
Python Modules and Imports: Organize Reusable Code Read More »
Use the AWS CLI to deploy and test a Python Lambda function, inspect its settings, and update code, memory, timeout, and environment variables.
AWS CLI Lambda Commands: Deploy, Invoke, Inspect, and Update Functions Read More »
Use Terraform data sources to discover existing AWS networking resources and deploy EC2 instances or load balancers into the correct VPC.
Using Terraform Data Sources to Deploy into an Existing AWS VPC Read More »
Learn to group related SQL updates into a single transaction and decide when to permanently save changes with COMMIT or undo them with ROLLBACK.
SQL Transactions: Using COMMIT and ROLLBACK Read More »
Set up an isolated Python project with venv and pip. Install Flask, record dependencies in requirements.txt, and run a simple local web application.
Python Virtual Environments: Install Packages with pip Read More »