frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A Dark Cave – minimalist survival/settlement building game

https://a-dark-cave.com/
1•julez_•3m ago•0 comments

Opus 5, The Best Vending Machine Capitalist

https://andonlabs.com/blog/opus-5-vending-bench
2•arc7•6m ago•0 comments

Tailscale with Mullvad leaks your DNS

https://github.com/tailscale/tailscale/issues/9284
2•dtj1123•10m ago•0 comments

The Apple Calculator Language

https://wadetregaskis.com/the-apple-calculator-language/
1•ingve•11m ago•0 comments

Tell HN: Rising Censorship in German Social Media

1•Fotzenfritz•15m ago•1 comments

Lilian Weng left Thinking Machines citing health reasons, then rejoins OpenAI

https://techcrunch.com/2026/07/29/thinking-machines-co-founder-lilian-weng-left-the-company-citin...
1•doppp•16m ago•0 comments

Show HN: My AI keeps getting smarter. I don't. So I built Engram

https://github.com/nagisanzenin/engram
1•nagisanzeninz•17m ago•0 comments

Show HN: BPM Companion – app that matches playlist to your cadence (beta)

https://bpmcompanion.app/
1•ksh2u•18m ago•0 comments

Explain This – select text, get an explanation from a local LLM

https://github.com/Vishwamitra/explain-this
1•vmmishra•21m ago•0 comments

Cisco FMC static credential vulnerability exploited as a zero-day

https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-fmc-static...
1•nyku•22m ago•0 comments

Keeping goals to yourself increases the chances of completing them? [pdf]

https://www.socmot.uni-konstanz.de/sites/default/files/09_Gollwitzer_Sheeran_Seifert_Michalski_Wh...
3•jimsojim•29m ago•0 comments

Why Higher-Order Logic Is a Good Foundation for Deep Verification

https://sequent.inc/blog/posts/why-hol-for-deep-verification/
2•matt_d•30m ago•0 comments

New microwave frying method could make French fries much healthier

https://www.sciencedaily.com/releases/2026/07/260729044048.htm
3•london_safari•31m ago•0 comments

Is Cloudflare classifying opencode.ai as malware?

1•_raz•33m ago•4 comments

Following the Scent

https://johnwbrown.substack.com/p/following-the-scent
1•ankitg12•37m ago•0 comments

Show HN: Found Live Driving Conditions all over the world. Lets see

https://www.wfy24.com/en/routes
1•weatherfun•39m ago•0 comments

Why Catching Skin Cancer Early Is a Home Robotics Problem

https://marionlepert.github.io/blog/openderm-robotics-problem.html
1•futurecat•41m ago•0 comments

Information Foraging Theory [pdf]

https://www.peterpirolli.com/ewExternalFiles/31354_C01_UNCORRECTED_PROOF.pdf
1•ankitg12•42m ago•0 comments

The scraper bugs that don't throw

https://gist.github.com/ConorsCode/ea7dbfa4e389554c16c308d0a19b67b2
1•Wevegotscrapys•44m ago•0 comments

Ron Gilbert started production on Thimbleweed Park 2

https://www.grumpygamer.com/twp2_announce/
1•alberto-m•45m ago•0 comments

Lessons for founders (from the Wright Brothers biography)

https://blog.thinkst.com/2026/07/other-lessons-for-security-product-founders-from-the-wright-brot...
3•mh_•47m ago•1 comments

Sam Altman is now talking to the White House about decelerating AI

https://twitter.com/AISafetyMemes/status/2082569026929394008
5•abhishekdev•48m ago•3 comments

Hearsay: Vision-Language Medical Diagnoses Without an Image

https://arxiv.org/abs/2607.26886
1•sbulaev•49m ago•0 comments

Instrumenting my espresso machine with OpenTelemetry

https://clickhouse.com/blog/espresso-machine-observability-with-otel
3•g0xA52A2A•49m ago•0 comments

Trellis: Workspace Tooling for Gleam Monorepos

https://tylerbutler.com/trellis/
1•crowdhailer•50m ago•0 comments

Backlink Exchange for Indie Builders

https://github.com/nicklaunches/builders-backlinks.com
1•theorchid•51m ago•0 comments

Maximum Marginal Relevance and Elastic: Diversifying Search Results

https://www.elastic.co/search-labs/blog/maximum-marginal-relevance-diversify-results
1•ankitg12•54m ago•0 comments

Simulating Realistic Order Execution for Crypto Backtesting

https://medium.com/@DolphinDB_Inc/stop-backtesting-in-theory-simulate-the-real-crypto-market-with...
1•chaercling•59m ago•0 comments

Show HN: Focal Harvest – local web research and OSINT pipeline

https://techno-neighbour.github.io/focal-harvest/
1•xlr8_track•1h ago•2 comments

I Have Thoughts on the iPhone Air

https://christianselig.com/2026/07/iphone-air-review/
25•janandonly•1h ago•23 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!