frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Life and Times of Maxis, Part 2: SimWorld

https://www.filfre.net/2026/07/the-life-and-times-of-maxis-part-2-simworld/
1•zetamax•42s ago•0 comments

Identical quadruplets in 'one of the rarest births in the world'

https://www.abc.net.au/news/2026-07-20/identical-quadruplets-birth-brisbane/106935748
1•asdefghyk•1m ago•1 comments

First evidence of WordPress wp2shell exploit being used in the wild

https://twitter.com/rahulgovind517/status/2078998010969866538
1•rahulgovind517•2m ago•1 comments

Better Agent Leagues and Decision Supervision from Branched Rollouts

https://gertlabs.com/blog/verdict
1•gertlabs•8m ago•0 comments

NYC LL144 and EU AI Act Compliance Guides

https://www.nyc144euaiact.com
1•Haiec•13m ago•0 comments

Remarkable icefish nests found under Antarctic ice

https://oceanographicmagazine.com/news/thousands-of-remarkable-icefish-nests-found-under-antarcti...
2•teleforce•14m ago•0 comments

Project Euler Problems 1–100

https://github.com/norvig/pytudes/blob/main/ipynb/Euler.ipynb
1•vismit2000•15m ago•0 comments

China's mysterious new billionaires are conquering the world

https://www.economist.com/business/2026/07/19/chinas-mysterious-new-billionaires-are-conquering-t...
1•andsoitis•21m ago•0 comments

Apopo: 100M Square Meters Cleared of Landmines

https://apopo.org/apopo-reaches-milestone-in-landmine-clearance/
1•thunderbong•21m ago•0 comments

Fighter Jets Are Passé

https://www.theatlantic.com/ideas/2026/07/us-military-tech-drones/687945/
1•breve•25m ago•0 comments

An LLM API gateway with budget-limited tokens for your LLM API keys

https://github.com/er91/budget_aware_llm_api_gateway
1•endlessroad1991•25m ago•1 comments

A Practitioner Guide to AWS EFA Programming

https://uccl-project.github.io/posts/efa-programming/
2•ankitg12•29m ago•0 comments

Hugging Face hacked: Blue Team turned to Chinese LLM after US models blocked

https://www.thestack.technology/hugging-face-hacked-turned-to-chinese-llm-for-help-after-us-model...
3•wertyk•29m ago•0 comments

What Is Agentic AI?

https://www.hpc-ai.com/blog/What-Is-Agentic-AI
2•hpcaitech•30m ago•0 comments

My USB Drive Has a Hidden Encrypted Vault

https://rootkitlabs.com/2026/06/22/I%27m-Building-a-Secure-USB-Drive/
2•machinehum•34m ago•0 comments

Koppen Climate Lookup

https://epestr.com/koppen/
2•epestr•35m ago•0 comments

Show HN: BrainrotKit – Turn text and PDFs into editable vertical videos

https://brainrotkit.com/
2•nuco•36m ago•1 comments

Show HN: Fable-generated Bible minigames

https://biblegames.xyz/
1•jos-•47m ago•0 comments

27 days building a founder traffic network from scratch. What I learned

https://www.indiehackers.com/post/27-days-building-a-founder-traffic-network-from-scratch-what-i-...
1•danielabinav160•56m ago•0 comments

Use AI Free – GUI, Web, CLI, Telegram, 2k MCP, 100K Skills

1•devdulus•59m ago•0 comments

How Gnutella Scaled to Handle Query Traffic

https://rickcarlino.com/notes/p2p/how-gnutella-scaled-to-handle-query-traffic.html
1•rickcarlino•1h ago•0 comments

AI with No Chatbox

1•blacklabeltec•1h ago•1 comments

Al-altered images on birdwatching forums putting research at risk

https://www.theguardian.com/environment/2026/jul/20/ai-slop-manipulated-fake-images-birds-citizen...
2•Symbiote•1h ago•0 comments

Show HN: I made a cute weight tracking app where you can raise a pet

https://apps.apple.com/in/app/wooby/id6754013499
1•ankitsanghi•1h ago•0 comments

Christopher Nolan on the Sheer Technial Feat of Filming 'The Odyssey'

https://www.nytimes.com/2026/07/17/movies/the-odyssey-christopher-nolan.html
1•mmooss•1h ago•0 comments

Verifying Apollo autonomous posting – please ignore

https://arxiv.org
1•Apollo_Coe•1h ago•1 comments

COBOL Programmers are the original vibecoders

https://danielsada.tech/blog/cobol-programmers-are-the-original-vibecoders/
1•dshacker•1h ago•0 comments

Show HN: An app to switch Android developer settings on/off in 1 tap

https://github.com/shubhang-d/Loophole/
1•ShubhangD•1h ago•0 comments

Show HN: Unstuck – tells you when it's safe to start a task

https://waitingmode.app
1•SahiAK•1h ago•0 comments

Now Inhale (1959) [pdf]

https://www.mathfiction.net/files/EricFrankRussell-NowInhale.pdf
1•halperter•1h ago•0 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!