Live data from Hacker News

Viewing profile — nercury

nercury

HN member
Joined
Wed, Oct 09, 2013, 1:25 PM UTC
HN karma
894
Public activity
187 items

About nercury

No profile information was provided.

Recent public activity

  1. comment
    Comment #41354808

    I hope the wages of sales people are lower than that of a calculator.

  2. story
  3. comment
    Comment #41308933

    Extremely small island that stretches from New York to Atlanta..

  4. comment
    Comment #41098509

    If someone spent their time learning their tools, they will make better choices when writing the code without any additional time cost. There are two variants of very similar code.…

  5. comment
    Comment #40426732

    Anything you say or do will be used against you by any future government. What's legal now, might not be legal tomorrow, and you will be jugged by your AI "friend". Welcome to dyst…

  6. comment
    Comment #40354658

    The real threat is AI arguing/competing with itself and wasting 90% of world's power.

  7. comment
    Comment #40352405

    This is more of a preference for bridge to be visible in application. Also the bridge may seem simple at first, but it also may gain associated data, like created_at, order, etc.

  8. comment
    Comment #40340890

    Yes, I would not put it just anywhere. But I have few rules about ORMs: - Proper DB design first. You should be able to remove the ORM and DB should still function as intended. Thi…

  9. comment
    Comment #40340653

    Yeah, in a web app, one context per request. In desktop app... I have never used EF there.

  10. comment
    Comment #40340564

    Pardon me for the tangent (just a general comment not directed to OP). What I have learned over the years is that the only way to properly use ORM is as a fancy query tool. Build t…

  11. comment
    Comment #40296402

    struct Node { data1: &'a Data data2: &'b Data data3: &'c Data } Wow. It's like teaching C++ and starting from SFINAE. Or C# and starting from type parameter constraints. Please thi…

  12. comment
    Comment #40285868

    It's like destroying a factory when the chips it produces do not sell.

  13. comment
    Comment #40285806

    Corporate prioritization is the ultimate cookie cutter, doomed to produce the most generic thing possible.

  14. comment
    Comment #40061793

    If AMD did not come up with 64-bit extension, we would be saying goodbye to x86 architecture.

  15. comment
    Comment #40061714

    This sounds like "You aren't having fun properly".

  16. comment
    Comment #39814158

    That disappearing scrollbar is weirdly out of place.

  17. comment
    Comment #39613641

    Yes of course. You have to demonstrate that you are very skilled at building with the particular bricks they use. Don't mention anything else to show your commitment to particular …

  18. comment
    Comment #39522346

    Right, imagine a company where the team decides to use Macromedia Flash for game UI only because they need to deliver something working on the next sprint. And then everyone gets s…

  19. comment
    Comment #39522285

    Say, you use the same foundation for both the game and tool. Nothing prevents you from building features on top that are optimized either for a tool or for a game! Plus you dogfood…

  20. comment
    Comment #39452288

    Bytes aren't bricks. Reshuffling them from scratch after a smallest change is cheap and fast. Taking advantage of that is not stupid. Proper communication and work with client is a…

  21. comment
    Comment #39451369

    Interesting, it acts as if hearing voices in the head.

  22. comment
    Comment #39441784

    It pains to see the need for a microservice to even start thinking about system architecture. As if the additional database and additional set of classes could not be done on the s…

  23. comment
    Comment #39440080

    I admit I don't know enough about kernel development, but from general experience one common example is resource cleanup. Say, you have several resources that must be cleaned up in…

  24. comment
    Comment #39439345

    I am Rust developer. My advice: favor less abstractions. Especially when interfacing with C, you can always make almost 1:1 rust interface. Start with that. Then, when common patte…

  25. comment
    Comment #39427658

    I would argue that the bloat comes when the performance impact is not perceivable compared to the development time. The easiest optimization strategy is just to load it all up into…