Live data from Hacker News

Viewing profile — mxz3000

mxz3000

HN member
Joined
Wed, Sep 04, 2019, 8:13 PM UTC
HN karma
87
Public activity
73 items

About mxz3000

No profile information was provided.

Recent public activity

  1. comment
    Comment #41302129

    If the compiler can prove there isn't action-at-a-distance between those lines (this might be non-trivial), then can't the destructor be called before running bar ? Does the C++ sp…

  2. comment
    Comment #41092946

    For the experts in this thread: is there any benefit to using these so called array languages compared to using something like numpy (or even pandas/polars) ?

  3. comment
    Comment #40678577

    renders fine on my 4y old android phone

  4. comment
  5. comment
    Comment #40336408

    why didn't you just get Amazon to refund you for the defective product?

  6. comment
    Comment #40309794

    mostly yes, at $work we're trying to move away from pandas entirely in favour of polars. Polars is mostly faster, with an API that's actually sane and makes sense. No reason to use…

  7. comment
    Comment #38219413

    hindsight is 20/20. Don't criticise people for making certain decisions years ago when those don't match what you'd choose to do now. Often you'll find that they were very reasonab…

  8. comment
    Comment #38207234

    I would expect most people to read code in their IDEs, where small amounts of type inference like this is fine because the IDE tells you what the type is. I agree that if you spend…

  9. comment
    Comment #38144446

    I also believe that an IDE like Rider will complain that the IEnumerable returned by `.Select` is consumed multiple times.

  10. comment
    Comment #37881602

    if you have a reasonably good IDE you don't really need to explicitly compile the whole program outside of when you want to run it.

  11. comment
    Comment #37558233

    at work we use the ONNX serialisation format for all of our prod models. Those get loaded by the ONNX runtime for inference. works great. perhaps it's be viable to add support for …

  12. comment
    Comment #37470055

    also means no autocomplete with the from bit first

  13. comment
    Comment #37466490

    we have a massive mixed c# and f# codebase at work. F# is not magical. Yes it's an ML, but frankly, C# is better in every way, to the point we're slowly moving away from F# entirel…

  14. comment
    Comment #37460582

    Yeap, it's used as a case study for us as to the worst case scenario in trading incidents. Definitely humbling.

  15. comment
    Comment #37460529

    spamming the market with orders for one

  16. comment
    Comment #35007636

    well you expect 'input' to be something that you can iterate over, so clearly using any is wrong here.

  17. comment
    Comment #34871165

    bad food is better than no food.

  18. comment
    Comment #34407073

    Such a great show. I was so sad when I realised it stopped at season 2.

  19. comment
    Comment #34288089

    Surely these were never enforceable, but I guess people don't know better. Reducing the asymmetry of knowledge is also key here. To be fair, pay is irrelevant in this context. Abus…

  20. comment
    Comment #34136471

    I obviously don't support Brexit. but it's hard to believe your wild claims without some concrete sources. As per usual: Never ascribe to malice that which is adequately explained …

  21. comment
    Comment #34098344

    He's 33 and doing internships? what am I missing?

  22. comment
    Comment #33845965

    or just units of measure a more general solution than what you're suggesting, implemented by languages like F# https://learn.microsoft.com/en-us/dotnet/fsharp/language-ref...

  23. comment
    Comment #32988535

    C# is great, if you ignore the lack of algebraic data types and the generally weak type system. Value types in C# are awesome and really make it easy to write super high performanc…

  24. comment
    Comment #32963188

    Doesn't matter. Pick one. Enforce it with a linter. Move on with your life.

  25. comment
    Comment #32457737

    In production code, you'd generally avoid recursion to avoid stack overflows. Given in most languages you can't enforce tail call optimisation, it's risky to use unbounded recursio…