Viewing profile — dagenix
dagenix
HN member- Joined
- Sat, Jul 15, 2017, 3:31 PM UTC
- HN karma
- 2,654
- Public activity
- 559 items
- HN profile
- View on Hacker News ↗
About dagenix
No profile information was provided.
Recent public activity
-
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.
-
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 …
- story
- story
-
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.
-
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…
-
comment
Comment #46688530
https://archive.ph/ZMsnQ
-
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.
-
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…
- story
-
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.
-
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…
-
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…
-
comment
Comment #43507490
I'm not dismissing uv, I'm critiquing the article.
-
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 …
-
comment
Comment #43340049
It doesn't seem like https://comma.ai/ has sources either.
-
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.
-
comment
Comment #43339774
So, a hackier version of Tesla's autopilot? Sounds, uh, terrifying.
-
comment
Comment #42284110
The pretty significant updates to MacOS support are really cool to see!
-
comment
Comment #42270506
https://en.wikipedia.org/wiki/G._K._Chesterton#Chesterton's_...
- story
-
comment
Comment #41135755
I don't believe its in the standard library for Rust, even if it is very popular in the Rust ecosystem.
-
comment
Comment #41065160
Java does jit
-
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…
-
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, …