frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Leviathan, A world where AI agents write the laws and govern themselves

https://chenyu-li.info/leviathan
1•chenyusu•4m ago•1 comments

Swift System Metrics 1.0

https://www.swift.org/blog/swift-system-metrics-1.0-released/
1•peterspath•5m ago•0 comments

The normalization of corruption in organizations (2003) [pdf]

https://gwern.net/doc/sociology/2003-ashforth.pdf
1•rendx•5m ago•0 comments

Leaving AI to Code 24/7 Doesn't Work

https://twitter.com/victortaelin/status/2027214947193679932
1•jamesy0ung•5m ago•0 comments

Build dynamic agentic workflows in Opal

https://blog.google/innovation-and-ai/models-and-research/google-labs/opal-agent/
1•gmays•7m ago•0 comments

Show HN: PipelineIQ – AI diagnoses CI/CD failures and sends fixes to Slack

https://pipelineiq.dev
1•Raja_Dev•7m ago•0 comments

Techniques of Neutralization

https://en.wikipedia.org/wiki/Techniques_of_neutralization
1•rendx•9m ago•0 comments

All the troubles of the world by Isaac Asimov [pdf]

https://schools.ednet.ns.ca/avrsb/070/rsbennett/HORTON/shortstories/All%20the%20troubles%20of%20t...
1•thunfischtoast•10m ago•1 comments

Agentic Engineering Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/
1•admp•14m ago•0 comments

Measuring CPU Load

https://en.wikipedia.org/wiki/Load_(computing)
1•pacct2025•17m ago•0 comments

Boston Review: A Brief History of AI Psychosis

https://www.bostonreview.net/articles/a-brief-history-of-ai-psychosis/
1•t0lo•25m ago•1 comments

Show HN: Arrival Radar

https://entropicthoughts.com/arrival-radar
2•kqr•29m ago•1 comments

How AI will change GTM?

1•imwoody•29m ago•0 comments

Show HN: Export Your YouTube Subscriptions to OPML (and Use Any RSS Reader)

https://gist.github.com/jillesvangurp/b43cc5bbdbc0a9a29c7f0944d6cc5854
1•jillesvangurp•30m ago•0 comments

When the Bubble Bursts

http://theprogrammersparadox.blogspot.com/2026/02/when-bubble-bursts.html
3•r4um•31m ago•0 comments

Spatial AI-native graph workspace

1•aXlireza•32m ago•0 comments

Show HN: MotionDesk: Physics-driven, Metal-accelerated wallpapers for macOS

2•motiondeskapp•32m ago•0 comments

Show HN: Nano Banana 2 – Sub-second AI image gen via Gemini 3.1 Flash

https://nano-banana2.me/
1•naxtsass•36m ago•0 comments

Show HN: Conduit – Automatic Port Forwarding for Docker Containers

https://github.com/Oranda-IO/Conduit
1•orandaio•36m ago•0 comments

RFC 9925: Unsigned X.509 Certificates

https://datatracker.ietf.org/doc/rfc9925/
1•raquuk•39m ago•0 comments

I used Claude AI to build this website that shows upcoming indie game festivals

https://festival-watch.vercel.app/
2•rotub•39m ago•1 comments

Chivalry Test

https://chivalryscore.com
1•onSmallMessage•40m ago•1 comments

We found 118 performance bugs across 2 PRs written with Claude Code

https://www.codeflash.ai/blog-posts/hidden-cost-of-coding-agents
4•misrasaurabh1•41m ago•1 comments

Vegetarians have 'substantially lower risk' of five types of cancer

https://www.theguardian.com/society/2026/feb/27/vegetarians-have-substantially-lower-risk-of-five...
1•plaguna•41m ago•0 comments

Man jailed after selling £7M of fake plane parts

https://www.bbc.com/news/articles/c78xz5j848vo
1•dataflow•41m ago•0 comments

Pplx-Embed: Embedding Models for Web-Scale Retrieval

https://research.perplexity.ai/articles/pplx-embed-state-of-the-art-embedding-models-for-web-scal...
1•jxmorris12•43m ago•0 comments

CoreWeave slides as surging capex, backlog risks overshadow small revenue beat

https://www.reuters.com/business/coreweave-beats-fourth-quarter-revenue-estimates-2026-02-26/
1•petethomas•49m ago•0 comments

Indian ISPs block Supabase due to a ministry order

https://twitter.com/supabase/status/2027249469545386102
1•alt-glitch•50m ago•0 comments

Google paid startup Form Energy $1B for its 30GWh, 100-hour battery

https://techcrunch.com/2026/02/26/google-paid-startup-form-energy-1b-for-its-massive-100-hour-bat...
1•epistasis•54m ago•0 comments

I stopped writing code. I only review AI-generated PRs now

https://alec.is/posts/how-i-went-from-code-reviewer-to-code-reviewer/
1•arm32•55m 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!