• 1 Post
  • 53 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle

  • Excuse me if I don’t appreciate when the compiler adamantly refuses to do its job when there’s one single unused variable in the code, when it could simply ignore that variable and warn me instead.

    I also don’t enjoy having to format datetime using what’s probably the most reinventing-the-wheel-y and most weirdly US-centric formatting schemes I have ever seen any programming language build into itself.





  • If you want to be able to use “actual streaming services like Netflix”, you’re gonna be disappointed. Those use DRM that won’t be available to your Pi. Most of them will at least limit the quality to a pretty pathetic level. Overall it’s not going to be a satisfying experience. AFAIK it takes some major hackery to get around that limitation, making it a practically insurmountable obstacle.

    Otherwise the rest are more than doable. I’d still recommend an x64 based mini pc though.















  • The OS has no concept of an “fn” key. The keyboard never sends an fn keycode to the host machine. It’s a feature that’s entirely handled by the keyboard firmware itself. Your computer either receives an F2 key or a “brightness down” key, but it has no idea an fn key was involved in that one way or another.

    So you could maybe modify your keymap to swap things out yourself. Intercept the “brightness down” keycode and manually map it to F2 or whatever. That’s the only in-software solution I can think of. That’s basically what the BIOS toggles do, as far as I know. Less than ideal to do yourself, though.