frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Making a movie in pure SVG using SMIL

https://www.zeyaddeeb.com/experiments/wes-anderson
1•zdeeb•1m ago•0 comments

Question for the Feds from Vanderbilt: Can We Start a Federal Drone Research?

https://jeniffergatesforuspresidentforlife.com
1•wapiou•2m ago•0 comments

Air pollution spiked 30% since US stopped worldwide embassy monitoring in 2025

https://www.npr.org/2026/09/15/nx-s1-5966503/air-pollution-spiked-after-the-trump-administration-...
1•ck2•3m ago•0 comments

A 40-year-old bug in BSD Unix domain socket inode allocation discovered on the D

https://yuvalino.com/how-can-you-not-be-romantic-about-unix-domain-sockets
1•fanf2•4m ago•0 comments

How Americans think about censorship of news in the U.S.

https://www.pewresearch.org/journalism/2026/09/15/how-americans-think-about-censorship-of-news-in...
1•iamnothere•5m ago•0 comments

Smooth Exponentials for Robotics

https://evjang.com/2026/09/10/smooth-exponential.html
1•seafoam•6m ago•0 comments

Can an AI chatbot replace human connection?

https://www.scientificamerican.com/podcast/episode/are-ai-chatbots-making-us-less-human/
1•the-mitr•6m ago•0 comments

Pulley is shutting down and will cease all operations and services on Dec 8th

2•svcrunch•7m ago•0 comments

Mark: A journey to the heart of history's largest nonterritorial empire

https://colossus.com/article/mark-zuckerberg-profile/
1•paulpauper•7m ago•0 comments

Polanyi Knowledge and AI

https://arnoldkling.substack.com/p/polanyi-knowledge-and-ai
1•paulpauper•8m ago•0 comments

The striking thing is how late the market moved

https://marginalrevolution.com/marginalrevolution/2026/09/the-striking-thing-is-how-late-the-mark...
1•paulpauper•8m ago•0 comments

Gemini 3.8 Live and 3.8 Live Extended Thinking

https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-8-live-gemini-3-...
2•leumon•8m ago•0 comments

Revolut data breach affected nearly 700 clients

https://finance.yahoo.com/markets/crypto/articles/revolut-data-breach-affected-nearly-210459839.html
2•theNotFractured•8m ago•0 comments

How do we prevent mathemathics from devolving into the Medieval Era of secrecy?

https://mathoverflow.net/questions/515260/how-do-we-prevent-mathematics-from-devolving-into-the-m...
1•jjgreen•9m ago•0 comments

Dystopian Surveillance Is Becoming a Reality

https://dallincrump.com/dystopian-surveillance-is-becoming-a-reality
30•speckx•9m ago•2 comments

Why I'm still bearish on LLMs after navier-stokes

https://dank.systems/posts/2026-09-15-ai-bear.html
2•jaykru•9m ago•1 comments

Reddit Is Still Useful. It's Also Becoming Impossible

https://widdershins.verja.net/reddit-is-still-useful-its-also-becoming-impossible/
3•speckx•12m ago•0 comments

Your brain is a special snowflake and experience might help shape it

https://neurofrontiers.blog/your-brain-is-a-special-snowflake/
1•lentoutcry•13m ago•0 comments

Lyric – Windows dictation with a guard against LLM hallucinations

https://cachedhostiong.net/lyric
1•CH-Lyric•13m ago•0 comments

Show HN: Self-adjusting vLLM at production scale

https://twitter.com/yevr19/status/2099877116892307744
1•dmitriisn•14m ago•0 comments

Efficient Chips Alone Will Not Solve AI's Energy Problem

https://substack.com/profile/530005683-iveth/note/c-337835158
1•carolceli•15m ago•0 comments

Rightsholders Can't Use OpenAI and Anthropic to Dismantle Meta's Seeding Defense

https://torrentfreak.com/rightsholders-cant-use-openai-and-anthropic-to-dismantle-metas-seeding-d...
1•gslin•17m ago•0 comments

Show HN: Free tool that checks if your Etsy/Shopify listing is EU-ready

https://claude.ai/artifact/1rTtc9idTXFBcsuhPqJDoU
1•ReplyCraft•17m ago•0 comments

Fujitsu launches made-in-Japan next-generation CPU FUJITSU-MONAKA

https://global.fujitsu/en-global/pr/news/2026/09/14-02
1•my123•18m ago•0 comments

Qector-mega 2.2.1 – Sub-ms QEC decoding on a 2-core CPU with zero GPU needs

https://zenodo.org/records/22773113
1•QECTOR•18m ago•0 comments

Ask HN: Harness for Learning – Thoughts?

2•arvindm1991•18m ago•0 comments

Why Personal Websites Are Coming Back

https://deadparrotbbs.com/why-personal-websites-are-coming-back/
3•speckx•19m ago•0 comments

M6 Mac Mini on Geekbench

https://browser.geekbench.com/v7/cpu/354109
2•tosh•20m ago•0 comments

Pulley Is Shutting Down

https://pulley.com/guides/faq-what-is-happening-with-pulleys-shutdown
3•covi•21m ago•1 comments

PyMalbolge: Malbolge Interpreter in Python

https://github.com/Aiaid/pyMalbolge
1•notagoodidea•22m 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!