frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Linux Kernel Tree About to Hit 40M Lines

https://www.phoronix.com/news/Linux-Kernel-Nearly-40M
1•speckx•46s ago•0 comments

The Prompt API

https://developer.chrome.com/docs/ai/prompt-api
1•gslin•1m ago•0 comments

Agentic Workforce Framework, an operating model for autonomous agent teams

https://github.com/rayyagari2-create/agentic-workforce-framework
2•rayyagari•10m ago•0 comments

Notepad++ for Mac

https://notepad-plus-plus-mac.org/
2•jonbaer•13m ago•1 comments

Show HN: Friendly prediction markets to turn trips into a running tournament

https://bets.bernikins.com/
2•k0rm•14m ago•0 comments

Kenya's Sabastian Sawe is first person to run sub-2-hour marathon

https://www.npr.org/2026/04/26/nx-s1-5800057/kenya-sabastian-sawe-first-person-2-hour-marathon-lo...
1•ejp•14m ago•0 comments

EvanFlow – A TDD driven feedback loop for Claude Code

https://github.com/evanklem/evanflow
2•evanklem2004•23m ago•0 comments

TurboQuant: A First-Principles Walkthrough

https://arkaung.github.io/interactive-turboquant/
1•kweezar•25m ago•0 comments

Language Anchoring: A Systematic Method for LLM Multilingual Adaptation

https://github.com/fkyah3/opencode-fkyah3
1•fkyah3•30m ago•0 comments

Smolwebifying My Site

https://akselmo.dev/posts/smolwebifying-my-site/
2•vinipolicena•34m ago•0 comments

Internet Graveyard

https://internetgraveyard.vercel.app/
3•thebigship•36m ago•0 comments

A better Kubernetes, from the ground up (2020)

https://blog.dave.tf/post/new-kubernetes/
3•Wingy•38m ago•0 comments

Blog Is a Radio Station

https://blog.jimgrey.net/2026/04/23/your-blog-is-a-radio-station/
2•foxfired•45m ago•0 comments

Show HN: The Unix Magic poster, annotated (updated)

https://github.com/drio/unixmagic
5•drio•47m ago•0 comments

SpaceX warns probes into abusive AI imagery could cause headaches for IPO

https://nypost.com/2026/04/24/business/elon-musks-spacex-warns-probes-into-sexually-abusive-ai-im...
4•1vuio0pswjnm7•51m ago•0 comments

From super powder to super power

https://www.scmp.com/news/china/science/article/3350906/super-powder-super-power-can-china-plasma...
2•xnhbx•56m ago•0 comments

Protein-templated synthesis of dinucleotide repeat DNA by antiphage RT

https://www.science.org/doi/10.1126/science.aed1656
2•xnhbx•1h ago•0 comments

Sama: Feels like a good time to seriously rethink OS

https://twitter.com/sama/status/2048428561481265539
3•tmzt•1h ago•0 comments

The Fourth Beta of Android 17

https://android-developers.googleblog.com/2026/04/the-fourth-beta-of-android-17.html
1•flykespice•1h ago•0 comments

Aether – A GCP-Native Framework to Terminate LLM Agent Drift

https://github.com/poinsettiaclg-gif/AETHER-core
1•Painsettia•1h ago•1 comments

What I Did In The Hedonium Shockwave, by Emma, aged 6 and a half

https://ozybrennan.substack.com/p/what-i-did-in-the-hedonium-shockwave
2•barry-cotter•1h ago•0 comments

Parental Controls

https://www.tumblr.com/luminousalicorn/814990078758830080/parental-controls
1•dado3212•1h ago•0 comments

The biggest insect ever was a "dragonfly"

https://eartharchives.org/index.html
2•anjel•1h ago•0 comments

Coding agents ignore their own budgets

https://twitter.com/RampLabs/status/2046624992956146158
2•gmays•1h ago•0 comments

Software engineering may no longer be a lifetime career

https://www.seangoedecke.com/software-engineering-may-no-longer-be-a-lifetime-career/
5•milkglass•1h ago•1 comments

After three months on Linux, I don't miss Windows at all

https://www.theverge.com/tech/918797/switched-to-linux-dont-miss-windows
5•Brajeshwar•1h ago•0 comments

The reporters at this news site are AI bots. OpenAI appears to be funding it

https://modelrepublic.substack.com/p/the-reporters-at-this-news-site-are
9•Teever•1h ago•0 comments

Liebherr delivers electric excavator to Bulgarian copper mine

https://electrek.co/2026/04/26/liebherr-delivers-330-ton-electric-excavator-to-bulgarian-copper-m...
3•y1n0•1h ago•0 comments

ChatGPT solves Erdos Problem 1176 in 80 minutes

https://chatgpt.com/share/69dd1c83-b164-8385-bf2e-8533e9baba9c
3•voisin•1h ago•0 comments

Blood vessels found in T. rex bones are rewriting dinosaur science

https://www.sciencedaily.com/releases/2026/04/260426012259.htm
4•y1n0•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•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_•1y 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•1y 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_•1y ago
That sounds great!