Switching display between computers using a VGA switch

You have a single monitor that is shared between the desktop and laptop? Swapping out the VGA cables every time you need to switch getting you down? Get a VGA switch. I was looking to buy a second monitor, but decided against it and bought a VGA switch instead. The switch has 2 inputs (from… Continue reading Switching display between computers using a VGA switch

Python – lists, dicts, tuples, files, sets, type & class types

This post is the fifth of many that attempts to document everything I have been learning about Python. Lists Lists are mutable (objects that can be changed in place) sequences in Python. They are a collection of arbitrary objects ordered by position. Lists can contain objects of any type and do not have a fixed size. You… Continue reading Python – lists, dicts, tuples, files, sets, type & class types