frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•DarrylLinington•10s ago

Astro93: On-device astrology app with a pure-Dart ephemeris

https://play.google.com/store/apps/details?id=com.hoornet.astro93&hl=en_US
1•hoornet•1m ago•0 comments

Nuclear Turbines

https://www.nuclearturbines.com
1•chickenbig•2m ago•0 comments

Live: NHK WORLD-Japan News (since Mar 10, 2022) [video]

https://www.youtube.com/watch?v=f0lYkdA-Gtw
1•gjvc•4m ago•0 comments

Tag Questions and the Generational Reversal of Sycophancy Across 45 Language

https://arxiv.org/abs/2607.23976
1•sbulaev•8m ago•0 comments

Some people's chats with Claude AI found to be publicly available online

https://www.bbc.com/news/articles/cly5qgjk5ywo
1•01-_-•9m ago•0 comments

Southeast Asia's record tech investment driven by single data centre giant

https://ciosea.economictimes.indiatimes.com/news/data-center/southeast-asias-record-tech-investme...
1•01-_-•10m ago•0 comments

An interactive in-browser tutorial for MarkoJS V6 with solvable lessons

https://markojs-tutorial.netlify.app/
1•defunkt-dev•11m ago•1 comments

Tell HN: Our paid Claude AI subscription unavailable >1 week and no support

1•KellyCriterion•15m ago•0 comments

Show HN: Where everything shaping how you think lives

https://omphalis.ai/
2•wowinter15•19m ago•0 comments

F-16 in 1991 Gulf war dodges 6 SAM missiles without chaff

https://www.youtube.com/watch?v=TJE5gDDnq9s
2•lifeisstillgood•22m ago•0 comments

Magnitude 7.1 earthquake hits Japan's Kyushu region, JMA says

https://www.reuters.com/business/environment/magnitude-71-earthquake-hits-japans-kyushu-region-jm...
1•mikhael•25m ago•0 comments

The Uses of 'Treason'

https://www.cjr.org/the_media_today/the-uses-of-treason-donald-trump-press-traitors-air-force-one...
2•robtherobber•27m ago•0 comments

Ask HN: What do you use local models for?

1•tjomk•29m ago•1 comments

7.1 Earthquake in Japan

https://www.data.jma.go.jp/multi/quake/quake_detail.html?eventID=20260728163528&lang=en
68•krembo•31m ago•6 comments

Seriously, what is the large code-model even for?

https://fzakaria.com/2026/07/26/seriously-what-is-the-large-code-model-even-for
1•birdculture•33m ago•0 comments

Show HN: Reverse-engineer viral videos into AI-ready shot breakdowns

https://videolens.cc/zh/landing
1•not_wowinter13•37m ago•0 comments

Show HN: Dino Race – A peer-to-peer two-player Chrome Dino game

https://gameplayer2.com/dino
1•dares2573•37m ago•0 comments

Artificial Intelligence: Shades of Gray

https://changelog.complete.org/archives/42503-artificial-intelligence-shades-of-gray
1•psibi•37m ago•0 comments

Does Speaking to Agents Like Cavemen Save 65% of Tokens? We Test

https://blog.jetbrains.com/ai/2026/07/speak-to-ai-agents-like-cavemen-tosave-tokens/
3•Sandman•38m ago•1 comments

Disney+ removes 4K and HDR from premium plans in Germany

https://www.heise.de/en/news/Disney-4K-and-HDR-completely-disappeared-in-Germany-11379707.html
2•Vloeck•42m ago•0 comments

Fcgc

https://news.ycombinator.com/submit
1•sfgsfsdgs•43m ago•0 comments

Packaging Companies in Sri Lanka

https://akhtarigroup.com/
1•jayanath99•49m ago•0 comments

AgentEnv

https://github.com/kvcache-ai/AgentEnv
1•handfuloflight•51m ago•0 comments

Show HN: Kimi K3 Is Now Live on Canopy Wave

https://canopywave.com/models/kimi-k3
2•Rossmax•53m ago•0 comments

Show HN: WhimPop – A macOS menu that pops up under your cursor

https://whimpop.com/
2•whimbyte•54m ago•0 comments

Show HN: Turo – Tagalog for point, saves Tokens by pointing instead of talking

https://github.com/kdeps/turo
1•jjuliano•54m ago•0 comments

Sodium restriction and insulin resistance: A review of 23 clinical trials

https://journalofmetabolichealth.org/index.php/jmh/article/view/78/242
1•sublinear•58m ago•0 comments

Microsoft Sam starts his car

https://www.youtube.com/watch?v=EQ1LbeaU_LI
2•nazgulsenpai•1h ago•0 comments

Exercises in benchmarking and evals, part 7

https://danluu.com/exercise-7/
1•janvdberg•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!