frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stop Posting About Claude Getting Worse, You're Embarrassing Yourselves

https://mdelcaro.substack.com/p/stop-posting-about-claude-getting
1•fathermarz•2m ago•0 comments

OpenAI CEO apologizes to Tumbler Ridge community

https://techcrunch.com/2026/04/25/openai-ceo-apologizes-to-tumbler-ridge-community/
1•latein•3m ago•0 comments

North American Millets Alliance(2023)

https://milletsalliance.org/
1•num42•4m ago•0 comments

Architecture of Honesty, Why Claude Swept Seven Rounds

https://sso.accounts.dowjones.com/login-page?scope=openid+profile+email+pib+is_dowjones_employee&...
1•Paodim•4m ago•0 comments

Research Topics in AI and ML in 2026 and Their Philosophical Connections

https://omseeth.github.io/blog/2026/philosophy_2026/
1•philoai•5m ago•0 comments

Mine, an IDE for Coalton and Common Lisp

https://coalton-lang.github.io/mine/
1•varjag•6m ago•0 comments

After 5000 applications, 1000s of rejections got an offer – tech UK

https://www.youtube.com/watch?v=RRGOAj2dEX4
1•shaanuknow•7m ago•1 comments

The longest train journey in the EU

https://jonworth.eu/the-longest-train-journey-in-the-eu/
2•fanf2•11m ago•0 comments

Claude Mythos: The first AI-native cyberweapon?

https://en.landingfymax.com.br/cybersecurity/claude-mythos-ai-cyber-weapon-2026
1•EvCarvalho•12m ago•0 comments

An amateur just solved a 60-year-old math problem–by asking AI

https://www.scientificamerican.com/article/amateur-armed-with-chatgpt-vibe-maths-a-60-year-old-pr...
1•pr337h4m•12m ago•0 comments

Count tokens, model compatibility, and estimated costs

https://howmanytokens.app/
1•walidio•13m ago•0 comments

Swift-bridge facilitates Rust and Swift interop

https://github.com/chinedufn/swift-bridge
1•dlahoda•15m ago•0 comments

Ask HN: How to think in terms of parallel Claude agents

2•gndp•17m ago•0 comments

Why Maine's Governor Just Killed a Pioneering Data Center Moratorium

https://www.motherjones.com/politics/2026/04/maine-data-center-janet-mills-veto/
1•cdrnsf•18m ago•1 comments

Sense, local code intelligence for AI coding agents

https://luuuc.github.io/sense/
1•luuuc•19m ago•0 comments

I found an old telephone and made it control Spotify

https://natya.is-a.dev/the-beetel/
1•birdculture•19m ago•0 comments

FSF Position on "Ethical" AI

https://www.fsf.org/blogs/licensing/rail-are-nonfree-and-unethical
1•j_m_b•20m ago•0 comments

The AI Compute Crunch Is Here (and It's Affecting the Economy)

https://www.404media.co/the-ai-compute-crunch-is-here-and-its-affecting-the-entire-economy/
1•Brajeshwar•20m ago•0 comments

Scientists are worried about Atlantic Meridional Overturning Circulation slowing

https://www.cbc.ca/news/science/amoc-slowdown-9.7176387
6•pseudolus•20m ago•0 comments

"Wealth inflation" has led to "elite overproduction"

https://greyenlightenment.com/2026/02/07/wealth-inflation-leads-to-elite-overproduction/
2•paulpauper•22m ago•0 comments

Claude OAuth

https://developer.puter.com/tutorials/claude-oauth/
1•ent101•22m ago•0 comments

Ada Palmer's "Inventing the Renaissance"

https://pluralistic.net/2026/04/25/machiavellian/
1•hn_acker•25m ago•0 comments

Chatnik: LLM Host in the Shell

https://rakuforprediction.wordpress.com/2026/04/25/chatnik-llm-host-in-the-shell-part-1-first-exa...
2•librasteve•25m ago•0 comments

Tabularis: A lightweight, cross-platform database client for developers

https://github.com/TabularisDB/tabularis
1•thunderbong•26m ago•0 comments

The implementation of Carrier Pigeon Internet Protocol RFC1149 25 years later

https://bsdly.blogspot.com/2026/04/the-implementation-of-carrier-pigeon.html
1•zdw•27m ago•0 comments

A Brain Dump of What I Worked on for Uncharted 4 (2016)

https://allenchou.net/2016/05/a-brain-dump-of-what-i-worked-on-for-uncharted-4/
1•downbad_•30m ago•1 comments

Show HN:I built a deterministic 10k-node VRP solver on a $100 phone

1•CTSuwan•31m ago•0 comments

Hokusai and Tesselations

https://dl.ndl.go.jp/pid/1899550/1/11/
6•srean•31m ago•1 comments

Clean energy pushes fossil-fuel power into reverse for 'first time ever'

https://www.carbonbrief.org/clean-energy-pushes-fossil-fuel-power-into-reverse-for-first-time-ever/
4•xbmcuser•32m ago•1 comments

Simulacrum of Knowledge Work

https://blog.happyfellow.dev/simulacrum-of-knowledge-work/
2•thehappyfellow•32m 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•1y ago

Comments

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