frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Msspproviders.io: a searchable directory of managed security service providers

https://msspproviders.io
1•datacorp•3m ago•1 comments

Old Versions of Programs, Drivers and Games

https://www.oldversion.com/
1•TigerUniversity•6m ago•0 comments

Zero Sum Game

https://code.chuanqisun.com/zero-sum-game/
1•low_tech_punk•8m ago•0 comments

Karabiner-Elements is a powerful tool for customizing keyboards on macOS

https://github.com/pqrs-org/Karabiner-Elements
1•vinhnx•10m ago•0 comments

Coruna: The Mysterious Journey of a Powerful iOS Exploit Kit

https://cloud.google.com/blog/topics/threat-intelligence/coruna-powerful-ios-exploit-kit
1•JumpCrisscross•10m ago•0 comments

How Vinay Prasad Came to Washington, and Why It Was Always Going to End This Way

https://anishkokamd.substack.com/p/how-vinay-prasad-came-to-washington
1•ssivark•11m ago•0 comments

Judge Voids Mass Layoffs at Voice of America

https://www.nytimes.com/2026/03/07/us/politics/judge-kari-lake-voa-layoffs.html
1•JumpCrisscross•12m ago•0 comments

Scaling and controlling an army of devices in parallel with voice commands

https://www.youtube.com/watch?v=kxfT4ZzG2l0
1•GPUboy•13m ago•0 comments

Plenty of AI hype, but not much useful software?

1•YounesDz•14m ago•0 comments

Show HN: Yumo.to, a map of 19,652 onsens in Japan

https://yumo.to/
1•katagamistudio•21m ago•1 comments

Show HN: I built a $5/mo Jobber alternative for solo carpenter

https://fieldflow-nine.vercel.app/auth
1•Mike_Handyman•21m ago•0 comments

Americans Are Now a Target for ICE

https://www.wsj.com/us-news/immigration-protests-noem-minneapolis-0b8bd496
1•JumpCrisscross•22m ago•1 comments

All Bench Leaderboard for Comparing LLMs Across Benchmarks

https://huggingface.co/blog/FINAL-Bench/all-bench
1•seawolf2357•23m ago•0 comments

Multimodal Coding Agents as In-Context Policy Learners for Robot Manipulation

https://arxiv.org/abs/2603.04466
1•vaishak2future•23m ago•1 comments

Kalshi and Polymarket Are Each Eyeing Roughly $20B Valuations

https://www.wsj.com/finance/kalshi-and-polymarket-are-each-eyeing-roughly-20-billion-valuations-d...
2•bookofjoe•24m ago•1 comments

State of WASI support for CPython: March 2026

https://snarky.ca/state-of-wasi-support-for-cpython-march-2026/
1•mariuz•24m ago•0 comments

Ethernity: Secure paper backups with age encryption and SSS

https://github.com/MinorGlitch/ethernity
1•minorglitch•28m ago•0 comments

Codeless: From Idea to Software

https://www.anildash.com/2026/01/22/codeless/
1•Garbage•28m ago•0 comments

If AI is so good, why don't we have an infinite supply of 10x engineers?

2•YounesDz•30m ago•1 comments

Attested TLS

https://engineering.chainbound.io/attested-tls-in-the-wild
1•pabs3•32m ago•0 comments

Heat Pump Guide – Everything You Need to Know

https://guide.heatpumped.org/
1•ssuds•34m ago•0 comments

Armin Ronacher on AI Agents and the Future of Programming [video]

https://www.youtube.com/watch?v=4zlHCW0Yihg
1•thunderbong•36m ago•0 comments

Israel Strikes Oil Facilities in Iran

https://www.nytimes.com/2026/03/07/world/middleeast/israel-iran-oil-strikes.html
32•toomuchtodo•37m ago•27 comments

Agentmarketpro

https://www.agentmarketpro.ai/
1•davidworld•37m ago•0 comments

Simple NextJS deployment engine built with Go

https://nextdeploy.one/docs
1•hersidev•37m ago•0 comments

Asteroid-Smashing NASA Mission Sped Up Space Rocks' Journey Around the Sun

https://www.nytimes.com/2026/03/06/science/nasa-dart-asteroid-sun-orbit.html
2•bookofjoe•39m ago•1 comments

Revisiting Time: UT1, UTC, NTP and NTS

https://www.potaroo.net/ispcol/2026-03/nts.html
2•pabs3•40m ago•0 comments

Will Claude Code ruin our team?

https://justinjackson.ca/claude-code-ruin
16•YounesDz•48m ago•5 comments

Agentic Email

https://martinfowler.com/bliki/AgenticEmail.html
2•jeffkumar•51m ago•2 comments

Ask HN: Any AI browswer that I can control by Claude Code?

1•johnnyfeng•51m 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!