Deploy a Multi-node Elasticsearch Instance with Docker Compose
Learn to deploy an Elasticsearch cluster with Docker Compose! … Read More…Deploy a Multi-node Elasticsearch Instance with Docker Compose

Tech Articles and Professional Insights
Learn to deploy an Elasticsearch cluster with Docker Compose! … Read More…Deploy a Multi-node Elasticsearch Instance with Docker Compose
Intro to Redis — with Docker Compose What is Redis? Redis is a high throughput, in-memory key-value store used for fast lookup. It supports common data structures such as strings, lists, sets, hashes, and more (redislabs). Since Redis stores data in-memory, it does not face the same read/write (I/O) … Read More…Intro to Redis - with Docker Compose
A visualization of the Shunting-Yard Algorithm with regular expressions … Read More…Converting Regular Expressions to Postfix Notation with the Shunting-Yard Algorithm
Learn how containers communicate with one another and how to reverse proxy client requests with Docker and Docker Compose. … Read More…Intro to NGINX Reverse Proxy with Docker Compose
Deploy a React and WordPress website to Windows or Linux with Docker Compose … Read More…Creating a React & WordPress Website with Docker Compose
A simplification of spot instance termination with Amazon Web Services (AWS) and how we can use spot instances to increase horsepower for computations and number crunching. I illustrate how we can handle this type of termination with bash scripts through the Amazon Linux operating system … Read More…Handling AWS Spot Instance Termination (the old-fashioned way)
This article touches upon the basic concepts of the ray tracing graphics technique by using linear algebra and images to explain the concept. We cover how to generate rays, how to calculate a hit point, how to calculate our perspective projection, how to color pixels, … Read More…An Explanation of Basic Ray Tracing
A continuation of the Intro to DFA article in which we introduce the concept of an NFA, and compare the differences between an NFA and a DFA. The article explains each component of an NFA, valid transitions between states, and how we can build an … Read More…Introduction to Nondeterministic Finite Automata (NFA)
Learn how to implement a “waiting system” in Docker Compose to execute post-deployment operations. Read the full article on Medium Thank you for supporting us!
A simple introduction to the finite-state machines, Deterministic Finite Automoata (DFA). The article provides an explanation for why we would want to use DFAs and how we can construct our own DFAs from a regular language. The article can be found here → Introduction to … Read More…Introduction to Deterministic Finite Automata (DFA)