frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI-Induced Dehumanization

https://myscp.onlinelibrary.wiley.com/doi/full/10.1002/jcpy.1441
1•lantry•2m ago•0 comments

State attorneys general agree to settle Paramount-Warner Bros merger lawsuit

https://www.cnn.com/2026/09/21/media/paramount-wbd-settlement-cnn-ellison-bonta-lawsuit
1•shscs911•2m ago•0 comments

Halo: Post-train LLMs 3x faster than TRL and Megatron

https://twitter.com/whitecircle/status/2102087563913609534
1•ovyan•2m ago•0 comments

A (necessarily) brief history of the reminder of mathematics

https://cofault.com/series_timeline_compact_reverse_flat.html#math-remainder-00000
1•nikita_d•4m ago•0 comments

Grok 4.7

https://twitter.com/SpaceXAI/status/2102069815225586149
1•tosh•5m ago•0 comments

Show HN: Gitstats – compare commits and lines with your friends

https://gitstats.org
1•yarikbuilds•5m ago•0 comments

David Pogue: '125 Tests of the New AI Siri'

https://daringfireball.net/linked/2026/09/21/pogue-siri-ai-125
1•frizlab•5m ago•0 comments

The Long Dream of the Googlebook

https://www.theverge.com/tech/997972/googlebook-laptop-chromeos-android-history
1•dmitrygr•6m ago•1 comments

The Next AI Infrastructure Challenge Is Before the First Token

https://radicaldatascience.wpcomstaging.com/2026/09/16/the-next-ai-infrastructure-challenge-is-be...
2•ddgutierrez•8m ago•0 comments

Show HN: I made a Pomodoro timer that speeds up time

https://arsh.zip/timer/what
1•arshxyz•8m ago•0 comments

Show HN: Viaduct – C4 models that coding agents can read and update

https://c4.quietgridlabs.com/
1•igrlgkv•12m ago•0 comments

OpenAI Urges U.S. Government to Create Global AI-Safety Standards

https://www.wsj.com/tech/ai/openai-urges-u-s-government-to-create-global-ai-safety-standards-a8af...
3•thm•12m ago•0 comments

Apple M6 SoC Analysis's 2 nm chip crushes AMD, Intel and Qualcomm

https://www.notebookcheck.net/Apple-M6-SoC-Analysis-Apple-s-2-nm-chip-crushes-AMD-Intel-Qualcomm....
2•cromka•14m ago•0 comments

Show HN: Snagr – abandoned checkout emails for Polar

https://www.snagr.sh
1•tejasbhovad•14m ago•0 comments

Rings around a tiny body have changed over the past decade

https://arstechnica.com/science/2026/09/rings-around-a-tiny-body-have-changed-over-the-past-decade/
1•PaulHoule•16m ago•0 comments

X's Updates to Terms of Service

https://privacy.x.com/en/blog/2026/terms-updates
1•simonebrunozzi•16m ago•0 comments

Show HN: 8 months extending my terminal to handle all my work with all agents

https://github.com/albertwujj/agent-term
1•aywu•17m ago•0 comments

Pipper

https://github.com/maker-or/omni
1•handfuloflight•19m ago•0 comments

Zerfoo – a pure Go framework for creating, training and running AI models

https://zer.foo
1•david-ndungu•20m ago•0 comments

Singeli: High-level domain-specific metaprogrammin language for low-level progra

https://github.com/mlochbaum/Singeli
2•fanf2•20m ago•0 comments

Lessons from projecting a private monorepo down to a public OSS release

https://opencomplai.com/blog/what-broke-open-sourcing-compliance-engine
1•ythouma•22m ago•0 comments

Show HN: FearGate – AI Fear Machine

https://feargate.org/
2•t_nate•22m ago•2 comments

Zeitpyramide

https://en.wikipedia.org/wiki/Zeitpyramide
2•bpierre•24m ago•0 comments

Seattle Bans Rental Junk Fees

https://www.multifamilydive.com/news/seattle-ban-rental-junk-fees/827816/
9•toomuchtodo•25m ago•3 comments

Alzheimer's disease starting to be considered a treatable condition – study

https://www.rnz.co.nz/news/health/1483456/alzheimer-s-disease-starting-to-be-considered-a-treatab...
4•theanonymousone•29m ago•0 comments

Study: BEVs emit 88g CO2/km over their lifecycle, less than half ICE cars [pdf]

https://www.nature.com/articles/s41467-026-77892-4_reference.pdf
3•giuliomagnifico•30m ago•0 comments

Newly discovered asteroid 2026 SY2 changes how NEO data is interpreted

https://www.astrophyzix.com/2026/09/asteroid-2026-SY2.html
3•JEOFFEZZ•30m ago•0 comments

The AI Agent Landscape – September 2026

https://thebeach.dev/posts/the-agent-landscape-september-2026/
1•jamiebeach•31m ago•0 comments

Turn off and restrict access to Apple Intelligence features on Mac

https://support.apple.com/guide/mac-help/turn-restrict-access-apple-intelligence-mchlb2e44f94/mac
7•alwillis•32m ago•2 comments

Arguing about Arguments

https://steveklabnik.com/writing/arguing-about-arguments/
4•steveklabnik•32m 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!