Incredible home made miniature engines

On the heels of a small stirling engine we featured, an astute Hackaday reader sent in a few awesome builds from HMEM, the home model engine machinist forum.

First up is a fantastic looking stirling engine made entirely from scratch. The build is modeled on a Moriya Hot Air Fan, but instead of making a fan spin around, [IronHorse] put a flywheel on the engine. It also uses propane instead of an alcohol or other liquid fuel lamp for the heat source.

Next up is a pee-wee sized V8 engine by [stevehuckss396]. Unlike the model engines we’re used to, this one runs on gasoline. The engine started out as a 3 x 3 x 5 inch block of aluminum. This thread goes on an amazing 85 (!) pages and makes for great afternoon reading, but here’s a video of the engine in action.

Last is [keith5700]’s amazing 1/4 scale V8. Not only is this [keith]’s first project, he also completed this entire project on manual mills and lathes. There’s an electric starter thrown in there, and the pictures are simply incredible.

Thanks to [Norberto] for sending this one in, and if you’ve got an example of amazing machining skill, send it on it to the tip line.

Hackerspaces and Hackaday

It should really go without saying that Hackday LOVES hackerspaces. We want to support hackerspaces to the best of our ability. There have been many ideas tossed around, like a hackerspace directory, or hackerspace calendar of events, project lists, tool exchange programs, etc. For the short term, we can’t implement either of those in a smooth enough fashion that we think it would beneficial. There are several Hackerspace directories out there, with hackerspaces.org seeming to be the most up-to-date. We even have an “events” area in our forums, though we feel there could be a much better format or delivery device than a forum for that kind of information.

So what can Hackaday do to start helping? Well, the first small step could be to share more information about hackerspaces. We would like to do video tours of your hackerspace. Unfortunately, we don’t have a budget to travel around with a film crew and visit you all. I really wish we did, since I would probably be the one doing the traveling.  So what we can offer for now is that you film a tour, showing off some cool projects going on in your hackerspace, and we’ll share the video.  Contact me directly at Caleb@hackaday.com to work out the details. Your hackerspace doesn’t have to be a huge one in a big city. We want to help everyone here. If you have a few people gathered and a couple cool projects, we don’t care if you meet in someone’s basement. We want to see what the hacker community is doing!

Toward the end of May I will be spending a few days in Huntsville Al, then a few days in Hilton Head Island SC. I’d love to visit a hackerspace or two while I’m there to do a quick video tour. Again, contact me directly if you’re in those areas.

Sand casting motorcycle cases

Sand casting has been around since, well, since a really really long time ago. For thousands of years, people have been pouring molten metal into finely crafted sand casts, and there’s really no reason that someone can’t do the same thing in their garage or workshop today. This article covers the process of sand casting new case parts for antique Indian motorcycles.  In this instance, the parts were not only very difficult to find, the author also wanted to modify the design completely.

Though there are a few terms that pop up with which we’re unfamiliar, the process seems pretty straightforward. You build a model of what you want, you create the sand cast from the model, you fill the cast with molten metal. Done. In some cases, depending on the level of precision needed, you may need some machining done afterward. However, in many cases things don’t have to be quite so exact.

[via Matthew Van Arsdale]

Automating household devices with Google Calendar

[Shane] is building a new house and wants some, “subtle home automation” as he calls it. His first project is hooking up a small heater to the Internet, and judging from his demo video everything is going swimmingly.

[Shane]’s project is built around an mbed microcontroller that connects to the Internet via an Ethernet connection. The mbed has a temperature controller and a solid state relay to turn the heater on an off; simple enough, but we really like how easily [Shane] connected his project to Google Calendar.

After looking over the Google API, [Shane] was understandably overwhelmed. He figured out that by syncing the mbed’s clock to network time and sending a GET request for one minute in the future, the mbed would always know what was scheduled with a minimal delay.

Now, all [Shane] does to turn on his heater is schedule a time and temperature in Google Calendar. He can do this from across the globe or country and makes for a really slick part of a home automation system.

[Read more…]

Homebrew solder pot is too dangerous even for us

[rue_mohr] is building a hexapod robot, and that meant he needed to tin a whole bunch of ribbon cables with solder. Using a soldering iron for this task would take far too long, so he built a homebrew solder pot to tin all those wires quickly. While [rue] was able to get solder on all those wires quickly, we need to question his method – he used a halogen light and reflector to melt all that solder.

The build began with a recycled halogen light fixture. After taking apart the entire assembly, [rue] reassembled it into something resembling a solder pot; a concave reflector and halogen light bulb sit perfectly flat on the table, ready to accept pieces of solder.

After throwing the switch and putting a few bits of solder in the reflector, the solder pot surprisingly worked. [rue] was able to quickly tin his ribbon cables, and the halogen bulb and reflector didn’t break yet.

This is one of the least safe solder pots we’ve ever seen – the bulb could easily explode, and melted solder could come pouring out of the reflector at any time. [rue] is aware of the safety implications and make sure to wear a pair of goggles. If it works though, we really can’t complain.

Check out the video of [rue]’s solder pot (with an awesome temperature indicator light right in the middle of a pool of solder) in action after the break.

[Read more…]

Detecting ASCII art across the Internet

As a web developer and designer, [Victor] has a habit of putting a very nice ASCII signature in an HTML comment at the top of every web page he designs. He was inspired by seeing others do this,  and this piqued his curiosity to see who else was doing this. His idea was to scan through a chunk of the Internet and see what other web pages had ASCII signatures in an HTML comment. With a lot of very clever work, [Victor] managed to grab some interesting ASCII art that would have been missed without looking at the source of millions of web pages.

After gathering a list of the top million top-level domains from Alexa, [Victor] wrote a script to download the HTML for all the pages in parallel. After that, it was just an issue of detecting the ASCII art in all the HTML files. There were a few earlier ASCII art detection algorithms, but nothing that suited [Victor]’s use case. The best result came from only looking at the first comment (otherwise the signatory wouldn’t want you to find it with a quick glance at the source) that were at least 3 lines long and 40 characters wide. After discarding everything with HTML tags in it, [Victor] had an awesome gallery of the ASCII art from webpages all around the Internet.

What did he find? Well, there’s far too many ASCII signatures for [Victor] to put up on his webpage, but he did provide a nice sample of what he found. They’re mostly logos, although there is a Hypnotoad and Aperture Science sentry turret in there.

If you’d like to try out [Victor]’s script, he made everything available on GitHub.