Live data from Hacker News

Viewing profile — unlinked_dll

unlinked_dll

HN member
Joined
Sun, Oct 13, 2019, 6:37 AM UTC
HN karma
2,533
Public activity
683 items

About unlinked_dll

No profile information was provided.

Recent public activity

  1. comment
    Comment #22828581

    Good thing we're not sheep or wolves. That's why I alluded to Orwell. The pigs from Animal Farm are a better metaphor. The senate doesn't exist to protect the will of sheep at the …

  2. comment
    Comment #22828368

    No, they're right. We have 53/435 (12.18%) of the House, which is roughly equal to our proportion of the total population (40mm/330mm, 12.12%, numbers will change with the census).…

  3. comment
    Comment #22828303

    I don't agree with that categorization of water issues in CA, but that's off topic. And having proportional seating in the House isn't particularly meaningful, when it takes both t…

  4. comment
    Comment #22827990

    Governor Newsom refers to California as a "nation state" about once a week, in case the author was wondering. He's used that language quite often. I'm totally ok with it, so long a…

  5. comment
    Comment #22825959

    How do you create such a market without crazy volatility, rampant manipulation and low liquidity, like penny stocks?

  6. comment
    Comment #22823728

    If this were true we wouldn't have done so much research into programming languages over the last 50 years. PL design is not a problem to solve, it's the study of the way to expres…

  7. comment
    Comment #22818915

    No, it's just that a prolific rust contributor made a blog post and then a follow up and things have been heated in the community a bit (I lurk a bit). The fuss isn't over what the…

  8. comment
    Comment #22815445

    I don't really want to go through the laundry list of issues I have because none are critical, just the software is very rough around the edges on Linux. It just feels less than fl…

  9. comment
    Comment #22813954

    How many of Zoom's recent issues can be explained by just bad engineering? Because my personal gripes with Zoom are mostly about its quality as a software product, which I find to …

  10. comment
    Comment #22809002

    And comments like this usually come from people with a warped concept of money and funding. But it doesn't help to comment on the nature of a poster because you don't know much abo…

  11. comment
    Comment #22808732

    Why does AirBnb need a billion dollars? I can't find anything suggesting they're spending more than $100mm on their ongoing litigation, the technology isn't particularly novel or c…

  12. comment
    Comment #22795921

    That's kind of my question. I want async I/O with a device, can io_uring help?

  13. comment
    Comment #22795741

    I almost certainly have no idea what I'm talking about but Can I write a device driver using io_uring? As in talk to i2c endpoints instead of normal files?

  14. comment
    Comment #22787190

    I believe the current proposal (partially supported on nightly) is to require expressions in generic arguments to be enclosed in {}

  15. comment
    Comment #22787121

    I think the tone of this post is insufferable, and the arguments have little merit presented this way. The alternative suggested is also non ideal, since array declaration/indexing…

  16. comment
    Comment #22786934

    Rust uses the "turbo fish" to get around this. Your example wouldn't compile unless a and b where valid variable names. a:: (c) Is how you instantiate a generic. It's not that ugly…

  17. comment
    Comment #22773809

    what about Spirited Away? 4K makes cheaply animated content look cheap. Sometimes that's ok, other times viewers want more. Another example outside anime is Fantasia 2000 on Disney…

  18. comment
    Comment #22773516

    The numerous people I've worked with that have been here for decades and aren't citizens and don't consider themselves to be American?

  19. comment
    Comment #22770572

    Is Eric Yuan a US citizen? He wasn't born or educated here so I don't know he considers himself American, and a significant amount of his company's product development is not done …

  20. comment
    Comment #22764827

    I think your starting point is already flawed. Scale is needed for high value liquidity events which is needed for ROI to investors and employees compensated with equity. If you re…

  21. comment
    Comment #22762536

    I'd offer a different take. Users want to run your software on their system. You don't want to write software for their system, you want to write it for all systems. The output imp…

  22. comment
    Comment #22760325

    Most unions don't have "union" in their name, I don't think it's an issue of nomenclature. People know which organizations can be colloquially referred to as a labor union. That sa…

  23. comment
    Comment #22750010

    Associated types are slightly different than generic types. trait State { type NextState; fn transition(self) -> Self::NextState; } In this example one consumes the current state t…

  24. comment
    Comment #22747269

    Nothing I suggested implies a runtime penalty. Quite the opposite actually.

  25. comment
    Comment #22747010

    I disagree with the implementation, State should be a trait with NextState as an associated type. This makes things cumbersome when it can be a set of types, but it makes excellent…