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
Category: Uncategorized
On Handwriting
I love fountain pens and cursive writing. I was asked to write a short article on why handwriting is important and the role it plays in learning - retention and active recall. A slightly modified version of this appears in a medical college magazine. I am publishing the original one here: Handwriting is one of… Continue reading On Handwriting
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