Dr. Hallards Dream transmission box

An Enigma Wrapped In A Riddle Wrapped In A Vintage Radio

Puzzle boxes are great opportunities for hacking. You can start with a box which was originally used for something else. You get to design circuitry and controls which offer a complex puzzle for the players. And you can come up with a spectacular reward for those who solve it. [thomas.meston’s] Dr. Hallard’s Dream Transmission Box, which he created for an original party game, has all those elements.

The box was a broken 1948 National NC-33 Ham Radio purchased on eBay after a number of failed bids. Most of it was removed except for the speaker. The electronics is Arduino based, so most of the smarts are in the form of code. Potentiometers and a switch provide the mechanism for players to enter codes. And when the correct code is entered, a relay triggers an external smoke machine and turns on a laser which illuminates a party ball, rewarding the victors. And of course, there are also sound effects as well as a recorded message.

We weren’t kidding when we said puzzle boxes make great hacks. Here’s one which ignites fireworks, one made only from discrete components, and a valentine based one which makes your significant other work for their gift.

Can You “Take Back” Open Source Code?

It seems a simple enough concept for anyone who’s spent some time hacking on open source code: once you release something as open source, it’s open for good. Sure the developer might decide that future versions of the project close up the source, it’s been known to happen occasionally, but what’s already out there publicly can never be recalled. The Internet doesn’t have a “Delete” button, and once you’ve published your source code and let potentially millions of people download it, there’s no putting the Genie back in the bottle.

But what happens if there are extenuating circumstances? What if the project turns into something you no longer want to be a part of? Perhaps you submitted your code to a project with a specific understanding of how it was to be used, and then the rules changed. Or maybe you’ve been personally banned from a project, and yet the maintainers of said project have no problem letting your sizable code contributions stick around even after you’ve been kicked to the curb?

Due to what some perceive as a forced change in the Linux Code of Conduct, these are the questions being asked by some of the developers of the world’s preeminent open source project. It’s a situation which the open source community has rarely had to deal with, and certainly never on a project of this magnitude.

Is it truly possible to “take back” source code submitted to a project that’s released under a free and open source license such as the GPL? If so, what are the ramifications? What happens if it’s determined that the literally billions of devices running the Linux kernel are doing so in violation of a single developer’s copyright? These questions are of grave importance to the Internet and arguably our way of life. But the answers aren’t as easy to come by as you might think.

Continue reading “Can You “Take Back” Open Source Code?”

This TARDIS Is Bigger On The Inside

A few months ago, YouTube user [Maladroit Modeller] uploaded a video of his model TARDIS from Doctor Who which shows an inside that’s bigger than the outside. Recently, [Maladroit Modeller] posted some pictures and has now uploaded a video showing how it’s done.

The TARDIS model itself is a 3:75 scale “Spin & Fly” model. The case to show everything off is built from foam core and the interior is built from foam core, silver paper, cardboard, styrene and other bits and pieces. There looks like there’s some EL wire being used, too, along with a lot of LEDs.

The build looks great and the illusion works very nicely in the video. Check out the video after the break, and then check out the “how it’s done” video for an explanation. Continue reading “This TARDIS Is Bigger On The Inside”

HP Rolls Out Metal 3D Printers

You normally think of HP as producing inkjet and laser printers. But they’ve been quietly building 3D printers aimed at commercial customers. Now they are moving out with metal printers called — predictably — the HP Metal Jet. The video (see below) is a little glitzy, but the basic idea is that print bars lay down powder on a 21-micron grid. A binding agent prints on the powder, presumably in a similar way to a conventional inkjet printer. A heat source then evaporates the liquid from the binder.

The process repeats for each layer until you remove the part and then sinter it using a third-party oven-like device. According to HP, their technique has more uniform material properties than fusing the powder on the bed with a laser. They also claim to be much faster than metal injection molding.

Continue reading “HP Rolls Out Metal 3D Printers”

Wood Shines In This SCARA Robotic Arm Project

[igarrido] has shared a project that’s been in the works for a long time now; a wooden desktop robotic arm, named Virk I. The wood is Australian Blackwood and looks gorgeous. [igarrido] is clear that it is a side project, but has decided to try producing a small run of eight units to try to gauge interest in the design. He has been busy cutting the parts and assembling in his spare time.

Besides the beautifully finished wood, some of the interesting elements include hollow rotary joints, which mean less cable clutter and a much tidier assembly. 3D printer drivers are a common go-to for CNC designs, and the Virk I is no different. The prototype is driven by a RAMPS 1.4 board, but [igarrido] explains that while this does the job for moving the joints, it’s not ideal. To be truly useful, a driver would need to have SCARA kinematic support, which he says that to his knowledge is something no open source 3D printer driver offers. Without such a driver, the software has no concept of how the joints physically relate to one another, which is needed to make unified and coherent movements. As a result, users must control motors and joints individually, instead of being able to direct the arm as a whole to move to specific coordinates. Still, Virk I might be what’s needed to get that development going. A video of some test movements is embedded below, showing how everything works so far.

Continue reading “Wood Shines In This SCARA Robotic Arm Project”

All The Badges Of DEF CON 26 (vol 4)

From a cockroach filled with LEDs, to an impressively dense 576 RGB LED display, and even a hunk of carpet, our final installment of the unofficial hardware badges at DEF CON 26 are beyond impressive. I tried to see every badge and speak to every badge maker this year. So far we’ve covered a ton of badges in volume 1, volume 2, and volume 3 of this series, and now it’s time to finish up!

If I didn’t get a chance to cover your badge in these articles, we still want to hear about it. What everyone wants is to dig into the details of these gorgeous examples of unique hardware. So post a project page for you badge on Hackaday.io, and make sure you get on the Conference Badges list that has been growing by leaps and bounds.

Continue reading “All The Badges Of DEF CON 26 (vol 4)”

Make Your Python Prettier With Decorators

Many Pythonistas are familiar with using decorators, but far fewer understand what’s happening under the hood and can write their own. It takes a little effort to learn their subtleties but, once grasped, they’re a great tool for writing concise, elegant Python.

This post will briefly introduce the concept, start with a basic decorator implementation, then walk through a few more involved examples one by one.

Continue reading “Make Your Python Prettier With Decorators”