frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

'He is beyond psychiatric help' – the traumatic origins of JG Ballard

https://www.thetimes.com/culture/books/article/illuminated-man-life-death-worlds-jg-ballard-chris...
1•bookofjoe•3m ago•1 comments

MerJS: A Zig-native web framework that ships without Node

https://merlionjs.com
1•jedisct1•3m ago•0 comments

Lawsuits, licensing, and royalties are complicating 4K video support in gadgets

https://arstechnica.com/gadgets/2026/04/lawsuits-licensing-and-royalties-are-complicating-4k-vide...
1•zinekeller•8m ago•0 comments

Tesla owner uses emergency solar to trickle charge battery in desert

https://electrek.co/2026/04/18/tesla-model-x-solar-charging-atacama-desert-chile-pan-american-hig...
1•asymmetric•9m ago•0 comments

Show HN: AI Applyd – a bot that applies to jobs for you

https://aiapplyd.com/
1•sneefle•11m ago•1 comments

Tariff-refund portal is about to be America's hottest website

https://www.npr.org/2026/04/19/nx-s1-5786635/tariff-refunds-customs-ace-portal
1•geox•12m ago•0 comments

Building Immersive Stories with Timelines, 3D, and Layered Scenes

https://tympanus.net/codrops/2026/04/20/interactive-storytelling-for-the-web-building-immersive-s...
1•danielskogly•15m ago•0 comments

Idle CPU power management: cpuidle

https://www.cnx-software.com/2026/04/20/idle-cpu-power-management-cpuidle/
2•michelangelo•15m ago•0 comments

Reimagine Python Notebooks in the AI Era

https://mljar.com/blog/reimagine-python-notebook-in-ai-era/
1•pplonski86•15m ago•0 comments

Show HN: Overlapping Speaker Transcription Model

https://huggingface.co/Trelis/Chorus-v1
1•mcgov•18m ago•0 comments

Postgres copy-on-write branching explained

https://xata.io/blog/open-source-postgres-branching-copy-on-write
1•tee-es-gee•22m ago•0 comments

Show HN: Bridgerton Inspired Social Network

https://the-ton.vercel.app/login
1•vss01•24m ago•0 comments

Show HN: Malext.io is out – Database of malicious Chrome extensions

https://malext.io
1•toborrm9•25m ago•0 comments

Hospitals That Sue You for Getting Sick

https://healthcareuncovered.substack.com/p/hospitals-that-sue-you-for-getting
2•foolswisdom•28m ago•0 comments

Ask HN: Did Claude lowered its usage limits?

5•yu3zhou4•37m ago•1 comments

Show HN: Built a Chrome extension to help with daily agenda (Gmail and outlook)

1•websku•38m ago•0 comments

The Industry of the Future Is Run by People Who Hate Each Other

https://nymag.com/intelligencer/article/why-all-the-ai-leaders-hate-one-another.html
2•pseudalopex•40m ago•0 comments

Regulators monitor Anthropic's Mythos for banking risks

https://www.reuters.com/legal/government/regulators-monitor-anthropics-mythos-banking-risks-2026-...
4•01-_-•46m ago•0 comments

Your "AI" Pull Request was rejected and you don't know why

https://blog.codepipes.com/llms/your-pr-was-rejected.html
3•kkapelon•48m ago•1 comments

Figma's woes compound with Claude Design

https://martinalderson.com/posts/figmas-woes-compound-with-claude-design/
3•martinald•50m ago•0 comments

SerpApi Claude Code Skill

https://github.com/serpapi/serpapi-claude-plugin
3•jamescollinssp•51m ago•0 comments

A Proposed Framework for Evaluating AI Agent Skills

https://tessl.io/blog/a-proposed-framework-for-evaluating-skills-research-eng-blog/
2•popey•53m ago•0 comments

Ask HN: How to become better at software "engineering"?

4•luplex•1h ago•4 comments

The Victorian sex abuse scandal that shocked Britain and changed the law

https://theconversation.com/the-victorian-sex-abuse-scandal-that-shocked-britain-and-changed-the-...
2•zeristor•1h ago•0 comments

Signal Shot: verify the Signal protocol and its Rust implementation using Lean

https://leodemoura.github.io/blog/2026-4-20-signal-shot-the-platform-is-ready/
2•u1hcw9nx•1h ago•0 comments

List of Heaviest People

https://en.wikipedia.org/wiki/List_of_heaviest_people
2•keepamovin•1h ago•0 comments

Show HN: Radio4000

https://radio4000.com
1•ngc6677•1h ago•0 comments

M 7.4 earthquake – 100 km ENE of Miyako, Japan

https://earthquake.usgs.gov/earthquakes/eventpage/us6000sri7/
2•Someone•1h ago•0 comments

We Built a Metric Simulator

https://simpleobservability.com/blog/metric-simulator
1•khazit•1h ago•0 comments

NSA is using Anthropic's Mythos despite blacklist

https://www.reuters.com/business/us-security-agency-is-using-anthropics-mythos-despite-blacklist-...
44•Palmik•1h ago•16 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•12mo ago

Comments

semihs•12mo 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!