Second Blog Post

A short follow-up with practical tips from my workflow.

Engineering
April 17, 2026
Workflow Productivity

In this post I share a few habits that help me keep project quality high:

  1. ship in small increments
  2. validate frequently
  3. keep architecture decisions explicit

I usually start with dotnet build before pushing larger changes.

Example local workflow:

dotnet build src/Portfolio.slnx
dotnet test src/Portfolio.slnx

These habits reduce rework and keep features maintainable.