Live data from Hacker News

Viewing profile — dagenix

dagenix

HN member
Joined
Sat, Jul 15, 2017, 3:31 PM UTC
HN karma
2,654
Public activity
559 items

About dagenix

No profile information was provided.

Recent public activity

  1. comment
    Comment #49140284

    Bank account interest is pretty much always less than inflation. So, money sitting in a bank account for 18 years is just losing value.

  2. comment
    Comment #48824052

    I have no idea how well such a system works, but, I found these lines pretty jarring: > They found it fires on ordinary driving, not just distracted driving. > Glance away from an …

  3. story
  4. story
  5. comment
    Comment #48114116

    If you don't like the debian model, didn't use debian. There are people that like the debian model, it seems like you aren't one of them, though. That doesn't make them wrong.

  6. comment
    Comment #48111624

    My understanding is that existing Ebay shareholders would get half cash and half stock. In order to actually profit, those shareholders would need to believe that the combined comp…

  7. comment
    Comment #46688530

    https://archive.ph/ZMsnQ

  8. comment
    Comment #45676045

    I strongly suspect that its not feasible to colocate pijul and git. git and jj are based on snapshots, while pijul is based on patches. They have very different models.

  9. comment
    Comment #45676025

    One thing JJ has that git doesn't is the concept of first class conflicts. In JJ, rebasing or merging never fails, but it might record a conflict to resolve later. Git, on the othe…

  10. story
  11. comment
    Comment #45267850

    You are supposed to supervise Tesla FSD. Waymo doesn't require someone in the driver's seat at all. They aren't the same thing.

  12. comment
    Comment #45111766

    The problem, IMO, with asyncio is that its way, way too complicated. In my experience, anyio ( https://github.com/agronholm/anyio ) provides a much better interface on top of async…

  13. comment
    Comment #44698380

    In my experience, the key to using asyncio is to use anyio. Anyio is an interface that you can use ontop of asyncio and fixes most of its shortcomings. https://anyio.readthedocs.io…

  14. comment
    Comment #43507490

    I'm not dismissing uv, I'm critiquing the article.

  15. comment
    Comment #43500690

    > This approach eliminates the need for complex setup tools like requirements.txt or package managers... And yet, the rest of the article is about uv. According to uv itself: > An …

  16. comment
    Comment #43340049

    It doesn't seem like https://comma.ai/ has sources either.

  17. comment
    Comment #43339781

    I especially like how there is next to no mention about safety on the main page. But at least its only $999 and it has AI and 50k GitHub stars, so, thats nice.

  18. comment
    Comment #43339774

    So, a hackier version of Tesla's autopilot? Sounds, uh, terrifying.

  19. comment
    Comment #42284110

    The pretty significant updates to MacOS support are really cool to see!

  20. comment
    Comment #42270506

    https://en.wikipedia.org/wiki/G._K._Chesterton#Chesterton's_...

  21. story
  22. comment
    Comment #41135755

    I don't believe its in the standard library for Rust, even if it is very popular in the Rust ecosystem.

  23. comment
    Comment #41065160

    Java does jit

  24. comment
    Comment #40951754

    > Yes, but the absence of the GIL would make race conditions more likely to happen. Does it though? I'm not saying it doesn't, I'm quite curious. Switching between threads with the…

  25. comment
    Comment #40951459

    > But there is a lot of pure Python code out there that is not written that way. Removal of the GIL would allow such code to be naively run in multiple threads using, for example, …