frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Pgit – A Git-like CLI backed by PostgreSQL

https://oseifert.ch/blog/building-pgit
37•ImGajeed76•1d ago•11 comments

Show HN: Sub-millisecond VM sandboxes using CoW memory forking

https://github.com/adammiribyan/zeroboot
160•adammiribyan•20h ago•39 comments

Show HN: A client-side visual workflow builder for PDFs

https://www.convertuniverse.com
2•Lyriryl•1h ago•1 comments

Show HN: Fatal Core Dump – A debugging murder mystery played with GDB

https://www.robopenguins.com/fatal_core_dump/
60•axlan•4d ago•1 comments

Show HN: Crust – A CLI framework for TypeScript and Bun

https://github.com/chenxin-yan/crust
81•jellyotsiro•1d ago•35 comments

Show HN: I built an interactive 3D three-body problem simulator in the browser

https://structuredlabs.github.io/threebodyproblem/
55•amrutha_•4d ago•18 comments

Show HN: Horizon – GPU-accelerated infinite-canvas terminal in Rust

https://github.com/peters/horizon
66•petersunde•15h ago•26 comments

Show HN: QCCBot – Android in a browser tab, with AI agent control

6•Eastra•3h ago•0 comments

Show HN: Antfly: Distributed, Multimodal Search and Memory and Graphs in Go

https://github.com/antflydb/antfly
93•kingcauchy•18h ago•37 comments

Show HN: Claude Code skills that build complete Godot games

https://github.com/htdt/godogen
313•htdt•1d ago•192 comments

Show HN: N0x – LLM inference, agents, RAG, Python exec in browser, no back end

https://n0xth.vercel.app/
7•redhanuman•4h ago•0 comments

Show HN: Thermal Receipt Printers – Markdown and Web UI

https://github.com/sadreck/ThermalMarky
115•howlett•4d ago•48 comments

Show HN: CollabMD – Real-time multiplayer for local and Git-backed Markdown

https://github.com/andes90/collabmd
5•ndezt•6h ago•2 comments

Show HN: Dump – easily share context with AI

https://www.dump.page
6•vochsel•7h ago•0 comments

Show HN: I built a message board where you pay to be the homepage

https://saythat.sh
14•SayThatSh•21h ago•11 comments

Show HN: AI Skills for Affiliate Marketing – Works with Claude, ChatGPT

https://github.com/Affitor/affiliate-skills
3•sonpiaz•8h ago•2 comments

Show HN: Soros – AI for geopolitical macro investing

https://www.asksoros.com
8•muggermuch•12h ago•10 comments

Show HN: March Madness Bracket Challenge for AI Agents Only

https://www.Bracketmadness.ai
64•bwade818•21h ago•40 comments

Show HN: Sonder – self-hosted AI social simulation engine

https://github.com/RedsonNgwira/sonder
3•RedsonNgwira•9h ago•4 comments

Show HN: M68k assembly emulator that runs in the browser

https://github.com/gianlucarea/m68k-interpreter
16•aldino97•23h ago•2 comments

Show HN: CodeLedger – deterministic context and guardrails for AI

https://codeledger.dev
2•ashmivante•10h ago•0 comments

Show HN: Lore – Local AI thought capture and recall that runs on your machine

https://github.com/ErezShahaf/Lore
2•ErezShahaf•11h ago•0 comments

Show HN: Signet – Autonomous wildfire tracking from satellite and weather data

https://signet.watch
123•mapldx•2d ago•32 comments

Show HN: Hat v0.7.0 – Fast, local automatic file compression and conversion

https://github.com/bittere/hat
4•_bittere•5h ago•0 comments

Show HN: Score your GitHub repo for AI coding agents

https://twill.ai/scorecard
6•danoandco•11h ago•3 comments

Show HN: GDSL – 800 line kernel: Lisp subset in 500, C subset in 1300

https://firthemouse.github.io/
89•FirTheMouse•2d ago•20 comments

Show HN: Hackerbrief – Top posts on Hacker News summarized daily

https://hackerbrief.vercel.app/
80•p0u4a•1d ago•46 comments

Show HN: GitGlimpse – GitHub Action that generates UI/UX demos for your PRs

https://github.com/DeDuckProject/git-glimpse
4•fatach•12h ago•0 comments

Show HN: What if your synthesizer was powered by APL (or a dumb K clone)?

https://octetta.github.io/k-synth/
92•octetta•2d ago•32 comments

Show HN: Hecate – Call an AI from Signal

https://github.com/rhodey/hecate
25•rhodey•1d ago•3 comments
Open in hackernews

Show HN: Pgit – A Git-like CLI backed by PostgreSQL

https://oseifert.ch/blog/building-pgit
37•ImGajeed76•1d ago

Comments

Zardoz84•2h ago
Interesting... could be used to store multiple git repos and do a full text search across the multiple repos ?
ImGajeed76•1h ago
in theory yes. you just need to do the full text search across the databases. pgit doesnt support it but at the end its just postgres under the hood.
killingtime74•1h ago
I love it. I love having agents write SQL. It's very efficient use of context and it doesn't try to reinvent informal retrieval part of following the context.

Did you find you needed to give agents the schema produced by this or they just query it themselves from postgres?

ImGajeed76•1h ago
so most analyses already have a CLI function you can just call with parameters. for those that don't, in my case, the agent just looked at the --help of the commands and was able to perform the queries.
smartmic•1h ago
Of course, we can’t leave out a mention of Fossil here — the SCM system built by and for SQLite.

https://fossil-scm.org/

ImGajeed76•1h ago
yeah fossil is great, but can fossil import the linux kernel (already working on the next post)
thunderbong•52m ago
And fossil itself is an SQLite database!
aljgz•1h ago
Still halfway through reading, but what you've made can unlock a lot of use cases.

> I tried SQLite first, but its extension API is limited and write performance with custom storage was painfully slow

For many use cases, write performance does not matter much. Other than the initial import, in many cases we don't change text that fast. But the simpler logistics of having a sqlite database, with the dual (git+SQL) access to text is huge.

That said, for the specific use case I have in mind, postgres is perfectly fine

ImGajeed76•1h ago
sounds great yes. maybe an SQLite version will come in the future
Fire-Dragon-DoL•1h ago
Wouldn't duckdb be better suited for this? Forgive the stupid question. I just connected "csv as sql" to "git as sql" and duckdb comes to mind
ImGajeed76•58m ago
I did actually look into writing the extension for duckdb. But similar to SQLite the extension possibilities are not great for what I needed. Though duckdb is a great database.