Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
hugodutka
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
9 ms
·
1.
▲
by
hugodutka
2mo ago
Cloning a template is IO-heavy. You can speed it up further by putting postgres on a ramdisk.
2.
▲
How to build OpenClaw in 400 lines of code
(hugodutka.com)
2 points
by
hugodutka
7mo ago
|
0 comments
3.
▲
Show HN: Blink – Build custom AI agents in TypeScript for your team
(github.com)
1 points
by
hugodutka
7mo ago
|
0 comments
4.
▲
Show HN: Blink – self-hosted, open-source PaaS for running AI agents
(github.com)
3 points
by
hugodutka
7mo ago
|
0 comments
5.
▲
by
hugodutka
1y ago
Have you considered https://github.com/containerd/overlaybd ? It seems to offer very similar features to blockdiff.
6.
▲
Show HN: Wush-Action – SSH into GitHub Actions over WireGuard
(github.com)
8 points
by
hugodutka
1y ago
|
0 comments
7.
▲
Show HN: Wush Action – SSH into GitHub Actions
(github.com)
2 points
by
hugodutka
1y ago
|
0 comments
8.
▲
by
hugodutka
1y ago
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 agents - like Claude Code or OpenAI Codex - using HTTP
9.
▲
Show HN: AgentAPI – HTTP API for Claude Code, Goose, Aider, and Codex
(github.com)
163 points
by
hugodutka
1y ago
|
15 comments
10.
▲
Solving GitHub Issues with Claude Code
(coder.com)
10 points
by
hugodutka
2y ago
|
0 comments
11.
▲
by
hugodutka
2y ago
PyMuPDF, a PDF library for Python.
12.
▲
by
hugodutka
2y ago
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.
▲
by
hugodutka
2y ago
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 included an example image with an example transcri
14.
▲
How to Use Iptables
(hugodutka.com)
3 points
by
hugodutka
2y ago
|
0 comments
15.
▲
How to Use Iptables
(hugodutka.com)
13 points
by
hugodutka
2y ago
|
2 comments
16.
▲
by
hugodutka
2y ago
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.
▲
by
hugodutka
2y ago
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 sections at the same time. In the second step of
18.
▲
Answering Legal Questions with LLMs
(hugodutka.com)
170 points
by
hugodutka
2y ago
|
149 comments
19.
▲
AzerothCore: Self-Hosted World of Warcraft 3.3.5a Server
(github.com)
167 points
by
hugodutka
2y ago
|
75 comments
20.
▲
by
hugodutka
3y ago
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 they are valid. This is especially useful on Ethereum because i
21.
▲
by
hugodutka
3y ago
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. Here
22.
▲
by
hugodutka
3y ago
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/reference/consistency#rich-crd...
23.
▲
by
hugodutka
3y ago
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 for us. https://electric-sql.
24.
▲
by
hugodutka
3y ago
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 resync from a clean state. The corruption was also caught
25.
▲
by
hugodutka
3y ago
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 that would be somehow breaking you can also drop the client-si
26.
▲
by
hugodutka
3y ago
We've been using https://github.com/electric-sql/electric for real-time sync for the past month or so and it's been great. Rather than make you think about CRDTs explicitly, Electric syncs an in-browser sqlit
27.
▲
Emojis – Generate detailed Slack emojis from short prompts
(github.com)
2 points
by
hugodutka
3y ago
|
0 comments
28.
▲
by
hugodutka
3y ago
It looks like HN automatically stripped the reference to the comment I originally linked to: https://github.com/rui314/mold/issues/190#issuecomment-14028... . The title should be more clear in this context.
29.
▲
Monetizing Developer Tools
(github.com)
10 points
by
hugodutka
3y ago
|
7 comments
30.
▲
by
hugodutka
3y ago
Oh yes, in this post I was not trying to. Hocus gives you a web interface that lets you spin up a dev env with a single click of a button. We also implemented a git-integrated CI system that prebuilds your dev env on new commits. It’s basic
More ›