frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Anthropic's 'Claude Mythos' leak sends software names sharply lower

https://www.coindesk.com/markets/2026/03/27/anthropic-s-massive-claude-mythos-leak-reveals-a-new-...
1•wslh•6m ago•0 comments

Ask HN: Does piping LLM output into a RAG stack sound like a good idea?

1•fhouser•8m ago•0 comments

Sloprank – AI-slop scoring for your GitHub repo

https://sloprank.io/
4•slopranker•13m ago•1 comments

Fear and denial in Silicon Valley over social media addiction trial

https://www.bbc.com/news/articles/c86e3eglv2go
11•1659447091•20m ago•0 comments

Who Comments on Federal Regulations?

https://frtracker.app/casestudies/who-comments
1•tldrthelaw•25m ago•0 comments

Show HN: AgentVerse – Open social network for AI agents (Mar 2026)

https://nickakre.github.io/agentverse-social/
1•nickakre•26m ago•0 comments

SwiftUI Apps on macOS are fun to code

https://simonwillison.net/2026/Mar/27/vibe-coding-swiftui/
2•rdslw•34m ago•0 comments

Show HN: Goodbye Watermark – Free AI watermark remover

https://goodbyewatermark.com
1•Lusrodri•34m ago•0 comments

Roko's Basilisk

https://en.wikipedia.org/wiki/Roko%27s_basilisk
1•rossdavidh•38m ago•2 comments

Tell HN: Firefox is being slowly deprecated by the industry

4•gurjeet•44m ago•5 comments

JD Vance Tells Me That UFOs Are Demons

https://xcancel.com/bennyjohnson/status/2037611400223179189
2•doener•47m ago•0 comments

(12 Hours) How Does a Computer Work? [video]

https://www.youtube.com/watch?v=rl0jkP9kOMw
2•leobdkr•51m ago•0 comments

Godot-Rust v0.5 Release

https://godot-rust.github.io/dev/march-2026-update/
1•roflcopter69•53m ago•0 comments

European country vows to give homeowners 'free electricity'

https://www.euronews.com/2026/03/27/european-country-vows-to-give-homeowners-free-electricity-ins...
2•doener•56m ago•2 comments

The Last Time – Unix, NTP, and HFS Epochs

https://www.potaroo.net/ispcol/2026-03/endtime.html
2•caminanteblanco•57m ago•0 comments

Programming After Programmers? A Response to the New York Times on AI and Coding

https://curryguinncspb.github.io/programming-after-programmers/
2•tsumnia•1h ago•0 comments

I built a tiny CLI that writes my commit messages from Git diff

https://github.com/saccofrancesco/gitsloth
2•s4ccofr4ncesco•1h ago•0 comments

Welcome to a Multidimensional Economic Disaster

https://www.theatlantic.com/technology/2026/03/ai-boom-polycrisis/686559/
2•fortran77•1h ago•0 comments

I Vibe-Coded an Agent and Didn't Know What It Couldn't Do

https://www.noemica.io/blog/vibe-coded-agent
2•SebastianSosa•1h ago•0 comments

I Built a Public RAG App for Chicago Budget Documents

https://www.devinthakker.com/blog/chicago-budget-rag
1•devinthakker•1h ago•0 comments

Depression is linked to a pessimistic bias, not a realistic view of the world

https://www.psypost.org/depression-is-linked-to-a-genuine-pessimistic-bias-rather-than-a-realisti...
3•RickJWagner•1h ago•0 comments

Teenage Engineering's PO-32 acoustic modem and synth implementation

https://github.com/ericlewis/libpo32
2•ericlewis•1h ago•0 comments

Google Turbo Quant Powered Local LLMs

https://atomic.chat/
2•novateg•1h ago•0 comments

Cybersecurity stocks fall on report Anthropic is testing a powerful new model

https://www.cnbc.com/2026/03/27/anthropic-cybersecurity-stocks-ai-mythos.html
5•pseudolus•1h ago•0 comments

Forensic Scientist Dr. Henry C. Lee Dies

https://www.newhaven.edu/news/releases/2026/in-memoriam-henry-lee.php
1•caonidaye•1h ago•1 comments

How much more will oil prices have to go up?

https://marginalrevolution.com/marginalrevolution/2026/03/how-much-more-will-oil-prices-have-to-g...
1•paulpauper•1h ago•0 comments

Iranian hackers obtained and leaked personal Gmail of ex-FBI Director Cash Patel [video]

https://www.youtube.com/watch?v=AlM0vylK_r8
3•exec01•1h ago•0 comments

Brent Price Now – Free AI oil market insights and email price alerts

https://brentpricenow.top/price-alerts
4•trendbuilder•1h ago•1 comments

The Terrarium

https://www.lesswrong.com/posts/znbfRXHq285nS7NAh/the-terrarium
2•cubefox•1h ago•0 comments

Brad Feld – Nothing New to See Here

https://feld.com/archives/2026/03/nothing-new-to-see-here/
3•rmason•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•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!