frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Self-Driving Codebase: Background agents and the next era of software delivery

https://background-agents.com/
1•iBelieve•1m ago•0 comments

CIA Prepares Criminal Referral of Tucker Carlson, as Israel et al. Demand Arrest

https://greenwald.substack.com/p/cia-prepares-criminal-referral-of
2•treetalker•4m ago•0 comments

Giving MCP servers a voice in tool selection

https://divanv.com/post/server-side-tool-gating/
1•divanvisagie•10m ago•0 comments

Manjaro Linux 2.0 Manifesto

https://forum.manjaro.org/t/manjaro-2-0-manifesto/186171
2•hmm37•13m ago•0 comments

To fall asleep faster, try cognitive shuffling

https://www.washingtonpost.com/wellness/2026/03/14/insomnia-cognitive-shuffling/
2•bookofjoe•16m ago•1 comments

Steve Jobs's 10-80-10 Rule Is More Useful in the AI Era

https://www.inc.com/jessica-stillman/steve-jobs-10-80-10-rule-is-even-more-useful-in-the-ai-era/9...
1•rosiesherry•17m ago•1 comments

Show HN: Open-source playground to red-team AI agents with exploits published

https://github.com/fabraix/playground
1•zachdotai•17m ago•0 comments

Learn Haskell in Two Weeks

https://mercury.com/blog/learn-haskell-in-two-weeks
2•cosmic_quanta•19m ago•0 comments

Show HN: OnTimer – persistent calendar alarms so you never miss a meeting

https://www.ontimer.app
2•ethangarr•20m ago•0 comments

Website visualizes the 100k most popular Wikipedia articles as skyscrapers

https://wikicity.app/
1•mykowebhn•21m ago•0 comments

CarTalk-AMP Web Player

https://cartalk-amp.exe.xyz/
1•indigodaddy•23m ago•0 comments

Building observable file systems for agents

https://blog.chudioranu.com/posts/agent-file-systems-observability/
2•httptetsuo•27m ago•0 comments

Token optimized query language (Memelang)

https://memelang.net/10/
1•bri-holt•27m ago•0 comments

Show HN: SciTeX Notification – Give AI agents a voice: TTS, phone calls, SMS

https://github.com/ywatanabe1989/scitex-notification
1•ywatanabe1989•28m ago•0 comments

Show HN: Kubernetes Security Profile Generator Using eBPF

2•mrayas•31m ago•0 comments

Nasdaq's Shame

https://keubiko.substack.com/p/nasdaqs-shame
4•imichael•31m ago•0 comments

A new Bigfoot documentary helps explain our conspiracy-minded era

https://www.msn.com/en-us/news/us/a-new-bigfoot-documentary-helps-explain-our-conspiracy-minded-e...
3•zdw•31m ago•0 comments

Twitch is overhauling its suspensions policy

https://techcrunch.com/2026/02/24/twitch-is-overhauling-its-suspensions-policy/
1•PaulHoule•31m ago•0 comments

CostClaw – free local dashboard to track and reduce OpenClaw agent costs

https://github.com/Aperturesurvivor/costclaw-telemetry
1•JosiahWil•32m ago•1 comments

From the Hills of Nepal to the Colombian Jungle: A Migrant's Story (2020)

https://www.occrp.org/en/project/the-cruel-road-north/from-the-hills-of-nepal-to-the-colombian-ju...
1•joebig•32m ago•0 comments

GladAItor – Crowd-testing AI products in a public arena

https://glad-ia-tor.com/
1•Enjoyooor•34m ago•1 comments

Kangina

https://en.wikipedia.org/wiki/Kangina
5•thunderbong•35m ago•0 comments

Cert Authorities Check for DNSSEC from Today

https://www.grepular.com/Cert_Authorities_Check_for_DNSSEC_From_Today
1•zdw•36m ago•0 comments

Hacking 'Skill' distilled from 4200 Hackerone vulns

https://instavm.io/blog/analysed-4000-to-create-security-agent-cli
1•mkagenius•37m ago•0 comments

Copilot Health

https://microsoft.ai/news/introducing-copilot-health/
1•geox•37m ago•0 comments

Cloudflare forked just-bash and they really, really should not have

https://twitter.com/cramforce/status/2033285112478171373
2•switz•39m ago•2 comments

Road Safety Annual Report 2025 [pdf]

https://www.itf-oecd.org/road-safety-annual-report-2025
1•gnabgib•40m ago•0 comments

Show HN: Decision Guardian v1.2.0 – enforce architectural decisions at PR time

2•iamalizaidi•41m ago•0 comments

Cover Flow with Modern CSS: Scroll-Driven Animations in Action (2025)

https://addyosmani.com/blog/coverflow/
2•andsoitis•41m ago•0 comments

Wikipedia Admin David Gerard Launders His Grudges into the Public Record

https://www.tracingwoodgrains.com/p/reliable-sources-how-wikipedia-admin
2•appreciatorBus•44m 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!