Enjoy listening to Mog, Brimstone, Jimshoe, and crashcartpro talk over current news in hackerspaces all over the globe. This fortnight’s podcast covers building hard drive flowers, sells mendel destruction, tweeting ping pong ball launching, cupcake delivery, and much, much more.

Show notes are on the wiki

I decided to make a flag for the shop.

I started with 2 yards of a 100% cotton piece of fabric. I sewed the sides of the fabric to the size I wanted the flag to be. I also included a part on the left side of the flag for a pole.

I purchased “Jolee’s Easy Image” iron-on transfer sheets.

Iron-On Transfer Sheets

I printed my design on the transfer sheets. I then laid the transfer sheets out on the fabric and figured out how I wanted the words positioned. Once I had the final layout, I began ironing the words on.

Here is a picture of the flag hanging up at the shop:

Hanging up at the shop

I really enjoyed making this flag. Let me know what you think, unless it’s about the hyphen!

Box of dead hard drives

Tonight during our open house we decided to do a Valentine’s Day themed project.  One of our members, John Kelly (CandleKnight), brought a box of dead hard drives, non-working PC power supplies and a table full of tools.  He showed a few of us and a non-member visitor how to make a flower from the parts found inside these things most everyone has in their homes.

Since John was taking the time to show us how to make the flowers and we had to share some of the tools it took us right around an hour and a half to make one.  Some of us even took a little extra time to bend the stem into something resembling leaves.  Let us know in the comments what you think!

Inside a hard drive
Inside a power supply
Parts and pieces ready
Complete flower with a leaf

Click here for more photos:

https://plus.google.com/photos/116575142518321294189/albums/5709233976085581745?authkey=CNbC1-H_2dvyKw

 

The two Matts mounting the wigwag lightThe two Matts installed the Wigwag alert light on top of our member storage shelves tonight.  Now when users need our attention in the IRC channel not only do we get the robotic British lady’s voice over the intercom to tell us, we now have a bright, spinning light to grab our attention as well.

Go here to see even more pictures and a video of it in action!

https://plus.google.com/photos/116575142518321294189/albums/5705228437791855137

 

We soldered a Teensy 2.0 to a 240V relay then attached a wig wag light to the relay in order to create a nice and noticeable way to alert anyone at the shop for various reasons.  One plan is to eventually hook this to our doorbell whenever we get one of those installed for visitors so we know to open the door for them.  Right now you have to knock really loud and hope someone is in the office to let you in.

The interface is very simple.  Hook a USB cable to the Teensy and any computer.  Then connect through the USB serially and just send it a “1” to turn the light on.  Send it a “0” to turn it off.  It couldn’t be simpler!  Here’s the arduino sketch code we used to make it work:

/* USB Relay

 This is for a teensy connected to a relay on PIN 1.
 Send it a "1" to turn it on (HIGH)
 Send it a "0" to turn it off (LOW)

*/

int pinNum = 1;
int input = -1;

void setup()
{
    Serial.begin(9600); // USB is always 12 Mbit/sec
    pinMode(pinNum, OUTPUT);
    digitalWrite(pinNum, LOW);
}

void loop()
{
    if(Serial.available())
    {
        input = Serial.read();
        if(input == 1 || input == '1')
        {
            digitalWrite(pinNum, HIGH);
        }
        else if(input == 0 || input == '0')
        {
            digitalWrite(pinNum, LOW);
        }
    }
}

Here’s a link to more pictures with more detail:

http://plus.google.com/photos/116575142518321294189/albums/5705228437791855137