Live data from Hacker News

Viewing profile — TYMorningCoffee

TYMorningCoffee

HN member
Joined
Mon, Aug 03, 2020, 4:15 AM UTC
HN karma
165
Public activity
98 items

About TYMorningCoffee

josephmate.github.io

Recent public activity

  1. comment
    Comment #47670432

    https://en.wikipedia.org/wiki/Pixel_Dungeon is an example of that. The bad forks dont become popular

  2. comment
    Comment #45514919

    Did the grumpy gamer mean perforce instead of perform and it got auto 'corrected'?

  3. comment
    Comment #44610088

    VMware owns Spring Boot https://en.m.wikipedia.org/wiki/Spring_Boot

  4. comment
    Comment #44213799

    Impressive! Can't wait to try Fray out at work.

  5. comment
    Comment #44202553

    Click the ying yang looking icon to get an explanation > 4-7-8 Breathing The 4-7-8 technique involves inhaling for 4 counts, holding for 7, and exhaling for 8. This pattern is repe…

  6. comment
    Comment #44083058

    Some setups can run devstral small locally. Have you tried? Also have you tried any other open weight models as the architect? Third, as far as I understood, devstral was made with…

  7. comment
    Comment #44014404

    A lot of commenters point out that there already are many established static checkers that do this. That is not what Uber attempts here. Uber is not proposing a static checker. The…

  8. comment
    Comment #43946126

    This architecture is promising. Large legacy code bases can have static analysis violations in the 1000s which devs never have the time to address. I've seen sonar tube reports tha…

  9. comment
    Comment #43946094

    These existing tools (spotbugs, findings, sonarqube, null away, checker framework, pmd, etc) provide detection but not resolution. Resolution thru LLM is what Uber proposes.

  10. comment
    Comment #43946068

    It's not identifying the leaks. In their architecture they use Sonar qube for the detecting. The LLM provides the fix.

  11. comment
    Comment #43887551

    I forgot to clarify dealing with the network bottleneck

  12. comment
    Comment #43886906

    Can the inference piece be partitioned over multiple hosts? Edit: algorithmed or partitioned in a way that overcomes the network bottleneck

  13. comment
    Comment #43234805

    Fixed! It was because the table overflowed. This created a scroll bar for the entire page. The entire page scrollbar had a weird interaction with the code block scroll bars. Now th…

  14. comment
    Comment #43221213

    I think I tracked it down to the table in the article adding a scroll bar for the entire page. This scrollbar fights with the code blocks scrollbar. I will try to refactor the tabl…

  15. comment
    Comment #43221098

    Yes. Sorry about that. Will look into it when I have time.

  16. comment
    Comment #43221076

    It depends which OS. Windows yes, Linux no.

  17. comment
    Comment #43220486

    It came down to poor logic. I got hung up on it because I got unlucky and couldn't reproduce it with uncaught NPE so I incorrectly concluded that uncaught NPE was a necessary condi…

  18. comment
    Comment #43213132

    Oh no I didn't know this can happen with HashMaps too! Something to do with the linked list they use for collisions?

  19. comment
    Comment #43209362

    Good point. It should be replaced with an if not empty check.

  20. comment
    Comment #43209213

    Ouch. Any idea which problem? Those problems are public: https://ioinformatics.org/page/contests/10

  21. comment
    Comment #43208795

    I remember reading that article but being unable to understand it due to my lack of knowledge in the area. I will have to give it another go.

  22. comment
    Comment #43208718

    Could you propose to fail the build based on the number of warnings to ensure it doesn't go up? I did something similar with spotbugs. There were existing warnings I couldn't get t…

  23. comment
    Comment #43208618

    That's much better. Constant memory. The number of nodes is guaranteed to be less than or equal to the height of the tree.

  24. comment
    Comment #43208537

    Have you seen this before in person? It would make a great blog post. I haven't personally encountered a buggy comparator without a total order.

  25. comment
    Comment #43208427

    > Food for thought. I often think to myself that any error or strange behavior or even warnings in a project should be fixed as a matter of principle, as they could cause seemingly…