The Transistor Takes On The Machine

It only took 4 hackerspaces, but we finally get to see a zombie movie inspired project; hackerspace The Transistor Takes on the Machine with a Dawn/Shawn of the Dead movie theme. Race cars disguised as zombies swarm toward the players, who then use laser tag like guns to “shoot” down the approaching undead. The whole thing is a mess of Arduinos communicating with xBees to a central iMac G3, but it all comes together rather well and is promised to be released open source.

Now all that’s left is deciding which hackerspace wins the competition. Who do you have your money on?

[Thanks Deven]

Hacking Together A Sous Vide Cooker

Those amongst you that are cooks won’t need this explanation, for the rest of us, lets just get this out of the way. Sous Vide is when you cook things at a temperature lower than normal, for a period of time longer than normal to attain specific results in texture. A chef can tell you more intricate details about it, but what we care about is how to impress our friends with a cheap hack and a tasty meal. This video shows how to hack your slow cooker for precise temperature control.  Well, it really shows how to splice a temperature controller into an extension cord, so we guess it could be used for a ton of things, non Sous Vide related.

 

[via Lifehacker]

Step By Step Antique Radio Repair And Upgrade

I actually have a 3 very similar radios. I think I need to do this.[M3talhead] takes us through a very informative repair of an old tube radio. In this case, his radio was from the late 30s. He was able to find the original data from Radiomuseum.org. He painstakingly dismantles the radio components and the cabinet. Instead of completely modernizing the internals, he replaces the bad parts and brings it back to functionality. He wanted to do an MP3 upgrade, but rather than wire directly into the radio, he built an AM transmitter for his mp3 player.

Some Weekend Robot Goodness In Link Form

PBS Newshour did a piece on robots. They talked about NASA’s bot pictured above, Asimo, Big Dog, PR2, Robbie the robot and a few others. We didn’t see anything new, but we really do like the coverage getting out there. We also never need an excuse to watch that guy kick big dog around for a while. We know it’ll only be a matter of time before the tables are turned.

Willow Garage, the folks behind PR2, are conducting a survey to see what your favorite robot is. Their list is pretty short, but they did leave a spot for you to add a name. The picture above, is not from willow garage though. This is the picture I got from BotJunkie (we love this site) where I found this story. They didn’t attribute the artist, but I feel they need credit, it is an awesome shirt.

It turns out that it is a t-shirt design available at the chopshopstore. You can see that their eyes are done in glow-in-the-dark material. On a side note, the hackaday store just got glow in the dark material yesterday(as well as a re-design) and will be announcing several new designs in the near future.

I personally inherited several huge boxes full of sci-fi pulp. The robots I’ve seen in these are amazing, ranging from amazingly ridiculous to amazingly awesome. I’ve only just begun scanning in the covers, and plan to post at least one a day. You know what would be awesome though? If I had one of these.

AVR Programming 03: Reading And Compiling Code

In the last installment of our tutorial series we built a simple circuit on a breadboard and programmed an ATmega168 to make it run. That proves that you know how to follow directions, but the eureka moments of doing everything yourself are on the way. This time around you will get down and dirty with the datasheet, learning where each line of the sample code came from, and give your recently installed compiler a test drive. We will:

  • Talk about bitwise operators and how they work when coding for microcontrollers
  • Discuss C code shorthand
  • Review the sample code from Part 2 and talk about what each line of code does
  • Learn to compile code

If this is the first you’ve heard about our AVR Programming series, head back to Part 1 and start from the beginning. Otherwise, take a deep breath and we’ll being after the break.

Series roadmap:

Continue reading “AVR Programming 03: Reading And Compiling Code”

Robot Eyes Look Where You Do

This robot eye can move five times faster than the human eye. It’s capable of being used to follow a human gaze and, as you can see by that coin, it’s small enough to be used in pairs. When used to follow your gaze it needs a custom-made eye tracker. The thought here is that a lot can be learned about a person’s psyche by monitoring what they are focusing on. But we wonder about the augmented reality properties of a setup like this.

Imagine a pair of glasses as a heads up display. If this camera knows where you’re looking it can process the items in your gaze and overlay digital information. As with all new technology there are obvious military uses for this, but we’d be more interested in a Flickr pool type collection of people’s real-world experiences. Like subscribing to the locations of that thumb drive network in NYC and having the camera/glasses guide you to the nearest installation.

Want to see how fast this thing responds? Check out the video after the break.

Continue reading “Robot Eyes Look Where You Do”

AI Via Super Mario Evolution

Can Super Mario teach you to think? That’s the idea behind using a simple version of the game to teach artificial intelligence. [Oddball] calls this The Mario Genome and wrote at program that can take on the level with just two controls, right and jump. He gave the script 1000 Marios to run through the level. It then eliminates the 500 least successful and procreates back to 1000 using the 500 most successful. In this way the program completed the level in 1935 generations and completed it in the quickest possible time in 7705 generations. He’s posted the script for download so that you can try it yourself. It’s an interesting exercise we’d love to see applied to more random games, like Ms. Pac-Man.

[via Reddit]