frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The noise we make is hurting animals. Can we learn to shut up?

https://www.technologyreview.com/2026/04/16/1135179/anthropogenic-noise-hurting-animals/
4•joozio•5m ago•0 comments

BioNTech Antibody-Drug Demonstrated Clinically Meaningful Efficacy

https://investors.biontech.de/news-releases/news-release-details/biontech-and-dualitybios-antibod...
3•doener•6m ago•0 comments

Ask HN: How to disable ANSI color sequences in Claude CLI?

1•notpachet•6m ago•0 comments

The engineering behind BMW's next-gen hydrogen tanks [video]

https://www.youtube.com/watch?v=cGdmTt1GBYs
1•simonebrunozzi•7m ago•0 comments

The Web Is an Antitrust Wedge

https://infrequently.org/2026/04/the-web-is-an-antitrust-wedge/
1•aragilar•8m ago•0 comments

I Stay Sane Running a 'Default Dead' Startup

https://jannikweyrich.com/blog/2026/04/16/how-to-stay-sane-running-a-default-dead-startup.html
1•commanderj•10m ago•1 comments

P2: Object Storage Server with S3 Compatible API, MIT License

https://github.com/Suleman-Elahi/p2
1•isuleman•11m ago•1 comments

Show HN: I'm building Eigen, a self-hosted Google Workspace alternative

https://reindernijhoff.net/2026/04/eigen-six-months-later/
1•reindernijhoff•12m ago•1 comments

Ral: A shell grounded in programming language theory

https://lambdabetaeta.github.io/ral/
1•statusfailed•13m ago•1 comments

David Pierce Tried a Bunch of Android Phones and Then Bought an iPhone Again

https://daringfireball.net/2026/04/piece_android_iphone_apps
1•chalst•19m ago•0 comments

Ask HN: How does one get rich in Q2 2026?

1•roschdal•20m ago•0 comments

Second Skin [video]

https://www.youtube.com/watch?v=QIdiTzjIuII
1•simonebrunozzi•20m ago•0 comments

xsimd: C++ Wrappers for SIMD Intrinsics

https://github.com/xtensor-stack/xsimd
1•tosh•21m ago•0 comments

Show HN: Haindy, a CLI that gives coding agents computer use

https://github.com/Haindy/haindy
1•fkeegan•22m ago•0 comments

The Age of Snarky UI

https://thoughtbot.com/blog/the-age-of-snarky-ui
2•sondr3•22m ago•0 comments

Windsurf 2.0

https://windsurf.com/blog/windsurf-2-0
2•beaylott•23m ago•0 comments

Show HN: I built this to help me learn Duo in Crimson Desert

https://duodegen.vercel.app
1•pj4533•24m ago•0 comments

UK PM Starmer tells social media firms in No 10 meeting 'things can't go on ...

https://www.theguardian.com/uk-news/2026/apr/16/keir-starmer-social-media-firms-no-10-meeting
2•chrisjj•30m ago•2 comments

A brief generational overview of the tech industry

1•5color•31m ago•0 comments

Node.js 24.15.0 (LTS)

https://nodejs.org/en/blog/release/v24.15.0
1•salkahfi•32m ago•0 comments

Ancient DNA reveals pervasive directional selection across West Eurasia [pdf]

https://reich.hms.harvard.edu/sites/reich.hms.harvard.edu/files/inline-files/2026_Akbari_Nature_s...
7•Metacelsus•33m ago•1 comments

Cascade – Typed CSS AST, Parser, Pretty-Printer, and Optimiser for OCaml

https://github.com/samoht/cascade
2•TheWiggles•34m ago•0 comments

How to install Microsoft Office in any Linux distribution

https://gist.github.com/eylenburg/38e5da371b7fedc0662198efc66be57b
4•nogajun•36m ago•0 comments

Silicon Valley's Billion Dollar Design Scams [video]

https://www.youtube.com/watch?v=hDvAQf1cnr8
4•lionkor•38m ago•0 comments

AI cybersecurity is not proof of work

https://antirez.com/news/163
6•surprisetalk•42m ago•0 comments

Learn to Show Our Friendship for a Man When He Is Alive and Not After He Is Dead

https://daringfireball.net/2026/04/when_he_is_alive_and_not_after_he_is_dead
4•chalst•44m ago•0 comments

Show HN: Memorable – On-device AI search for iPhone photos, videos, screenshots

https://apps.apple.com/us/app/memorable-ai-photo-search/id6762152034
2•gautamdhameja•44m ago•0 comments

I built a school management system to replace spreadsheets and WhatsApp

https://edunationapp.com/launch
3•marjanatanasov•45m ago•0 comments

Codex Hacked a Samsung TV

https://blog.calif.io/p/codex-hacked-a-samsung-tv
19•campuscodi•45m ago•13 comments

Show HN: Fleeks – Build anything, Deploy Anywhere.

https://docs.fleeks.ai/quickstart/introduction
1•VictorMU•46m 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!