frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenJarvis: Personal AI, on Personal Devices

https://github.com/open-jarvis/OpenJarvis
1•simonpure•1m ago•0 comments

Meta launches Instagram, Facebook, and WhatsApp subscriptions

https://techcrunch.com/2026/05/27/meta-officially-launches-instagram-facebook-and-whatsapp-subscr...
1•tambourine_man•1m ago•0 comments

Cancer Progress: More Than You Wanted to Know (2018)

https://slatestarcodex.com/2018/08/01/cancer-progress-much-more-than-you-wanted-to-know/
1•downbad_•3m ago•0 comments

Polyhedral Compilation in MLIR

https://sajidzubair.substack.com/p/polyhedral-compilation-in-mlir
1•matt_d•4m ago•0 comments

Viking Lander Biological Experiments

https://en.wikipedia.org/wiki/Viking_lander_biological_experiments
1•root-parent•7m ago•0 comments

Fibbo: A modern, fast and universal note-taking app running on every device

https://codeberg.org/Nifou/fibbo
1•maxloh•7m ago•0 comments

Turning AI chatbot pages into malware delivery platforms

https://pushsecurity.com/blog/llmshare-malvertising-campaign
1•redbell•10m ago•0 comments

United flight forced to turn around because of a Bluetooth speaker name

https://www.theverge.com/transportation/940486/united-flight-236-bluetooth-speaker-name-bomb
1•droidjj•11m ago•1 comments

NudgeQuote (stops contractors from leaving money in unanswered estimates)

https://nudgequote.com/
1•erichensley•11m ago•0 comments

PewDiePie's AI Workspace

https://pewdiepie-archdaemon.github.io/odysseus/
1•r0xsh•11m ago•0 comments

Show HN: Deliberate – log what your agent rejected, not just what it ran

https://www.deliberate.dev/
2•garysmith1234•13m ago•0 comments

Genetics of Transparent Worms, Supertasters and Cancer

https://www.quantamagazine.org/cori-bargmann-on-the-genetics-of-transparent-worms-supertasters-an...
1•bookofjoe•15m ago•0 comments

I found a seashell in the middle of the desert

https://github.com/Hawzen/I-found-a-seashell-in-the-middle-of-the-desert
1•SVI•15m ago•0 comments

A dynamic programming algorithm for the traveling salesman problem (1993)

https://dl.acm.org/doi/abs/10.1145/173834.173835
1•tosh•16m ago•0 comments

Arctic food chain hit as tipping point passed

https://www.ed.ac.uk/news/arctic-food-chain-hit-as-tipping-point-passed
1•littlexsparkee•16m ago•0 comments

Remote-cmd – Python CLI for SSH server management without the Ansible overhead

https://github.com/Vae-Scrooge/remote-cmd
1•Vae-Scrooge•20m ago•0 comments

$100 to a Debian Developer who can get Fresh Editor into Trixie

5•jph•23m ago•0 comments

Encrypted Client Hello Doesn't Help With Privacy

https://blog.miloslavhomer.cz/encrypted-client-hello/
2•ArcHound•24m ago•1 comments

Commands Aren't Just Events in Reverse

https://docs.eventsourcingdb.io/blog/2026/06/01/commands-arent-just-events-in-reverse/
1•goloroden•24m ago•0 comments

Yes, but who said they'd BUY the damn thing? (2010)

https://longform.asmartbear.com/customer-validation/
1•mooreds•25m ago•0 comments

Talk Is Cheap: The Operational Impact of LLM Use

https://unessays.substack.com/p/talk-is-cheap
5•oudlys•26m ago•1 comments

The Speed of Prototyping in the Age of AI

https://darylcecile.net/notes/speed-of-prototyping-age-of-ai
9•mooreds•26m ago•0 comments

Five giant hyperscalers–and Nvidia–share a surprising trait: female CFOs

https://fortune.com/2026/05/27/ai-cfos-women-hyperscalers-nvidia-meta-microsoft-openai-ipo/
1•mooreds•27m ago•0 comments

CT gov signs AI law to notify employees

https://news.bloomberglaw.com/daily-labor-report/connecticuts-lamont-signs-ai-law-with-employer-n...
2•moneil971•27m ago•0 comments

The household battery revolution that could change energy bills and the world

https://www.theguardian.com/environment/ng-interactive/2026/may/31/cheaper-energy-bills-battery-r...
1•tosh•27m ago•0 comments

Ask HN: How much is fully agentic coding costing you per month?

1•ronbenton•28m ago•0 comments

Shortcuts.app as UI to Rsync

https://ivan.sh/shortcuts-rsync/
1•ivan888•30m ago•0 comments

Gen Z but Two Centuries Ago

https://aeon.co/essays/young-people-now-and-the-mal-du-siecle-of-19th-century-france
2•karakoram•31m ago•0 comments

Game Boy emulator written in NURL compiled to WASM and run on browser

https://play.nurl-lang.org/gameboydemo
2•Hindurable•31m ago•0 comments

Reading Literature on a Small Screen

https://timur.mobi/prosereader-web/
2•pfalafel•32m 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!