frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Another exposed Supabase DB strikes: 20k+ attendees and FULL write access

https://obaid.wtf/jotbook/2026/02/22/arts-council-database-20k-attendees-exposed.html
1•wtfobaid•1m ago•0 comments

Tropes.fyi: Name and Shame AI Writing – Ossama Chaib

https://ossama.is/writing/tropes
1•Daviey•1m ago•0 comments

Seedream 5.0 – ByteDance's AI image generator with web search and editing

https://seedance2.so/seedream-5-0
1•xbaicai•5m ago•1 comments

F-Jira: Export Jira and Confluence data

https://github.com/oozou/f-jira
1•con•7m ago•0 comments

Let's understand and implement consistent hashing

https://sushantdhiman.dev/lets-implement-consistent-hashing/
1•birdculture•9m ago•0 comments

Show HN: Beehive – Multi-Workspace Agent Orchestrator

https://storozhenko98.github.io/beehive/
1•mst98•9m ago•0 comments

What Ultimately Is There? Metaphysics and the Ruliad

https://writings.stephenwolfram.com/2026/02/what-ultimately-is-there-metaphysics-and-the-ruliad/
1•inshard•10m ago•0 comments

Show HN: Dypai – Build backends from your IDE using AI and MCP

https://www.dypai.ai/
2•lorengarcialv•11m ago•0 comments

3D-printing platform rapidly produces complex electric machines

https://news.mit.edu/2026/3d-printing-platform-rapidly-produces-complex-electric-machines-0218
1•JeanKage•14m ago•0 comments

Seedream 5.0: ByteDance's AI image generator with 4K output

https://loraai.io/seedream-50
1•xbaicai•15m ago•1 comments

Is Donald Trump Alive?

https://isdonaldtrumpalive.com/
2•only_in_america•16m ago•0 comments

Gig workers in Africa had no idea they were helping the U.S. military

https://restofworld.org/2026/gig-workers-us-military-appen/
2•JeanKage•17m ago•0 comments

Diesel Vortex: Inside the Russian cybercrime group targeting US and EU freight

https://haveibeensquatted.com/blog/diesel-vortex-inside-the-russian-cybercrime-group-targeting-us...
4•juxhindb•17m ago•1 comments

My lobster lost $450k this weekend

https://pashpashpash.substack.com/p/my-lobster-lost-450000-this-weekend
1•ssiddharth•17m ago•0 comments

Validation Testing for AI Consultancies

https://tryhala.xyz
1•belocci•18m ago•1 comments

Best Web Hosting Services in The USA

https://webseotrends.com/best-web-hosting/
1•manipathakblog•22m ago•1 comments

Show HN:Agentic Browser Automation – Lightweight Selenium and Claude Code Bridge

https://github.com/GregoryLi360/Agentic-Browser-Automation
1•gregoryli360•23m ago•1 comments

Appstore – Upcoming SDK minimum requirements

https://developer.apple.com/news/?id=ueeok6yw
1•notlikeus•23m ago•0 comments

Reproducible Builds in Language Package Managers

https://nesbitt.io/2026/02/24/reproducible-builds-in-language-package-managers.html
1•yla92•24m ago•0 comments

Cloud Hosting vs. Shared Hosting: Which Web Hosting Should You Choose

https://manipathaktech.substack.com/p/cloud-hosting-vs-shared-hosting
1•manipathakblog•24m ago•0 comments

Show HN: SsrJSON: faster than the fastest Python JSON library

https://github.com/Antares0982/ssrJSON
1•antares0982•25m ago•0 comments

Adversarial multi-agent planning and deterministic pipeline execution for agents

https://github.com/elitecoder/forge-ai
1•surferbayarea•26m ago•1 comments

Why There Are So Many Image Formats [video]

https://www.youtube.com/watch?v=W31xBdl5tNA
1•nomilk•26m ago•0 comments

IBM shares plummet 13% after Anthropic COBOL announcement

https://www.forbes.com.au/news/investing/ibm-shares-plummet-13-worst-day-since-2000-after-anthrop...
3•GaryBluto•30m ago•1 comments

The Sender Sub-Language (C++) [pdf]

https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2026/p4014r0.pdf
1•gpderetta•30m ago•0 comments

Show HN: Use this to optimise your CV

https://www.cvcomp.com
1•prashasthajain1•31m ago•0 comments

Is it possible to manipulate your social-media algorithms?

3•JonnyDamnedFox•32m ago•0 comments

Copyright Can Survive in the Age of AI

https://www.ip.mpg.de/en/research/research-news/copyright-in-the-age-of-ai.html
1•JeanKage•34m ago•1 comments

Stick Hero controlled by trackpad pressure (Mac Force Touch, Safari playable)

https://stick-hero-pressure.vercel.app
1•booffa•35m ago•2 comments

SSH Virtual Hosting: No Host Header, but Public Key

https://blog.exe.dev/ssh-host-header
1•pvtmert•36m ago•1 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!