Dev Notes

Logi – User Friendly and Silent Updating Flow

One of the top priorities I have when building something is building with the user in mind. GitHub repo: OMTut/Logi That’s a nice thing to say, but I keep it as a priority. I try to establish the core responsibility of the app and then shift into usability. If the user has to actively check for[…]

Logi – Desktop

This is the start of a journal into my development of a desktop app called Logi. It’s an overlay file parser. It reads a log file, filters for specific tags, and displays the desired info in real time. GitHub repo: OMTut/Logi Background During my senior year, I had an interview where a concern was expressed[…]

Factory Pattern for Testing Roles

I wanted to dig into the Factory pattern a bit. I was fighting the thought that conceptually, it’s just a class with methods, but that’s not entirely right. I think what I’m settling into is thinking of it as an object that has purpose. It’s not modeling something. It’s creating. It’s using a model, and[…]

k8s Ingress Routes with Traefik

sidenote: the image is from the traefik website. Previously, I have been accessing the internal services on the cluster by pointing the browser to a port on a specific ip address. It works, and there’s nothing wrong with it as long as the ip address doesn’t change…and you remember it. However if I want to[…]