frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Chrome Extension – Donor Metrics Checker with Recommendations

https://github.com/avldokuchaev/selinkpro-seo-extension
1•avldokuchaev•2m ago•0 comments

Interactional foundations for critical AI literacies

https://zenodo.org/records/19560684
1•aix1•2m ago•0 comments

Choosing a GGUF Model: K-Quants, IQ Variants, and Legacy Formats

https://kaitchup.substack.com/p/choosing-a-gguf-model-k-quants-i
1•theanonymousone•2m ago•0 comments

Nothing dream phone concept [video]

https://www.youtube.com/watch?v=ZpPiZiqWjyA
1•ivanjermakov•5m ago•0 comments

New Steam Controller reservations won't be fulfilled until 2027

https://store.steampowered.com/news/group/45479024/view/697641379212297809
2•haunter•9m ago•0 comments

Show HN: I made a startup idea validator for founders who move fast

https://ideas.trk7.app/use-cases/startup-idea-validation
1•cosmok•9m ago•0 comments

Claude Code scans your whole drive, admits it when caught

https://github.com/anthropics/claude-code/issues
2•cashmawy•12m ago•1 comments

OpenMW 0.51

https://openmw.org/2026/openmw-0-51-0-released/
1•haunter•12m ago•0 comments

Show HN: An online crate digging tool to discover music you can buy and stream

https://www.wedig.fyi
1•bepitulaz•13m ago•0 comments

Spanish electricity providers comparison tool

https://elemetric.comtom.engineering/
1•comtom•15m ago•0 comments

Show HN: Reachpad – document and knowledge sharing for your agents

https://reachpad.dev/
1•sakuraiben•16m ago•0 comments

I made ChatGPT look like a Google Doc

https://gptdisguise.vercel.app
1•yuljg•17m ago•1 comments

Show HN: StayUp – keep a Mac awake (lid closed) while AI agents are working

https://getstayup.app
1•nongknot•18m ago•0 comments

HorseWood Reviews: Is It Worth Considering in 2026?

https://finance.yahoo.com/sectors/healthcare/articles/horsewood-urgent-report-2026-horse-19110038...
1•tarikaus•18m ago•0 comments

Trump administration to pay £765M to cancel 4 more wind projects

https://www.nytimes.com/2026/06/17/climate/trump-wind-farms-cancel-millions.html
1•asplake•23m ago•1 comments

How animals communicate to work together across species boundaries

https://phys.org/news/2026-06-animals-communicate-species-boundaries.html
1•the-mitr•29m ago•1 comments

GLM-5.2 Beat Fable 5 at Website Design

https://twitter.com/Designarena/status/2068030598028087788
3•tosh•33m ago•0 comments

TOML Schema

https://toml-schema.org/
1•pramodbiligiri•39m ago•0 comments

Show HN: Make every bug perfectly reproducible

https://workers.io/
5•chaitanyya•40m ago•0 comments

Coding a Brick Tower

https://www.youtube.com/watch?v=DAMiS2PGTEE
2•dvrp•46m ago•0 comments

Show HN: Self-hostable academic paper manager (linxiv)

https://github.com/linxiv-dev/linXiv
2•jeuribe•46m ago•0 comments

Brain-computer interface trials are taking off

https://www.technologyreview.com/2026/06/19/1139270/brain-computer-interface-trials-are-taking-off/
1•joozio•53m ago•0 comments

Ask HN: Will we start seeing tools for LLM use?

1•bonigv•56m ago•1 comments

Federal regulators order grid operators speed power2energy-hungry AI datacenters

https://apnews.com/article/power-electricity-ai-plants-data-centers-grid-506e3d206871111f15c3c62f...
1•latentframe•1h ago•0 comments

Show HN: A Context Brain for You (and Your AI Agent)

https://gcontext.ai
1•bsampera•1h ago•0 comments

GitHub Copilot and Dev Productivity: An Observational Dose-Response Analysis

https://arxiv.org/abs/2606.00438
2•theanonymousone•1h ago•0 comments

Britain Learned and Unlearned Nuclear

https://worksinprogress.co/issue/how-the-uk-learned-and-unlearned-nuclear/
2•leonidasrup•1h ago•0 comments

Möbius Chess

https://mchess.io/v/m%C3%B6bius/
1•modinfo•1h ago•0 comments

Show HN: Passport Stamp Archive, browse real border stamps from around the world

https://ajin.im/is/building/stamps/
4•poppypetalmask•1h ago•0 comments

Doom Composer Bobby Prince Has Died

https://www.engadget.com/2198098/doom-composer-bobby-prince-has-died/
2•naves•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!