Hey All,
First week of the semester is done! Can’t say everything went off without a hitch. Ran into a nasty timezone issue between servers that I just couldn’t figure out. One image, two servers cloned from that image. When pulling the info from Python one reported UTC, the other Eastern. Tried a bunch of different ways to force Eastern, but eventually used this:
from datetime import datetime from pytz import timezone fmt = "%m/%d/%Y %I:%M:%S" # Current time in UTC now_utc = datetime.now(timezone('UTC')) print now_utc.strftime(fmt) # Convert to US/Eastern time zone now_eastern = now_utc.astimezone(timezone('US/Eastern')) print now_eastern.strftime(fmt)
So yeah, that was a fun couple days trying to make sure our data wasn’t 4 hours off 🙂 Also, we might be getting hit by a Tropical Storm / Hurricane on Monday. Yay.
Onto the cool stuff! Maker Faire Orlando!
I am working on two projects for Maker Faire. The first is with Factur and FamiLAB. We are making the worlds LARGEST arcade cabinet! It is so awesome. I can’t wait for the electronics to come in so I can help wire it up. I’ll be posting more details as we get closer to the Faire!
The top panel was recently added on, but I couldn’t get a good picture of it because it is about an inch from touching the ceiling of the warehouse, and I just couldn’t get a good angle on it. This thing is massive! It’s a beast!
My personal project is a new modular arcade cabinet.
This is a 3 piece cabinet that breaks down into sections for easy movement, transporation, and customization. My main requirement was that it had to fit in my PT Cruiser, everything from there was negotiable. This is what it looks like so far:
Team working the ShopBot CNC Machine.
Also!
3D Printed a Bulbasaur using glow in the dark filament!
Have a good weekend all!
-Shea