A camera that describes a picture for you

[Matt]’s Descriptive Camera looks just like any other point and shoot camera, albeit a little more boxy and homemade-looking. It even works just like the Polaroids of yesteryear – snap a picture and in a few minutes you’ve got a reproduction in your hands. Unlike any other camera before, [Matt]’s camera doesn’t give you an image. [Matt]’s camera gives you a description of the picture you took, printed out on  easily-scrapbooked thermal receipt paper. Yes, mankind is now that meta.

To build the hardware of his camera, [Matt] took a BeagleBone single-board Linux computer and attached a webcam and a thermal receipt printer. The real magic is in the artificial artificial intelligence that is Mechanical Turk. [Matt]’s camera sends his picture up to the Internet where some random stranger describes his picture. This description is sent back and printed on the receipt paper.

Even though [Matt] is spending $1.25 to have a single picture described on Mechanical Turk, there’s probably not another camera as retro-meta-fabulous-fantastic out there.

Controlling blinkenlights with modern computers

A few old timers may remember that once, long ago, computers didn’t require keyboards. The earliest personal computers such as the Altair 8800 and the server rack-sized minicomputers like the PDP-11 could be controlled with a panel filled with switches and lights, giving us the term blinkenlights. Today, most of these machines have been thrown away or locked up in museums and private collections; even if you were to get your hands on one of these control panels, you’ll have a heck of a time doing something useful with one.

Fear not, because [Jörg] has come up with a great way to control these blinkenlights and simulate the computers of yesteryear. He calls his build BlinkenBone, and it’s able to control the blinkenlight panels from dozens of historical computers and simulate every thrown switch and tiny light bulb.

BlinkenBone is a BeagleBone single board Linux computer running the SimH simulator for antique computers. Right now the BlinkenBone is able to simulate the PDP-1, PDP-8, PDP-11, a lot of old IBM machines, the Altair 8800, and even some HP boxes.

Without a BlinkenBone or similar simulation device, the still-surviving control panels for these computers are just pieces of art to hang on a wall. When they’re running a simulation of their original hardware that was long-lost to the scrap yard, they become the useful devices they once were. Also, it’s much easier to appreciate how far technology has come in the last 40 years.

You can check out a short demo of [Jörg] using his BlinkenBone on a PDP-11/40 after the break. Look at those lights go.

[Read more…]

Brute force a password protected PDF using the BeagleBone

The biggest benefit to using the BeagleBone is it’s 700 MHz ARM processor. If you’re just messing around with basic I/O that power is going unused, but [Nuno Alves] is taking advantage of its power. He built a PDF password cracker based on the $85 development board.

We recently saw how easy it is to perform basic I/O using the BeagleBone. Those techniques are in play here, used to drive a character LCD and sample a button input from the breadboard circuit. [Nuno] even published separate posts for each of these peripheral features.

The password protected PDF file is passed to the device on a thumb drive. Since the BeagleBone is running embedded Linux you don’t need to mess around with figuring out how to read from the device. A click of the button starts the process. Currently the code just uses a brute force attack which can test more than 6000 four-character passwords per second.  This is quite slow for any password more than four or five characters long, but [Nuno] does mention the possibility of running several ARM processors in parallel, or using a dictionary (or rainbow table) to speed things up. Either way it’s an interesting project to try on the hardware. You can see his video demo of the device after the break.

[Read more…]

Twiddling an LED using the BeagleBone's embedded Linux

If you comfortable working with 8-bit microcontrollers, the thought of moving to a hardware platform running embedded Linux may be a bit daunting. After all, there’s a lot going on between you and the chips on a board like the BeagleBone seen above. But [Matt Richardson] shows how easy it can be to get at the pins on this device. He put together a primer on hardware control from the embedded shell.

You will remember that the BeagleBone is the newest generation of the BeagleBoard. The ARM processor and other goodies make it a powerful tool, and those already familiar with Linux will be able to get up and running in no time. Just connect the board to your network and SSH into it to get started. [Matt] outlines this setup process in the clip after the break. He then hits the reference manual to find the pinout of the female headers on either side of the board. Each available I/O pin is mapped to the /sys directory and can easily be controlled by echoing your commands to the appropriate files. But [Matt] went a step further than that, writing his own Python library that implements Arduino-style syntax like the digitalWrite() function.

This example should give you enough of a shove to start porting your own libraries over for use with the device. Don’t forget to document your projects and tip us off about them. [Read more…]

Vintage VT100 terminal computing…with a Beaglebone

decbox

A cool little project came our way, which we thought might be of interest to some of you vintage computer buffs. [Joerg Hoppe] wrote in to share a DEC VT100 terminal he resurrected in a novel fashion.

His “DECBox” system was created with a Beaglebone, which he uses to run a wide array of PDP11/VAX terminal emulators, thanks to the SIMH project. [Joerg] constructed an expansion shield for the Beaglebone that provides several UART connections, enabling him to connect it to his DEC terminal over a serial interface. Since he added several serial plugs to the Beaglebone, he can even run multiple emulator installations in parallel on different terminals without too much trouble.

[Joerg’s] efforts are mainly for a vintage computer display he is constructing, but setting up such a system of your own should be no problem. If you happen to have one (or more) of these boxes sitting around collecting dust, this would be an easy way to get them all up and running without bulky external hardware, since the Beaglebone tucks nicely into the rear expansion slot on a VT100.

Be sure to check out his site for more details on how his DECBox software package works as well as for more pictures of vintage terminal goodness.