frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

'Near-autonomous' AI agents attack Taiwan's nuclear safety agency

https://www.theregister.com/security/2026/08/12/near-autonomous-ai-agents-attack-taiwans-nuclear-...
1•Bender•8m ago•0 comments

Tailscale says deeply buried 16-year-old SQLite bug caused last year's outages

https://www.theregister.com/databases/2026/08/12/tailscale-says-deeply-buried-16-year-old-sqlite-...
1•Bender•9m ago•0 comments

Terabytes of credentials leaked in supply-chain attack

https://arstechnica.com/security/2026/08/terabytes-of-credentials-leaked-in-massive-supply-chain-...
1•Bender•11m ago•0 comments

When Will AI Take My Job?

https://www.whenwillaitakemyjob.ai/
3•yetanothermonk•11m ago•1 comments

Why your Amazon order confirmation emails have become so unhelpfu

https://www.theverge.com/ai-artificial-intelligence/977733/amazon-order-emails-google-gmail-ai-ag...
1•cebert•12m ago•1 comments

Show HN: ZKE – A macOS-style multi-cluster Kubernetes console over QUIC

https://github.com/togettoyou/zke
1•togettoyou•19m ago•0 comments

The next AI interface may not be a chatbot

https://hajek.no/posts/2026/next-ai-interface-not-chatbot
1•kamphey•21m ago•0 comments

Doable: Self-hosted AI app builder for teams

https://github.com/doable-me/Doable
1•indigodaddy•25m ago•1 comments

Production-ready detection and response queries for osquery

https://github.com/chainguard-dev/osquery-defense-kit
1•ankitg12•26m ago•0 comments

Why must a socialist also be woke?

https://www.ft.com/content/1b0a8ed9-d55a-49ea-971e-39e01e588632
3•alephnerd•31m ago•1 comments

Looks like Claude is down anyone else

2•codehead•31m ago•2 comments

Could Rocky's musical language in Project Hail Mary work

https://www.scientificamerican.com/podcast/episode/could-rockys-musical-language-in-project-hail-...
1•pavel_lishin•34m ago•0 comments

Trump to allow use of cyber tools to target transnational criminal organizations

https://www.reuters.com/world/trump-signed-memo-allow-use-cyber-tools-target-transnational-crimin...
1•oogali•35m ago•1 comments

Show HN: Meowdoku – a no-signup daily cat logic puzzle

https://meowdoku.pro/
1•trywork2026•37m ago•0 comments

Reporter gets $850000 in raid suit

https://marionrecord.com/direct/reporter_gets_850_000_in_raid_suit+5747zorn+5265706f7274657220676...
2•rdmuser•43m ago•3 comments

Agentic Proof-Oriented Programming

https://fstar-lang.org/tutorial/book/agentic/agentic.html#agentic-proof-oriented-programming
1•woggy•44m ago•0 comments

AI Hype Is Running into Reality

https://www.nytimes.com/2026/08/12/opinion/ai-bubble-economy-crash.html
3•ripe•47m ago•0 comments

Spherical Trigonometry

https://en.wikipedia.org/wiki/Spherical_trigonometry
1•kamaraju•54m ago•0 comments

Open Source libraries are evolving into reference implementations

https://jacobtomlinson.dev/posts/2026/open-source-libraries-are-evolving-into-reference-implement...
1•iyanuashiri•55m ago•0 comments

We put llms.txt on 83 websites. In 12 weeks OpenAI's crawler read it 7 times

https://www.ezy.ai/research/do-ai-bots-read-llms-txt
2•jamesmackie•57m ago•0 comments

Agentic Code Quality

https://twitter.com/addyosmani/status/2087427868343373919
2•samuel246•1h ago•0 comments

Steam Game Recommender, with a RAG System That Focuses on Explainability First

https://nextsteamgame.com
3•apeczon•1h ago•1 comments

Fideliya Pass

https://www.fideliyapass.com/
2•zakox•1h ago•0 comments

Anthropic in Talks to Buy World Model AI Startup Decart for $6B

https://www.bloomberg.com/news/articles/2026-08-13/anthropic-said-in-talks-to-buy-ai-startup-deca...
10•htrp•1h ago•0 comments

Video game lawyer says all her clients have anti-AI contracts

https://www.gamesradar.com/games/echoing-palworld-dev-video-game-lawyer-says-all-her-clients-have...
7•eatonphil•1h ago•0 comments

Lightweight Haar Wavelet Subband Pruning for LLMs

https://aclanthology.org/2026.findings-acl.798/
1•wslh•1h ago•0 comments

Why your LLM ignores what you asked for

https://github.com/CamjamPNG/skills
3•camjampng•1h ago•0 comments

Apple and AI: Siri the Early Years

https://thechipletter.substack.com/p/apple-and-ai-siri-the-early-years
1•chmaynard•1h ago•0 comments

Shot on iPhone. Now Prove It

https://blog.ppb1701.com/shot-on-iphone-now-prove-it
2•meetpateltech•1h ago•0 comments

When the Denominator Disappears: FDA's Next Evolution Should Be Causal Inference

https://www.realclearhealth.com/articles/2026/08/05/when_the_denominator_disappears_1198625.html
2•tmoertel•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!