frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Oracle critical July patch update advisory contains 1,449 new security patches

https://www.oracle.com/security-alerts/cpujul2026.html
1•speckx•1m ago•0 comments

A digestion of the Jacobian conjecture counterexample

https://terrytao.wordpress.com/2026/07/21/a-digestion-of-the-jacobian-conjecture-counterexample/
1•jeremyscanvic•2m ago•0 comments

Bring Your Own Harness

https://andreapivetta.com/posts/bring-your-own-harness.html
1•ziggy42•2m ago•0 comments

K0s – The Zero Friction Kubernetes

https://github.com/k0sproject/k0s
1•porjo•4m ago•0 comments

Show HN: RootBadger – a modern Usenet-style discussion platfor

https://rootbadger.com
1•yodabytz•5m ago•0 comments

Treasury Flags Concern over 'Potentially Abusive' Tax Trades

https://www.bloomberg.com/news/articles/2026-07-21/treasury-flags-concern-over-potentially-abusiv...
1•petethomas•5m ago•0 comments

Nvidia Vera Rubin Driving Performance per Watt, Lowest Token Cost for Partners

https://www.hpcwire.com/off-the-wire/nvidia-vera-rubin-driving-performance-per-watt-lowest-token-...
2•rbanffy•6m ago•0 comments

Show HN: Browser Tools SDK – an optimal browser harness for agents

https://libretto.sh/browser-tools
2•tanishqkanc•9m ago•0 comments

Show HN: Unified workspace where AI knows your business

https://zetadeck.com
1•not_wowinter13•9m ago•0 comments

iOS 27 code suggests Apple could restrict leased devices after missed payments

https://9to5mac.com/2026/07/21/ios-27-code-suggests-apple-could-restrict-leased-devices-after-mis...
1•cdrnsf•10m ago•0 comments

Ask HN: What is your onboarding/discovery process for a new client or project?

1•urnicus•11m ago•0 comments

Octen: We stayed quiet and built the fastest search on Earth

https://twitter.com/KZouAPT/status/2079569508549673409
2•devchandra•13m ago•3 comments

Show HN: Meltbox – where your agents send you briefs

https://meltbox.ai/
1•flysonic10•14m ago•0 comments

MovieSoon: What's coming to a theater near you

https://moviesoon.eu/
2•taubek•15m ago•0 comments

Cisco Antares: A New Family of Cheap, Open-Source, Compact Security AI Models

https://securityboulevard.com/2026/07/cisco-antares-a-new-family-of-open-source-inexpensive-compa...
4•CrankyBear•15m ago•0 comments

Nintendo says users voluntarily paid prices, have no right to tariff refunds

https://arstechnica.com/tech-policy/2026/07/nintendo-customers-have-no-legal-right-to-tariff-refu...
3•AdmiralAsshat•16m ago•1 comments

Supporting ATI TeraScale GPUs from 2007-2009 in RPCS3

https://blog.rpcs3.net/2026/07/21/supporting-terascale-gpus/
1•ColonelPhantom•16m ago•0 comments

Oratomic's $300M Bet on Low-Qubit Quantum Computing

https://www.hpcwire.com/2026/07/21/oratomics-300m-bet-on-low-qubit-quantum-computing/
1•rbanffy•17m ago•0 comments

Worship me at the office altar: Why narcissistic leaders resist remote work

https://www.sciencedirect.com/science/article/pii/S0749597826000300#kg005
4•Tomte•17m ago•1 comments

Anthropic runs large-scale code migrations with Claude Code

https://twitter.com/ClaudeDevs/status/2079654423828304282
2•shenli3514•19m ago•0 comments

Bill Gates Is Evil (2021)

https://windows-99.neocities.org
3•Gecko4072•19m ago•0 comments

Flux 3 seems to be imminent

https://bfl.ai/models/flux-3
3•recsv-heredoc•20m ago•1 comments

How Far Behind the Frontier Are Leading Open Weight Models on Cyber?

https://www.aisi.gov.uk/blog/how-far-behind-the-frontier-are-leading-open-weight-models-on-cyber
1•herbertl•21m ago•0 comments

GE Aerospace aircraft flies to mark high altitude hybrid-electric milestone

https://www.aerospacetestinginternational.com/news/ge-aerospace-aircraft-flies-at-farnborough-to-...
1•rbanffy•22m ago•0 comments

Mickey Mouse Sells a Bundle

https://www.marginpoints.com/essays/mickey-mouse-sells-a-bundle-hn
4•historian1066•23m ago•0 comments

First-ever X-rays in space offer hope for possible patients headed to the moon

https://www.space.com/space-exploration/human-spaceflight/1st-ever-x-rays-in-space-offer-hope-for...
1•gmays•23m ago•0 comments

The future of software isn't tests. It's proofs

https://github.com/astrio-labs/forall
7•Nolan_Lwin•24m ago•0 comments

How rare is a four leaf clover? [video]

https://www.youtube.com/watch?v=XfUFPHA0HIA
1•rwmj•24m ago•0 comments

Glassdoor is now part of Indeed

https://www.glassdoor.com/about/
2•mahdihabibi•24m ago•1 comments

Show HN: Chalk: a Mac app for technical diagrams with a built-in MCP for Claude

https://chalk.appkit.studio
3•davideweaver•25m 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!