frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cisco CPO predicts AI will have built majority of their products by end of 2027

https://www.sdxcentral.com/analysis/cisco-cpo-predicts-ai-will-have-built-majority-of-the-vendors...
1•oavioklein•5m ago•0 comments

Ask HN: How to get started in electronic music

2•A_Random_Nerd•9m ago•1 comments

DESI Completes Planned 3D Map of the Universe and Continues Exploring

https://noirlab.edu/public/news/noirlab2610/
1•mooreds•11m ago•0 comments

Optimization of Elevator Standby Scheduling Strategy in Smart Buildings

https://www.mdpi.com/2571-5577/8/5/132
2•swq115•15m ago•0 comments

Police shut down reboot of Crimenetwork marketplace, arrest admin

https://www.bleepingcomputer.com/news/security/police-shut-down-reboot-of-crimenetwork-marketplac...
3•billybuckwheat•15m ago•0 comments

How do the most prolific people produce so much? (2023)

https://www.commonreader.co.uk/p/how-do-the-most-prolific-people-produce
1•herbertl•17m ago•0 comments

METR can barely measure Claude Mythos – 50% task horizon now exceeds 16 hours

https://hugonomy.com/news.html
1•GlyphWeaver_a•17m ago•0 comments

A paid JSON Schema validation API using x402 micropayments

https://github.com/garyedgington/project_x402
1•garyedgington•19m ago•0 comments

Film Cue – a Sushi Go-style card game about making movies

https://filmcuegame.com/
1•tinch•26m ago•0 comments

Show HN: Open-source GEO auditor (no signup)

https://www.freeaiseoaudit.com/
2•ICodeSometimes•32m ago•0 comments

Show HN: Personal Trainer – Lift, share plans, and rank with friends

https://mobile-squad.com/#personal-trainer
3•erwanalliaume•32m ago•0 comments

The Morse Code Hack That Made an AI Agent Spend $200k [video]

https://www.youtube.com/watch?v=UQ4pSVS_mN0
1•CharlesW•33m ago•0 comments

AI vs. Open Source, Part 1: The Empty Grant

https://srikanth.sastry.name/ai-vs-open-source-the-empty-grant/
1•srikanthsastry•33m ago•0 comments

A faithful LLM-wiki implementation with Wikipedia-style web browsing

https://github.com/hzw1199/CyberMe-LLM-Wiki
1•hzw1199•34m ago•1 comments

What were scanners like in the 80s? – 1988 IBM PageScanner 3119 [video]

https://www.youtube.com/watch?v=IhMzwISbIAo
2•CharlesW•35m ago•1 comments

A throbbing heart at the thought of AI

1•ish099•38m ago•1 comments

Claude Platform on AWS

https://aws.amazon.com/claude-platform/
1•matrixhelix•39m ago•0 comments

Claude Platform on AWS

https://claude.com/blog/claude-platform-on-aws
3•matrixhelix•40m ago•0 comments

Show HN: Compare Similar Audio Tracks

https://w.merkoba.com/trackcheck/
1•madprops•40m ago•0 comments

How Rockstar fit an entire city into PlayStation 2 memory [video]

https://www.youtube.com/watch?v=cIbCxbrBCys
1•CharlesW•44m ago•0 comments

Scientists Gave 'Aggressive' Fish Psychedelic Drugs. A Breakthrough Came Next

https://www.404media.co/fish-psilocybin-magic-mushrooms-study-psychedelics/
1•gmays•47m ago•0 comments

Darkest Dungeon devs will "never, ever" use GenAI to replace narrator Wayne June

https://www.rockpapershotgun.com/his-voice-and-delivery-was-human-darkest-dungeon-developers-will...
1•latexr•48m ago•0 comments

The Silence That Meets the Rape of Palestinians

https://www.nytimes.com/2026/05/11/opinion/israel-palestinians-sexual-violence.html
10•lorecore•50m ago•3 comments

The new Shai-Hulud worm threatens to wipe your machine if you revoke its token

https://cybersecurityreach.org/investigations/ifyourevokethistokenitwillwipethecomputeroftheowner...
2•Leonardm•52m ago•0 comments

Extraordinary Ordinals

https://text.marvinborner.de/2026-04-09-17.html
3•marvinborner•1h ago•0 comments

Db-fortress – Scanner for the 4 vibe-coded auth bugs Wiz documents

1•omji-krypto•1h ago•0 comments

Can you help reconcile my first/second-hand LLM Experience with HN's Experience?

2•didigamma•1h ago•4 comments

Show HN: A browser-friendly mirror of the war.gov UFO/UAP Release 01 files

https://0.2.fastfilelink.com/x5CbXd5k
2•bear330•1h ago•5 comments

Open Questions – AGI

https://handsdiff.substack.com/p/open-questions-agi
1•rajeevn•1h ago•0 comments

Christophe Pettus: PHP Goes BSD

https://thebuild.com/blog/2026/04/30/php-goes-bsd/
4•PaulHoule•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!