Blog

Learning SQL: INNER JOIN

Learn how to use the SQL JOIN command to combine data from multiple tables. Understand JOIN ON, JOIN USING, and NATURAL JOIN with examples and tips.

#backend

Reflecting on 2024

In 2025, I aim to expand my skills in cloud computing, DevOps, SQL, and cybersecurity, while continuing my growth in software development and organization.

#monthly-log

Learning SQL: DELETE

Learn how to use the SQL DELETE clause to remove records from a table. Master its syntax, apply conditions, and handle constraints to manage data effectively.

#backend

Learning SQL: UPDATE

Learn how to use the SQL UPDATE clause to modify existing data. Master its syntax, apply conditions, and ensure data integrity with constraints.

#backend

What is a Garbage Collection

Learn about garbage collection: the process of reclaiming unused memory in programming, with a deep dive into JavaScript's automated memory management.

#system-design

November Reflection 2024

Exploring a new journaling system with Google Docs tabs and insights from Fundamentals of Software Architecture on design, trade-offs, and adaptability.

#monthly-log

Learning SQL: INSERT INTO

Learn the SQL INSERT INTO statement to add single or multiple rows to a table, insert into specific columns, and handle constraints for efficient data entry.

#backend

Learning SQL: LIMIT and OFFSET

Learn how to use SQL's LIMIT and OFFSET clauses together to control query results, paginate data, and improve performance when working with large datasets.

#backend

Exploring chmod - Linux Commands

Learn how to use the chmod command in Linux to manage file permissions effectively, ensuring proper access control for users and groups.

#linux

Understanding the TCP Three-Way Handshake

Explore the TCP 3-way handshake, a crucial step for reliable internet communication. Learn how it ensures accurate data transfer and stable connections.

#platform