frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Independence Theorem

https://www.lesswrong.com/posts/MsjWPWjAerDtiQ3Do/on-the-independence-axiom
1•sieste•26s ago•0 comments

Gemini 3.1Pro is aggressive like a hungry wolf

https://old.reddit.com/r/GoogleAntigravityIDE/comments/1ru97bx/gemini_31pro_is_aggressive_like_a_...
1•cft•3m ago•0 comments

The women bringing chess into the 21st Century with bullet games & viral videos

https://www.bbc.co.uk/news/articles/ce3g0kel3jyo
1•mellosouls•5m ago•0 comments

Wow

1•yuvrajdahal•7m ago•0 comments

Show HN: Soorf, a natural language audio editor

https://soorf.xyz
1•copypirate•11m ago•0 comments

Pm2-manager: A modern, real-time web dashboard for your PM2 processes

https://github.com/orangecoding/pm2-manager
1•thunderbong•13m ago•0 comments

Boot, Prompt, Run: what happens to personal computing when sw writes itself

https://giampaolo.guiducci.it/posts/2026-03-15-boot-prompt-run/
2•gosub•15m ago•0 comments

Try an open-source MCP server for Postgres – win a Raspberry Pi

1•pgedge_postgres•16m ago•0 comments

Shield Messenger A Tor-native,P2P encrypted messenger with built-in Solana/Zcash

https://github.com/abokenan444/shield-messenger
1•abokenan444•24m ago•1 comments

AutoResearchClaw

https://github.com/aiming-lab/AutoResearchClaw
1•frozenseven•24m ago•0 comments

The Space Data Center Mass Budget Behind 10× Power Density

https://research.33fg.com/analysis/the-space-data-center-mass-budget-behind-10x-power-density
1•T-A•25m ago•0 comments

//go:fix inline and the source-level inliner

https://go.dev/blog/inliner
1•vismit2000•28m ago•0 comments

Claude Code tips for non-programmers

https://thewriting.dev/claude-code-isnt-just-for-developers/
1•r0rshrk•32m ago•0 comments

Three Claude Skills to Sharpen Judgment

https://age-of-product.com/three-ai-skills-to-sharpen-judgment/
1•swolpers•32m ago•0 comments

Hybrid AI Desktop Layer Combining DOM-Automation and API-Integrations

https://github.com/BiamOS/BiamOS
1•BiamOS•33m ago•1 comments

Jazzband Is Sunsetting

https://jazzband.co/
2•taubek•35m ago•0 comments

Base44 can now power any front end with standalone back end as a service

https://base44.com/blog/base44-backend-platform
1•yoavcwix•40m ago•0 comments

LocalCowork

https://github.com/Liquid4All/cookbook/tree/main/examples/localcowork
2•armcat•46m ago•0 comments

MaiaSpace: Europe steps up in the race for reusable rockets

https://www.euronews.com/my-europe/2026/03/13/maiaspace-europe-steps-up-in-the-race-for-reusable-...
1•vrganj•47m ago•0 comments

Str:::Lab Studio – run and test Flink SQL from the browser

https://coded-streams.github.io/strlabstudio/
1•nestormartourez•51m ago•1 comments

How LLMs and coding agents change the dynamics of adopting Rust

https://mdwdotla.medium.com/revisiting-rust-in-2026-ae8720cc7f2c
1•mad•52m ago•0 comments

Show HN: Fortress Language: Cybersecurity DSL

2•CzaxTanmay•54m ago•0 comments

Show HN: Voice-tracked teleprompter using on-device ASR in the browser

https://github.com/larsbaunwall/promptme-ai
1•lbaune•57m ago•1 comments

The O16g Manifesto – Outcome Engineering

https://o16g.com/manifesto/
1•stigi•57m ago•0 comments

When Is Enough?

https://ivanca.github.io/ai/elite/2026/03/15/when-is-enough/
1•AmbroseBierce•59m ago•0 comments

I built V2 of my AI answer generator

https://99helpers.com/tools/ai-answer-generator
2•nickk81•1h ago•1 comments

Home-Made Shock Diamond

https://physics.stackexchange.com/questions/41293/home-made-shock-diamond
1•whalee•1h ago•0 comments

Six ingenious ways how Canon DSLRs used to illuminate their autofocus points

https://exclusivearchitecture.com/03-technical-articles-CSDS-00-table-of-contents.html
2•ExAr•1h ago•1 comments

Britain's Populist Right Has Surrendered Its Mind to America

https://liambyrne.substack.com/p/take-back-control
3•tastyface•1h ago•0 comments

The enshittification of Amazon paperback books

https://www.alexerhardt.com/en/enshittification-amazon-paperback-books/
16•aerhardt•1h ago•4 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•10mo ago

Comments

semihs•10mo 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_•10mo 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•10mo 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_•10mo ago
That sounds great!