frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I made a Raspberry with Qwen my local car AI

https://github.com/ThinkOffApp/CarWatch
10•petruspennanen•4h ago•0 comments

Show HN: LatticeDB – Like SQLite but for graph databases

https://github.com/jeffhajewski/latticedb
42•smiths1999•2h ago•10 comments

Show HN: Lightweight system monitor for Linux VPS written in Go

https://github.com/leodeim/vpsmon
20•ygagaga•2h ago•8 comments

Show HN: I wrote a BASIC interpreter that boots on UEFI machines

https://tarjan.itch.io/thoreaubasic
103•Gorsefound•2d ago•36 comments

Show HN: I missed the moving blocks, so I built a real Linux disk defragmenter

https://github.com/gbin/defragger
2•gbin•24m ago•0 comments

Show HN: Wireshark in a TUI

https://github.com/yeet-src/pktscope
2•ok_major_9889•54m ago•1 comments

Show HN: Dribbling the AI Watermark Directly In-Prompt

https://www.explore-exploit.com/p/dribbling-the-ai-watermark-directly
2•jejay•58m ago•0 comments

Show HN: I built a cybersecurity challenge for university students

https://vitb-polimi-cyber-v4.vercel.app/
2•adityainsights•2h ago•0 comments

Show HN: Typeclip – types your clipboard like a human, for screen recordings

https://github.com/cssllcio/typeclip
3•izenme•2h ago•0 comments

Show HN: Is this the limit of what a solo founder can build?

https://limitpixel.com/
2•truth_behold•2h ago•2 comments

Show HN: Offer discounts and get more visitors

https://outdiscount.lol/
2•devarifhossain•2h ago•0 comments

Show HN: Player vs. Computer – fight your computer in my web game

https://github.com/Rubinoslaw/Player-vs-Computer/
2•PolishDevelop22•2h ago•0 comments

Show HN: JeopardyGithub: GitHub Repo to Jeopardy Game

https://jeopardygithub.com
2•init0•2h ago•0 comments

Show HN: Canaster is a canvas based visual workspace

2•shardullavekar•3h ago•0 comments

Show HN: Searching for optimal strategies in a puzzle game with chance (Drop7)

https://drop7.dev
2•primitivesuave•3h ago•0 comments

Show HN: A portable evidence record for what an AI agent ran

https://trace.agentrust-io.com/
3•mosiddi•3h ago•1 comments

Show HN: Orbit - One agent across many repos: real worktrees, no index

https://github.com/orbcli/orbit
2•firespark•3h ago•0 comments

Show HN: A techno machine in one HTML file, with verifiable renders

https://ssx360.github.io/rack-02/?src=hn
224•ssx360•1d ago•43 comments

Show HN: PicoMQ – Durable Streams over HTTP, on object storage

https://picomq.com/
142•adesh_nalpet•1d ago•28 comments

Show HN: Rust Analyzer MCP Server Crate – std-thread bridge (no async)

https://crates.io/crates/r3bl-rust-analyzer-mcp-server
3•nazmulidris•4h ago•0 comments

Show HN: I built a SaaS without knowing how to code – am I an idiot?

https://www.learnfrom.co/
5•bel_hajo•4h ago•6 comments

Show HN: Make a Hug – digital care packages to someone you do care about

https://makeahug.com/
2•14mnobody•4h ago•0 comments

Show HN: GlassBox – what the browser reveals, and how identifiable you are

https://glassbox.codecanary.org
124•tke248•1d ago•58 comments

Show HN: A 34 MB search engine that can't make a network call

https://www.korvo.xyz/embed
4•akshay_bhardwaj•5h ago•0 comments

Show HN: Red-team LLM reasoning and agent actions (honest scoring, local-first)

https://github.com/rudrasatani13/cot-redteam-agent
4•rudrasatani•5h ago•0 comments

Show HN: A Modern GUI Library for Ada: CSS Styling, XML UI, SDL3

https://github.com/ovenpasta/adi2
57•ovenpasta•1d ago•22 comments

Show HN: Open-source AMDGCN kernels for optimizing LLM inference

https://github.com/NetraRuntime/netra-kernel
4•rbisri•5h ago•0 comments

Show HN: Screen memory without screenshots, just text to Markdown

https://github.com/dragthelake/ambient-context
60•Dramatize•14h ago•24 comments

Show HN: Flostep – Diagrams people can actually walk through

https://flostep.dev/
24•pandurang90•20h ago•9 comments

Show HN: GitHub Dashboard aka GitBiased

4•skyfantom•5h ago•4 comments
Open in hackernews

Show HN: LatticeDB – Like SQLite but for graph databases

https://github.com/jeffhajewski/latticedb
41•smiths1999•2h ago
We have been using graph DBs more and more at work. I found them painful to work with locally and decided to try and build something better.

Comments

vorpalhex•1h ago
Thank you for sharing. I think the sqlite-esque local file approach makes sense for a lot of use cases.

What are some of the scales of the data you've been able to test this design on so far?

What was the most interesting part of designing it for you?

smiths1999•26m ago
I did some perf benchmarking with 1M nodes but I'm mostly using it at smaller scales for another project exploring agentic memory.

Most interesting part is a tough one. From a learning perspective the beginning was incredibly interesting because I was spending a lot of time learning about how other DBs work. Even something as relatively simple as writing to disk had a lot more complexity to it than I initially anticipated.

I used LLMs extensively in building this, and the other interesting part was seeing how they failed. I've always been a proponent that tests are no guarantee of quality code, and working with LLMs has only reinforced it. They often write superficial tests. Sometimes a suite of tests would pass, but when I would actually play around with the feature it was clearly broken. LLMs certainly enabled me to build something of this scope, but it was far from "build a graph DB and notify me when you are done"

ebb_earl_co•1h ago
Just read through the README on GitHub and this looks impressive! Kudos
smiths1999•10m ago
Thank you!
anentropic•1h ago
See also: https://ladybugdb.com/ "DuckDB for graphs"
anentropic•1h ago
...turns out they are compared here: https://docs.latticedb.org/comparisons/vs-kuzu
smiths1999•22m ago
I like the aesthetics of this page. Very clean and visually appealing
srameshc•1h ago
LatticeDB looks good, just curious how useful is duckpgq

https://duckdb.org/community_extensions/extensions/duckpgq

smiths1999•15m ago
duckpgq is great. I'd say the tl;dr is duckpgq if you have tables you want to traverse like a graph sometimes, latticedb when graph traversal is the primary mechanism of querying.

One of the motivating use cases for me was experimenting with agentic memory. I use latticedb as the backing data store. Finding related memories is traversing the graph (kind of like graph RAG).