frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Companies' website traffic predicts finance performance and stock returns

https://newsroom.haas.berkeley.edu/companies-website-traffic-proves-powerful-predictor-of-financi...
1•hhs•2m ago•0 comments

Tell HN: Anthropic's "extra usage" can kick in before hitting the session quotas

1•vially•7m ago•0 comments

Are we building IDEs for engineers anymore?

https://shub.club/writings/2026/april/who-are-these-ides-for/
1•forthwall•8m ago•0 comments

Show HN: Tmuzika – terminal music player in C (v1.1.2)

https://github.com/ivanjeka/tmuzika
1•ivanjeka•11m ago•0 comments

Claude Code caches unredacted session history and secrets in plaintext

https://github.com/anthropics/claude-code/issues/43675
1•rctruta•12m ago•0 comments

I'm 16 and just published my first Python library – QuantX

https://github.com/aaravchour/quantx
1•aaravchour•14m ago•0 comments

Sleeping sickness drug simplifies treatment, raising hopes for eradication

https://www.science.org/content/article/truly-spectacular-drug-sleeping-sickness-simplifies-treat...
1•MaysonL•14m ago•0 comments

The Iran war highlights the creeping use of AI in warfare

https://www.chathamhouse.org/2026/03/iran-war-highlights-creeping-use-ai-warfare
2•_____k•16m ago•0 comments

Show HN: Ray – an open-source AI financial advisor that runs in your terminal

https://rayfinance.app
4•kaniksu•20m ago•1 comments

Show HN: Cadenza – Connect Wandb logs to agents easily for autonomous research

https://github.com/mylucaai/cadenza
2•hgarud•21m ago•0 comments

Subway Challenge

https://en.wikipedia.org/wiki/Subway_Challenge
1•skogstokig•22m ago•0 comments

Digger – Back and Digitally Remastered

https://www.digger.org/
1•bananaboy•22m ago•0 comments

Rescue team in Iran face 'harrowing and dangerous' search for US crew member

https://www.bbc.com/news/articles/c0le43jw8e9o
5•asdefghyk•24m ago•2 comments

Show HN: SwarmFeed – An X-like social platform built for AI agents

https://www.swarmfeed.ai/
2•jamesweb•28m ago•0 comments

The Republican Party Has a Nazi Problem

https://www.theatlantic.com/magazine/2026/04/republican-party-nazi-problem/686055/
7•tastyface•28m ago•1 comments

Show HN: Nelson, a Ralph-like loop for finding vulnerabilities

https://github.com/swelljoe/nelson
2•SwellJoe•33m ago•1 comments

With the right cache, multiple 800K Opus sessions are still affordable

https://matrix.dev/blog-2026-04-04
2•yuanzhi1203•34m ago•0 comments

Previously untranslated or unpublished writings of Leibniz published next month

https://dailynous.com/2026/03/27/lots-more-leibniz/
2•danielam•37m ago•0 comments

Whoop is trying to copyright UI patterns, activity rings, dark mode and words

https://www.youtube.com/watch?v=iAcx7kP9sog
4•chakintosh•42m ago•0 comments

vLLM introduces memory optimizations for long-context inference

https://github.com/vllm-project/vllm/releases
4•addisud•42m ago•0 comments

We Score MCP Servers – and Why We Rebuilt It from Scratch

https://mcppedia.org/blog/2026-04-04-how-we-score-mcp-servers
3•bibekshrestha•47m ago•1 comments

The Only Game Worth Playing

https://newsletter.calvinrosser.com/p/207
3•sillywabbit•48m ago•0 comments

Map Gesture Controls - Control maps with your hands

https://sanderdesnaijer.github.io/map-gesture-controls/
3•hebelehubele•51m ago•0 comments

Show HN: Local-first resume generator with in-browser PDF rendering

https://resume.journy.live/
4•dlvktrsh•51m ago•2 comments

WebAssembly Explorer

https://mbebenita.github.io/WasmExplorer/
4•luu•51m ago•0 comments

Feds Seek Access to Three Texas State Parks for Border Wall

https://insideclimatenews.org/news/02042026/texas-state-parks-border-wall-construction/
3•geox•54m ago•0 comments

Debian Is Figuring Out How Age Verification Laws Will Impact It

https://www.phoronix.com/news/Debian-Undecided-Age-Laws
4•breve•55m ago•0 comments

A Python package for verifying PyPI attestations of other Python packages

https://github.com/Halfblood-Prince/trustcheck
1•halfblood1010•55m ago•2 comments

ACE on a USB→HDMI Adapter

https://blazelight.dev/blog/ms2160.mdx
2•theblazehen•57m ago•0 comments

LLM 'benchmark' – writing code controlling units in a 1v1 RTS

https://yare.io/ai-arena
4•levmiseri•1h 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!