In this page you can see some of my personal projects I've done for fun and educational purposes. This project bridges p5.js with google's blockly. This enables an aspiring programmer to become familiar with p5.js through a visual block based programming environment. Super Binary Man…
Kubernetes is a system that can at times be a bit threatening. It is truly a vast and agile service, and maintaining it can feel a bit off-putting at times. In this article, I'm going to write down some of the most common commands I…
I'm a Linux System Administration, and a deployment engineer with over 3 years of experience in the field and many more since I've first made my introduction to Linux and the open source ecosystem. Here in my website you can find tutorials related to my…
Linux permissions are often very confusing to new users coming from Windows to Linux for the first time. Casual Linux users that have been using it for years may even misunderstand this topic and so I thought it would handy to write a small guide…
Lighttpd is a tiny web server that's suitable to use on embedded systems and other setups where you want an extremely lightweight and speedy web server. This will server as a short introduction to Lighttpd. We'll start by installing the Extra Packages for Enterprise Linux…
So today we'll take a look at dipping our toes into docker-compose. docker-compose is a tool for defining, running, and managing multiple containers at once. It's very useful for development environments and home servers, where you want many services running in parallel on one machine.
This tutorial will introduce you to the very basic Docker / Podman commands. You should memorize these, as you'll use them often. To download an image to your computer, use the following command as an example for how to pull an nginx image: docker pull…
In this post I'm going to give you an introduction for using Docker. But first, let's talk about the underlying technology. A container is a type of virtualization tool but unlike a Virtual Machine, a container shares its Kernel with its host, and allows access…