HN user

hasheddan

9,702 karma
Posts1,132
Comments47
View on HN
modelplane.ai 2d ago

Any Engine, Any Topology, Any Infrastructure: How We Designed Modelplane

hasheddan
3pts0
news.siemens.com 2d ago

Siemens to Acquire Precision Innovations

hasheddan
4pts0
yang-ai-lab.github.io 2d ago

Inertia-1: An Open Exploration to a Unified Motion Foundation Model

hasheddan
53pts1
www.cs.princeton.edu 6d ago

What will be left for us to work on?

hasheddan
2pts0
modelplane.ai 7d ago

Modelplane

hasheddan
4pts0
www.zach.be 7d ago

Was I wrong about Etched?

hasheddan
4pts0
gist.github.com 19d ago

Mythos Report for Curl

hasheddan
4pts1
www.controlpaths.com 27d ago

Using the Red Pitaya STEMlab 125-14 Pro Gen2 as an SDR in GNU Radio

hasheddan
2pts0
modelplane.ai 28d ago

Modelplane

hasheddan
3pts0
modelplane.ai 29d ago

Modelplane

hasheddan
19pts0
semiconductor.samsung.com 29d ago

From GAA to 3D Stacked FET: Expanding the Transistor into the Third Dimension

hasheddan
3pts0
fergusfinn.com 1mo ago

Adaptive speculative decoding: picking draft lengths at runtime

hasheddan
5pts0
blog.doubleword.ai 1mo ago

Prediction: A Frontier open-source LLM Will Be Released On 3rd December 2026

hasheddan
3pts0
fergusfinn.com 1mo ago

InfiniBand, RoCE, and All That

hasheddan
5pts0
fprox.substack.com 1mo ago

Manifest for RISC-V Constant Time Floating-Point Operations

hasheddan
3pts0
datatracker.ietf.org 1mo ago

RFC 9958: Post-Quantum Cryptography for Engineers

hasheddan
3pts0
www.zach.be 1mo ago

Tensordyne is making AI compute more efficient using logarithms

hasheddan
4pts0
www.adiuvoengineering.com 1mo ago

Fast Fourier Transform from Scratch

hasheddan
3pts0
wesbrown18.medium.com 1mo ago

The RTX Spark Is Not an Apple Silicon Competitor

hasheddan
9pts1
github.com 1mo ago

Gati: Hardware Accelerated DNNs on FPGAs

hasheddan
3pts0
xca-attacks.github.io 1mo ago

Staleus: Breaking AMD SEV-SNP via Memory Incoherence

hasheddan
2pts0
danielmangum.com 1mo ago

Fooling Go's X.509 Certificate Verification

hasheddan
58pts30
raesene.github.io 1mo ago

Do Containers Still Contain?

hasheddan
1pts0
raesene.github.io 1mo ago

Do Containers Still Contain?

hasheddan
2pts0
danielmangum.com 1mo ago

JLink JTAG Access on the Pinecil Soldering Iron

hasheddan
3pts0
thechipletter.substack.com 1mo ago

Floating Point: The Origin Story

hasheddan
11pts0
danielmangum.com 1mo ago

JLink JTAG Access on the Pinecil

hasheddan
67pts16
oxide.computer 1mo ago

Iddqd, or the hardest kind of unsafe Rust

hasheddan
30pts4
normalcomputing.com 1mo ago

Building an Open-Source Verilog Simulator with AI: 580K Lines in 43 Days

hasheddan
2pts0
www.zach.be 1mo ago

How is Groq raising more money?

hasheddan
156pts69

Author here, thanks for posting! Happy to answer any questions and would love to hear about any use cases in which folks have dynamically enabled / disabled FPU functionality throughout program execution.

Good question! We wrote a few blog[0] posts[1] about the motivation for signy and how it is used in practice. The primary use case is complex devices with multiple MCUs and multi-protocol connectivity (e.g. Wi-Fi, Cellular, Bluetooth, etc.). In this context, each MCU may have different security capabilities, and manufacturing / provisioning may be simplified by storing a single set of credentials (e.g. a private key) in a single secure storage location, then using that key to generate a temporary signed URL that can be handed to the less secure domain for a scoped operation, such as downloading an asset. There are also more niche use cases, such as allowing an end user to access a private resource by generating a signed URL and sending it to a phone via NFC.

[0] https://blog.golioth.io/signed-urls-for-embedded-devices/ [1]: https://blog.golioth.io/signed-urls-on-esp32/

There are so many options and all are very cool to explore.

Very much agree, controlling a varicap via an MCU is a nice intermediate step of "digital tuning" without going all the way to SDR.

it is very rewarding to pick signals out of the air

I could not agree more :)

——

This is quite possibly the most positive interaction I’ve had on HN — thanks Jacques!

Author here -- thanks for the comments and feedback! I typically use the solder stripping technique as well when actually incorporating the inductor into a circuit. Interesting you should mention variable capacitors as I just went through the process of sourcing 5 of them (will be discussed in a future post) from Amazon, and not only were they expensive, but they also took significantly longer to ship than was originally estimated.

I am somewhat surprised that the small loops would pick up a meaningful amount of noise, though I suppose meaningful always depends on the use case and tolerances. Do you have any references for how significantly this can impact inductor performance? Or is the primary concern just the rubbing and potential shorts?

Despite ferrite core inductors and loopstick antennas being old, fairly well understood technology, I have found there to be very little in the way of hands-on experiments with tangible results available. I'm hoping to continue testing various techniques and posting about them -- you've already provided some great variations for me to test out!

Could not agree more! And yes, though due to the lack of specifications available for the ferrite rods I purchased, it ended up being more of a calculation of their permeability based on the measured inductance. I'll have another post soon that shows measuring the resonance frequency of these inductors with various types of capacitors, which is a fun exercise in parasitic capacitance and inductance.

Great pointer! My sibling post in this thread references a few other blog entries where we have detailed using eDRX and similar low power modes alongside Connection IDs. I agree that many devices don't need to be immediately responsive to cloud to device communication, and checking in for firmware updates on the order of days is acceptable in many cases.

One way to get around this in cases where devices need to be fairly responsive to cloud to device communication (on the order of minutes) but in practice infrequently receive updates is using something like eDRX with long sleep periods alongside SMS. The cloud service will not be able to talk to the device directly after the NAT entry is evicted (typically a few minutes), but it can use SMS to notify the device that the server has new information for it. On the next eDRX check in, the SMS message will be present, then the device can ping the server, and if using Connection IDs, can pull down the new data without having to establish a new session.

An ad for... the IETF? All of the firmware discussed in this post is open source, and we even contributed DTLS Connection ID server side support to a popular open source library [0] so other folks can stand up secure cloud services for low power devices. Sure, we sell a product, but our broader mission is making the increasing number of internet connected devices more secure and reliable. When sharing knowledge and technology is in service of that mission, we do not hesitate to do so.

[0] https://blog.golioth.io/golioth-announces-connection-id-supp...

Author of this post here -- thanks for sharing your experience! One thing I'll agree with immediately is that if you can afford to power down hardware that is almost always going to be your best option (see a previous post on this topic [0]). I believe the NAT post also calls this out, though I believe I could have gone further to disambiguate "sleeping" and "turning off":

This doesn’t solve the issue of cloud to device traffic being dropped after NAT timeout (check back for another post on that topic), but for many low power use cases, being able to sleep for an extended period of time is more important than being able to immediately push data to devices.

(edit: there was originally an unfortunate typo here where the paragraph read "less important" rather than "more important")

Depending on the device and the server, powering down the modem does not necessarily mean that a session has to be started from scratch when it is powered on again. In fact, this is one of the benefits of the DTLS Connection ID strategy. A cellular device, for example, could wake up the next time in a completely different location, connect to a new base station, be assigned a fresh IP address, and continue communication with the server without having to perform a full handshake.

In reality, there is a spectrum of low power options with modems. We have written about many of them, including a post [1] that followed this one and describes using extended discontinuous reception (eDRX) [2] with DTLS Connection IDs and analyzing power consumption.

[0] https://blog.golioth.io/power-optimization-recommendations/ [1]: https://blog.golioth.io/turn-off-subsystems-remotely-to-redu... [2]: https://www.everythingrf.com/community/what-is-edrx

Author here. I’ve got a few more posts on VPR coming in the next couple of weeks. If you have any requests for deep dives into specific aspects of the architecture, feel free to drop them here!

Luke (author of Hazard3) provided some context regarding including the Hazard3 cores alongside the M33's:

I can't compare the sizes of the two cores. The final die size would likely have been exactly the same with the Hazard3 removed, as std cell logic is compressible, and there is some rounding on the die dimensions due to constraints on the pad ring design. I can say that we taped out at a very high std cell utilisation and we might have saved a few grey hairs during final layout and STA by deleting the RISC-V cores.

https://x.com/wren6991/status/1821582405188350417

There is a pretty wide range of setups, but you can get started with just a laptop and Open Broadcaster Studio (OBS) streaming to YouTube or Twitch. My personal setup has evolved a bit, and currently consists of:

- Two machines. One is for development and the other is dedicated streaming.

- The development machine is connected to the streaming machine with an HDMI cable and an Elgato capture card.

- Microphone is a Rode Podcaster (XLR), which is connected to an audio interface.

- Audio interface is a Scarlett 2i2, which is attached to the streaming machine via USB.

- Currently just using the webcam on the streaming machine, which is terrible, but no one is there to see my face anyway :)

Best of luck on your streaming journey and feel free to reach out if I can help out in any way!