Reyk Flöter

318 Followers
49 Following
216 Posts
OpenBSD hacker. Coffee nerd. Mastodon rookie.
Interesting - I‘ve long lost access to this account but this client is still logged in.
Test - can I still post here?
Is there any browser in OpenBSD that works with U2F/FIDO yet? If direct USB access from the browsers is still the problem, I wonder if libfido2 could be (ab)used for it.
While GitHub Sponsors is still beta, they have accepted me into the program. I don’t have a Patreon profile because I never thought that it fits very well for authors of open source software. Let’s see if GitHub works out this way… https://github.com/sponsors/reyk
Sponsor @reyk on GitHub Sponsors

Support @reyk's open source work on GitHub

We hiked to the lower Clariden glacier today, after a 1.5h drive from Zurich. The sound of the cracking and moving glacier is just stunning.
(CW: selfie, eye contact, a dying glacier)
I wrote a vmd(8) diff that adds support for static IP addresses on local interfaces (built-in dhcp). See the first iteration on tech@ https://marc.info/?l=openbsd-tech&m=157202749827085&w=2
'vmd: static address for local interfaces, fix static tapX names' - MARC

I’m not a fan of the OpenBSD 6.6 artwork but I guess that many people will like it. <sarcasm>The babes will probably help to drive sales.</sarcasm>
Back home after #EuroBSDCon. It was good to see some of you! 👍🏻
Coffee stop at “Tim Wendelboe” in Oslo. Nice place and great coffee! I’m on my way to #EuroBSDCon in Lillehammer now.
A doubly linked list only works with “unsafe“ code because it has do deal with raw pointers. The std::collections::LinkedList code uses some really interesting hacks like PhantomData and NonNull pointers. That basically means that something as simple as such a list is not possible in Rust without using features that more or less bypass its memory safety.