Live data from Hacker News

Viewing profile — quodlibetor

quodlibetor

HN member
Joined
Mon, Oct 28, 2013, 1:52 AM UTC
HN karma
94
Public activity
40 items

About quodlibetor

No profile information was provided.

Recent public activity

  1. comment
    Comment #45493931

    yeah artifact caching is the obvious interpretation of caching when you're used to being compared to bazel, but the conversation was conflating "cache artifacts" and "cache should-…

  2. comment
    Comment #45493216

    Mise does do local-only Make-similar task caching, if you specify sources and outputs: https://mise.jdx.dev/tasks/task-configuration.html#sources If you specify sources but not "ou…

  3. comment
    Comment #45145445

    Thanks for the insight!

  4. comment
    Comment #45131317

    > Not much polars can do about that in Rust I'm ignorant about the exact situation in Polars, but it seems like this is the same problem that web frameworks have to handle to enabl…

  5. comment
    Comment #45082520

    And the following criteria: (a) The final category can never be lower than the highest hazard-based category; (b) The TCSS should adequately reflect the case of high potential risk…

  6. comment
    Comment #44752517

    My understanding is that vacancy means available units for rent. So, plausibly, if you say 50 of the 100 units in your building aren't available for rent because you say they're be…

  7. comment
    Comment #44752227

    Yeah I know it's among the lowest in the world, it's still an ~order of magnitude higher than a few tenths of a percent, which would be shocking for the reasons you mention. My poi…

  8. comment
    Comment #44751907

    > a few tenths of a percentage point of NYC Feb 2024 (last year there's data, I think) was a record low and it was 1.4% empty, according to NYC[1]. But I don't really know the meth…

  9. comment
    Comment #44248664

    I recently wrote a similar tool focused more on optimizing the case of exploring millions or billions of objects when you know a few aspects of the path: https://github.com/quodlib…

  10. comment
  11. comment
    Comment #41515121

    I have been chasing the gerrit code review high since I left a company that used it almost 5 years ago. Stacked pull requests are usually what people point to to get this back, but…

  12. comment
    Comment #38169589

    I'm pretty sure that the scripts generated by inshellisense are CRLF, and the carriage returns aren't recognized by unix shells. You should be able to fix it with: vi $HOME/.inshel…

  13. comment
    Comment #36508109

    The dependency list[0] looks pretty reasonable, AFAICT the overwhelming majority of that line-of-code count comes from autogenerated Windows API methods. edit actual counts: $ carg…

  14. comment
    Comment #26513725

    If you start doing a commit (via `c` in the magit status buffer, with the standard semantics of "you're going to commit everything that's currently staged") you can press capital F…

  15. comment
    Comment #25283334

    This is a fantastic comment! One small thing: we do now have tables[1]! At the moment they are ephemeral and only support inserts -- no update/delete. We will remove both of those …

  16. comment
    Comment #25282446

    Ha! Your blog post was one of the reasons that I trusted in the future of Materialize enough to decide to work here! I agree, that is exactly the problem that I, in particular, thi…

  17. comment
  18. comment
    Comment #23902144

    If this is all this is it actually doesn't look like a crazy amount of work to make cursive look good: https://github.com/NerdyPepper/dijo/blob/8b91a7c0b3d9bd4fac3... I've avoided …

  19. comment
    Comment #23840218

    I didn't downvote you, but as an outside observer I can see that folks might take issue with the fact that you start with a tl;dr, suggesting that you are summarizing the whole art…

  20. comment
    Comment #23533180

    I'm not sure exactly how fast FAST REFRESH ON COMMIT is, but we at materialize are very fast, and getting faster. Once data is in materialized we can process streams to multiple do…

  21. comment
    Comment #23284135

    This is exactly what we do! This is a walkthrough of connecting a db (these docs are for mysql, but postgres works and is almost identical) via debezium and defining views in mater…

  22. comment
    Comment #22604979

    > if you give it a query that only requires certain result rows from one of its mat views, then Materialize is only going to compute the intermediate rows This is absolutely correc…

  23. comment
    Comment #22604922

    > materialize has to be able to keep all of its state in memory For now. We have a pretty good idea of what needs to be done to shed state to disk, and have designed to be able to …

  24. comment
    Comment #18713051

    > I've come across a few cases, when pushing python's type annotations to their limits, that force you to put the type names in string quotes With pep-0563, python3.7, and `from __…

  25. comment
    Comment #18103596

    You're probably thinking of http://pythontutor.com/ for python. It's one of my absolute favorite instructional resources for any language. Birdseye[1] looks like it is trying to be…