frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Kingman's Formula: Why Variability Kills Performance Before Capacity Does

https://steinacker.name/articles/kingmans-formula/
1•gsteinacker•1m ago•0 comments

Show HN: I Created an LLM Harness for Language Learning

https://language.coursely.ai/welcomee
1•MO-379•1m ago•0 comments

Reading Is Magic

https://samkriss.substack.com/p/reading-is-magic
1•gHeadphone•2m ago•0 comments

The Implementation of Functional Programming Languages (1987)

https://www.microsoft.com/en-us/research/publication/the-implementation-of-functional-programming...
1•downbad_•2m ago•1 comments

WordPress 7.0: The Good, the AI, and the Still Missing

https://adamgreenough.net/blog/wordpress-7-the-good-the-ai-the-missing/
1•taubek•2m ago•0 comments

'The Audacity' Is the Broligarchy Takedown You Were Waiting For

https://www.wired.com/story/the-audacity-is-the-broligarchy-takedown-you-were-waiting-for/
1•joozio•4m ago•0 comments

Kon – A tiny coding harness

https://github.com/0xku/kon
1•krumboy•6m ago•0 comments

Mystery Meat Navigation

https://en.wikipedia.org/wiki/Mystery_meat_navigation
2•microsoftedging•7m ago•0 comments

WordPress AI Theme Builder

https://shuffle.dev/wordpress-ai-theme-builder
1•kemyd•10m ago•0 comments

QBitcoin – Post-Quantum PoS Blockchain with NIST Kyber-768 and Dilithium3

https://github.com/xaviermas1976-ai/qbitcoin
1•xaviermas•10m ago•0 comments

Homelab

https://www.0xn1nja.dev/homelab
2•taubek•13m ago•0 comments

Show HN: Claudraband – Claude Code for the Power User

https://github.com/halfwhey/claudraband
4•halfwhey•13m ago•0 comments

The AI That Cares – Or Excludes?

https://comuniq.xyz/post?t=941
1•01-_-•19m ago•0 comments

Bread Cooperative and the Bloockchain Left

https://platform.coop/blog/what-makes-bread-real/
1•vvpan•22m ago•0 comments

Ask HN: What's your workflow for fixing "port in use" on Windows?

1•gh-automata•22m ago•0 comments

How HN: AndesCode – local AI coding assistant that runs offline

1•angarrido•22m ago•1 comments

What is a coder's worst nightmare? (2014)

https://www.quora.com/What-is-a-coders-worst-nightmare/answer/Mick-Stute?srid=RBKZ&share=1
2•downbad_•24m ago•2 comments

'I hate working 5 days': Zoom CEO traditional work schedules becoming obsolete

https://www.aol.com/finance/zoom-ceo-predicts-3-day-144202969.html
2•bilsbie•25m ago•0 comments

Real-Time, Streaming SQL Queries on Flight Data

https://modolap.com/publication/planes1
1•ronfriedhaber•29m ago•0 comments

DIY Soft Drinks

https://blinry.org/diy-soft-drinks/
1•_Microft•30m ago•0 comments

Deere settles US right-to-repair lawsuit with $99M fund, repair commitments

https://wincountry.com/2026/04/06/deere-settles-us-right-to-repair-lawsuit-with-99-million-fund-r...
1•ohjeez•30m ago•1 comments

Show HN: QueueForge – a self-hosted RabbitMQ dead-letter queue manager

https://queueforgehq.com
1•namrahov•35m ago•0 comments

Building a SaaS in 2026 Using Only EU Infrastructure

https://eualternative.eu/guides/building-saas-eu-stack/
64•sparkling•35m ago•12 comments

Want to help garden birds? Don't feed them in warmer months, says RSPB

https://www.bbc.co.uk/news/articles/c2lwvz1pl1no
2•c-oreills•38m ago•0 comments

Introducing Project Glasswing

https://www.linuxfoundation.org/blog/project-glasswing-gives-maintainers-advanced-ai-to-secure-op...
2•jruohonen•39m ago•2 comments

Show HN: Give your AI agent a preview link for files and diff

https://diff4.com/
1•djyde•39m ago•0 comments

Californians sue over AI tool that records doctor visits

https://arstechnica.com/tech-policy/2026/04/californians-sue-over-ai-tool-that-records-doctor-vis...
1•Bender•40m ago•0 comments

How Beyond Meat sank from a $14B plant-based protein powerhouse to a penny stock

https://www.marketwatch.com/story/how-beyond-meat-sank-from-a-14-billion-plant-based-protein-powe...
3•bookofjoe•41m ago•1 comments

IBM to pay $17M in anti-DEI settlement

https://www.cnn.com/2026/04/10/business/ibm-settlement-dei-lawsuit
2•Bender•42m ago•0 comments

Jim Allchin to Gates and Ballmer on the state of quality at Microsoft (2004)

https://twitter.com/TechEmails/status/1418248256937775105
1•Austin_Conlon•43m ago•1 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!