Category Archives: Computing

What is Docker?

What is docker? Docker is a technology for software containers – small virtual systems that can be used to support lightweight system virtualization. A Docker container is a bit like a virtual machine. Rather than being an entire standalone operating system, the container shares some elements of its host operating system. Containers can have big… Read More »

Some Samba Basics

Samba is a protocol that makes file sharing across a network easy (great if you have your own home server). This post has a few samba basics – commands and operations to help you configure and run your samba shared folders. Setting up samba Read about how you can setup and configure Samba for a… Read More »

Learn About Simple Python Logging

Logging can offer much more flexibility than simply printing a message to the console but it can be difficult to know where to start. This post looks a some examples of simple python logging to get you started. Why ‘log’ instead of ‘print’? Printing to the console is usually one of the first things you… Read More »