1 Commits
1.0.6 ... main

Author SHA1 Message Date
e3d320d581 Updating the about me
All checks were successful
GitHub Pages / deploy (push) Successful in 28s
2026-03-01 11:31:54 -06:00
2 changed files with 14 additions and 2 deletions

View File

@@ -3,8 +3,10 @@ title = 'About'
date = 2024-10-07T06:53:00-05:00
+++
Whoa, you came to the about page?! Little creepy to want to know so much about me no? Anyway, I am a Father (one daughter), husband (one wife) and Software Engineer at a major retailer. I work on an observability team, providing the tools and infrastructure necessary for other engineers to understand the health of their applications. I also get up at crazy early or uncomfortably late times to dive into topics of interest, write blog posts and do a bit of light reading. Also, never totally mastered proper spelling, and lean quite heavily on spell check. If you see any mistakes, grammar or otherwise, let me know and I'll fix it; maybe.
I am a Father (one daughter), husband (one wife) and Software Engineer at a major retailer. I work on an observability team, providing the tools and infrastructure necessary for other engineers to understand the health of their applications. I also get up at crazy early or uncomfortably late times to dive into topics of interest, write blog posts and do a bit of light reading. Also, never totally mastered proper spelling, and lean quite heavily on spell check. If you see any mistakes, grammar or otherwise, let me know and I'll fix it; maybe.
During my day job I like to solve problems by automating them away. If something has to be done more than once I have a bash script in my `~/.bin/` directory, usually with some help text, to get it done quickly. In other words awk and the `|` have treated me well. If the problem is more complex I will create the tools needed (Often with Go, Rust or something else) to solve it in the most simple yet generic way. I love taking on big novel challenges that require creativity or those annoying problems that no one could quite figure out.
During my day job I like to solve problems by automating them away. If something has to be done more than once I have a bash script in my `~/.bin/` directory, usually with some help text, to get it done quickly. If the problem is more complex I will create the tools needed (Often with Go, Rust or something near it) to solve things in the most simple yet generic way. I love taking on big novel challenges that require creativity or those annoying problems that no one could quite figure out.
In my role as a leader I try to create a light-hearted atmosphere when working with others, and have noticed this tends to foment excitement for the projects we are working on. I put effort into ensuring those that I work with find a comfortable space where creative problem solving can occur. I regularly adapt my processes (communication channels, ceremonies, project management styles) towards the group I am working with to ensure I create the best possible chance for a successful outcome. I have gotten the feedback on more than one occasion: "I really enjoyed this project because you made it fun", or "Your silliness made the project low stress, even when things were tough". I lead with humility and humor, and would rather ask a good question instead of giving command.
When I am not working I enjoy a plethora of circulating hobbies such as hiking, drumming, painting, drawing, photography, woodworking, cooking, barbecuing, running, writing and more software engineering. That isn't to say I am good at all these things, but I do enjoy them.

10
content/posts/kla.md Normal file
View File

@@ -0,0 +1,10 @@
+++
title = 'KLA'
date = 2024-01-28T20:45:05-06:00
draft = true
+++
You know what I love, when things have documented HTTP Restful APIs. They make it possible for me to configure things without having to log in to some UI. It also enables me to automate or write scripts to make managing those things easier. Another thing I love is the terminal. I spend most of my engineering time in one, even preferring something like [helix](https://helix-editor.com/) over VSCode. Given these two loves it was only inevitable I ended up creating [kla](https://github.com/d1ngd0/kla).
Kla is an open source replacement for curl (you know, because we needed that) that also allows you to create templates, which can take arguments, to easily create https requests against a RESTful API. While I do regularly use it in my day to day now, it started as an excuse to learn rust.