frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Popular LLM software hit by critical vulnerability in Python package Starlette

https://arstechnica.com/information-technology/2026/05/millions-of-ai-agents-imperiled-by-critica...
1•theanonymousone•7m ago•0 comments

Linux reportedly restored to the free version of Vivado

https://twitter.com/HotAisle/status/2059706563665998317
1•mindcrime•7m ago•0 comments

Harness Sensitivity Is Non-Monotone Across LLM Agent Tiers

https://arxiv.org/abs/2605.26731
1•simonpure•13m ago•0 comments

Biff is a command line datetime Swiss army knife

https://github.com/BurntSushi/biff
2•burntsushi•14m ago•0 comments

Carbon Nanotube CPU Cooling

https://www.lttlabs.com/articles/2026/05/26/carbice-ice-pads
1•LorenDB•16m ago•0 comments

Ask HN: What made you lose faith in God/Religion?

4•alonsovm44•18m ago•6 comments

Locked out of the city some young Canadian buyers are heading to cottage country

https://www.theglobeandmail.com/investing/personal-finance/retirement/article-locked-out-of-the-c...
1•petethomas•19m ago•0 comments

Rinderpest

https://en.wikipedia.org/wiki/Rinderpest
1•petethomas•23m ago•0 comments

State of Subscription Apps 2026

https://www.revenuecat.com/sosa-26-insights/
1•CobaltFire•24m ago•0 comments

Workload isolation using shuffle-sharding

https://aws.amazon.com/builders-library/workload-isolation-using-shuffle-sharding/
1•charleshn•27m ago•0 comments

EaglePress – Working 2.00 Status, with Marketplace Themes and Plugins

https://eaglepress.org/post/eaglepress-download
1•eagle10ne•28m ago•0 comments

Show HN: The Two Pillars – A conceptual framework for post-AI software work

https://zenodo.org/records/20371166
1•rlabbe•33m ago•0 comments

Anthropic takes 8 spots in top 10 most secure LLMs

https://www.thedeepview.com/articles/anthropic-takes-8-spots-in-top-10-most-secure-llms
1•mgh2•37m ago•0 comments

Objects of Design Metaphor

https://liamzebedee.com/design/articles/objects-of-design-metaphor/
1•liamzebedee•48m ago•0 comments

What It Takes to Preserve Floppy Disks

https://spectrum.ieee.org/floppy-disk-data-preservation-archives
2•pseudolus•49m ago•0 comments

The Damned Human Race by Mark Twain

https://faculty.mtsac.edu/jmcfaul/thedamnedhumanrace.html
1•rramadass•49m ago•0 comments

1-Click to sign up, 1 hour on the phone to cancel

https://idiallo.com/blog/how-spectrum-internet-lost-me
5•firefoxd•49m ago•0 comments

Invariant Mesh – bridge legacy ERP to SAP/Oracle with hash-sealed receipts

https://invariant-mesh-demo.web.app/
1•henryco•50m ago•0 comments

Workshop: Sandboxed development environments with one command

https://ubuntu.com/workshop
1•tjek•51m ago•0 comments

"US has the troops in place to attack Cuba" per Politico

https://www.politico.com/news/2026/05/27/cuba-us-military-attack-00938740
10•cwwc•52m ago•3 comments

Why I Wrote Safescript

https://medium.com/@uriv/safescript-a-programming-language-for-ai-era-e6f018c4b3f6
1•uriva•58m ago•0 comments

Your Future job will be to keep AI on task

https://www.noahpinion.blog/p/your-future-job-will-be-to-keep-ai
2•thm•58m ago•1 comments

Propuesta TLBIC v4.1 – «La sabiduría de dialogar con un espejo imperfecto

1•michikawa59•1h ago•0 comments

DTensor, Correctness and the Costs of Abstraction

https://runwayml.com/news/dtensor-distributed-training
1•jxmorris12•1h ago•0 comments

Safescript – A Language for AI Era

https://safescript.cc/
2•uriva•1h ago•0 comments

Pimmur, can LLM simulate human collective behavior?

https://arxiv.org/abs/2509.18052
1•xiaoluolyg•1h ago•0 comments

A survey of HTTP 'server' headers

https://alex.keeling.me/blog/server-survey.html
1•TwinOaks65•1h ago•0 comments

AIPass – Persistent agent workspace with identity, memory, and email

https://github.com/AIOSAI/AIPass
2•AIOSAI•1h ago•0 comments

Stratasys snaps up Markforged in $42.5M deal

https://all3dp.com/6/stratasys-snaps-up-markforged-in-42-5m-deal/
1•iancmceachern•1h ago•0 comments

Progressives Are Listening to the Wrong People on A.I

https://www.nytimes.com/2026/05/26/opinion/progressives-left-ai.html
5•cratermoon•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•1y ago

Comments

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