Go OOP Notes
Some quick notes on Go after taking a short "OOP in Go" course from LinkedIn (instructor Frank P Moley III). Encapsulation Encapsulation in Go is performed at a package level…
Some quick notes on Go after taking a short "OOP in Go" course from LinkedIn (instructor Frank P Moley III). Encapsulation Encapsulation in Go is performed at a package level…
With the basics down, the next step in this little adventure w/ Javascript is to make it work in a React.js environment (Next.js to be more precise). There were some…
Part of a project I'm working on involves some animation of "cards" sliding in and out of existence. This trinity of HTML/CSS/JS serves as a basis for that functionality. The…
I'm getting into the fray that is Generative AI since, according to some, my job as a programmer will soon be taken over by some literal code cranking machine. There…
Notes on setting up a Docker/Vite/React/Redux Toolkit service in Docker. That's a mouthful. Docker Files Start with a name for the project (e.g. "myproject"). Then create these Docker files: Dockerfile…
Picking up from Django app template w/ Docker, here are the steps to add Celery to the Django app. Add RabbitMQ as the message queue Modify docker-compose.yml to include: services:…
Sentry is one of those things that most companies use, but most people (or maybe just I) don't really know how to use it. The way I learn these things…