frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Evaluating S2S Model Quality with Human Preference Data

https://research.withdavid.ai/blog/st-s2s-eval
1•EliasLittle•1m ago•0 comments

"Start with a Monolith" Was Good Advice. AI Is Changing That

https://medium.com/scalar-engineering/architecture-in-the-ai-era-part-1-summary-start-with-a-mono...
1•feeblefakie•2m ago•0 comments

Snap launches $2,195 Specs smart glasses

https://finance.yahoo.com/technology/article/snap-launches-2195-specs-smart-glasses-234000058.html
1•geoffbp•3m ago•0 comments

DeepSeek-v4.1 Flash: Pushing the Limits of KV Cache Compression

https://zartbot.github.io/blog/model_arch/dsv41flash_arch/en.html
2•mfiguiere•3m ago•0 comments

What regulatory capture actually looks like

https://marginalrevolution.com/marginalrevolution/2026/09/what-regulatory-capture-actually-looks-...
1•maxutility•4m ago•0 comments

Tin: full-text search for Postgres

https://planetscale.com/blog/introducing-tin
1•gtCameron•9m ago•0 comments

Part-human part-mouse brain developed in science breakthrough

https://www.bbc.com/news/articles/c60m3k28j81mo
1•marc__1•10m ago•0 comments

Show HN: FastRecall, ultra-cheap memory across AI models

https://fastrecall.ai/
1•tomrose•11m ago•0 comments

Michael Burry slams OpenAI, Anthropic for 'self-serving' calls to slow AI

https://nypost.com/2026/09/14/business/big-short-trader-michael-burry-slams-openai-anthropic-for-...
5•nsagent•12m ago•0 comments

Spanish data watchdog publicises first AI agent-linked data breach report

https://www.reuters.com/business/spanish-data-watchdog-publicises-first-ai-agent-linked-data-brea...
2•geoffbp•14m ago•0 comments

Xcode-Project-Format

https://github.com/apple/xcode-project-format
2•interpol_p•15m ago•0 comments

Flowchart: How pixels become an Apple Reference Image

https://claude.ai/artifact/BcyyGRDRimvZgza7d9ts1c
1•alwillis•21m ago•0 comments

Supply Chain Compromise of Korean-Language Windows 11 Installation Media

https://www.logpresso.com/en/blog/2026-09-08-windows11-report-eng
1•ledoge•28m ago•0 comments

Pangram – AI detector for text and images

https://www.pangram.com
1•doodlesdev•30m ago•0 comments

Migrating the GitHub Copilot Runtime to Rust, Using Copilot

https://github.blog/ai-and-ml/generative-ai/migrating-the-github-copilot-runtime-to-rust-using-co...
3•abraham•31m ago•1 comments

Game UI Database

https://www.gameuidatabase.com
2•andsoitis•33m ago•0 comments

Found a B2B billing stack for my agency that doesn't feel like 2010

https://cordhq.app/
1•andrevalleo•34m ago•0 comments

Pro UI: native grade components for pro software

https://pro-ui.dev/
2•handfuloflight•35m ago•0 comments

Page Shield ML caught 4 storefront malware campaigns scanners missed

https://blog.cloudflare.com/client-side-security-finds-4-malicious-campaigns/
2•iamsyr•35m ago•0 comments

Why the Postpandemic Tech Bust Sent Billionaires to Trump

https://www.wired.com/story/against-tech-oligarchy-book-excerpt-trump-billionaries/
3•jacobolus•36m ago•0 comments

Hacker puts 'full redundancy' code-hosting firm out of business (2014)

https://www.pcworld.com/article/439918/hacker-puts-full-redundancy-codehosting-firm-out-of-busine...
1•doodlesdev•40m ago•0 comments

OpenAI Discloses Six New Incidents of ‘Concerning’ A.I. Behavior

https://www.nytimes.com/2026/09/16/technology/openai-model-safety-guardrails.html
24•jbegley•41m ago•8 comments

Math challenges a 2k-year-old story about Parthenon's optical illusions

https://phys.org/news/2026-09-mathematician-year-legend-parthenon-optical.html
1•wglb•41m ago•0 comments

Could Your Chatbot Be Stealing Ideas from You?

https://www.nytimes.com/2026/09/10/science/chatbot-stealing-ideas.html
2•bookofjoe•41m ago•1 comments

Weeping whales: Stillborn humpback whale grieving documented

https://phys.org/news/2026-09-whales-stillborn-humpback-whale-grieving.html
1•wglb•43m ago•0 comments

I gave my agents a heartbeat

https://mlsystemsri.com/insights/i-gave-my-agents-a-heartbeat
1•Salparvezml•43m ago•0 comments

Will AI Replace Your Doctor? Dr. Zeke Emanuel and AMA President Dr. John Whyte

https://www.youtube.com/watch?v=WTnZ6W7qsLQ
1•shamoo•51m ago•1 comments

A Large Database Does Not Mean Large Shared_buffers

https://www.keithf4.com/a-large-database-does-not-mean-large-shared_buffers/
2•b-man•55m ago•0 comments

Size-Specialized Memory Allocation

https://go.dev/blog/size-specialized-allocations
2•spacey•57m ago•0 comments

What's Scarier Than Agents Taking over Internet? CEO Cartel Trying Take over AI

https://fractalsofchange.substack.com/p/q-whats-scarier-than-a-swarm-of-ai
7•gz5•58m ago•1 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!