Live data from Hacker News

Viewing profile — daxvena

daxvena

HN member
Joined
Fri, Sep 25, 2015, 7:12 AM UTC
HN karma
125
Public activity
51 items

About daxvena

No profile information was provided.

Recent public activity

  1. comment
    Comment #39423398

    I doubt it's going to go the same way as search. You can't run Google on consumer hardware, but you can run LLMs locally. At worse, newer models will get worse and you can just sti…

  2. comment
    Comment #37517845

    I feel like I gamed this somehow. Instead of looking for serial killers, I looked for anyone who didn't look like a programming language inventor and got 10/10.

  3. comment
    Comment #36370140

    I think you're missing what they're trying to say. You can still select what you actually need in a different order, but changing the order gives more immediate feedback from autoc…

  4. comment
    Comment #35612914

    Umm because medicine is supposed to be about helping other people? Why would people spend billions of dollars trying to help others work through a natural disaster? To me that's on…

  5. comment
    Comment #34197674

    Yes I do, and I also know that it's been banging on the door for a long time. My point was that it's slow moving, not that it hasn't affected us yet.

  6. comment
    Comment #34197416

    > I'm not him, but the older I get the worse I see interactions with social media getting, so I don't think anyone is going to outgrow it. *her (i wonder if that changes your perce…

  7. comment
    Comment #34193211

    As a youngish adult (27) this is some of what I feel: - Climate change is slowly creeping up on us and corporations keep on trucking along with an endless growth mindset, not carin…

  8. comment
    Comment #33154528

    I kind of feel like you're missing out then. I was pretty young when RSS was "popular" and didn't really get into it back then. I started using it in the past couple of years, and …

  9. comment
    Comment #33128859

    > I have a lot of faith in Elon based on past results. He already solved the problem of people who don't believe in climate change - he got them to buy electric cars because they a…

  10. comment
    Comment #33042609

    Only if you limit yourself to current CPU architectures. Even GPUs right now are significantly more declarative than CPUs, and it definitely seems like some point in the future we …

  11. comment
    Comment #32897261

    Probably because they find it fun? That's almost always the case when something seems "impractical". I kind of feel like there's a disconnect here between people who write software…

  12. comment
    Comment #32800325

    Hasn't this already already happened though? There's literally nothing else that can compete with ripgrep. A project using Rust isn't a good enough selling point to me if the tool …

  13. comment
    Comment #32488498

    For me it was: Windows -> Xandros (1 year) -> Ubuntu (6 years) -> Arch (4 years) -> NixOS (4 years) Except I never actually installed Xandros myself, my dad just brought it home fr…

  14. comment
    Comment #32488177

    I thought the exact same thing until I switched to NixOS. I love Arch, but I'd never go back.

  15. comment
    Comment #32481969

    Another funny thing is that good ole vacuum tube computers could automate computation before transistors became widespread.

  16. comment
    Comment #32282165

    I'm not saying the UNIX philosophy is the "best" way, I'm just stating why it's valuable. Of course most people don't care about those things, but as a developer, the main issue I …

  17. comment
    Comment #32276267

    I get where you're coming from, but I think the biggest pro for the "UNIX way" is that text on a filesystem extremely accessible. You don't need a specialized tool to read & modify…

  18. comment
    Comment #26451680

    FreeBSD includes a kernel, drivers, and userland utilities under one project. If your complaint is that systemd is "bloated", it doesn't make any sense why you would want to switch…

  19. comment
    Comment #26348707

    It looks like it won't be so simple for Steam. I just found out a couple of days ago that Steam only uses CEF to render the main content, and it actually looks like it's using GTK2…

  20. comment
    Comment #26218857

    I'm not sure what the slashpackage hierarchy is, but Nix & NixOS started in 2003.

  21. comment
    Comment #26218582

    Maybe the Nix package manager / NixOS is what you're looking for? I think it takes the best features from both worlds. Every package installed with Nix is isolated into content-add…

  22. comment
    Comment #26194650

    > However, the crux of my argument is that it’s easy enough to emulate this construction in other languages. It's also easy enough to emulate all control flow statements with goto.…

  23. comment
    Comment #25974421

    Wayland has a proper protocol for fractional per-output scaling: https://wayland-book.com/surfaces-in-depth/hidpi.html . While there are many reasons why I prefer Wayland over X, t…

  24. comment
    Comment #25719089

    It could, depending on your use case, but normally all packages from nixpkgs share the same libcurl, so when libcurl is updated, all packages that depend on it will also be updated…

  25. comment
    Comment #25622379

    The Visitor pattern is great if you want to process a data structure as "stream" without actually instantiating it, in the same way you can read a file line-by-line instead of load…