Concrete With 3D Printed Foam Forms

The latest 3D printing application?  Forming concrete. That’s according to a team at ETH Zurich who claims that construction with foam forms cuts concrete usage up to 70%. It also offers improved insulation properties. You can see a video about the process, below.

Typical concrete work relies on a form often made with wood, steel, or plastic. That’s easy to do, but hard to make complex shapes. However, if you can create complex shapes you can easily put material where it adds strength and omit material where it doesn’t carry load. Using a robotic-arm 3D print technique, the researchers can lay out prefabricated blocks of foam that create forms with highly complex shapes. Continue reading “Concrete With 3D Printed Foam Forms”

All Hail Your New Giant 555 Timer Overlord

You asked for it, and now you’ve got it. It’s taken more than a decade of accumulated complaining, but this gigantic 555 timer IC has finally gathered enough psychokinetic energy to take corporeal form and demand fealty from the readers of Hackaday.

Or not. The less exciting explanation is that creator [Rudraksha Vegad] was looking for a way to combine his interests in discrete electronic components and woodworking. The result is an incredible build that’s more than just a conversation starter; this desktop-sized version of the iconic integrated timer circuit is fully functional. You can even hook it up to a breadboard, assuming you’ve got some alligator clips handy.

Lifting the lid on this wooden “chip” uncovers an intricate hand-wired array of discrete components that stand in for the microscopic goings on inside the real thing. He’s even gone through the trouble of recreating the symbols for the comparators and flip-flops that you’d see in a diagram of a 555 using wooden shapes to elevate their respective components. It might not fit the classical definition, but surely this must count as some form of circuit sculpture.

[Rudraksha] credits several other projects for not just inspiring him to create his own mega 555, but for helping him wrap his head around the internal workings of everyone’s favorite IC. Using components he salvaged from old hardware, he says the project ended up being very educational for him. These days, when most makers are more likely to reach for a microcontroller than a logic chip, spending some quality time with transistors and passives can be quite illuminating.

Continue reading “All Hail Your New Giant 555 Timer Overlord”

A world map with a small magetic plane sitting on Japan

“Window To The World” Brings Far-Off Places To Your Home

For those who love travelling around the world, life hasn’t been great for the past two years. World-wide lockdowns and travel restrictions have kept many people stuck inside their own homes when they would rather be jetting off to distant cities. If you’re one of those bothered by Wanderlust, [Alex Shakespeare] might have a solution for you: a window that shows a live image from another location around the world.

A window showing a live webcam feed
The Window, showing a live feed from Tokyo.

To make the experience as lifelike as possible, [Alex] used an actual window in his London home and mounted a large TV behind it. A wall-mounted map enables him to choose any of five locations by moving a little magnetic plane across the map. LEDs show the available spots, while magnetometers detect the motion of the aircraft. An ESP8266 then instructs a media server to connect to the appropriate livestream, which is subsequently displayed on the TV screen.

All of this is clever enough already, but [Alex] decided to go one step further and added a thermal sensor that detects the location of any persons standing near the display and shifts the image a little when they move. This simulates the perspective of looking out a real window, and should give the image a more life-like quality than if it were simply static.

The whole design is available on [Alex]’s GitHub page, ready to be replicated by anyone who wants to look out over some exotic location. If, instead, you want a way to reminisce about the places you’ve visited in the past, check out this cool souvenir globe. We’ve also seen a neat Google Maps based one a few years back.

Continue reading ““Window To The World” Brings Far-Off Places To Your Home”

Know Audio: Mixtapes, Tape Loops, And Razor Blades

In our no-nonsense journey through the world of audio technology we’ve so far have looked at digital audio and the vinyl disk recording. What’s missing? Magnetic tape, the once-ubiquitous recording medium that first revolutionised the broadcast and recording industries in the mid-20th-century, and went on to be a mainstay of home audio before spawning the entire field of personal audio. Unless you’re an enthusiast or collector, it’s likely you won’t have a tape deck in your audio setup here in 2021 and you’ll probably be loading your 8-bit games from SD card rather than cassette, but surprisingly there are still plenty of audio cassettes released as novelties or ephemeral collectables.

The Device That Made The Sound Of The Latter Half Of The 20th Century

"Like a travelling razor blade", a Blattnerphone steel-strip tape recorder at the BBC in 1937. Douglas Hallam, Jr., Public domain.
“Like a travelling razor blade”, a Blattnerphone steel-strip tape recorder at the BBC in 1937. Douglas Hallam, Jr., Public domain.

The first magnetic recordings were made directly on metal wires, but metal fatigues as it bends. By coating a flexible plastic tape in ferrous particles, the same simple technique of laying down an audio signal as variations in the magnetic field could be made smaller, lighter, and more robust. But the key to the format’s runaway success is the technical advancements that differentiate those 1950s machines from their wire recorder ancestors.

Whether it is a humble cassette recorder or a top-end studio multitrack, all tape recorders are very similar. There are two reels that hold the tape: the playback reel that houses the recording, and the take-up reel that stores the tape as it plays in the machine. The take-up reel is lightly driven to run faster than the tape speed, and the playback reel has a slight braking force to keep the tape under tension at all times. Continue reading “Know Audio: Mixtapes, Tape Loops, And Razor Blades”

Building MS-DOS From Scratch Like It’s 1983

Building a complete operating system by compiling its source code is not something for the faint-hearted; a modern Linux or BSD distribution contains thousands of packages with millions of lines of code, all of which need to be processed in the right order and the result stored in the proper place. For all but the most hardcore Gentoo devotees, it’s way easier to get pre-compiled binaries, but obviously someone must have run the entire compilation process at some point.

What’s true for modern OSes also holds for ancient software such as MS-DOS. When Microsoft released the source code for several DOS versions a couple of years ago, many people pored over the code to look for weird comments and undocumented features, but few actually tried to compile the whole package. But [Michal Necasek] over at the OS/2 Museum didn’t shy away from that challenge, and documented the entirely-not-straightforward process of compiling DOS 2.11 from source.

The first problem was figuring out which version had been made available: although the Computer History Museum labelled the package simply as “MS-DOS 2.0”, it actually contained a mix of OEM binaries from version 2.0, source code from version 2.11 and some other stuff left from the development process. The OEM binaries are mostly finished executables, but also contain basic source code for some system components, allowing computer manufacturers to tailor those components to their specific hardware platform.

Compiling the source code was not trivial either. [Michal] was determined to use period-correct tools and examined the behaviour of about a dozen versions of MASM, the assembler likely to have been used by Microsoft in the early 1980s. As it turned out, version 1.25 from 1983 produced code that most closely matched the object code found in existing binaries, and even then some pieces of source code required slight modifications to build correctly. [Michal]’s blog post also goes into extensive detail on the subtle differences between Microsoft-style and IBM-style DOS, which go deeper than just the names of system files (MSDOS.SYS versus IBMDOS.COM).

The end result of this exercise is a modified DOS 2.11 source package that actually compiles to a working set of binaries, unlike the original. And although this does not generate any new code, since binaries of DOS 2.11 have long been available, it does provide a fascinating look into software development practices in an age when even the basic components of the PC platform were not fully standardized. And don’t forget that even today some people still like to develop new DOS software.

Is Cloud Seeding Good, Bad, Or Ugly?

The Chinese Communist Party celebrated its centenary on the 1st of July, 2021. For such a celebration, clear skies and clean air would be ideal. For the capable nation-state, however, one needn’t hope against the whims of the weather. One can simply control it instead!

A recent paper released by Tsinghua University indicated that China had used cloud seeding in order to help create nicer conditions for its 100-year celebration. Weather modification techniques have been the source of some controversy, so let’s explore how they work and precisely what it was that China pulled off.

Continue reading “Is Cloud Seeding Good, Bad, Or Ugly?”

An All In One Cube PC For A 1990s That Never Quite Happened

When a particular device or appliance is evoked, there comes with it a set of expectations over what it might look like. A toaster, a camera, a washing machine, or a PC, will all have their own accepted form factors, and it’s rare that a manufacturer is adventurous enough to venture outside them. In the world of PCs there was a brief flowering of this type of creativity through the 1990s, and it’s that time which [ikeji]’s cube PC squarely fits in. It’s a 3D printed PC with a built-in display, keyboard, and printer, and while some might categorize it as a cyberdeck we’d say it goes further, we could easily imagine a slightly more polished version being an object of desire back when a powerful machine carried an 80486.

Inside it’s no slouch, packing an AMD Ryzen 7 Pro on a Mini-ITX motherboard, and while the display is a mere 7-incher it fits neatly behind the fold-down keyboard. The thermal printer is maybe more of a toy, but it’s good to find that even a bleeding-edge motherboard still has a serial port on it somewhere that it can talk to.

While the build undoubtedly has a few home-built rough edges we like the idea, echoing as it does those all-in-ones from the CRT era. Unless you have a handy Minitel terminal you won’t find much like it.