Raspberry Pi 3 Mini Cluster

I recently constructed a mini cluster consisting of 3 Raspberry Pi 3s.  I am planning on using these machines for various little projects.  I've installed some services on one of the nodes.  Currently that node hosts Redis and RabbitMQ instances.  I'm sure that I'll have other services to install in…

Odd Behavior in Python 2.7

I was tinkering around with replacing the print statement with the print function in a Python 2 script when I ran across this peculiar oddity. >>> from __future__ import print_function as print File "<stdin>", line 1 from __future__ import print_function as print ^ SyntaxError: invalid syntax >>> from __future__ import…

You're Too Close

Have you encountered the following scenario? You are trying to solve a problem (or helping solve a problem) and know or at least think you know the solution.  You are in the middle of implementing it when someone else looks at it and says, "why don't you do it this…