Live data from Hacker News

Viewing profile — steinuil

steinuil

HN member
Joined
Sat, Apr 23, 2016, 3:17 PM UTC
HN karma
1,043
Public activity
236 items

About steinuil

I tend fat-finger the "flag" button a lot on my phone, sorry about that!

Recent public activity

  1. comment
    Comment #48970931

    Exactly. The previous install of the system had no swap at all so enabling zram is an improvement.

  2. comment
    Comment #48969507

    > If i'm reading this correctly, can run Immich from a Raspberry Pi 4? That's pretty cool. Yes! It runs completely fine on a Pi, except for the machine learning service. The good n…

  3. comment
    Comment #48968317

    Yeah that's more or less my goal for the setup in the post... I didn't have much time to investigate what else I could move off of the SD card but I suspect there's a few other thi…

  4. story
  5. story
  6. comment
    Comment #46109775

    Glad you enjoyed it :) I have taken a (short) look at KOReader and saw that there's an instructions page on its wiki on how to install it on the rM2; it still uses rm2fb but it sug…

  7. comment
    Comment #45305656

    Hey buddy I think you got the wrong door, the rock shelter's two blocks down.

  8. comment
    Comment #44822341

    Bluesky lets you select the language your post is written in before posting it and it is attached as metadata to the skeet. I guess the backend for this only searches posts in Engl…

  9. comment
    Comment #44821222

    Portuguese too. Most words related to christianity (and a few others too, like カボチャ or ボタン) were introduced in the 15th century by portuguese jesuits. https://en.m.wikipedia.org/wi…

  10. comment
    Comment #44622975

    Later the AI claims it can't run unit tests without overwriting the production database. This whole thread is hilarious. https://x.com/jasonlk/status/1946641193644798118

  11. comment
    Comment #43770969

    Turns out I managed to use almost all of these during a refactor of a project at work, even metaclasses... (Metaclass usage is justified in my case: we have a sort of language eval…

  12. comment
    Comment #43681303

    Some points about the introduction, but otherwise this seems like an interesting collection of (slightly deranged?) patterns in C. > The truth is that any reasonably complicated so…

  13. comment
    Comment #43225825

    I spent a good while looking at the image on my phone trying to spot what the author was talking about, but ironically the comparison image itself is compressed (not using a NN ;) …

  14. comment
    Comment #43024592

    Sounds like you'd enjoy using JJ! It looks to me that you have this workflow to work around git's poor tooling for manipulating local commits before pushing. JJ makes that very eas…

  15. comment
    Comment #43024444

    > but to have a good GitHub alternative. JJ doesn't currently have a "native" repository format (or rather, it's in development and not ready for general usage), so right now a JJ …

  16. comment
    Comment #42886188

    The usual arguments against systemd border on religious drivel. I've seen the talk and while I very much value the work that the speaker has done I did not appreciate that the reas…

  17. comment
    Comment #42672665

    > The leaf functions come first, and the global interface functions are last. To me that is backwards. I prefer code written in a topological order for a number of reasons: - It mi…

  18. comment
    Comment #42623703

    https://archive.is/8tYYn

  19. comment
    Comment #42521962

    Breaking: Web3 devs reach sentience before AI.

  20. comment
    Comment #42490070

    I was expecting the post to go into using the JRuby API to run the scripts rather than shelling out to a binary and was left a little disappointed. Still, it looks like a nice way …

  21. comment
    Comment #42469164

    I don't understand which part of this requires the team to "sacrifice the ‘L’ and ‘B’ from Work-Life-Balance". If you want to encourage your team to re-evaluate their decisions and…

  22. comment
    Comment #42382776

    I know, I've used jsdoc type hints and I don't like them very much. They're verbose, types and names are the wrong way around, there's about two or three different syntaxes for def…

  23. comment
    Comment #42375908

    Python actually has a good typed ecosystem these days, and unlike JS -> TS you don't have to add a compilation step to benefit from it: you just have to enable type checking in you…

  24. comment
    Comment #42375795

    Types give you much more than just getting an error early when you call the wrong method on an object or pass a string where you needed a number. Once you have written down the sha…

  25. comment
    Comment #42295685

    FYI, you can turn this off by adding "Defaults lecture = never" to /etc/sudoers. In Nix: { security.sudo.extraConfig = '' Defaults lecture = never ''; } Or you could also set it to…