frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Most Accurately Predicted Genocide in History

https://thewalrus.ca/sudan-genocide/
1•garbawarb•2m ago•0 comments

Show HN: Lazy as a Service – Antigravity Extension

https://github.com/lakathekolla/laas
1•lakruoneX•3m ago•0 comments

I Fixed Green Screens [video]

https://www.youtube.com/watch?v=3Ploi723hg4
1•Khaine•5m ago•0 comments

The Middle Loop

https://annievella.com/posts/the-middle-loop/
1•vinhnx•8m ago•0 comments

Meta Delays Rollout of New A.I. Model After Performance Concerns

https://www.nytimes.com/2026/03/12/technology/meta-avocado-ai-model-delayed.html
1•gmays•11m ago•0 comments

Revenue can hide unprofitable freelance clients

1•SoloBossFounder•11m ago•1 comments

Nanoclaw flavor that allows you set it up as an Executive Assistant

https://github.com/taslim/nanoclaw-gws-ea
1•taslim•16m ago•1 comments

Show HN: Reflex Engine SDK – local action validation with replayable artifacts

https://github.com/caminodynamics/reflex-engine-sdk
1•mikecaminojr•18m ago•1 comments

Apple's adorable Finder guy has broken the internet

https://www.macworld.com/article/3082576/apples-adorable-finder-guy-has-broken-the-internet.html
1•mgh2•21m ago•0 comments

Sam Altman admits AI is killing the labor-capital balance

https://finance.yahoo.com/news/sam-altman-admits-ai-killing-141643543.html
1•CharlesW•22m ago•0 comments

Streaming Gaussian Splatting Videos Using WebXR

https://store.gracia.ai/creator/Gracia%20Labs/9ee301ea-fcd4-4041-b82e-ee3c1c461352
2•firefoxd•23m ago•1 comments

Why Friday the 13th is a mathematical inevitability

https://www.scientificamerican.com/article/why-friday-the-13th-is-a-mathematical-inevitability/
1•1659447091•24m ago•1 comments

Lessons from Building AI Features

https://ghiculescu.substack.com/p/lessons-from-building-ai-features
1•ghiculescu•25m ago•0 comments

Mac Trade-Ins Surge Amid MacBook Neo Launch

https://www.macrumors.com/2026/03/13/mac-trade-ins-surge-amid-macbook-neo-launch/
1•mgh2•28m ago•0 comments

Terraforming Mars: Mass, Forcing, and Industrial Throughput Constraints

https://arxiv.org/abs/2603.00402
1•vinhnx•34m ago•0 comments

Discli – Discord CLI for AI agents to manage servers from the terminal

https://pypi.org/project/discord-cli-agent/
1•rohitk06•36m ago•0 comments

Show HN: SafeAgent – exactly-once execution guard for AI agent side effects

1•Lions2026•37m ago•0 comments

Nvidia's GTC will mark an AI chip pivot, the CPU is taking center stage

https://www.cnbc.com/2026/03/13/nvidia-gtc-ai-jensen-huang-cpu-gpu.html
1•1659447091•37m ago•0 comments

Show HN: Vibe-budget – CLI to estimate LLM costs before you start vibe coding

https://www.npmjs.com/package/vibe-budget
1•gabriel_quec016•40m ago•0 comments

Show HN: FX Radar – Rebuilt AI financial news hub and trading journal

https://www.fxradar.live/
1•LuckyAleh•41m ago•1 comments

SC deputy of the year led wrong-way chase with teen in his cruiser

https://columbiamuckraker.substack.com/p/sc-deputy-of-the-year-led-deadly
1•sc_muckraker•41m ago•0 comments

Treasure hunter–didn't give location 500 gold coins–released p 10 years prison

https://www.cbsnews.com/news/tommy-thompson-treasure-hunter-ship-of-gold-missing-coins-released-p...
2•bookofjoe•42m ago•0 comments

Harness Engineering: 52 Days, One Person, 965K Lines of Code

https://agentsmesh.ai/blog/building-agentsmesh-with-agentsmesh
2•zyf1994•44m ago•1 comments

Moldbook: The front page of the mold internet

https://www.moldbook.xyz
2•uglyburger•47m ago•0 comments

Direnv Is All You Need to Parallelize Agentic Programming with Git Worktrees

https://waldencui.com/post/direnv_is_all_you_need_to_parallelize_claude_code_with_git_worktrees/
2•cui•51m ago•1 comments

Why I'm Suing Grammerly

https://www.nytimes.com/2026/03/13/opinion/ai-doppelganger-deepfake-grammarly.html
5•staplung•59m ago•2 comments

Show HN: Kube-pilot – AI engineer that lives in your Kubernetes cluster

https://github.com/fbongiovanni29/kube-pilot
2•noobernetes•1h ago•0 comments

NAND's New Power Dynamic: Enterprise SSD Demand Reshapes Supply

https://news.ycombinator.com/submitted?id=redohmy
1•jamesbsr•1h ago•0 comments

Can LLMs Do Matching Decompilation? I Tested 60 Functions to Find Out

https://gambiconf.substack.com/p/can-llms-really-do-matching-decompilation
2•msephton•1h ago•0 comments

Z-Order: The Clustered Index of the Data Lake

https://www.arnaudp.dev/how-z-order-cut-my-databricks-etl-time-in-half/
1•gentle_bubble•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•10mo ago

Comments

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