Live data from Hacker News

Viewing profile — hugodutka

hugodutka

HN member
Joined
Sat, Jan 05, 2019, 2:32 PM UTC
HN karma
1,186
Public activity
96 items

About hugodutka

https://hugodutka.com/contact/

Recent public activity

  1. comment
    Comment #49135826

    Cloning a template is IO-heavy. You can speed it up further by putting postgres on a ramdisk.

  2. story
  3. story
  4. story
  5. comment
    Comment #45435322

    Have you considered https://github.com/containerd/overlaybd ? It seems to offer very similar features to blockdiff.

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

    I haven't used claude-task-master before, but based on the README, it looks like it's an AI agent that integrates well with IDEs. In contrast, AgentAPI lets you control other agent…

  9. story
  10. story
  11. comment
    Comment #41081043

    PyMuPDF, a PDF library for Python.

  12. comment
    Comment #41050385

    I think so. I'd normalize the text first: lowercase it and remove all non-alphanumeric characters. E.g for the phrase "What now?" I'd create these trigrams: wha, hat, atn, tno, now…

  13. comment
    Comment #41050233

    I used this approach extensively over the past couple of months with GPT-4 and GPT-4o while building https://hotseatai.com . Two things that helped me: 1. Prompt with examples. I i…

  14. story
  15. story
  16. comment
    Comment #40222291

    It detects if a message contains the ”Final Answer” substring preceded by a specific emoji. The emoji is there to make the substring relatively unique.

  17. comment
    Comment #40198848

    You're right that sections reference each other, and sometimes reference other regulations. By creating the "plan for the junior lawyer", the LLM can reference multiple related sec…

  18. story
  19. story
  20. comment
    Comment #38325485

    One of the applications are ZK-Rollups [1] which allow developers to move heavy computation off a blockchain. The blockchain receives the results and only validates proofs that the…

  21. comment
    Comment #38252960

    This is the WASM blob and it's 1.1 MB uncompressed. https://github.com/rhashimoto/wa-sqlite/blob/master/dist/wa-... . No issues - it's cached by cloudflare. We're using IndexedDB. …

  22. comment
    Comment #38252913

    With something called Rich-CRDTs - they were invented by Electric's CTO. They have a section in the docs and some blog posts dedicated to it: https://electric-sql.com/docs/referenc…

  23. comment
    Comment #38251906

    There's a workaround - if a table has an "electric_user_id" column then a user with that id (based on their JWT) can only read rows which have the same id. It's basic but it works …

  24. comment
    Comment #38251760

    We have run into queries that corrupted the database client-side, but fortunately that doesn't propagate into postgres itself. In that case we had to drop the client-side db and re…

  25. comment
    Comment #38250594

    Every postgres migration is done through an Electric proxy and it converts it into a corresponding sqlite migration that it can apply later on the client. In case of a migration th…