Hello, World
This is the beginning of my engineering journal.
I’m going to use this space to document things I build, problems I solve, and things I learn.
Why I’m doing this
A résumé tells you what someone claims to know.
I want this journal to show how I actually work.
For example, a future entry might look at something like:
public async Task<Result> MigrateProject()
{
var result = await migration.RunAsync();
return result;
}