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[…]
Dev Notes
I’m working on a project called Naja. It’s a full-stack app using a PostgreSQL database. Each time I work on it, I cd to the frontend directory, npm run dev, then cd into the api directory, run the tests and start the server. I want to start automating this…or at least streamline it. I asked[…]
This morning, I tackled turning our college project β ClearPath Task Planner β into a containerized web app. Itβs a full-stack app built to help users struggling with time blindness to stay on track. With a React frontend, Express backend, and MongoDB database, it was a solid app. I want to let potential employers see[…]
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[…]
This semester featured MongoDB in a couple of classes. I’m guessing professors are gravitating to it because it’s relatively easy to get up and running with a cloud account on Atlas. I really enjoyed working with it, and I will probably toy with a local deployment. However, I wanted to deploy a PostgreSQL database to[…]