frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Schemic – your database schema, in the Zod API you know

https://schemic.dev/
1•msanchezdev•1m ago•0 comments

Scientists warn 'Godzilla' El Niño could intensify climate impacts worldwide

https://www.npr.org/2026/06/17/nx-s1-5860821/el-nino-peru-climate
1•rolph•1m ago•0 comments

Muninn: 8 Security scanners in one GitHub Action

https://github.com/skaldlab/muninn
1•sg0nzalez83•1m ago•0 comments

Historic Firsts – a daily game about ranking firsts in history

https://playhistoricfirsts.com/
1•jeremyfrancis87•6m ago•0 comments

Warning: Gizmodo serving up ClickFix malware capchas

https://gizmodo.com/io9
1•radley•8m ago•1 comments

Turn server photos into editable rack templates

https://react-networks-lib.rackout.net/asset-designer
1•matt-p•9m ago•0 comments

The Standard Model from the octonions on a hyperbolic 24-cell lattice

https://zenodo.org/records/20768426
1•lancejpollard•10m ago•0 comments

Wave Equation with Computable Initial Data and Solution Is Nowhere Computable

https://dl.acm.org/doi/abs/10.1002/malq.19970430406
2•measurablefunc•10m ago•0 comments

MojiMoshi – create an AI agent that lives in Telegram or Line

https://mojimoshi.com/
1•xsirix•12m ago•0 comments

Help I Accidentally a Wigglegram

https://lmao.center/blog/wiggle-accidents/
1•gregsadetsky•13m ago•0 comments

Copyany Websites Brand Kit

https://chromewebstore.google.com/detail/ai-brand-kits-—-extract-b/cbdoamlbbflaphjnbladbfnianjl...
1•mattmerrick•14m ago•0 comments

Trump administration reverses decision to scrap ocean monitoring system

https://www.theguardian.com/us-news/2026/jun/18/ocean-monitoring-system-reversal-trump-administra...
3•thunderbong•15m ago•0 comments

A Trillion Dollars Isn't Worth It If You Have to Be Elon Musk

https://www.currentaffairs.org/news/a-trillion-dollars-isnt-worth-it-if-you-have-to-be-elon-musk
3•Anon84•16m ago•0 comments

Ask HN: Is there a microSD card of the Mythos model?

1•smalltorch•16m ago•0 comments

The model is swappable the ontology compounds

https://www.typedef.ai/blog/the-model-is-swappable-the-ontology-compounds
1•cpard•18m ago•0 comments

Software Optimization Resources

https://www.agner.org/optimize/
2•turtleyacht•20m ago•0 comments

AI AlphaFold pioneer who won a Nobel Prize leaves Google DeepMind for Anthropic

https://www.businessinsider.com/alphafold-john-jumper-leaves-google-deepmind-anthropic-demis-hass...
1•nsoonhui•23m ago•0 comments

A coding agent is six functions in a trenchcoat

https://tidydesign.substack.com/p/a-coding-agent-is-six-functions-in
1•data_ders•27m ago•0 comments

Baseball Coaches or Parents

https://www.baseballstatstracker.com
1•carlandrews•28m ago•0 comments

Entertainmentindustry.ai – Engineering hunt and M&A gateway

https://entertainmentindustry.ai
1•DavidFrangiosa•31m ago•0 comments

You can't train in what the model knows

https://hftuniversity.com/post/your-ai-s-fast-c-wasn-t-faster-and-one-sentence-makes-it-safe
1•htk•33m ago•0 comments

Why isn't xAI as impactful compared to others?

1•manonginusa•38m ago•3 comments

Tree Transformers

https://astledsa.substack.com/p/tree-transformers
1•astledsa•40m ago•0 comments

LLMs Are Complicated Now

https://ianbarber.blog/2026/06/19/llms-are-complicated-now/
2•matt_d•43m ago•0 comments

A New Book on Plagiarism

https://www.commentary.org/articles/joseph-epstein/plagiarism-writing-politics-arts/
4•promulgate•49m ago•0 comments

Animaps: An open source travel map video maker

https://feralui.vercel.app/#/animaps
1•solutionB•50m ago•0 comments

Why has the pointe shoe been so resistant to change?

https://dancemagazine.com/pointe-shoe-innovation/
3•onemind•50m ago•0 comments

How to feed a dictator

https://www.theguardian.com/film/2026/jun/09/how-to-feed-a-dictator-film
46•Michelangelo11•51m ago•8 comments

'Digital Circus' Google easter egg

https://www.google.com/search?q=digital+circus
1•Lammy•59m ago•1 comments

Statement regarding GNU Savannah security reports

https://www.fsf.org/news/statement-regarding-gnu-savannah-security-reports
2•pentagrama•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!