Live data from Hacker News

Viewing profile — ychen306

ychen306

HN member
Joined
Sat, Nov 11, 2017, 8:07 PM UTC
HN karma
183
Public activity
104 items

About ychen306

No profile information was provided.

Recent public activity

  1. comment
    Comment #48908772

    How do you deal with target-specific inline asm like tcgen05.mma?

  2. comment
    Comment #46110998

    This. It's for renaming.

  3. comment
    Comment #45785230

    Eventually the utility will be correctly priced. It's just a matter of time.

  4. comment
    Comment #45785043

    It's orders of magnitude cheaper to serve requests with conventional methods than directly with LLM. My back-of-envelope calculation says, optimistically , it takes more than 100 G…

  5. comment
    Comment #45775911

    I try to avoid this ambiguity by calling such variables "values".

  6. comment
    Comment #44870492

    It's a TSP route over the highest 48 peaks of NH.

  7. comment
    Comment #42551979

    How this works is the LLM predicts the probability of the next token and then an arithmetic coder turns that probability distribution into bits. So it will never hallucinate. In th…

  8. comment
    Comment #41421248

    My main point is that these jobs are fundamentally different and people spend their time differently as a consequence. At this point, I am more curious about how what I argue even …

  9. comment
    Comment #41420921

    Not writing code doesn't equate to not working. Thinking, documenting, designing, discussing, etc are all important parts of their job. I don't understand why you seem offended by …

  10. comment
    Comment #41420370

    In this instance what would qualify as “pursing fundamentals” for a producer as defined by the author?

  11. comment
    Comment #41420205

    NFL players wouldn’t have time to do drills if their games last 8 hours and they need to play everyday.

  12. comment
    Comment #41419926

    Training is work but their main “events” are just much shorter than say that of a programmers. Even the longest athletic event like TdF lasts only several weeks. A programmer or la…

  13. comment
    Comment #41419882

    Athletes and musicians pursue fundamentals because they have time; their “work” occurs in intense but short bursts of performances, leaving them the rest of their days to practice.…

  14. comment
    Comment #26400179

    They are both randomized. https://en.wikipedia.org/wiki/Las_Vegas_algorithm#Relation_t...

  15. comment
    Comment #22177488

    I think he's referring to threads as a programming model, not the physical implementation.

  16. comment
    Comment #21502219

    > Sprinkling printf statements is an efficient debugging technique. Debatable.

  17. comment
    Comment #21286055

    > Functional programming doesn't have state, so you don't need locks, so you can get better concurrency. This is not true. Many algorithms are intrinsically imperative (e.g., quick…

  18. comment
    Comment #21108172

    > , though he did not join until June 2016

  19. comment
    Comment #20672108

    It's related to intelligence in the sense that being able to predict well requires intelligence and helps compression. If you have an intelligent model that predicts new words with…

  20. comment
    Comment #20557350

    The counterpart of "Contracts" in C++ is "Traits" not "generics".

  21. comment
    Comment #20019425

    maybe use fences?

  22. comment
    Comment #20019423

    This is probably not useful for production, but volatile is a great way to see what kind of code compiler generates in a realistic setting. For example, if you want to see how comp…

  23. comment
    Comment #19958280

    Program verification. E.g. when you want to prove that certain condition/path (e.g. asserts) is unreachable.

  24. comment
    Comment #19708639

    This seems odd. I've known no one who learns programming by reading books. Reading books help, but most people get proficient by working on projects.

  25. comment
    Comment #19661527

    This is unlikely to happen because of the performance penalty it would incur (e.g. defining outcome of all out-of-bound memory accesses).