frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Can an LLM price a World Cup match better than the market (and make money)?

https://christian.bock.bio/posts/frontier_xg_worldcup/
1•cbock90•1m ago•0 comments

Show HN: Seedle, daily -dle for Minecraft seeds

https://seedle.loch.tools/
1•lwansbrough•4m ago•0 comments

An Astronaut Saw a Russian Missile [..] Then She Went Where It Landed

https://united24media.com/war-in-ukraine/an-astronaut-saw-a-russian-missile-head-for-ukraine-from...
1•defly•5m ago•0 comments

Meta will train its AI on Newsmax, a far-right media outlet

https://popular.info/p/meta-will-train-its-ai-on-far-right
3•Fellw•5m ago•0 comments

Secondhand booksellers in UK and Ireland suspect AI firms 'strange' bulk orders

https://www.theguardian.com/technology/2026/aug/15/uk-ireland-booksellers-suspect-ai-companies-bu...
1•heisenbit•6m ago•0 comments

Supply-chain controls matter more when agents install your dependencies

https://omniline.app/blog/supply-chain-controls-matter-more-when-agents-install-your-dependencies
1•libertas_quae_s•8m ago•0 comments

How Ozempic Destroyed Fat Positivity [video]

https://www.youtube.com/watch?v=LbZ31_60z3M
2•znpy•8m ago•0 comments

US hires over 2k 'best and brightest' video gamers as air traffic controllers

https://www.the-express.com/news/world-news/213828/us-hires-over-2-000-video-gamers-air-traffic-c...
2•speckx•9m ago•0 comments

Remembering the pre-Google web, when search was an experiment

https://arstechnica.com/gadgets/2026/08/remembering-the-pre-google-web-when-search-was-an-experim...
1•ohjeez•11m ago•0 comments

Kimi Work attaches raw agent sessions to feedback reports

2•ryanmerket•15m ago•0 comments

See how an H100 works in 3D with threejs

https://gpu.kylejeong.com/
1•Kylejeong21•15m ago•0 comments

What on Earth is Google doing?

https://www.digitaldigging.org/p/how-to-plant-a-nuclear-plant-in-iran
2•strogonoff•17m ago•0 comments

ESPConnect

https://github.com/thelastoutpostworkshop/ESPConnect
2•skibz•19m ago•0 comments

Antitrust: The Monster Case (1975, IBM)

https://time.com/archive/6846827/antitrust-the-monster-case/
1•asawfofor•20m ago•0 comments

The New Bottlenecks After Coding

https://robotpaper.ai/the-new-bottlenecks-after-coding/
1•royosherove•21m ago•0 comments

The teenagers who wired Romania [audio]

https://www.bbc.com/audio/play/p0p2vc20
2•alibarber•25m ago•0 comments

Magnus Carlsen Retains Chess Esports World Cup Title

https://www.chess.com/news/view/magnus-carlsen-wins-2026-esports-world-cup
2•speckx•26m ago•0 comments

Show HN: Stay connected across Africa, from landing to Safari

https://safariesim.com/
2•not_wowinter13•30m ago•0 comments

Why tech bosses keep sharing their manifestos about AI

https://www.bbc.com/news/articles/cz97ljy91zxo
3•tcp_handshaker•35m ago•0 comments

Israeli PR wants to answer your ChatGPT questions

https://www.politico.com/newsletters/politico-influence/2026/08/14/israeli-pr-wants-to-answer-you...
6•computerliker•39m ago•0 comments

Short Memory

https://www.deer.psu.edu/short-memory/
2•lumpa•41m ago•0 comments

Deadly forgotten tornado was worst in state history

https://www.offbeatoregon.com/2412e.long-creek-bomb-cyclone_682.511.html
4•joebig•42m ago•2 comments

Tiny glitches appear over South America due to a weak spot in Earth's field

https://www.reddit.com/r/GoogleEarthFinds/comments/1ke63zw/psa_there_are_lot_of_tiny_colorful_gli...
2•thunderbong•42m ago•0 comments

Depleted strategic oil reserve nears level that raises concerns about damage

https://www.cnbc.com/2026/08/15/strategic-petroleum-reserve-spr-oil-iran-war-caverns.html
2•anigbrowl•43m ago•3 comments

Guide your development, documentation are code

https://github.com/snowballons/docs-as-code-primer
1•snowballons•44m ago•0 comments

Super El Niño Keeps Growing as New Forecasts Reach Record Territory Ahead Winter

https://www.severe-weather.eu/long-range-2/super-el-nino-growth-accelerating-to-record-strength-f...
1•dgellow•45m ago•0 comments

Why standing at your desk may be little better than sitting

https://www.economist.com/science-and-technology/2026/08/14/why-standing-at-your-desk-may-be-litt...
2•vinni2•45m ago•0 comments

Ask HN: Has anyone solved reproducible deployment of native mobile platforms?

2•rezvovmobile•47m ago•0 comments

A Few Foundations Shape American Higher Education

https://www.aei.org/commentary/how-a-few-foundations-shape-american-higher-education/
1•paulpauper•51m ago•0 comments

Austin Scholar #222: The three things that make a kid love learning

https://austinscholar.substack.com/p/austin-scholar-222-the-three-things
2•paulpauper•51m 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!