Docker CommandsDocker Container A set of layers of images. mostly linux base images, mostly alpine because it is a lightweight version of Linux OS. Application image is always on top Docker Architecture What happens when you run the following commands; docker pull...May 27, 2025·2 min read
Introduction to DockerWhat is a Container? A container is a lightweight, standalone, and executable software package that includes everything needed to run a piece of software—such as the code, runtime, system tools, libraries, and configuration settings. Containers are d...May 27, 2025·4 min read
Exploring and Comparing Different LLMs.Categories are based on; architecture, training data and use case. Foundation models vs LLMs. Foundation models follow the following criteria; They are trained using unsupervised learning or self-supervised learning, meaning they are trained on unla...Mar 24, 2025·6 min read
Java ThreadsWhat’s a Thread? A thread is the smallest unit of execution in a process A process is a program in execution A single process can have multiple threads which share the same memory space Analogy A process is cooking and then threads are the tasks asso...Mar 4, 2025·3 min read