frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

London cops handed victim's new address and number to her stalker, watchdog says

https://www.theregister.com/security/2026/08/05/london-cops-handed-victims-new-address-and-number...
1•Bender•56s ago•0 comments

Weeks into explosive diarrhea outbreak, sluggish CDC plans response team

https://arstechnica.com/health/2026/08/report-cdc-finally-plans-formal-response-team-for-explosiv...
2•Bender•1m ago•0 comments

Apps for Kobo

https://github.com/BandarLabs/cobalt
1•mkagenius•1m ago•0 comments

What happens if you put work into the second dimension?

https://norbertkozsir.com/posts/work-in-the-second-dimension/
1•abelsm•2m ago•0 comments

A Harness for AGI

https://viktor.com/research/a-harness-for-agi
1•everlier•2m ago•0 comments

Hey AI come train on this song [video]

https://www.youtube.com/watch?v=ZBvLadXo7XA
1•haolez•2m ago•0 comments

Born Against, or why hobby programming communities are against LLM usage

https://blog.fogus.me/llm/born-against.html
1•lladnar•4m ago•0 comments

OpenFlexure Microscope – The OpenFlexure Project

https://openflexure.org/
1•latchkey•4m ago•0 comments

Show HN: DeepSeek V4 Flash 0731 with MoonViT Vision (NVFP4)

https://huggingface.co/webbrain-one/DeepSeek-V4-Flash-0731-Vision-NVFP4
1•webbrain•5m ago•0 comments

FlockHopper

https://dontgetflocked.com/
1•cdrnsf•6m ago•0 comments

Why low-latency trading infrastructure is harder than it looks

https://medium.com/@yaroslavaristov/why-low-latency-trading-infrastructure-is-harder-than-it-look...
1•yaroslavaristov•7m ago•0 comments

Can Agents Deceive? Evaluating Reasoning+Deception Using a Social Deduction Game

https://arxiv.org/abs/2607.28146
1•theanonymousone•8m ago•0 comments

The Lua community needs to learn to move on

https://hisham.hm/2026/08/04/the-lua-community-needs-to-learn-to-move-on/
3•thunderbong•9m ago•0 comments

Craft a detailed prompt to support test activities

https://club.ministryoftesting.com/t/day-8-craft-a-detailed-prompt-to-support-test-activities/74863
1•mahirsaid•11m ago•0 comments

hbkit: Recover Synology Hyper Backup (.hbk) archive files

https://github.com/YordiLorenzo/hbkit
1•toomuchtodo•11m ago•1 comments

New Drug: AI

https://blabbingabout.substack.com/p/new-drug-ai
1•atkntepe•11m ago•0 comments

Deployah – deploy to Kubernetes from a short spec, no Helm, nothing in-cluster

https://github.com/deployah-dev/deployah
2•atkrad•15m ago•1 comments

A fake Galaxy S22 Ultra, taken apart layer by layer

https://chardonnet.github.io/fake-s22-ultra-teardown/
1•techburger•15m ago•0 comments

DeepSight – give text-only LLMs eyes and hands (zero tokens, on-device)

https://github.com/Reality-Shifting-Tech/deepsight
1•eliaseffects•15m ago•0 comments

Show HN: GetPageSpeed Amplify, a compatible replacement for Nginx Amplify

https://amplify.getpagespeed.com/
1•dvershinin•16m ago•0 comments

Tracking Apple's Environmental Claims Across Product Generations

https://tostracker.app/entity/apple-inc/environment
1•tldrthelaw•20m ago•0 comments

Album Whale

https://albumwhale.com/
2•pentagrama•21m ago•0 comments

(Updated) Project Phoenix- Autonomous AI Agents

https://phoenix-production-96cd.up.railway.app/
2•amonte•22m ago•0 comments

Show HN: Hacker News with reduced priority for AI driven content

https://sprinklz.io/public/nncrnx74ykir
1•sammy0910•22m ago•0 comments

Microsoft's AI Sales Mostly Come from OpenAI, Disclosures Show

https://www.bloomberg.com/news/articles/2026-08-05/microsoft-s-ai-sales-mostly-come-from-openai-d...
6•mapping365•22m ago•2 comments

Beating GPT-5.6 Sol on retrieval with 100x cheaper open models

https://neon.com/blog/how-castform-neon-beats-frontier-models-on-price-and-efficiency
4•moonikakiss•22m ago•0 comments

Show HN: Ocean – All your team's agent sessions in one place

https://ocean.mosaic.inc/
3•electrodisk•23m ago•1 comments

Why Fireworks doesn't support Voice AI

2•kushalpatil07•23m ago•0 comments

Show HN: ClickBench Playground – a playground for 110 database systems

https://benchmark.clickhouse.com/playground/
2•zX41ZdbW•24m ago•1 comments

Sycophantic AI Decreases Prosocial Intentions and Promotes Dependence

https://arxiv.org/abs/2510.01395
2•robin_reala•24m 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!