frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I built a 30-second dinner decider because weeknight decision fatigue is real

https://orla-app-swart.vercel.app/
1•HoneyBarny•26s ago•0 comments

ISS: Instant Space Switcher for macOS

https://github.com/joshuarli/iss
1•fanf2•6m ago•0 comments

Head-mounted VR hardware will never happen, says Neal Stephenson

https://www.theregister.com/2026/03/24/neal_stephenson_death_of_metaverse/
1•jjgreen•9m ago•0 comments

Arm to host 'Arm Everywhere' event and webcast

https://newsroom.arm.com/news/arm-everywhere-event
2•makerofthings•10m ago•0 comments

Show HN: Using the Web Audio API to simulate various tuning forks

https://github.com/evoluteur/healing-frequencies
1•evoluteur•11m ago•0 comments

Local Bernstein theory, and lower bounds for Lebesgue constants

https://terrytao.wordpress.com/2026/03/23/local-bernstein-theory-and-lower-bounds-for-lebesgue-co...
1•jjgreen•11m ago•0 comments

Microsoft's "Fix" for Windows 11: Flowers After the Beating

https://www.sambent.com/microsofts-plan-to-fix-windows-11-is-gaslighting/
3•h0ek•12m ago•0 comments

Users Quit ChatGPT for Claude in 1,487% Surge

https://www.forbes.com/sites/rachelwells/2026/03/23/users-quit-chatgpt-for-claude-in-1487-surge-h...
3•doener•13m ago•0 comments

Comb Shaped Slices: Why I'm not picking a vertical

https://paolino.me/comb-shaped-slices/
1•earcar•15m ago•0 comments

Review AI agent changes locally before you push

https://github.com/gdaybrice/linemark
1•gdaybrice•15m ago•0 comments

Following 94M Relationships Down the Rabbit Hole on Your Local PC

https://graphscope.io/blog/tech/2026/03/24/Following-94-Million-Relationships
3•robeenly•16m ago•1 comments

These Beeps Started in 1924

https://twitter.com/robertgraham/status/2036208633814639088
1•tosh•16m ago•0 comments

UK's Trustpilot fined $4.6M by Italian regulator for misleading consumers

https://www.reuters.com/business/italy-fines-trustpilot-46-million-misleading-consumers-2026-03-23/
1•giuliomagnifico•18m ago•0 comments

Show HN: I built DoodleDuel, a free browser drawing game with an AI judge

https://doodleduel.co/?a=9000
1•yagelar•20m ago•2 comments

Sand Under a Microscope – Magnified Sand Photos

https://magnifiedsand.com/
3•thunderbong•22m ago•0 comments

We almost bought an automation platform. Cowork was one

https://barazany.dev/blog/we-already-had-the-automation-platform
1•barazany•24m ago•0 comments

Ask HN: Founders of estonian e-businesses – is it worth it?

1•udl•25m ago•0 comments

Rapprochement between Hyperion and Amiga; OS 3.2 available again

https://amiga-news.de/en/news/AN-2026-03-00108-EN.html
1•doener•28m ago•1 comments

OpenAI Parameter Golf Challenge

https://openai.com/index/parameter-golf/
2•mellosouls•30m ago•0 comments

I built a free web tool to generate Kubernetes YAML for Podman play kube

https://podman-generator.rzen.at/
2•Garfieldttt•38m ago•1 comments

Ask HN: Depending on AI for anything important is a horrible idea, agree?

2•roschdal•39m ago•0 comments

Porting Doom to ESP32-P4 Using Doom Generic

https://github.com/alexkid77/ESP32P4DOOM
1•alexkid777•41m ago•1 comments

Show HN: VeilVault – an Android password manager built to stay local

https://veilvault.codeveil.de/index.en.html
1•codeveil•42m ago•1 comments

Someone has publicly leaked an exploit kit that can hack iPhones

https://techcrunch.com/2026/03/23/someone-has-publicly-leaked-an-exploit-kit-that-can-hack-millio...
1•simonebrunozzi•44m ago•1 comments

Show HN: I built the modern, clean and AI native linktree app

https://linkroot.space
1•IsruAlpha2•45m ago•0 comments

Russian Authorities Block Archive.today

https://techcrunch.com/2026/03/23/russian-authorities-block-paywall-removal-site-archive-today/
1•treebrained•47m ago•0 comments

Show HN: Overlay map tiles onto Autodesk's 3D BIM Viewer

https://github.com/infra-plan/bim-tile-overlay
1•gubets•48m ago•0 comments

Have You Paid Your "Intuit Tax"?

https://www.thenation.com/article/politics/tax-season-income-wealth-data/
1•petethomas•53m ago•0 comments

The US government just banned consumer routers made outside the US

https://www.theverge.com/news/899172/fcc-foreign-router-ban
4•bennett_dev•56m ago•0 comments

An end-to-end AI drug discovery platform – accessible to anyone

https://orac-nt-core.onrender.com/
3•DREDREG•56m 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•11mo ago

Comments

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