frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Fundraiser to Bolster Monero's Security Through Automated Testing

https://old.reddit.com/r/Monero/comments/1v8exyy/fundraiser_to_bolster_moneros_security_through/
1•lunarthegrey•1m ago•0 comments

Venture Mindset

https://herbertlui.net/venture-mindset/
1•herbertl•3m ago•0 comments

Show HN: Edge Drop – The clipboard manager Windows 11 should have shipped with

https://github.com/Deepender25/Edge-Drop
2•Deepender25•4m ago•0 comments

Vakonomic Fluids

https://arxiv.org/abs/2607.18312
1•E-Reverance•5m ago•0 comments

Gemini Distillation Service

https://docs.cloud.google.com/gemini-enterprise-agent-platform/models/tuning/distillation
2•asawfofor•5m ago•0 comments

Show HN: Gemma 4 26B A4B running on an iPhone 17 Pro via model paging

https://noemaai.com/
1•armin976•8m ago•0 comments

China Begins Making Homegrown DUV Lithography Chipmaking Tools

https://www.reuters.com/world/china/china-begins-making-homegrown-duv-chipmaking-tools-informatio...
2•karakoram•11m ago•0 comments

Trusty Boot Key, a Ventoy Alternative

https://codeberg.org/aol/trusty-boot-key
1•mixmastamyk•12m ago•0 comments

Private Credit Backstop, How Private Equity Socializes Risk Through Insurers [pdf]

https://papers.ssrn.com/sol3/Delivery.cfm/7152239.pdf
1•senshan•12m ago•0 comments

Internet is no longer accessible?

4•cute_boi•13m ago•3 comments

The Forensic Audit of Project 545

https://www.bitchute.com/video/9r7XJ8ykLrhs/
1•untiledsource•17m ago•0 comments

Families in London temporary housing told they cant use inbuilt air conditioning

https://www.theguardian.com/society/2026/jul/27/homeless-families-london-temporary-housing-air-co...
2•stuaxo•18m ago•0 comments

Norway Salmon

https://www.abc.net.au/news/2026-07-28/how-norway-s-salmon-industry-became-a-global-behemoth/1069...
1•CHB0403085482•19m ago•0 comments

Tlbic: A Local Basic Income Proposal Built to Protect Human Dignity (v9.0)

https://drive.google.com/file/d/10YGI27bT6Vj00LlJuKwoaSYzG-cXNbwF/view?usp=drive_link
3•michikawa59•20m ago•1 comments

Gamma-ray pulsations reveal extreme 3.2-ms pulsar 3,900 light-years away

https://phys.org/news/2026-07-gamma-ray-pulsations-reveal-extreme.html
1•wglb•21m ago•1 comments

Residential Proxies Are a National Security Threat

https://jacob.gold/posts/residential-proxies-are-a-national-security-threat/
1•joshbetz•22m ago•0 comments

First Genesis Mission Projects Selected to Boost AI-Driven Scientific Discovery

https://www.energy.gov/articles/secretary-energy-chris-wright-announces-first-genesis-mission-pro...
1•gmays•26m ago•0 comments

Show HN: RL bandits pick coding agent's context,Grok 4.5 out-fixes Fable 5

https://github.com/VinvAI/VinvAI
2•sohamac•30m ago•0 comments

PostgreSQL's MVCC is bad. So is everyone else's

https://boringsql.com/posts/mvcc-bad-bad/
1•soheilpro•33m ago•0 comments

X Money officially launches in the US

https://9to5mac.com/2026/07/27/x-money-apple-wallet/
1•slymax•36m ago•0 comments

Abandoned Navy base costs taxpayers $340k pa for internet no one uses

https://taskandpurpose.com/news/abandoned-navy-base-internet-service/
2•Gaishan•41m ago•0 comments

Lilian Weng Resigns from Thinking Machines Lab

https://digg.com/tech/yhf6ei1b
1•doppp•45m ago•0 comments

Big Tech's Money Men Don't Care About the Backlash

https://www.politico.com/news/magazine/2026/07/26/ai-super-pac-operatives-profile-01008227
2•reasonableklout•48m ago•0 comments

Show HN: _done – Expanding AI Capabilities

https://underscoredone.com/
1•onescales•48m ago•0 comments

S.Korea's KOSPI tumbles nearly 5% as chipmakers slump on AI worries

https://www.reuters.com/world/asia-pacific/skoreas-kospi-tumbles-nearly-5-chipmakers-slump-ai-wor...
4•rvz•49m ago•0 comments

QuickLogic eFPGA IP

https://www.quicklogic.com/efpga-ip/
1•peter_d_sherman•52m ago•0 comments

Tag Universal Machine Pitch Deck [pdf]

https://taguniversal.github.io/digital_blockchain_patents/TAG_Pitch_Deck.pdf
1•taguniversalm•54m ago•0 comments

Velonus – now in beta, with AI triage and one-click fix PRs

https://www.velonus.com/
1•AliAmmar15•59m ago•0 comments

Copyright Scammers Weaponized Meta's Rights Manager with Backdating Exploit

https://torrentfreak.com/copyright-scammers-weaponized-metas-rights-manager-with-backdating-exploit/
2•gslin•59m ago•1 comments

Programmable Chip That Can Slow Light on Command

https://scitechdaily.com/scientists-built-a-programmable-chip-that-can-slow-light-on-command/
1•Gaishan•59m 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!