Training & Writing

Workshops, training materials, and longform writing on development, tooling, and best practices.

Angular → React Migration

Live

Workshop on migrating from Angular to React, covering component patterns, state management, and common pitfalls.

CSS Mastery

Async

Deep dive into modern CSS features, layout techniques, and best practices for maintainable stylesheets.

Rust TDD Workshop

Open

Test-driven development in Rust, covering testing frameworks, mocking, and integration testing strategies.

Diataxis Documentation Framework

Internal-Only

Applying the Diataxis framework to create comprehensive, user-focused documentation.

CSS Specificity Example

.ready {
  color: blue;
}

.ready.ready {
  color: red; /* Higher specificity */
}

Hover over this code to learn about CSS specificity.