HackerTrans
TopNewTrendsCommentsPastAskShowJobs

sjmulder

no profile record

Submissions

Why Choose to Use the BSDs in 2025

it-notes.dragas.net
5 points·by sjmulder·10 maanden geleden·0 comments

Sh-handler: Combine the ease of QR codes with the power of curl|bash

codeberg.org
1 points·by sjmulder·11 maanden geleden·0 comments

Management of IP numbers by peg-DHCP (1998)

datatracker.ietf.org
1 points·by sjmulder·11 maanden geleden·0 comments

Bird signs and cycles, February, 2024

subject.space
14 points·by sjmulder·11 maanden geleden·1 comments

comments

sjmulder
·18 dagen geleden·discuss
I agree that OSM is amazing, but

> The cool thing isn't so much os9map (yes it's cool)

OS9Map is absolutely the cool thing here, especially if you consider the platform lacks basics such as TLS and JSON parsing.
sjmulder
·vorige maand·discuss
Doesn't the loaded code have to be patched for relocations?
sjmulder
·vorige maand·discuss
Even DOS has environment inheritance!
sjmulder
·2 maanden geleden·discuss
Web/SSH/mail server using the built in httpd, sshd and smtpd. Very happy with it.

And on my laptop, occasionally, to experience it in person.
sjmulder
·2 maanden geleden·discuss
I dual boot OpenBSD on it, and it's been doing fine. The out of the box experience is pretty bare although the default window manager cwm is surprisingly nice once you get to know it. Note that apmd, the power management daemon used to manage CPU speed and low-battery suspend, is not enabled by default. The high-DPI screen required some adjustments in Xresources (I haven't dared try a multi-monitor, mixed DPI setup).

NetBSD seemed okay to but I've only used it a little bit. It actually set up X pretty well for the screen using some built in script with heuristics to determine font size from the screen metrics.
sjmulder
·2 maanden geleden·discuss
Turns out the rule works perfectly fine, I just forgot to enable IPv4 forwarding in sysctl (in addition to IPv6, which I did enable).
sjmulder
·2 maanden geleden·discuss
A 'charade'? Just having some fun running NetBSD on unusual hardware and learning something along the way. There's no cheating some imaginary game you seem to think I'm participating in.
sjmulder
·2 maanden geleden·discuss
It would be a fun project to do a homebrew HTTP server (and I wouldn't be surprised if it had been done already) but in this case I actually mean to replace my Pi 'home server' with this Wii, and for that I want SSH, git, web, mail, and all that, so practically, NetBSD was a good option.

There's also the fact that there's a modern, up-to-date Unix distribution for this in the first place, how cool is that.
sjmulder
·2 maanden geleden·discuss
I meant to replace it with IP forwarding from a secondary IPv4 address on another host running OpenBSD, but I haven't been able to get that to work yet. Perhaps any OpenBSD/pf folk here have an idea? This is my config (where in the real file the variables are literals):

  pass in on egress inet to $secondary_ipv4 \
    af-to inet6 from $ipv6 to 2a02:a45f:8eaa::2/128
All I get is timeouts and traceroutes with infinite hops. First I tried rdr-to, but that complains of the address family mismatch.
sjmulder
·10 maanden geleden·discuss
404, supposedly the correct link is: https://buttondown.com/blog/email-signatures-history
sjmulder
·11 maanden geleden·discuss
How is that? These are vendor packages
sjmulder
·11 maanden geleden·discuss
The followup year overview is also beautiful and extensive: https://subject.space/projects-static/medium-year-bird-calen...
sjmulder
·11 maanden geleden·discuss
Looks like great news!

> DF plans to stick to PC gaming, retro gaming, and console performance analysis as its “three pillars” and doesn’t plan to chase SEO.

Happy to see that. I especially like their retro content, aside from the weekly podcast.
sjmulder
·11 maanden geleden·discuss
https://archive.is/rpihT

Original announcement video: https://www.youtube.com/watch?v=tl7bIJ2yu4I
sjmulder
·11 maanden geleden·discuss
The interjected bullet point sections seem to be entirely LLM written and don't add anything, just meaningless interruption
sjmulder
·12 maanden geleden·discuss
Great! Dutch living in Austria and YouTube is randomly dubbing videos from one language to another with no way of turning it off, which is my real WTF here.
sjmulder
·12 maanden geleden·discuss
Running through illness and injury isn’t, otherwise why not. But I don’t think that’s the point. It’s challenge to yourself.
sjmulder
·vorig jaar·discuss
Btw, CLI editors can be interactive too: consider ed ("the standard text editor") and DOS' edlin.
sjmulder
·6 jaar geleden·discuss
Thanks! Note that I don’t have much experience writing Win32 apps so the code might not be top quality.

The universal lib is interesting for future work (the compiler inlined the few things I needed). For Win32s support generating a position-independent executable was the only problematic bit, but that's not an issue for libraries.
sjmulder
·6 jaar geleden·discuss
That’s cool! Windows’ backwards compatibility is amazing. It also allows for feature detection so a program can work on 3.11 but also look and feel native on 10.

I played around with that here: https://github.com/sjmulder/netwake

It’s a simple utility but it works on Windows 3.11 (with Win32s) and up, but supporting high DPI, font scaling, and theming on Windows versions that support it.