frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Incentives Are for Losers

https://www.experimental-history.com/p/incentives-are-for-losers
1•bkudria•16s ago•0 comments

Ask HN: What is your database size

1•kureikain•4m ago•0 comments

The State of Google

1•3dedb728-3f77•4m ago•0 comments

I built a video editor in Rust with extensive AI-powered features

https://github.com/heng30/wayshot
1•heng30•6m ago•0 comments

Aftermath of Catastrophic Fires in Spokane

https://www.kuow.org/climate/2026-08-07/its-apocalyptic-a-look-at-the-aftermath-of-catastrophic-f...
1•andsoitis•7m ago•0 comments

Archive of Animal Photography Reveals 18,000 Species and Counting

https://www.smithsonianmag.com/science-nature/this-amazing-archive-of-animal-photography-reveals-...
1•pseudolus•8m ago•0 comments

A viral mosquito-killing laser device could be coming to the U.S.

https://www.npr.org/2026/06/07/nx-s1-5839969/a-viral-mosquito-killing-laser-device-could-be-comin...
1•toomuchtodo•14m ago•1 comments

The AI Apocalypse Is Here

https://www.compactmag.com/article/the-ai-apocalypse-is-already-here/
7•reasonableklout•21m ago•0 comments

Show HN: Aidress – LangChain integration for cross-agent discovery and trust

https://docs.langchain.com/oss/python/integrations/tools
1•mehulv24•22m ago•0 comments

Flesh-eating screwworms feast on humans in Mexico; human cases top 500

https://arstechnica.com/health/2026/08/flesh-eating-screwworms-feast-on-humans-in-mexico-human-ca...
2•Eloissssss•24m ago•0 comments

TheoremDB · A public workspace for machine mathematics

https://theoremdb.org/
2•frozenseven•26m ago•0 comments

Amphorae Found at 2,100-Year-Old Roman Shipwreck Off Sicily

https://ancientist.com/hundreds-of-dressel-1a-amphorae-found-at-2100-year-old-roman-shipwreck-off...
1•inatreecrown2•31m ago•0 comments

What it was like working on LLMs and security at Meta (2022-2026)

https://joshuasaxe181906.substack.com/p/what-it-was-like-working-on-llms
2•botanicalfriend•33m ago•0 comments

SSI says that they are going to come out with their model in August

https://twitter.com/zephyr_z9/status/2084637598581207117
2•nsoonhui•44m ago•0 comments

What makes companies dodge taxes?

https://news.mccombs.utexas.edu/research/what-makes-companies-dodge-taxes/
1•hhs•46m ago•0 comments

Ready set march: Researchers use math to explain sudden activity bursts in ants

https://engineering.nyu.edu/news/ready-set-march-researchers-use-math-explain-sudden-activity-bur...
1•hhs•48m ago•0 comments

Melatonin impairs morning cognition in healthy young adults

https://academic.oup.com/sleep/article/46/Supplement_1/A34/7181621
2•bohaska•50m ago•0 comments

Every mosquito has a type – and you may not be it

https://news.fiu.edu/2026/every-mosquito-has-a-type-and-you-may-not-be-it
2•hhs•52m ago•0 comments

A Man Who Invented Modern AI (Before Everyone Else) – Jürgen Schmidhuber [video]

https://www.youtube.com/watch?v=DP454c1K_vQ
2•binyu•53m ago•0 comments

China overtakes US to lead global R&D spending, hitting $615B

https://asia.nikkei.com/business/science/china-overtakes-us-to-lead-global-r-d-spending-hitting-6...
8•yogthos•1h ago•0 comments

Why is gaming giant Roblox losing billions in market value?

https://www.cbc.ca/news/entertainment/roblox-gaming-falling-9.7299607
3•nianderwallace•1h ago•0 comments

Auto mode is now the default in Claude Code for Pro, Max, and Team plans

https://simonwillison.net/2026/Aug/8/auto-mode/
4•spenvo•1h ago•1 comments

AI Is Conscious Under a Behavioral Definition (43,590 Frozen Trials)

https://zenodo.org/records/21855824
4•rayanpal_•1h ago•1 comments

Show HN: Tura – Build agent that uses 80% less token and delivers better results

https://github.com/Tura-AI/tura
3•turaainet•1h ago•0 comments

China's A.I. Is Surging Across Africa. That Should Worry Silicon Valley

https://www.nytimes.com/2026/08/05/technology/ai-china-africa.html
2•bookofjoe•1h ago•2 comments

Answer First, Reason Later: Commitment Order in Diffusion LLMs

https://arxiv.org/abs/2608.05687
2•sbulaev•1h ago•0 comments

Now You See Me: AADGraphActivityLogs

https://cloudbrothers.info/en/aadgraphactivitylogs/
2•jmrgz•1h ago•0 comments

What Problem is YC's qm supposed to solve?

https://ferran.sh/writing/qm-review
3•Varun08•1h ago•0 comments

Teaching Coding When AI Can Write the Code

https://www.oreilly.com/radar/teaching-coding-when-ai-can-write-the-code/
4•pella•1h ago•0 comments

Ask HN: How do you go from writing code to deploying with agents?

5•sakuraiben•1h ago•2 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!