HN user

fisian

527 karma
Posts13
Comments99
View on HN
You Can Run 2 months ago

I interpreted it another way: the boxes are what connects the past to this written story. Without the boxes most details would be forgotten and this article wouldn't exist. The documents in the boxes were only thoroughly read by one daughter starting in 2024.

I didn't know CMake introduced this debug adapter. This would have been very useful to me at some occasions.

Instead, I used printf debugging (aka `message(FATAL_ERROR )` debugging in CMake).

With this debug adapter, there also seem to be integrations in VSCode and CLion. I will have to try them out soon.

I think this is a great introduction to logical thinking and coding. The overcooked scripting layer looks awesome and very polished. Reminds me a bit of Scratch (the programming language). Are you going to make it available to others?

There are also video games based on this concept, e.g. Bots are Dumb. So maybe your scripting layer it could even become its own commercial game.

This principle is also highly relevant in safety critical systems for using redundant sensors. Just adding a second sensor is often not enough. Because if they disagree, which one do you trust.

One example of this is in airplanes.

Looking forward to the early bird launch. JMAP support from an email provider (other than fastmail) is great. Additionally, this seems like a good way to fund thunderbird apart from donations, while supporting open source email.

off topic: What's the font this website uses for the code? The font ligatures seem nice, but I also would have to get used to reading code like that.

It's just an ad for their SSH cert service...

I feel like for SSH certs to expand beyond large companies, there's the need for an open-source service which does the issuing of short-lived certs after a user authenticates. I know smallstep, but their offer feels open-core/freemium.

GrapheneOS on a Pixel is probably the most polished and secure experience. I have installed it (and enabled sandboxed Google services) on my mom's phone (she's pretty non-technical) and she had no bigger problems in the last years.

Great work!

I would've needed this recently for some data analysis, to estimate the mass of an object based on position measurments. I tried calculating the 2nd derivative with a Savitzky-Golay filter, but still had some problems and ended up using a different approach (also using a Kalman filter, but with a physics-based model of my setup).

My main problem was that I had repeated values in my measurements (sensor had a lower, non-integer divisible sampling rate than the acquisition pipeline). This especially made clear that np.gradient wasn't suitable, because it resulted in erratic switches between zero and the calculated derivative. Applying, np.gradient twice made the data look like random noise.

I will try using this library, when I next get the chance.

I'm not that active on matrix (mostly just passively listening on a few topics that interest me).

However, regarding your last point there seems to be an active focus on improving element and their recent post about elementX [1].

I agree with your other points though, there are a lot of experiments that often lead to nowhere (e.g. P2P is basically abandoned AFAIK).

[1] https://element.io/blog/element-x-ignition/

I find cameras with embedded processing are really interesiting. I have used the PixieCam before, for on camera image processing and object detection.

One big benefit is that there are less requirements for the communication interface (e.g. lower bandwidth). Additionally, it makes it a lot easier for embedded applications, e.g. some low power microcontroller that wouldn't have the processing power for image processing itself.