Table of Contents >> Show >> Hide
- What Episode 122 Covers (A.k.a. The “How Is This All One Podcast?” Checklist)
- Faster Than Wind Travel: When Physics Sounds Like Clickbait
- Sisyphish: The Aquarium That Draws So Your Shrimp Can Live in a Screensaver
- ALU Desktop Calculator: Retro Computing You Can Tap With Your Fingers
- Workbench Wins: Bismuth Desoldering and Stabilized Soldering
- Ford Wants to Be Your PowerWall: EVs as Backup Power (With Real-World Fine Print)
- Mice in Space: Spinning Up Artificial Gravity on the ISS
- Mini FAQ (Because Your Brain Will Ask These Anyway)
- Conclusion: A Playlist for Your Workbench
- Hands-On Experiences Inspired by Podcast 122 (The Extra Bench-Time Edition)
Some podcast episodes feel like a neat little “news roundup.” Hackaday Podcast 122 feels more like someone dumped a mixed bin of
science, tools, retro computing, and space biology onto your workbenchthen handed you a soldering iron and said,
“Okay, now make sense of it… quickly… and try not to burn your fingerprints off.”
Hosted by longtime Hackaday editors, the episode ricochets between a physics debate (can you travel faster than the wind using the wind?),
a mesmerizing aquarium plotter named Sisyphish, a stunningly retro ALU-based desktop calculator, practical desoldering tricks,
an EV-as-home-battery reality check, and a genuinely “wait, what?” space study involving mice and a centrifuge.
If you like your learning with a side of jokes and a strong chance you’ll open five browser tabs immediately after listening,
this is your kind of chaos.
What Episode 122 Covers (A.k.a. The “How Is This All One Podcast?” Checklist)
- Faster-than-wind travel: when “that can’t be real” turns into “oh… it’s real, and it’s physics.”
- Sisyphish: an aquarium that draws geometric sand patterns like it’s soothing shrimp with math.
- ALU desktop calculator: a retro-styled calculator built around classic ALU logicbecause why not make arithmetic tactile again?
- Low-temp desoldering with bismuth: the kind of tip that saves boards (and your temper).
- Stabilized soldering for hand tremors: a camera gimbal hack that’s equal parts clever and genuinely helpful.
- EVs as home batteries: Ford’s “your truck can back up your house” visionand what it takes to do it safely.
- Mice in space (with a centrifuge): research that tries to answer a huge question: can artificial gravity help?
Faster Than Wind Travel: When Physics Sounds Like Clickbait
Let’s start with the headline that makes comment sections spontaneously generate: wind-powered travel faster than the wind.
If your brain immediately says, “Nope,” congratulationsyou’re an energy conservation fan. The twist is that some “impossible” ideas become
possible when you stop picturing a sailboat and start thinking like an engineer with a rolling chassis and a propeller.
So… can something wind-powered go faster than the wind?
The short version: under certain setups, yes. The longer version: it depends on what “faster than the wind” means, which direction you’re traveling,
and how the vehicle couples energy between moving air and the ground.
In plain English, the clever trick is this: the vehicle doesn’t have to “push against nothing.” If it can exchange forces between
air and ground efficientlythrough wheels, gearing, and a propthe ground becomes your reference frame partner.
That can create situations where the vehicle keeps accelerating even when it’s matching the wind speed, because it’s still extracting energy
through that coupling.
“Is that sailing?” and other philosophical emergencies
Hackaday’s coverage of wind-faster-than-wind concepts hits a fun nerve: people aren’t just debating maththey’re debating vocabulary.
Is it “sailing” if the thrust comes from a propeller driven by wheels? Some will say yes (wind-powered, same vibe),
others will say no (it feels like calling a toaster a “bread tanning spa”).
Why makers love this argument
Because it’s the perfect storm of:
- Counterintuitive physics you can explain with diagrams on a napkin.
- Mechanical elegance (gearing + propulsion + low drag = chef’s kiss).
- Proof culture: you can build a model, test it, and let reality settle the debate.
Even if you’ve seen the idea before, it’s still satisfyinglike rewatching a good heist movie, except the bank vault is your skepticism.
Sisyphish: The Aquarium That Draws So Your Shrimp Can Live in a Screensaver
If “faster than wind travel” is the episode’s loudest argument, Sisyphish is its calmest flex.
It’s a kinetic art fish tank that uses a magnet-driven mechanism to draw Spirograph-style patterns in sandunderwaterwhile the livestock
(colorful shrimp) go about their tiny, important shrimp business.
How it works (without drowning the electronics)
The key idea is brilliantly practical: the moving mechanism stays beneath the tank, away from water, and manipulates a magnet that
drags a drawing element through the sand. Two motions combine:
- Rotation around the center of the cylindrical tank
- Changing the radius (distance from the center)
That’s a polar-style setupoften described as rho-theta positioning. It’s the sort of coordinate system that makes pilots nod and
makes the rest of us whisper, “Sure, that sounds like a real thing,” while backing away slowly.
G-code… but make it round
One of the most delightful details: despite using unusual kinematics, Sisyphish can accept G-code.
That means a whole ecosystem of tooling and generative pattern-making can be repurposed. In the build logs, the creator talks about
generating polar paths and then transforming them into machine-usable commandsturning “art” into “repeatable, editable, shareable art,”
which is extremely on-brand for hackers.
The accidental cybersecurity lesson
The name Sisyphish looks suspiciously close to phish at a glancewhich is honestly a great reminder of how humans misread things.
That’s basically step one of phishing: you skim, you assume, you click. The episode’s pun may be unintentional… but the lesson is real:
slow down and read what’s actually in front of you.
ALU Desktop Calculator: Retro Computing You Can Tap With Your Fingers
Now for the project that makes computer architecture nerds sit up straight like they’ve been called on in class:
an ALU-based desktop calculator with “stunning style from days gone by.”
In a world where even your microwave has a microcontroller doing secret spreadsheets behind the scenes, there’s something boldand charmingabout
building a calculator that puts the “arithmetic” back in “arithmetic logic unit.”
What an ALU actually does
An ALU is the part of a CPU that performs arithmetic (add, subtract, etc.) and logic (AND, OR, XOR, comparisons).
In classic TTL history, chips like the 74181 became famous because they packaged serious computational capability into a building block
you could combine into larger word sizes. The 74181 is a 4-bit “slice,” meaning you can chain multiple chips to handle 8-bit, 16-bit, or more.
Why use something like a 74181 in a calculator build?
Because it teaches the lesson modern systems hide: computation is choices. Not “magic.”
The 74181 family can produce many functions based on select linesso you experience, physically, what it means to route inputs,
choose an operation, and handle carry/overflow.
Ken Shirriff’s deep dive into the chip’s internals is a reminder that these weren’t toys. The 74181 powered real machines, and its design reflects
the era’s obsession with speed, clever gate-level tricks, and doing a lot with a little silicon.
Aesthetic matters, too
The build’s “desktop calculator” form factor isn’t just a container. It’s part of the story.
When you put retro logic into a device that looks like it belongs on a 1970s engineer’s desk, you’re not only building a toolyou’re building a vibe.
And yes, vibes matter in engineering, because motivation is a physical law in every workshop.
Practical uses (beyond making your friends say “why?”)
- Debugging and thinking in hex: if you work close to hardware, hexadecimal stops being “math” and becomes “language.”
- Learning by constraint: limited displays, limited operations, and real signals force clarity.
- Architecture intuition: you start understanding what “an instruction” means at the circuit level.
Workbench Wins: Bismuth Desoldering and Stabilized Soldering
Podcast 122 doesn’t just float big ideasit also hands you two extremely practical upgrades to your bench life:
low-temperature desoldering with bismuth and a camera gimbal hack that stabilizes a soldering iron for people with hand tremors.
Low-temp desoldering: “It’s the bismuth!”
Standard solder often demands heat and speed, which can be a problem when you’re trying to remove multi-pin parts cleanly.
Adding bismuth-based low-melt alloy can drop the working temperature dramatically and keep the joint molten longerbuying you precious seconds
to lift a component without turning a PCB pad into a sad little copper confetti.
It’s not a magic spellyou still need flux, patience, and good techniquebut it’s one of those “why didn’t I learn this sooner?” tricks.
Stabilized soldering: accessibility meets ingenuity
The camera gimbal solution is the kind of hack that deserves applause because it’s not just cleverit’s humane.
By repurposing a stabilization system designed for smooth video, the builder reduces unwanted motion at the iron tip.
The result: more control, less frustration, and a reminder that hacking is often about adapting tools so more people can build.
Ford Wants to Be Your PowerWall: EVs as Backup Power (With Real-World Fine Print)
When the episode shifts to energy, it lands on a very modern promise: your EV isn’t just transportationit’s a large battery on wheels.
The appeal is obvious. If you already own a huge battery, why not use it during an outage?
What Ford Home Backup Power is trying to do
Ford’s Home Backup Power concept for the F-150 Lightning is straightforward: with the right home integration equipment,
the truck can supply power to your house during outages and then return to normal charging when the grid comes back.
The details matter, thoughespecially isolation and safe switching. Backfeeding the grid is dangerous for line workers, so any legitimate system
needs proper controls and professional installation.
Why this is bigger than one truck
Zoom out, and you get the long game: if millions of EVs can charge intelligently (and some can discharge intelligently),
they become a distributed grid resourcesoaking up excess renewable generation and smoothing peaks.
Hackaday’s take frames it as a potential grid storage revolution, but also acknowledges the practical constraints:
equipment cost, standards, battery wear concerns, and the difference between “possible” and “easy.”
Mice in Space: Spinning Up Artificial Gravity on the ISS
The episode’s most “science fiction, but it’s real” segment is the one about mice in spacespecifically, results from a mission that used
a centrifuge on the ISS to expose mice to different gravity levels.
Why mice?
Because mice are fast to study across lifecycles, their biology offers useful parallels for human health,
and (practically) they fit into well-designed habitat systems.
Space agencies have used rodent research for decades to understand bone density loss, muscle atrophy, immune changes,
and even vision-related concerns triggered by microgravity.
The core idea: artificial gravity as a countermeasure
If microgravity causes a cascade of health problems, could partial or near-Earth artificial gravity reduce them?
A centrifuge-based habitat can create controlled gravity levels so researchers can compare:
microgravity vs. artificial gravity (and sometimes intermediate levels, like Mars gravity analogs).
What “promising” looks like in early results
Hackaday’s coverage of ISS artificial gravity research emphasizes the potential for mitigating issues like muscle and bone loss.
NASA research highlights also discuss findings where artificial gravity may counteract specific physiological problems observed in microgravity,
and ongoing datasets track how different organs and systems respond when gravity is reintroducedeven partially.
For makers, the reason this segment hits hard is simple: it’s an engineering story disguised as biology.
If we ever want long-duration missions (hello, Mars), “just exercise more” probably won’t be the whole answer.
Artificial gravitywhether via centrifuges, rotating habitats, or hybrid approachesmay end up being one of the biggest design challenges
of the next era of spaceflight.
Mini FAQ (Because Your Brain Will Ask These Anyway)
Is “faster than wind travel” actually real, or just a debate meme?
It’s real in certain engineered scenarios, but it’s also easy to misunderstand. The “how” matters: coupling to the ground, minimizing drag,
and understanding reference frames are the difference between “physics trick” and “physics fail.”
Is Sisyphish basically a sand table… underwater?
That’s the easiest mental model. The underwater part adds constraints (and charm), and the polar motion system makes it extra interesting.
Why build an ALU calculator when microcontrollers exist?
Because education, joy, and “I want to see the logic happen” are valid reasons. Also: retro builds are a form of documentation.
They remind us how computing works when it’s not hidden behind layers of abstraction.
Should I try bismuth/low-melt desoldering?
If you do board repair or salvage parts, it can be a powerful techniqueespecially on multi-pin packages.
Just learn the method, use flux, and be mindful about cleanup and alloy mixing.
Conclusion: A Playlist for Your Workbench
Hackaday Podcast 122 is a great snapshot of what hardware culture does best:
it treats big questions (like artificial gravity) and small frustrations (like desoldering) as part of the same creative ecosystem.
You finish the episode with new arguments for your next physics debate, a newfound desire to put G-code in places it was never meant to go,
respect for classic ALU design, and a renewed appreciation for hacks that make building more accessible.
Also, you will probably look at your household appliances and think, “Could I strap a gimbal to that?”
And honestly? That’s a healthy symptom.
Extra 500-ish words: Experiences related to the episode
Hands-On Experiences Inspired by Podcast 122 (The Extra Bench-Time Edition)
Episodes like this don’t just inform youthey itch. Not an allergic-reaction itch. More like the “I should build something this weekend”
itch that starts the moment you hear a clever mechanism described out loud.
The “faster than wind” segment is a classic example of a maker experience: you hear the claim, you doubt it, then you start sketching.
First comes the napkin diagram. Then a quick mental inventory of parts you already have: skateboard bearings, scrap plywood, maybe a spare prop,
and that one motor you swore you’d label “someday.” Even if you never build a full vehicle, you end up running a personal experiment anyway
watching explainer videos, arguing with your own assumptions, and discovering that your real opponent isn’t physics. It’s sloppy definitions.
“Faster than wind” becomes a lesson in reference frames, drag, rolling resistance, and how easily language can trick your intuition.
Then Sisyphish hits like a palate cleanser and a dare at the same time. Many builders know the specific kind of satisfaction that comes from
motion that leaves a trace: plotters, CNC routers, laser cutters, sand tables. Watching a pattern appear is proof that mechanics,
firmware, and math are all cooperating for once. The aquarium twist adds a practical layer of experience: you start thinking about sealing,
maintenance, and how to keep water away from electronics without turning the whole thing into a submarine. You also start thinking like a caretaker.
The episode quietly reminds you that “cool projects” live in the real worldwhere living things need clean environments, and where a beautiful design
still has to survive on Tuesday.
The ALU calculator segment tends to trigger a different maker memory: the moment you first understood that computers are not mystical.
Plenty of people have a “gateway” projectblinking an LED, building a simple radio, wiring a keypad. An ALU build is that feeling, but deeper.
You can almost imagine the experience of pressing a key and knowing that the operation isn’t happening in software “somewhere.”
It’s happening in named signals. In gates. In specific chips. That’s the kind of project that makes you better at debugging everything else,
because it forces you to think in states and transitions instead of vibes.
And then the practical bench hacks land like the voice of an older, wiser builder who has already lifted too many pads:
use the right alloy, lower the temperature, give yourself time. If you’ve ever tried to remove a multi-pin part while sweating and bargaining with
the universe (“please don’t delaminate, please don’t delaminate”), the bismuth technique feels like being handed an extra life in a video game.
The gimbal-stabilized soldering hack carries another kind of experience: it reminds you that tools should adapt to humansnot the other way around.
It’s the sort of project that makes many makers quietly reconsider what else could be made more accessible with a clever mechanical assist.
Finally, “Ford as your PowerWall” and “mice in space” trigger the biggest kind of maker experience: systems thinking.
You start connecting dots between home energy, safety interlocks, standards, batteries, infrastructure, and human health.
One minute you’re thinking about keeping your router alive during an outage. The next minute you’re thinking about how gravity itself is a “system requirement”
for long-term spaceflight. That’s the magic of Podcast 122: it scales your curiosity from a solder joint to a space habitatwithout ever losing the thread
that engineering is, always, about making reality behave.
