"Penguin representing Linux systems for installing and configuring KVM on Fedora, Redhat, and CentOS."

Installing and Configuring Kernel Virtual Machines (KVM) on Fedora/Redhat/Centos

KVM Stands for Kernel Virtual Machine. KVM is a virtualization technology built into the Linux Kernel based on QEMU (Quick Emulator) and is used for server virtualization. QEMU allows for virtualizing hardware, all the way from a complete hardware stack to a single device. KVM basically takes QEMU and allows it to use hardware extensions

Installing and Configuring Kernel Virtual Machines (KVM) on Fedora/Redhat/Centos Read More »

"Directional arrows illustrating Python switch statements logic flow."

Python Switch Statements

In languages like C, you have Switch statements allowing you to evaluate the input, then have a few options for the output.  Switch statements are used in place of a series of if/else statements in order to make your code more readable.  Case statements can also have better performance than a traditional if/else setup.  This

Python Switch Statements Read More »

Getting OSX ready for Tensorflow

This article will describe the process of getting Tensorflow working on OSX.  By the end of the article, you will have all the prerequisites installed to allow you to run Tensorflow-based python applications on your MacOS/OSX computer. Install Homebrew Homebrew is a package manager for OSX.  It is similar to apt-get on Ubuntu or yum

Getting OSX ready for Tensorflow Read More »