frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Microsoft Struggling with AI-Discovered Security Bugs

https://www.propublica.org/article/anthropic-mythos-microsoft-software-vulnerabilities
1•tysone•1m ago•0 comments

Advancing Science by Designing for Surprise

https://www.science.org/doi/10.1126/science.aej4257
1•paraschopra•2m ago•0 comments

Parsers don't have to be complicated

https://bkaradzic.github.io/posts/scanner/
1•signa11•9m ago•0 comments

The Groundhog Trap – Multi-model consensus and AI output failover framework

https://github.com/RickyARojas/The-Groundhog-Trap
1•rarojas•10m ago•0 comments

LLMs and Shaders

https://amitp.blogspot.com/2026/07/llms-and-shaders.html
1•yurivish•11m ago•0 comments

Parse Italian CEE balance sheets into structured financial data in 30s

https://www.parsio.it/
1•Iry-star•13m ago•0 comments

Hierarchical File Systems are Dead (2009)

https://dash.harvard.edu/server/api/core/bitstreams/7312037c-92e6-6bd4-e053-0100007fdf3b/content
1•Tomte•13m ago•0 comments

Designing Balanced Dice

https://blog.colonist.io/balanced-dice-designing/
1•kamphey•17m ago•0 comments

KOReader

https://koreader.rocks/
2•Cider9986•19m ago•0 comments

RazTint: Semantic terminal output for Python CLIs

https://github.com/razbuild/raztint
1•realrazdev•21m ago•0 comments

An Ode to Deluxe Paint

https://www.datagubbe.se/dpaint/
1•Bluestein•21m ago•0 comments

Show HN: Easy MQTT Handler 2: multi platform desktop tray to Home Assistant glue

https://github.com/AtmanActive/easy-mqtt-handler-2
2•atmanactive•22m ago•1 comments

The AI Hype Index: Unsexy AI

https://www.technologyreview.com/2026/07/29/1140795/the-ai-hype-index-unsexy-ai/
2•joozio•23m ago•0 comments

Starling: The first real desktop written by AI

https://starling.build/
4•signa11•25m ago•1 comments

We Hardened an AI Security Platform Against 16 Critical Vulnerabilities

https://aegis-security.higgsfield.app
3•zdotbirch•29m ago•0 comments

Zoye AI – The CRM you don't need to open

https://www.zoye.io
3•anizeu•29m ago•0 comments

Regulation of tobacco by the U.S. Food and Drug Administration

https://en.wikipedia.org/wiki/Regulation_of_tobacco_by_the_U.S._Food_and_Drug_Administration
2•amarcheschi•30m ago•0 comments

Show HN: I used D3/React to transform raw GitHub data into an interactive map

https://github.com/ThierryRakotomanana/GitCharta
3•ThierryRakt•30m ago•0 comments

The Vanishing Page: AI Firms Scan Then Destroy Rare Book Editions

https://dallasexpress.com/national/the-vanishing-page-ai-firms-scan-then-destroy-rare-book-editions/
3•throw0101a•30m ago•0 comments

AI companies buy, scan, shred rare and out-of-print books

https://www.news.com.au/technology/online/internet/ai-labs-buy-scan-shred-millions-of-rare-books/...
3•throw0101a•32m ago•0 comments

History remembers two Robert McNamaras

https://indevelopmentmag.com/numbers-man/
3•salonium_•32m ago•0 comments

National Security Determination Threat Posed by Foreign-Produced Robotic Devices [pdf]

https://www.fcc.gov/sites/default/files/robots-nsd.pdf
12•ellingsworth•37m ago•3 comments

Claude Apps Gateway for AWS

https://aws.amazon.com/blogs/machine-learning/introducing-claude-apps-gateway-for-aws/
2•cebert•37m ago•0 comments

Show HN: Expose Your APIs to Agents Without Losing Control via Koodisi MCP

https://koodisi.com/blog/expose-your-apis-to-agents-without-losing-control
3•theashishmaurya•39m ago•0 comments

KotlinLLM Is Going Open Source

https://blog.jetbrains.com/research/2026/07/kotlinllm-open-source/
3•theanonymousone•42m ago•0 comments

Show HN: Roamr – a CLI that picks the best saved WiFi, and tells you why

https://github.com/sourabh-khot65/roamr
2•sourabh65•43m ago•0 comments

Google DeepMind Disbands AlphaFold Team as AI Strategy Shifts Toward Gemini

https://finance.yahoo.com/technology/ai/articles/market-chatter-alphabet-apos-google-093407849.html
3•theanonymousone•44m ago•1 comments

Tracked Capabilities for Safer Agents

https://martinodersky.substack.com/p/tracked-capabilities-for-safer-agents
2•odersky•44m ago•1 comments

C++ Simulator for Ordnance Penetrators/Kinetic Energy Strike Weapons

https://github.com/omid2007hope/MOP-Simulator
2•omid2007hope•45m ago•1 comments

Allies shrug as US pushes for Strait of Hormuz patrol

https://www.politico.com/news/2026/07/28/iran-us-strait-ofhormuz-allies-patrol-01013659
2•vrganj•47m 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!