Live data from Hacker News

Viewing profile — mpartel

mpartel

HN member
Joined
Sat, Dec 28, 2013, 9:26 PM UTC
HN karma
471
Public activity
169 items

About mpartel

No profile information was provided.

Recent public activity

  1. story
  2. story
  3. story
  4. comment
    Comment #45129459

    Huge spikes over a short period of time are hard to deal with for anyone, and payment processors have their own infra whose scalability Steam can't necessarily control.

  5. comment
    Comment #45128042

    Some LLM APIs let you give a schema or regex for the answer. I think it works because LLMs give a probability for every possible next token, and you can filter that list by what th…

  6. story
  7. story
  8. comment
    Comment #42287707

    The design of generics in this one seems rather well balanced in simplicity vs power. The part about interface-typed values [1] is interesting. They do dynamic dispatch as a fallba…

  9. comment
    Comment #40241410

    I agree in the sense that answering "what really are qualia" may be as impossible as answering "what really are quantum fields". At some point we may be forced to accept "it just i…

  10. comment
    Comment #40238856

    > Even after mapping the entire visual cortex to all visual features, it just doesn't get us any closer to understanding that raw experience of "sight" that happens when you look a…

  11. comment
    Comment #40233844

    I agree. It's just quite a lot of verbose-looking XML. "I have to write that much XML" is probably not the first impression you want to give. I did scroll down and see that you don…

  12. comment
    Comment #40233020

    The rather prominent XML on the front page might scare folks off.

  13. comment
  14. comment
    Comment #38228911

    To clarify, dependencies significantly affect incremental builds too. Seems loading information about compiled dependencies into the compiler and/or resolving stuff about them can …

  15. comment
    Comment #38217767

    Compilation times depend very heavily on the amount/size/complexity of dependencies.

  16. comment
    Comment #37889644

    The linked github page has a link to a paper.

  17. comment
    Comment #36407000

    Excellent work, again! Your intros somehow elicit the best out of HN too: the comments are always full of interesting angles and variations. Wanna do quaternions next? :) Many have…

  18. comment
    Comment #36237623

    Does it / will it support retractions?

  19. comment
    Comment #35285467

    A fanless case would be real nice, and seems theoretically doable.

  20. story
  21. comment
    Comment #33160408

    Several languages have or have had this behaviour. C# made a similar change to its 'foreach' loops a long time ago (but not 'for' loops for some reason). I suppose it's the natural…

  22. comment
    Comment #31537734

    https://neon.tech/docs/cloud/compatibility/ says "During technical preview Neon has restrictions on user ability to install PostgreSQL extensions. Following PostgreSQL extensions c…

  23. comment
    Comment #31165339

    This is a dynamically typed language. Null makes sense there. It also makes sense in a statically typed language with union types, think `string | undefined` in TypeScript. The ext…

  24. comment
    Comment #31093574

    System76 has done good work on Linux support for (seemingly) similar hardware: https://tech-docs.system76.com/models/lemp10/README.html - some of that might be reusable.

  25. comment
    Comment #30113571

    Some examples of high-level decisions: - which web framework? - which database? which ORM? which transaction isolation level by default? - will this game/UI be multiplayer? - what'…