Hackaday Visits World’s Oldest Computer Festival: TCF 43

I was fortunate enough to visit the Trenton Computer Festival last weekend. The show struck a very interesting mix of new and old, commercial and educational. Attendees were writing programs in BASIC on an Apple I (courtesy of the Vintage Computer Federation) not more than five feet from where students were demonstrating their FIRST robot.

The one-day event featured over fifty demonstrations, talks, and workshops on topics ranging from a crash course in lock picking to the latest advancements in quantum computing. In the vendor room you could buy a refurbished laptop while just down the hall talks were being given on heady topics such as using neural networks and genetic algorithms for day trading on the stock market.

Recent years have seen a widening of the content presented, but TCF’s longevity means there is a distinct “vintage” vibe to the show and the culture surrounding it. Many of the attendees, and even some of the presenters, can proudly say they’ve been attending since the very first show in 1976.

There was simply too much going on to see everything. At any given time, there were eleven talks happening simultaneously, and that doesn’t include the demonstrations and workshops which ran all day. I documented as many highlights from this year’s TCF as I could for those who haven’t had a chance to visit what might be the most low-key, and certainly oldest, celebration of computing technology on the planet. Join me after the break for the whirlwind tour.

Continue reading “Hackaday Visits World’s Oldest Computer Festival: TCF 43”

Converting Power Supplies For Antique Computers

Just because something is “never used” doesn’t mean it’s good. [Inkoo Vintage Computing] learned that lesson while trying to repair an Amiga 500 and finding parts online that were claimed to be “new” in that they were old stock that had never been used. The problem was that in the last 30 years the capacitors had dried out, rendering these parts essentially worthless. The solution, though, was to adapt a modern PSU for use on the old equipment.

The first hurdle to getting this machine running again was finding the connector for the power supply. The parts seemed to have vanished, with some people making their own from scratch. But after considering the problem for a minute longer they realized that another Commodore machine used the same parts, and were able to source a proper cable.

Many more parts had to be sourced to get the power supply operational, but these were not as hard to come across. After some dedicated work with the soldering iron, the power supply was put to use running the old Amiga. Asture readers will know that [Inkoo Vintage Computing] aren’t strangers to the Amiga. They recently were featured with a nondestructive memory module hack that suffered from the same parts sourcing issues that this modification had, but also came out wonderfully in the end.

Bring Deep Learning Algorithms To Your Security Cameras

AI is quickly revolutionizing the security camera industry. Several manufacturers sell cameras which use deep learning to detect cars, people, and other events. These smart cameras are generally expensive though, compared to their “dumb” counterparts. [Martin] was able to bring these detection features to a standard camera with a Raspberry Pi, and a bit of ingenuity.

[Martin’s] goal was to capture events of interest, such as a person on screen, or a car in the driveway. The data for the events would then be published to an MQTT topic, along with some metadata such as confidence level. OpenCV is generally how these pipelines start, but [Martin’s] camera wouldn’t send RTSP images over TCP the way OpenCV requires, only RTSP over UDP. To solve this, Martin captures the video stream with FFmpeg. The deep learning AI magic is handled by the darkflow library, which is itself based upon Google’s Tensorflow.

Martin tested out his recognition system with some cheap Chinese PTZ cameras, and the processing running on a remote Raspberry Pi. So far the results have been good. The system is able to recognize people, animals, and cars pulling in the driveway.  His code is available on GitHub if you want to give it a spin yourself!

Cracking An Encrypted External Hard Drive

As far as hobbies go, auditing high security external hard drives is not terribly popular. But it’s what [Raphaël Rigo] is into, and truth be told, we’re glad it’s how he gets his kicks. Not only does it make for fascinating content for us to salivate over, but it’s nice to know there’s somebody with his particular skill set out there keeping an eye out for dodgy hardware.

No word on how the “Secret Wang” performs

The latest device to catch his watchful eye is the Aigo “Patriot” SK8671. In a series of posts on his blog, [Raphaël] tears down the drive and proceeds to launch several attacks against it until he finally stumbles upon the trick to dump the user’s encryption PIN. It’s not exactly easy, it did take him about a week of work to sort it all out, but it’s bad enough that you should probably take this particular item off the wishlist on your favorite overseas importer.

[Raphaël] treats us to a proper teardown, including gratuitous images of chips under the microscope. He’s able to identify a number of components on the board, including a PM25LD010 SPI flash chip, Jmicron JMS539 USB-SATA controller, and Cypress CY8C21434 microcontroller. By hooking his logic analyzer up to the SPI chip he was able to dump its contents, but didn’t find anything that seemed particularly useful.

The second post in the series has all the gory details on how he eventually gained access to the CY8C21434 microcontroller, including a description of the methods which didn’t work (something we always love to see). [Raphaël] goes into great detail about the attack that eventually busted the device open: “cold boot stepping”. This method allowed him to painstakingly copy the contents of the chip’s flash; pulling 8192 bytes from the microcontroller took approximately 48 hours. By comparing flash dumps he was able to eventually discover where the PIN was being stored, and as an added bonus, found it was in plaintext. A bit of Python later, and he had a tool to pull the PIN from the drive’s chip.

This isn’t the first time we’ve seen a “secure” hard drive that ended up being anything but. We’ve even been witness to a safe being opened over Bluetooth. Seems like this whole “Security by Obscurity” thing might not be such a hot idea after all…

A Plywood Laptop For Your Raspberry Pi

[Rory Johnson] writes in to tell us about PlyTop Shell, a Creative Commons licensed design for a laser cut wooden laptop that he’s been working on since 2016. It’s designed to accommodate the Raspberry Pi (or other similarly sized SBCs), and aims to provide the builder with a completely customizable mobile computer. He’s got a limited run of the PlyTop up for sale currently, but if you’ve got the necessary equipment, you can start building yours while you wait for that new Pi 3B+ to arrive.

Originally [Rory] was working on a 3D printed design, but quickly ran into problems. The vast majority of 3D printers don’t have nearly the build volume to print out a laptop case in one shot, so the design needed to be broken up into multiple smaller pieces and then grafted together into the final case. Not only did this take a long time and a lot of material, but the final result had the rather unfortunate appearance of a plastic quilt.

Eventually he got hooked up with a maker collective in Minneapolis that had a laser cutter, and the PlyTop was born. There’s still a 3D printed component in the design that goes in the screen hinge, but the rest of the PlyTop is cut out of a three 2′ x 4′ sheets of 1/8″ Baltic birch plywood. As you might expect, plenty of fasteners are required, but [Rory] has a complete Bill of Materials (complete with purchase links) for everything you’ll need to turn the cut pieces into a fully fledged laptop. He’s considering selling kits in the future, but is still working on the logistics.

In keeping with the idea of complete flexibility, there’s no defined layout for the internals of the PlyTop. Rather, there’s an array of star-shaped openings on the bottom plate that allow the builder to connect hardware components up in whatever way works for them. [Rory] actually suggests just holding everything down with zip ties to allow for ease of tinkering.

He’s also come up with a list of suggested hardware for the keyboard, touchpad, and display; but those are really just suggestions. The design is open enough that it shouldn’t take much work to adapt to whatever gear you’ve got laying around.

Of course, this isn’t the first open source laptop we’ve seen here at Hackaday. It isn’t even the first wooden one. But we love the lines of the PlyTop and the focus on complete customization.

Continue reading “A Plywood Laptop For Your Raspberry Pi”

Respectfully Modifying The Amiga 500

Modifying the Amiga 500 to speed up access to RAM in a memory expansion pack is a well documented procedure, with guides on the process written in the early 1990’s when the hardware was only a few years old. But as they were written for contemporary hardware, they make no concessions for how one should be treating a vintage computer that’s now over 30 years old. In 1993, cutting traces on the Amiga 500 motherboard was just a last ditch effort to eek a few more months of service life out of an outdated desktop computer. But in 2018, it’s kind of like when that old lady tried to “restore” a fresco of Jesus in Spain; it might be done with the best of intentions, but you still screwed the thing up good and proper.

Such things don’t fly over at [Inkoo Vintage Computing]. There you can find a guide that details the impressive lengths one can go to if they want to perform the classic modification without any irreversible changes to the motherboard. To avoid the cut traces and soldered bodge wires, this version of the modification makes use of a novel adapter that breaks out the necessary connections on the 8372A chip.

The adapter is simply a homemade PCB with both male and female plastic leaded chip carrier (PLCC) connectors. The few pins on the chip that needed rerouting are exposed as solder pads on the adapter for easy wiring. There are even a couple jumpers on the adapter to turn the modifications on and off.

Not surprisingly, the trickiest part of building this adapter was sourcing the antiquated PLCC connectors. Assuming you can even find them, you are then left with the challenging task of soldering them together. Judging by the pictures on the [Inkoo Vintage Computing] page, it’s no walk in the park.

Another similar arrangement is used in the expansion bay of the Amiga, where a pin is virtually “cut” in the connector. A tiny PCB is soldered to a 3×2 header to reroute the signals, and another jumper is used to enable and disable the pin. Luckily, the long pins on the Amiga memory expansion are forgiving enough that the little board can fit in between them without breaking electrical contact.

We’re no stranger to the Amiga 500 around these parts. We’ve covered how to get the 1987-vintage machine online in the 21st century, as well as employing a Raspberry Pi to emulate the original floppy drive. You can even make your own faux-Amiga with a 3D printed case, if you suffer from a sort of existential dread when working on a computer that’s older than you are.

Android Sources For The Asus Tinker Board

The Asus Tinker Board is one of the quiet achievers of the powerful single board computer market. A Raspberry Pi form factor with a significantly more powerful processor, more memory, faster networking, and Asus build quality. In hardware terms it leaves many of the other Pi competitors in the dust. If the Tinker Board has a problem though it is the same one that affects so many otherwise promising offerings, that its software support isn’t as strong as the fruity computer from Cambridge. When you buy a Pi it’s Raspbian that makes it a wise purchase, along with the huge community support that surrounds it.

An interesting development on that front comes courtesy of [Justin], who tells us that the sources have been released for the Tinkerboard flavour of Android. The community have put in the work on the board’s Linux distro, but the Android side hasn’t had the same opportunity. This step makes the Tinker Board a significantly more interesting choice for custom Android development, as unlike some of its competitors for which only precompiled builds are available it puts a bespoke Android build in the hands of its developers.

We like the Tinker Board here at Hackaday. We first reviewed it when the boards became available, but later found that they had reached the market in error before Asus had a stable operating system. We therefore returned with another review six months later, and found it to be a credible Raspberry Pi alternative saved by its band of enthusiasts who have filled in for any of its software shortcomings.