Archive 2024

121 articles

Introduction to System Metrics with ISUCON Environment
Architecture 2024-04-14

Introduction to System Metrics with ISUCON Environment

A summary of regular study sessions using the ISUCON environment to properly understand system metrics.

#ISUCON
The Art of Writing a CFP
Business 2024-04-14

The Art of Writing a CFP

Craft compelling conference CFPs using blog-writing, organization techniques, and structured presentation development methodology.

#Technical Writing
A Comprehensive Guide to Database Design: For Those Who Don’t Want to Stop at Beginner Level
Database 2024-04-11

A Comprehensive Guide to Database Design: For Those Who Don’t Want to Stop at Beginner Level

A Comprehensive Guide to Database Design: For Those Who Don’t Want to Stop at Beginner Level

#DB#SQL#Book Review
MySQL Locks Explained: Preventing Deadlocks and Improving Performance
Database 2024-04-05

MySQL Locks Explained: Preventing Deadlocks and Improving Performance

Understand MySQL locking mechanisms—table locks, row locks, gap locks, and intent locks. Learn how deadlocks occur and how to prevent and diagnose them effectively.

#MySQL#Transaction#Lock
Knowledge and Skills of Accounting Systems for Engineers
Architecture 2024-04-04

Knowledge and Skills of Accounting Systems for Engineers

Knowledge and Skills of Accounting Systems for Engineers

#Accounting#Book Review
Knowledge and Technology of Financial Systems for Engineers
Architecture 2024-04-04

Knowledge and Technology of Financial Systems for Engineers

Knowledge and Technology of Financial Systems for Engineers

#Finance#Book Review
Knowledge and Skills of Inventory Management Systems for Engineers
Architecture 2024-04-04

Knowledge and Skills of Inventory Management Systems for Engineers

Knowledge and Skills of Inventory Management Systems for Engineers

#Inventory Management#Book Review
Knowledge and Skills of Production Management Systems for Engineers
Architecture 2024-04-04

Knowledge and Skills of Production Management Systems for Engineers

Knowledge and Skills of Production Management Systems for Engineers

#Production Management#Book Review
Knowledge and Technology of Logistics Systems for Engineers
Architecture 2024-04-04

Knowledge and Technology of Logistics Systems for Engineers

Knowledge and Technology of Logistics Systems for Engineers

#Book Review#Logistics
Database Normalization Explained: 1NF to 3NF with Examples
Database 2024-04-02

Database Normalization Explained: 1NF to 3NF with Examples

Learn database normalization from first principles. Understand 1NF, 2NF, and 3NF with practical examples and when denormalization is the right trade-off for performance.

#Normalization Theory#Normalization
Beginning SQL, 3rd Edition
Database 2024-04-01

Beginning SQL, 3rd Edition

Beginning SQL, 3rd Edition

#DB#SQL#Book Review
Practical Introduction to Databases: Efficient SQL through the Relational Model
Database 2024-04-01

Practical Introduction to Databases: Efficient SQL through the Relational Model

Practical Introduction to Databases: Efficient SQL through the Relational Model

#DB#SQL#Book Review
SQL Anti-Patterns
Database 2024-04-01

SQL Anti-Patterns

SQL Anti-Patterns

#DB#SQL#Book Review
Mastering SQL: A Comprehensive Guide for Advanced Beginners, 2nd Edition
Database 2024-04-01

Mastering SQL: A Comprehensive Guide for Advanced Beginners, 2nd Edition

Mastering SQL: A Comprehensive Guide for Advanced Beginners, 2nd Edition

#DB#SQL#Book Review
Practical Introduction to SQL: Writing Fast and Understandable Queries
Database 2024-04-01

Practical Introduction to SQL: Writing Fast and Understandable Queries

Practical Introduction to SQL: Writing Fast and Understandable Queries

#DB#NewSQL#Book Review
What is a Database Index? How It Works and When You Need It
Database 2024-04-01

What is a Database Index? How It Works and When You Need It

Understand how database indexes work internally—B-tree and hash structures—when to add or avoid indexes, and how to measure index effectiveness using EXPLAIN.

#DB#Index#MySQL
Capacity Planning - Maximizing Resources through Site Analysis, Forecasting, and Placement
Infrastructure 2024-03-30

Capacity Planning - Maximizing Resources through Site Analysis, Forecasting, and Placement

Capacity Planning - Maximizing Resources through Site Analysis, Forecasting, and Placement

#Capacity Planning#Book Review
About Capacity Planning
Architecture 2024-03-30

About Capacity Planning

Plan system capacity by analyzing performance requirements, measuring infrastructure, forecasting needs, and setting safety factors.

#Capacity Planning
Database ID Design: UUID vs Auto Increment vs ULID — Which to Choose?
Database 2024-03-30

Database ID Design: UUID vs Auto Increment vs ULID — Which to Choose?

Compare auto-increment integers, UUIDs, and ULIDs as database IDs. Learn the trade-offs in performance, sortability, and distributed system compatibility.

#DB
NULL in Database Design: Common Pitfalls and Best Practices
Database 2024-03-30

NULL in Database Design: Common Pitfalls and Best Practices

Learn how NULL works in relational databases, the three-valued logic problem, common query mistakes with NULL, and schema design strategies to avoid NULL-related bugs.

#DB