frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Asus Bike Booster

https://www.asus.com/accessories/bike-booster/asus-oxiis/oxiis-intelligent-bike-booster/
1•wiradikusuma•1m ago•0 comments

AI agents ran an autonomous cyberattack on Taiwan

https://www.threads.com/?injected_media_ids=%5B%223961847099071291455%22%5D
1•BlueBerry2001•2m ago•0 comments

OpenAI Is Quietly Testing an $8 Pay-to-Reset Quota Feature

https://www.businessinsider.com/openai-pay-to-reset-quota-feature-2026-8
1•doppp•3m ago•0 comments

A SAT Attack on Tarski's High School Algebra Problem

https://arxiv.org/abs/2608.08421
1•matt_d•4m ago•0 comments

LinkedIn CringeBot 3000

https://www.cringebot3000.com/
1•theanonymousone•4m ago•0 comments

There are 25% more psychotherapy sessions at 53 minutes than at 52

https://www.trytwofold.com/insights/53-minute-billing-threshold
1•ragswag•4m ago•0 comments

Swiss public broadcaster to block AI scrapers – except Swiss model Apertus

https://www.nzz.ch/feuilleton/wir-muessen-uns-verteidigen-warum-susanne-wille-sich-gerade-mit-der...
1•brotmaa•6m ago•0 comments

We improved 15 LLMs at coding in one afternoon. Only the harness changed

https://stencil.so/blog/the-harness-problem
1•latchkey•6m ago•0 comments

Brain scans show that dogs can distinguish various emotions in human faces

https://www.univie.ac.at/en/news/detail/brain-scans-show-that-dogs-can-distinguish-various-emotio...
1•geox•9m ago•0 comments

Iraqi desserts article

https://nomadsunveiled.com/iraqi-desserts-sweets/
1•marysminefnuf•9m ago•0 comments

UK extreme heat prompts Cobra emergency meeting

https://www.theguardian.com/uk-news/2026/aug/12/uk-extreme-heat-prompts-cobra-emergency-meeting
1•tosh•11m ago•1 comments

China bans AI companions, forcing millions to break up with virtual partners

https://www.abc.net.au/news/2026-07-19/china-cracks-down-on-artificial-intelligence-companions/10...
2•vrganj•13m ago•0 comments

The Liberal Turn Against Free Speech

https://twitter.com/phl43/status/2087182515643519251
1•barry-cotter•14m ago•1 comments

Show HN: WhatsApp Contact Exporter

https://chromewebstore.google.com/detail/contact-exporter-for-wa/dfchifnmhmdeahedgneamifgellcajeb
1•qwikhost•16m ago•0 comments

Thailand suspends gun licences as teen shooter's victims are cremated

https://www.theguardian.com/world/2026/aug/12/thailand-suspends-gun-licences-teenage-shooter-gran...
1•Markoff•17m ago•0 comments

Show HN: Pantheon. Production-ready scientific workflows for the Horus Runtime

https://github.com/temple-compute/pantheon
1•chdominguez•21m ago•0 comments

The Institute Behind Taiwan's Chip Dominance

https://asteriskmag.com/issues/13/the-institute-behind-taiwan-s-chip-dominance
1•barry-cotter•22m ago•0 comments

Watch out for cache read costs

https://martinalderson.com/posts/watch-out-for-cache-read-costs/
1•cyliu•22m ago•0 comments

Ask HN: Has HN considered adding dark mode?

1•tmp10423288442•28m ago•0 comments

Torx, Thermalizers, and Z1

https://extropic.ai/writing/from-one-to-one-billion/
1•flinkerflinks•30m ago•0 comments

AgentStory is a library of books written live by autonomous agents

https://agentstory.fly.dev/about
1•georgeck•32m ago•0 comments

A Room Full of Locksmiths

https://www.gnanaguru.com/blog/a-room-full-of-locksmiths/
1•gnanagurusrgs•33m ago•0 comments

Tiobe Index for August 2026: Java Nears C++ as Rust Holds No. 10

https://www.techrepublic.com/article/news-tiobe-august-2026-java-nears-c-plus-plus/
1•geoffbp•33m ago•0 comments

Nvidia AI Factory Compute Is Becoming an Investable Asset Class

https://twitter.com/jensenhuang/status/2086934705207959965
2•eecc•35m ago•0 comments

Studying AI welfare empirically [pdf]

https://nonhumanminds.org/wp-content/uploads/2026/07/Studying-AI-Welfare-Empirically.pdf
1•rufasterisco•37m ago•0 comments

Interviewing Engineers in the AI Era: Lessons from a Year of Rebuilding

https://www.coinbase.com/en-gb/blog/interviewing-engineers-in-the-ai-era-lessons-from-a-year-of-r...
3•mweibel•40m ago•0 comments

Well-Known URIs

https://www.iana.org/assignments/well-known-uris
3•locknitpicker•41m ago•2 comments

A Functional Taxonomy of World Models – By Fei-Fei Li

https://www.worldlabs.ai/blog/taxonomy-of-world-models
1•vismit2000•41m ago•0 comments

DoorDash is set to become a Nevada-incorporated company

https://www.businessinsider.com/doordash-moves-incorporation-delaware-nevada-2026-8
2•NewCzech•42m ago•0 comments

Open-source harness builder for AI coding

https://github.com/coleam00/Archon
1•saikatsg•42m 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!