The Mostly Forgotten Story Of Atmospheric Railway

It doesn’t matter whether you know it as a railway, a railroad, a chemin de fer, or a 铁路, it’s a fair certainty that the trains near where you live are most likely to be powered either by diesel or electric locomotives. Over the years from the first horse-drawn tramways to the present day there haven’t been many other ways to power a train, and since steam locomotives are largely the preserve of museums in the 21st century, those two remain as the only two games in town.

But step back to the dawn of the railway age, and it was an entirely different matter. Think of those early-19th-century railway engineer-barons as the Elon Musks and Jeff Bezos’ of their day, and instead of space and hyperloop startups their playground was rail transport. Just as some wild and crazy ideas are spoken about in the world of tech startups today, so it was with the early railways. One of the best-known of these even made it to some real railways, I’m speaking of course about the atmospheric railway.

These trains were propelled not by a locomotive, but by air pressure pushing against a piston in a partially evacuated tube between the tracks.

Continue reading “The Mostly Forgotten Story Of Atmospheric Railway”

Open And Sustainable Engineering Hack Chat

Join us on Wednesday, August 19 at noon Pacific for the Open and Sustainable Engineering Hack Chat with Joshua Pearce!

Since the first of our hominid ancestors learned to pick up a rock and make it into a tool, we humans have been using our engineering skills to change the world. For most of the 2 million or so years since that first technological leap, natural materials like stone and wood were the focus of our engineering projects, and except for a few tantalizing remnants, most of what was built has returned to the Earth whence it came.

Then we discovered other materials; we learned to free metals from rocks and how to harvest the fossilized hydrocarbon remains of ancient plants. Iron, aluminum, plastic, and silicon became our stock in trade, and the planet is now layered so thick with these materials and the byproducts of harvesting them that a new geological epoch, the Anthropocene Epoch, has been proposed to cover this time of human activity and its impact on the geological record.

But if we humans are clever enough to make such an impact, we should be clever enough to think our way out of the mess, and wise enough to see the need. That’s where the efforts of Dr. Pearce’s research at the Michigan Tech Open Sustainability Technology (MOST) lab are focused. Dr. Pearce envisions a sustainable future powered by pervasive solar photovoltaic systems and using open-source technologies like 3D printing to drive new models for manufacturing. We’ve recently seen interesting work from his lab, like this grinder that makes custom compression screws for plastic recycling. The MOST page on Hackaday.io is filled with other great examples of the technology that supports their mission, from low-cost environmental testing instruments to 3D-printable microfluidics.

Dr. Pearce will join us on the Hack Chat to talk about open and sustainable engineering. Be sure to stop by with your questions and to find out what you can do to engineer a brighter future, starting right in your own shop.

join-hack-chatOur Hack Chats are live community events in the Hackaday.io Hack Chat group messaging. This week we’ll be sitting down on Wednesday, August 19 at 12:00 PM Pacific time. If time zones baffle you as much as us, we have a handy time zone converter.

Click that speech bubble to the right, and you’ll be taken directly to the Hack Chat group on Hackaday.io. You don’t have to wait until Wednesday; join whenever you want and you can see what the community is talking about.

Continue reading “Open And Sustainable Engineering Hack Chat”

Mercurial Light Box Has A Secret Switch

Hit up the lighting aisle of any big box hardware store these days and you’ll probably find a variety of Edison bulbs — modern bulbs meant to evoke the bare, complicated tungsten filament bulbs from the early days of electric candlelight. Edison bulbs use filament LEDs, which resemble skinny candles with wicks at both ends and give off a nice light, especially when diffused by acrylic.

This simple light box uses two filament LEDs that float inside on an internal circuit sculpture. [lonesoulsurfer] likes to use old cell phone batteries and USB charging boards in his builds, and that’s exactly what’s inside this box.

Our favorite part of the build elevates this simple light box into a curiosity for those not in the know. It’s controlled with a mercury tilt switch, so all you’d have to do in a power outage is locate the box and turn it upside down, provided it has a charge.

We love elemental switch design around here, like this light box that switches on with salt water.

Your Phone Is Now Helping To Detect Earthquakes

Most people’s personal experience with seismographs begins and ends with simple childhood science experiments. Watching a pendulum make erratic marks on a piece of paper while your classmates banged on the table gave you an idea on how the device worked, and there’s an excellent chance that’s the last time you gave the concept much thought. Even among hackers, whose gear in general tends to be more technologically equipped than the norm, you’re unlikely to find a dedicated seismograph up and running.

But that’s not because the core technology is hard to come by or particularly expensive. In fact, one could say with almost absolute certainty that if you aren’t actively reading these words on a device with a sensitive accelerometer onboard, you have one (or perhaps several) within arm’s reach. Modern smartphones, tablets, and even some laptops, now pack in sensors that could easily be pushed into service as broad strokes seismometers; they just need the software to collect and analyze the data.

Or at least, they did. By the time you read this article, Google will have already started rolling out an update to Android devices which will allow them to use their onboard sensors to detect possible earthquakes. With literally billions of compatible devices in operation all over the planet, this will easily become the largest distributed sensor network of its type ever put into operation. But that doesn’t mean you’re going to be getting a notification on your phone to duck and cover anytime soon.

Continue reading “Your Phone Is Now Helping To Detect Earthquakes”

3D On The ZX Spectrum 48K

There are times when a project becomes such a big part of a maker’s life that they find themselves revisiting it even years later. [Thanassis] combined this phenomena with his love for the ZX Spectrum when he ported one of his old 3D rendering projects to the ZX Spectrum 48K. The video below shows the result, and they speak for themselves.

The roots of this project go back around three years, when [Thanassis] posted a similar project for the ATMega328 which employed fixed point math tricks for achieving the graphics. The code needed to be even tighter to run on the Spectrum, eventually getting boiled down to just a handful of calculations. This got the proof of concept working with the z88dk compiler, but it wasn’t quite fast enough.

In the end, hand assembly optimizations nearly doubled the performance to a blistering 10 frames per second. There’s also a version that kicks it all the way up to 40 FPS, but only if you give it a few minutes to do the calculations ahead of time. With a few teaks and the right display, this project could produce some very cool retro visuals.

Continue reading “3D On The ZX Spectrum 48K”

GridSound – An Audio Workstation In Your Browser

If you’re into creating music, you’ll have a surprisingly large variety of open source options at your disposal, ranging from Audacity as rather simple audio editor to Ardour as a full-blown, studio-worthy DAW — and LMMS, Rosegarden, MusE etc. for anything in between. With [Thomas Tortorini]’s GridSound project, you’ll have one additional choice on your list now, except this one runs in your browser. So if you find yourself in a sudden moment of inspiration, all you’ll need is a browser and off you go.

From the feature set’s point of view, GridSound leans towards LMMS and offers a drum kit, piano roll, and synthesizer. It appears that you won’t be able to record real world instruments at this point, but it’s also a work in progress, so who knows what the future will bring. The code is available on GitHub and you can explore GridSound itself here — no login required, unless you want to save your work. Running in a browser, GridSound is naturally written in JavaScript and uses the Web Audio API to perform the actual audio tasks.

What’s impressive is that [Thomas] opted against any UI framework-of-the-week, but instead implemented everything from scratch in pure vanilla JavaScript. In fact, the entire code base seems to be self-contained without any third party dependencies, and that alone deserves some respect. Sure, JavaScript isn’t everybody’s cup of tea — “real developers use assembly” — so if you prefer something more physical, how about some cardboard music?

Modified Bricks Can House Energy, Too

What if building an emergency battery were as easy as painting conductive plastic onto bricks, stacking them, and charging them up? Researchers at Washington University in St. Louis have done just that — they’ve created supercapacitors by modifying regular old red bricks from various big-box hardware stores.

The bricks are coated in poly(3,4-ethylenedioxythiophene) polystyrene sulfonate (PEDOT:PSS), a conductive polymer that soaks readily into the bricks’ porous surface. When the coated brick is connected to a power source such as a solar panel, the polymer soaks up ions like a sponge. PEDOT:PSS reacts with the iron oxide in the bricks, the rust that gives them their reddish-orange color. Check out the demonstration after the break — it’s a time lapse that shows three PEDOT-coated bricks powering a white LED for ten minutes.

We envision a future where a brick house could double as a battery backup when the power goes out. The researchers thought of that too, or at least had their eye on the outdoors. They waterproofed the PEDOT-coated bricks in epoxy and found they retain 90% of their capacitance and are still efficient after 10,000 charge-discharge cycles. Since this doesn’t take any special kind of brick, it seems to us that any sufficiently porous material would work as long as iron oxide is also present for the reaction. What do you think?

If you can get your hands on the stuff, PEDOT:PSS has all kinds of uses from paper-thin conductors to homebrew organic LEDs.

Continue reading “Modified Bricks Can House Energy, Too”