Blogs
🐳 Docker Cheat Sheet
Common Docker Commands Start Docker Linux: systemctl start docker macOS: open -a Docker Check Docker Version docker --version Working with Containers List Running Containers docker ps List All Containers (Running + Stopped) docker ps -a Run a Container (starts and attaches) docker run …
Math for Technical …
How much math do I need to know for technical interviews? The short answer is about high school-level math. Computer science is often associated with math, and some universities even place their computer science department under the math faculty. However, the reality is that you usually only need …
Vertical vs Horizontal …
In the world of system architecture, scaling is a critical concept that allows your application to handle increased load. Scaling can be achieved through two main strategies: vertical scaling and horizontal scaling. :bar_chart: Vertical vs Horizontal Scaling Vertical scaling, also known as scaling …