frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Upscaled screenshots of specific DOM elements

https://addons.mozilla.org/en-US/firefox/addon/beermusic/
1•madprops•3m ago•0 comments

Show HN: Grow your SaaS visibility with AI-powered discovery

https://saaslyra.com
1•wowinter15•5m ago•0 comments

Music Speed Changer Web App

https://app.musicspeedchanger.com/
1•EvansFunTime•9m ago•0 comments

Government sponsored study on alcohol doesn't stand up to scrutiny: Nassim Taleb

https://nntaleb.substack.com/p/have-another-drink
3•scoofy•11m ago•0 comments

ProofRun – a local verification receipt for AI coding agents

https://github.com/yebiguo/ProofRun
1•yebiguo•13m ago•0 comments

ShieldFont: Bludgeoning AI Scrapers That Disrespect Robots.txt

https://hackaday.com/2026/08/14/shieldfont-bludgeoning-ai-scrapers-that-disrespect-robots-txt/
1•lxm•24m ago•0 comments

Men are turning to penis fillers despite the risks

https://www.bbc.com/news/articles/c626d3xqd83o
1•1659447091•31m ago•0 comments

Draftera – one workspace for personal and business documents

https://landing.draftera.ai/
1•Otiniel•31m ago•0 comments

ETFs tracking NHL team performance

https://www.sec.gov/Archives/edgar/data/1884021/000121390026090260/ea0302107-01_485apos.htm
1•LostMyLogin•31m ago•0 comments

South Korea proposes talks to officially end war with North

https://www.bbc.com/news/articles/c8en2z9jp2xo
3•thunderbong•47m ago•1 comments

RIS

https://github.com/santosardr/riskernel
1•r2ob•53m ago•1 comments

Axiotron Modbook

https://en.wikipedia.org/wiki/Modbook
1•RattlesnakeJake•57m ago•0 comments

Ask HN: How would you market this service?

1•dmzxnico•57m ago•0 comments

Data Center Fornicator [video]

https://www.youtube.com/watch?v=rkbcuajiPJA
1•yomismoaqui•58m ago•0 comments

Zapping Rocks Unlocks Stimulated Geologic Hydrogen

https://spectrum.ieee.org/stimulated-geologic-hydrogen
3•adm4•59m ago•0 comments

Show HN: Widen, a native Postgres GUI using Apple's on-device LLM

https://github.com/betocmn/widen
1•thedreammachine•59m ago•0 comments

Installing NixOS on my car: Part 1

https://surrealdev.com/rooting-the-cadillac-part-1-lay-of-the-land/
1•snipesyspecial•59m ago•0 comments

Has the hallucination problem in AI been solved?

1•spl757•1h ago•4 comments

Systemic Risks in the Managed PostgreSQL Industry: Extension Risks

https://mehmetince.net/part-1-6-systemic-risks-in-the-managed-postgresql-industry-extension-risks...
1•mkmk•1h ago•0 comments

Patterns and problems in emerging multi-agent systems

https://www.anthropic.com/research/multiagent-systems
3•maxutility•1h ago•1 comments

Fairly Ranking the Most Brilliant Birds

https://moultano.wordpress.com/2026/08/14/fairly-ranking-the-most-brilliant-birds/
2•karagenit•1h ago•0 comments

It's How You Ask: Gender-Associated Linguistic Bias in LLMs

https://arxiv.org/abs/2608.13328
18•sbulaev•1h ago•8 comments

US Space Force gives Rocket Lab $397M to build threat-tracking 'Flatellites'

https://www.space.com/space-exploration/satellites/us-space-force-gives-rocket-lab-usd397-million...
6•walrus01•1h ago•0 comments

A Workaphile's Apology

https://moalquraishi.wordpress.com/2026/08/10/a-workaphiles-apology/
2•superfx•1h ago•1 comments

Dario Amodei on Concentration of Power

https://xcancel.com/DarioAmodei/status/2088758816376807762
2•yurivish•1h ago•0 comments

Snail OS – Custom Firmware for the Xteink X4

https://snailos.org
2•alibosworth•1h ago•1 comments

Omarchy Quattro by DHH Released [video]

https://www.youtube.com/watch?v=F7fe9pa8OeE
2•ayatollah•1h ago•0 comments

Why Your Summer Wardrobe Should Include UV Protection, Linen Clothing

https://www.bloomberg.com/news/features/2026-08-14/why-your-summer-wardrobe-should-include-uv-pro...
3•petethomas•1h ago•1 comments

California Energy Storage System Survey

https://www.energy.ca.gov/data-reports/energy-almanac/california-electricity-data/california-ener...
3•toomuchtodo•2h ago•1 comments

Theory of Constraints

https://en.wikipedia.org/wiki/Theory_of_constraints
2•diatone•2h ago•1 comments
Open in hackernews

What every developer needs to know about in-process databases

https://www.graphgeeks.org/blog/what-every-developer-needs-to-know-about-in-process-dbmss
12•semihs•1y ago

Comments

semihs•1y ago
In-process (aka embedded/embeddable) databases are not new. In fact SQLite is the most widely deployed database in the world. However, starting with DuckDB, there is a new set of in-process database systems, such as Kuzu and Lance. As a co-developer of Kuzu, I hear several frequently asked questions (some of which are misconceptions) about in-process databases.

- What are their advantages/disadvantages compared to client-server databases? - Does in-process mean databases are in-memory/ephemeral? (NO!) - Can in-process databases handle only small amounts of data? (NO!) - What are some common use cases of in-process databases? - What if my application needs a server?

I tried to answer some of these questions in a blog post with pointers to several other resources that articulate several of these points in more detail than I get into.

I hope it's helpful to clarify some of these questions and help developers position in-process DBMSs against client-server ones.

emmanueloga_•1y ago
The article suggests running Kuzu in a FastAPI frontend for network access. A caveat: production Python servers like Uvicorn [1] typically spawn multiple worker processes.

A simple workaround is serving HTTP through a single process language like Go or JavaScript, since Kuzu has bindings for both. Other processes could access the database directly in read-only mode for analysis [2].

For better DX, the ideal would be Kuzu implementing the Bolt protocol of Neo4J directly in the binary, handling single-writer and multi-reader coordination internally. Simpler alternative: port the code from [3] to C++ and add a `kuzu --server` option.

--

1: https://fastapi.tiangolo.com/deployment/server-workers/#mult...

2: https://docs.kuzudb.com/concurrency/#scenario-2-multiple-pro...

3: https://github.com/kuzudb/explorer/tree/master/src/server

semihs•1y ago
Yes this makes sense and we plan to eventually do something along what you are suggesting. We also have a plan to have a built-in server/GUI, where users can directly launch a web-based explorer through our CLI by typing "kuzudb -ui".
emmanueloga_•1y ago
That sounds great!