frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Your next 10 hires won't be human

https://github.com/multica-ai/multica
1•mercat•1m ago•0 comments

Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline

https://socket.dev/blog/axios-supply-chain-attack-reaches-openai-macos-signing-pipeline-forces-ce...
1•salkahfi•7m ago•0 comments

Gauss's Easter Algorithm

https://en.wikipedia.org/wiki/Date_of_Easter
1•ughitsaaron•7m ago•0 comments

The Seasons Are Wrong

https://kentwalters.com/posts/seasons/
1•NikxDa•8m ago•0 comments

Slately AI - All The Top Tier Models In One Place

https://slately.art
1•JonBoyd•12m ago•0 comments

What's the most painful sting in the world?

https://www.bbc.com/future/article/20260406-whats-the-most-painful-sting-in-the-world
1•rolph•13m ago•0 comments

Unleashing the Advantage of Quantum AI

https://quantumfrontiers.com/2026/04/09/unleashing-the-advantage-of-quantum-ai/
1•gmays•16m ago•0 comments

We're heading for an AI-fueled 'dementia crisis,' brain scientist warns

https://nypost.com/2026/04/10/health/brain-scientist-warns-were-heading-for-ai-fueled-dementia-cr...
3•1vuio0pswjnm7•18m ago•0 comments

Is it possible to live without killing?(2024)

https://worldbuilding.stackexchange.com/questions/254210/is-it-possible-to-live-without-killing
1•num42•20m ago•0 comments

A plan for Europe's tech fightback

https://www.economist.com/by-invitation/2026/04/09/a-plan-for-europes-tech-fightback
2•andsoitis•21m ago•0 comments

Book Summary: Learn Python the Hard Way

https://fagnerbrack.com/book-summary-learn-python-the-hard-way-c2da8a30bbe9
1•fagnerbrack•24m ago•0 comments

Meta boots law firm ads seeking clients to sue over alleged FB, IG addiction

https://nypost.com/2026/04/09/business/meta-boots-law-firm-ads-looking-for-clients-to-sue-over-al...
1•1vuio0pswjnm7•25m ago•1 comments

We Only Learn from Error

https://nathanclonts.com/we-only-learn-from-error/
1•kokopelli•28m ago•1 comments

Musk faces fresh opposition after landing permit for Mississippi power plant

https://www.cnbc.com/2026/04/10/musks-xai-draws-more-opposition-over-mississippi-power-plant-perm...
2•1vuio0pswjnm7•33m ago•0 comments

Show HN: HyperFlow – A self-improving agent framework built on LangGraph

2•lablnet•33m ago•0 comments

ESP32-P4 SIMD Explained

https://bitbanksoftware.blogspot.com/2026/04/esp32-p4-simd-explained.html
1•bitbank•35m ago•1 comments

Quien – A better WHOIS lookup tool

https://github.com/retlehs/quien/
7•bretthopper•1h ago•1 comments

The AI-Assisted Breach of Mexico's Government Infrastructure [pdf]

https://cdn.prod.website-files.com/69944dd945f20ca4a27a7c47/69d8bb5aea59e31efb3b8a7f_Tech_Report_...
2•kerng•1h ago•0 comments

How to Land the Space Shuttle from Space (2016) [video]

https://www.youtube.com/watch?v=Jb4prVsXkZU
1•iquatemb•1h ago•0 comments

Show HN: Vibescore – Grade your vibe-coded project A+ to F (one command)

https://github.com/stef41/vibescore
2•zach22•1h ago•0 comments

Show HN: Lmscan – Detect AI text and fingerprint which LLM wrote it (zero deps)

https://github.com/stef41/lmscan
1•zach22•1h ago•0 comments

IBM to pay $17M in anti-DEI settlement

https://www.cnn.com/2026/04/10/business/ibm-settlement-dei-lawsuit
4•empressplay•1h ago•2 comments

The Agents at USV: Arthur, Ellie, Sally, and Friends

https://blog.usv.com/meet-the-agents
2•wslh•1h ago•0 comments

Madadh – deterministic fail-closed control system for protected runtimes

https://madadh.systems
1•MADADAHSYSTEMS•1h ago•0 comments

Artemis II crew splashes down in Pacific Ocean, ending moon fly-by

https://www.theguardian.com/science/2026/apr/10/artemis-ii-landing-return-moon-mission
3•hkhn•1h ago•0 comments

Bring Back Buddy

https://github.com/anthropics/claude-code/issues/45596
1•agiacalone•1h ago•1 comments

SBTI Personality Test – The Funniest Personality Quiz You'll Ever Take

https://sbti.guru/en/
1•luosix•1h ago•0 comments

Enforcing new limits and retiring Opus 4.6 Fast from Copilot Pro+

https://github.blog/changelog/2026-04-10-enforcing-new-limits-and-retiring-opus-4-6-fast-from-cop...
3•ValentineC•1h ago•0 comments

An Agent That Grows with You – Hermes Agent

https://hermesagent.best/
2•luosix•1h ago•0 comments

To Fill Air Traffic Controller Shortage, FAA Turns to Gamers

https://www.nytimes.com/2026/04/10/us/politics/air-traffic-controller-gamer.html
2•bookofjoe•1h 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!