Viewing profile — hugodutka
hugodutka
HN member- Joined
- Sat, Jan 05, 2019, 2:32 PM UTC
- HN karma
- 1,186
- Public activity
- 96 items
- HN profile
- View on Hacker News ↗
About hugodutka
Recent public activity
-
comment
Comment #49135826
Cloning a template is IO-heavy. You can speed it up further by putting postgres on a ramdisk.
- story
- story
- story
-
comment
Comment #45435322
Have you considered https://github.com/containerd/overlaybd ? It seems to offer very similar features to blockdiff.
- story
- story
-
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…
- story
- story
-
comment
Comment #41081043
PyMuPDF, a PDF library for Python.
-
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…
-
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…
- story
- story
-
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.
-
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…
- story
- story
-
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…
-
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. …
-
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…
-
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 …
-
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…
-
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…