frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Agent Canvas

https://www.openhands.dev/blog/introducing-agent-canvas
1•joshcsimmons•59s ago•0 comments

Show HN: Browser LLM Fit

1•init0•2m ago•0 comments

Ban Infinite Scrolling

https://www.rubenerd.au/ban-infinite-scrolling/
2•theorchid•4m ago•0 comments

Global regularity problem for the incompressible three-dimensional Navier-Stokes

https://terrytao.wordpress.com/2026/09/07/finite-time-blowup-with-smooth-forcing-term-for-the-inc...
2•digital55•7m ago•0 comments

A Highly Productive Dark Age: The Impact of AI on Mathematics

https://ev12183725.substack.com/p/a-highly-productive-dark-age
2•ceh123•9m ago•0 comments

OpenAI claims maths breakthrough on a famed 'Millennium Problem'

https://www.nature.com/articles/d41586-026-02842-5
1•Gedxx•10m ago•1 comments

One decision put Ruby into a downward spiral. It's not too late to fix it

https://rubyai.beehiiv.com/p/one-decision-put-ruby-into-a-downward-spiral-it-s-not-too-late-to-fi...
3•MattRogish•11m ago•0 comments

Elon Musk told ex-girlfriend he needed 'a legion of kids before the civil war'

https://www.theguardian.com/film/2026/sep/08/elon-musk-ashley-st-clair-documentary-venice
3•hackerbeat•14m ago•0 comments

If LLMs can't write, I doubt it can lead us to AGI

https://www.thetrueengineer.com/p/i-tested-every-ai-model-the-same
3•adletbalzhanov•16m ago•0 comments

Java and Polyglot Microservice Benchmarks (K6 Load Test)

https://ozkanpakdil.github.io/test-microservice-frameworks/posts/2026/2026-09-05-microservice-fra...
1•ejboy•16m ago•0 comments

How to Build a Printer

https://nishantjosh.dev/blogs/how-to-build-a-fking-printer/
1•cat-whisperer•16m ago•0 comments

iPhone Ultra accessories

https://dbrand.com/search/device/iphone-ultra
1•thijsr•18m ago•0 comments

Astra is fully rolled out to Plus, Pro, Business, and Enterprise users

https://twitter.com/OpenAI/status/2097431322117476423
1•vertigoruntime•19m ago•0 comments

New England Lighthouses

https://mapped.earth/lighthouses/new-england
2•MarcoDewey•21m ago•0 comments

Show HN: SimpleW – Lightweight C# Web Server with optional addons

https://simplew.net/
1•prodbro•22m ago•0 comments

There will only be four jobs

https://99d.substack.com/p/there-will-only-be-four-jobs
1•jacoblb64•24m ago•0 comments

Meta Just Launched Muse

4•Qhloi•24m ago•5 comments

China-Based AI Companies Using Distillation at Scale Against US AI Companies

https://www.cisa.gov/news-events/cybersecurity-advisories/aa26-251a
2•GrinningFool•24m ago•0 comments

Songspot – How Fast Can You Name a Track?

https://playdaily.org/songspot
2•WaterlooWarrior•25m ago•0 comments

Ask HN: As AI becomes more capable what's the value of knowledge?

1•mettamage•26m ago•2 comments

Ineffable Intelligence adds six cofounders

https://fortune.com/2026/09/07/ineffable-intelligence-hires-cofounders-hiring-google-deepmind-ins...
1•derangedHorse•26m ago•0 comments

ChatGPT Is Apologetic, Claude Is Self-Righteous, Both Need a Human Translator

https://correresmidestino.com/you-still-need-a-human-translator/
1•frizlab•26m ago•0 comments

JasyPDF – Create PDFs easier than ever

https://jasy.dev/
1•eustoria•27m ago•0 comments

Build the semantic layer for agents instead of people

https://www.angellist.com/blog/the-semantic-layer-nobody-maintains
1•jmrothrock_3•28m ago•0 comments

A Pageflip/Flipbook Custom Element Powered by HTML-in-Canvas

https://www.bram.us/2026/09/02/html-in-canvas-pageflip/
1•eustoria•28m ago•0 comments

California winemaker Tom Rinaldi has died

https://www.sfchronicle.com/food/wine/article/tom-rinaldi-duckhorn-obituary-22422146.php
1•brandonb•28m ago•1 comments

Show HN: Blackholes – A macOS workspace for coding agents

https://blackholes.dev
1•andygeek•30m ago•0 comments

Ask HN: I can't submit and my account is from 2024

1•ahmedhossamdev•31m ago•1 comments

Urban congestion relief experiments through routing-app interventions

https://www.nature.com/articles/s44284-026-00443-x
1•bhouston•32m ago•0 comments

Ask HN: What is your best Agent Skill?

1•kingkongjaffa•33m ago•2 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!