frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Taomus – The Atlas of Music

https://taomus.com/
1•Saliroz•2m ago•0 comments

Trust is all you need

https://r5d.me/trust-and-the-lack-thereof/
1•solaire_oa•2m ago•0 comments

Prolog JITI Amazing

1•lokinpendawa•3m ago•0 comments

Stanford just released 1000+ system prompts from ChatGPT, Claude etc.

https://systempromptindex.ai/
1•randomdog•3m ago•0 comments

Predictions for the Era of Continual Learning

https://www.dwarkesh.com/p/era-of-continual-learning
1•gmays•4m ago•0 comments

Oracle bans AI-generated code from OpenJDK

https://app.dealroom.co/news/feed/oracle-bans-ai-generated-code-from-openjdk-despite-ellison-s-cl...
1•delduca•5m ago•0 comments

DeepSeek V4 Flash on ARC-AGI

https://twitter.com/arcprize/status/2085779238007808349
1•tosh•6m ago•0 comments

Show HN: Check if any of the $656M in unclaimed royalties at The MLC is yours

https://pub.doub.ly/
1•knaught•7m ago•1 comments

Effect

https://www.effect.website/
1•tosh•8m ago•0 comments

X wants to keep suing advertisers, asks 5th Circuit to overrule district judge

https://arstechnica.com/tech-policy/2026/08/elon-musks-x-isnt-done-suing-advertisers-asks-court-t...
3•howard941•8m ago•0 comments

Show HN: DayOtter – open-source, self-hostable scheduling assistant you talk to

https://github.com/Dayotter/dayotter
1•archits1996•8m ago•0 comments

Show HN: FLUX.3 Video 1k generation test (180 mins of footage)

https://www.martini.film/p/35b02ee5-2488-4dc6-a9d9-c403211cfede/flux-3-15ryn2n
1•niwrad•9m ago•0 comments

Call Stack Diffs

https://oskrim.github.io/engineering/2026/08/02/call-stack-diffs.html
1•mpweiher•10m ago•0 comments

Ask HN: In your experience, what are sound conventions for e-ink UI development?

1•BoxOfRain•13m ago•0 comments

Music to confuse AI might be the next new genre

https://cdm.link/music-to-confuse-ai-might-be-the-next-new-genre/
1•wyclif•13m ago•0 comments

Autoresearch for Hardware

https://www.onyxresearch.ai
1•tedlutkus•15m ago•1 comments

Make WordArt Online

https://wordart97.net/
1•choult•15m ago•0 comments

To Save C, We Must Save ABI

https://thephd.dev/to-save-c-we-must-save-abi-fixing-c-function-abi
2•jackwilsdon•16m ago•0 comments

City That Arrested Clapper at Data Center Meeting Goes Virtual for 'Safety'

https://www.404media.co/city-that-arrested-person-for-clapping-at-data-center-meeting-moves-to-vi...
2•cdrnsf•18m ago•2 comments

Show HN: Merge – AI-native code review assessments for engineering hiring

https://mergeoa.com
4•harshithl1777•21m ago•1 comments

HarnessOpt-Bench: Evaluating LLMs at Harness Optimization

https://arxiv.org/abs/2608.06301
2•wslh•22m ago•0 comments

Tell HN: Tally Data Breach

4•gregsadetsky•25m ago•1 comments

Coding agents, defaults, and human judgment

https://rpc3.dev/posts/coding-agents-defaults-and-human-judgment/
2•rpc3•26m ago•0 comments

parakeet.wgsl – Fast, accurate ASR in the browser, via raw WebGPU and SIMD WASM

https://parakeet.narcotic.sh/
2•hamza_q_•28m ago•1 comments

The Two-Year-Old Firefox ARM64 Video Bug

https://fratellobigio.com/posts/the-two-year-old-firefox-arm64-video-bug/
3•fratellobigio•30m ago•0 comments

Big tech's AI-powered 'pervert' glasses are in a losing battle with DuckDuckGo

https://www.sfgate.com/tech/article/duckduckgo-sunglasses-22377693.php
3•wyclif•30m ago•2 comments

Why are Japan's luxury night trains making a comeback?

https://www.nippon.com/en/japan-topics/g02623/
3•whiteblossom•32m ago•0 comments

Keras 3.15.1

https://github.com/keras-team/keras/releases/tag/v3.15.1
2•tosh•32m ago•0 comments

Vision based touch-less macOS control via hands (FOSS)

https://pawvis.app/
2•heresalexandria•33m ago•1 comments

Tesla and SpaceX to invest $16.8B for Terafab chip factory in Texas

https://techcrunch.com/2026/08/06/tesla-and-spacex-will-invest-16-8b-to-start-building-terafab-ch...
4•joering2•34m 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!