frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

14,000 crypto holders face security risk after Trezor data breach

https://www.ft.com/content/a91356ef-67bd-4bd9-947b-b272423f1318
2•petethomas•4m ago•0 comments

HoneyMatcha – A coordination platform for you and your personal agent

https://honeymatcha.io/
1•JaiRathore•5m ago•0 comments

Using AI chatbots? Here are four ways to reduce the energy drain

https://knowablemagazine.org/content/article/food-environment/2026/four-ways-to-reduce-energy-use...
1•knowablemag•7m ago•0 comments

Fibermaxxing? Your microbes (and your health) say thanks

https://knowablemagazine.org/content/article/health-disease/2026/fiber-feeds-the-microbiome-and-i...
1•knowablemag•8m ago•0 comments

What can we learn from Australia's social media ban for teens?

https://knowablemagazine.org/content/article/society/2026/studying-the-social-media-ban-under-six...
1•knowablemag•8m ago•0 comments

AI Looms over Software Companies – and the Investors Who Piled into Them

https://www.bloomberg.com/graphics/2026-ai-private-equity-software/
1•petethomas•10m ago•0 comments

Show HN: MCP-stama – An ultra-fast Rust MCP server with no dependencies

https://github.com/StamManif/mcp-stama
4•stammanif•11m ago•0 comments

OpenAI's Revenue Run Rate Tops $40B Ahead of IPO

https://www.bloomberg.com/news/articles/2026-08-13/openai-s-revenue-run-rate-tops-40-billion-ahea...
2•mfiguiere•11m ago•2 comments

The End of Mathematics

https://www.daniellitt.com/blog/2026/8/11/the-end-of-mathematics
1•rzk•11m ago•0 comments

US sells 30-year bonds at highest borrowing costs since 2001

https://www.ft.com/content/9c9c948f-dc8b-4385-a9b9-4b98dc1eadd9
4•petethomas•12m ago•0 comments

ParleHub – Enterprise AI Collaboration and Cost Control – Launch Today on PH

https://parlehub.com/
1•ciaranodonnell•14m ago•0 comments

Ask HN: Does Codex's Computer History plugin seem like a misstep to anyone else?

1•joshcsimmons•24m ago•0 comments

The magic of a two-year waitlist

https://seths.blog/2026/08/the-magic-of-a-two-year-waitlist/
1•herbertl•24m ago•0 comments

Chief Revenue Officer for OpenAI Resigns

https://twitter.com/Kr00ney/status/2087946389351284777
1•slowin•24m ago•1 comments

AI #181: Astra Goes Cyber Critical

https://thezvi.substack.com/p/ai-181-astra-goes-cyber-critical
1•paulpauper•25m ago•0 comments

My skinner box It was made for me

https://sgt.hootr.club/blog/this-is-my-skinner-box/
1•steinuil•25m ago•0 comments

Black Wednesday

https://ussri.substack.com/p/black-wednesday
1•paulpauper•26m ago•0 comments

Book Review: The Infinity Machine

https://millicosm.substack.com/p/book-review-the-infinity-machine
1•paulpauper•26m ago•0 comments

The Largest Galaxy in the Universe Is Even Bigger Than We Thought

https://www.iflscience.com/the-largest-galaxy-in-the-universe-is-even-bigger-than-we-thought-and-...
2•gmays•26m ago•0 comments

36 Ways to Send a File

https://getcroc.com/blog/compare-file-transfer-tools
1•gregsadetsky•27m ago•0 comments

'Papers and patents are becoming less disruptive over time'?

https://bsky.app/profile/vincentholst.bsky.social/post/3msxg77pnmk2r
1•doener•28m ago•0 comments

Show HN: Mirage Browser, the deadest of internets. ~1000 tok/s 1998 internet

https://miragebrowser.xyz/
2•KCLock•30m ago•0 comments

I Build Production Software by Directing AI

https://medium.com/@chrissharp80/how-i-build-production-software-by-directing-ai-710902b4933e
2•chrissharp80•30m ago•0 comments

Data Science Weekly – Issue 664

https://datascienceweekly.substack.com/p/data-science-weekly-issue-664
1•sebg•31m ago•0 comments

Is this hack-back or cyber letters-of-marque? No, but maybe

https://cybersect.substack.com/p/is-this-hack-back-or-cyber-letters
3•wmf•34m ago•0 comments

Chatbots are doing the work of Congress with little oversight

https://www.washingtonpost.com/politics/2026/08/13/chatbots-are-doing-work-congress-with-little-o...
2•harambae•34m ago•0 comments

Number of malaria attacks since birth: A longitudinal study of African children

https://www.thelancet.com/journals/eclinm/article/PIIS2589-5370(23)00556-4/fulltext
2•alphabetatango•35m ago•0 comments

StudioCreate+

https://apps.microsoft.com/detail/9p69ncw3mfj6?hl=en-US&gl=US
1•detyea•35m ago•0 comments

Chestnut – eGPU dock with open-source firmware

https://hwbusters.com/news/comma-ai-egpu-dock-runs-open-source-firmware-249-bare-799-with-an-rx-9...
4•txrx0000•36m ago•0 comments

Agentic Scheduling = Apple Calendar + Apple Reminders + Claude Agent

https://github.com/hunterZh37/agentic-scheduling
1•hunterzh37•36m 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!