frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Fun Web page 3D visualization of laundry room status

https://www.aisloperator.com/brickoven-estates-laundry-room/
1•aisloperator•41s ago•0 comments

A Deep Dive into Herdr

https://flaviocopes.com/herdr/
1•markgavalda•1m ago•0 comments

Font looks perfectly normal to humans but wreaks havoc on AI

https://www.fastcompany.com/91585494/this-font-looks-perfectly-normal-to-humans-but-confuses-ai
1•root-parent•5m ago•0 comments

The Great AI Illusion: Why Your Demo Works, but Your Enterprise Agent Fails

https://allcloud.io/blog/the-great-ai-illusion-why-your-demo-works-but-your-enterprise-agent-fails/
1•mooreds•5m ago•0 comments

Bevy's Sixth Birthday

https://bevy.org/news/bevys-sixth-birthday/
1•dabinat•6m ago•0 comments

Zuckerberg: The Future Is for Everyone

https://about.fb.com/news/2026/08/the-future-is-for-everyone/
1•jaredwiener•6m ago•0 comments

Travel Itinerary Template

https://travelitinerarytemplate.org/
1•SuxYu•7m ago•0 comments

New way of QA testing AI-written code

https://abloh.dev
3•ThomasL123•8m ago•2 comments

Executive order calls for fewer childhood vaccines, links shots to autism

https://www.cnbc.com/2026/08/10/trump-vaccine-executive-order-autism.html
2•pseudolus•9m ago•0 comments

Meta open-sources Muse Glimmer: 30B agent model runs locally under 20GB VRAM

https://ainexusdaily.vercel.app
1•qrify_app•9m ago•0 comments

Is This Man the Picasso of Pointe Shoes?

https://www.nytimes.com/2026/07/27/arts/dance/nyc-ballet-tim-foster-pointe-shoes.html
1•gmays•13m ago•0 comments

Fauci warned of miscarriage risk Covid vaccine while publicly claiming no issues

https://nypost.com/2026/08/10/us-news/fauci-warned-of-miscarriage-risk-linked-to-covid-vaccine-wh...
3•bilsbie•13m ago•0 comments

Letter from Iddin-Sin to Zinu

https://en.wikipedia.org/wiki/Letter_from_Iddin-Sin_to_Zinu
1•handfuloflight•13m ago•0 comments

Go 1.27's Keyed Fields

https://towardsdev.com/i-stopped-writing-verbose-struct-literals-go-1-27s-keyed-fields-530419e9e5...
2•cheikhdev•14m ago•0 comments

Confessions of a Long-Distance Sailor

https://arachnoid.com/lutusp/sailbook.html
1•AntiRush•14m ago•0 comments

Don't classify, hallucinate!

https://softwaredoug.com/blog/2026/08/10/hypothetical-classifications
2•softwaredoug•17m ago•0 comments

RSI, AGI, and ASI: The Explainer and the Reality Check

https://sanjeevganjihal.substack.com/p/rsi-agi-and-asi-the-explainer-and
1•sanjeevg89•17m ago•0 comments

AgentThread: Multiplayer Hosted Hermes, each chat channel is a full container

https://agentthread.ai/
1•runrunlobster•20m ago•2 comments

Stop Killing Games: It's time to sue Sony, join us

https://www.massaschadeconsument.nl/collectieve-acties/playstation/
2•EDM115•20m ago•1 comments

Free Ideas (to hopefully make the world more interesting)

https://freeideas.net/
2•blobcode•22m ago•0 comments

Chronexis – crash reports that include the root cause and a patch

https://chronexis-web.onrender.com
1•alraies_hayder•24m ago•0 comments

Git-knife – edit commit messages, authors, and dates like a spreadsheet

https://github.com/TheRealYT/git-knife
1•YonathanTesfaye•24m ago•0 comments

Defense-in-Depth Isn't Lego: A Study in Linux Capabilities and Seccomps Filters

https://huxleybarbee.substack.com/p/defense-in-depth-isnt-lego
1•barbee•25m ago•0 comments

A (Not So) Brief but (Very) Accurate History of Oracle PL/SQL (2020)

https://oracle-internals.com/blog/2020/04/29/a-not-so-brief-but-very-accurate-history-of-pl-sql/
1•stmw•26m ago•0 comments

Source-Level Debugging for the Atari Lynx

https://brianpeek.com/gearlynx-debugger/
1•speckx•27m ago•0 comments

The Norway Problem in YAML

https://senthil.learntosolveit.com/posts/2026/08/10/the-norway-problem-in-yaml.html
2•orsenthil•27m ago•0 comments

Temperature Zero for Culture: Why Everything Is Starting to Look the Same

https://laurenleek.substack.com/p/temperature-zero-for-culture-why
3•mmarian•31m ago•0 comments

Sign of the Times: An Account of the First Tech Workers' Strike

https://longhaulmag.com/first-tech-workers-strike/
1•rray•34m ago•0 comments

The 12 Commandments of AI

https://lastcopy.ai/code/72
1•itsthecourier•35m ago•0 comments

Kitbash Acquires Artstation and Sketchfab from Epic Games

https://twitter.com/kitbash3d/status/2086875399137505679
2•bhouston•35m 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!