frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI agent suggested installing a malware package. Engineer almost took its advice

https://www.theregister.com/security/2026/08/20/ai-agent-suggested-installing-a-malware-package-e...
1•sbulaev•19s ago•0 comments

Hammerhead Worms

https://en.wikipedia.org/wiki/Bipalium
1•tosh•47s ago•0 comments

Google's AI photoscanner can determine body fat through selfies

https://arxiv.org/abs/2603.27017
1•Phreaker00•49s ago•1 comments

Show HN: I trained a 125M model to autocomplete piano on-device

https://simedw.com/2026/08/20/midi-autocomplete/
1•simedw•2m ago•0 comments

Open-source, Accessible, and Customizable 3D-printed Humanoid Robot

https://lite.berkeley-humanoid.org/
1•bilsbie•3m ago•0 comments

Dark energy and quantum gravity may be deeply intertwined

https://phys.org/news/2026-08-dark-energy-quantum-gravity-deeply.html
1•samizdis•3m ago•0 comments

Ask HN: What AI automations have you kept running in production?

1•Harish_0089•3m ago•0 comments

138M children are in child labor. What does this mean?

https://ourworldindata.org/138-million-children-are-in-child-labor-what-does-this-actually-mean
1•surprisetalk•4m ago•0 comments

Show HN: FillBook – A trade journal for Kalshi with fee-adjusted P&L

https://fillbook.io
1•fillbookio•6m ago•0 comments

U.S. preparing to force Netherlands to ban ASML from selling to China

https://nltimes.nl/2026/08/20/us-preparing-force-netherlands-ban-asml-selling-china
3•giuliomagnifico•6m ago•0 comments

Echo of Einstein: An unexpected link between whale calls and special relativity

https://phys.org/news/2026-08-echo-einstein-unexpected-link-whale.html
1•pseudolus•8m ago•0 comments

Retro multiplayer world is also an IRC client

https://freeq.at/blog/this-retro-multiplayer-world-is-also-an-irc-client/
1•chadfowler•9m ago•0 comments

Associations of habitual coffee intake w/ testosterone & cardiometabolic markers

https://link.springer.com/content/pdf/10.1007/s00394-026-04038-z.pdf
1•bushwart•9m ago•0 comments

British Groups Push Age Verification Bills in 21 US States

https://reclaimthenet.org/report-british-groups-push-age-verification-bills-in-21-us-states
2•ironyman•10m ago•0 comments

Coin-Op and Console Game Promo Tapes

https://brianpeek.com/coin-op-and-console-game-promo-tapes/
1•cainxinth•11m ago•0 comments

Kingmakers: Crypto, AI, betting firms fuel record spending on the 2026 midterms

https://www.reuters.com/legal/legalindustry/new-kingmakers-crypto-ai-betting-firms-fuel-record-sp...
1•pseudolus•14m ago•0 comments

FCC abolishes gigabit speed goal

https://arstechnica.com/tech-policy/2026/08/fcc-abolishes-gigabit-speed-goal-suggesting-it-is-unf...
2•jonbaer•15m ago•0 comments

Deadvlei, Nambia – The Dark, the Dead, and the Desert

https://www.maloriesadventures.com/blog/deadvlei-nambia-the-dark-the-dead-and-the-desert/
1•thunderbong•15m ago•0 comments

Why Haven't the Voyager Spacecraft Ever Been Hacked?

https://lowendbox.com/blog/why-havent-the-voyager-spacecraft-ever-been-hacked/
1•shaunpud•17m ago•0 comments

Show HN: A directory of the best tweets available on twitter. hand-picked. no AI

https://billiondollartweets.com/
1•apsinghdev•18m ago•1 comments

We Stopped Counting Tokens

https://medium.com/super/we-stopped-counting-tokens-9278fbccadbc
1•herbertl•21m ago•0 comments

Hopf Spherical Compression and Quantization in C++23

https://github.com/meridionalissoftware/hscq
2•rfgplk•23m ago•1 comments

Show HN: Sutra – iOS e-books and comic reader with Calibre, OPDS and WebDAV sync

https://sutra-reader.com/index.html
1•darkusnitus•24m ago•0 comments

AI didn't erase the junior engineer's value, it increased it it

https://franciscotrindade.me/blog/the-kids-are-really-alright/
11•franciscomt•25m ago•3 comments

A better way to view diffs

https://charwise.vercel.app/
2•rpst•30m ago•2 comments

NASA calls off mission to rescue Swift gamma-ray observatory

https://arstechnica.com/space/2026/08/nasa-calls-off-mission-to-rescue-swift-gamma-ray-observatory/
2•pavel_lishin•30m ago•0 comments

Decennial Air Cruise of 1933

https://en.wikipedia.org/wiki/Decennial_Air_Cruise
1•simonebrunozzi•37m ago•0 comments

Survey of 106 European design engineers on what would make them change jobs

https://hymera.co/research-what-makes-a-design-engineer-leave-their-job
2•ablazevics•37m ago•0 comments

Eron on X: "LLMs do one thing: predict the next word

https://twitter.com/0xEronn/status/2089079333885198384
2•bilsbie•39m ago•0 comments

Show HN: Built my 15-year-old game idea

3•ashitlerferad•39m 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!