frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Human Cell Is Wildly Complex. Can AI Decode It? – Silvana Konermann – Ted [video]

https://www.youtube.com/watch?v=Xr9VqRawjAU
1•binyu•2m ago•0 comments

Chinese company closing private schools raises 'national security concerns'

https://www.telegraph.co.uk/news/2026/07/02/chinese-company-closing-schools-national-security/
1•intheitmines•6m ago•1 comments

Old and new apps, via modern coding agents

https://terrytao.wordpress.com/2026/07/11/old-and-new-apps-via-modern-coding-agents/
1•s1291•9m ago•0 comments

Inferring multicellular interactions in tumors from standard pathology slides

https://med.stanford.edu/news/all-news/2026/07/ai-tumor-pathology.html
2•hhs•10m ago•0 comments

Cops Say Waymo Snitched on Teens for Allegedly Drinking and Shooting a Toy Gun

https://www.404media.co/waymo-called-police-on-teens-san-mateo/
1•doener•11m ago•0 comments

A Swedish company is putting wings on boats [video]

https://www.youtube.com/watch?v=_VVXfYAOkEo
1•xqcgrek2•12m ago•0 comments

Dazzle Camouflage

https://en.wikipedia.org/wiki/Dazzle_camouflage
1•corentin88•18m ago•0 comments

Falsehoods Programmers Believe About Names (2010)

https://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/
1•theanonymousone•20m ago•0 comments

How sea stars build materials that can see

https://www.engineering.upenn.edu/stories/how-sea-stars-build-materials-that-can-see/
2•hhs•21m ago•0 comments

Fixed three bugs that made Qwen3.5-122B a daily driver on Mac Studio

https://mrzk.io/posts/qmlx-maximising-ai-psychosis-minmaxing-mac-studio/
1•marzukia•21m ago•0 comments

Show HN: AgentTransfer – open-source file transfer for AI agents (one Go binary)

https://github.com/shehryarsaroya/agenttransfer
1•tomatoes2026•22m ago•1 comments

Weightlifting beats running for blood sugar control, researchers find

https://news.vt.edu/articles/2025/11/research_fralinbiomed_yanweightlifting.html
20•sublinear•25m ago•3 comments

The fine print that follows you out the door: non-compete clauses are spreading

https://oecdecoscope.blog/2026/07/07/the-fine-print-that-follows-you-out-the-door-non-compete-cla...
1•hhs•27m ago•0 comments

G#: A modern .NET language with Go, Kotlin, and Swift ergonomics

https://davidobando.github.io/gsharp/
1•mashally•36m ago•0 comments

Mesh LLM: distributed AI computing on iroh

https://www.iroh.computer/blog/mesh-llm
11•tionis•36m ago•2 comments

AI and Job Postings: From Destruction to Creation?

https://www.hiringlab.org/2026/07/08/ai-and-job-postings-from-destruction-to-creation/
2•petilon•37m ago•0 comments

ContextOps, an ESLint-like static analyzer for LLM context

https://github.com/Abhijeet777ui/contextops
1•Abhijeet_Buag•39m ago•0 comments

Stop Telling Me to Ask an LLM

https://blog.yaelwrites.com/stop-telling-me-to-ask-an-llm/
46•theorchid•46m ago•24 comments

The Gravitational Olbers' Paradox and the Entropic Accelerating Universe

https://zenodo.org/records/21225371
1•nmstoker•47m ago•0 comments

"material deletion occurred" Sol wiped out user's home

https://twitter.com/mattshumer_/status/2075657271401390161
1•zxspectrumk48•59m ago•0 comments

Show HN: Token Time – Screen Time, but for your AI agent tokens

https://tokentime.bar
1•wzulfikar•1h ago•0 comments

Neobrowser AI has rediculously strong VPN builtin for FREE

https://neobrowser.ai/
1•burgeekingdom•1h ago•0 comments

Show HN: OpenThomas – weather trader agent for prediction markets

https://github.com/PredictionMarketTrader/openthomas
1•thomaslwang•1h ago•0 comments

Package Management as Org Chart

https://nesbitt.io/2026/07/10/package-management-as-org-chart.html
1•birdculture•1h ago•0 comments

Combinatorial Games in Lean

https://github.com/vihdzp/combinatorial-games
1•wertyk•1h ago•0 comments

Modern Implementation of Notational Velocity

https://nvnv.yoga/
2•sirodoht•1h ago•2 comments

New flapping robot swims and flies like a diving bird

https://news.mit.edu/2026/new-flapping-robot-swims-and-flies-like-diving-bird-0709
3•rodrodrod•1h ago•0 comments

What If It's Not the Phones?

https://www.theatlantic.com/technology/2026/07/phones-haidt-play-gray/687846/
5•voisin•1h ago•1 comments

RISCBoy is an open-source portable games console, designed from scratch

https://github.com/Wren6991/RISCBoy
12•mariuz•1h ago•2 comments

Rhode Island is regulating grocery checkout lines now

https://reason.com/2026/07/09/rhode-island-is-regulating-grocery-checkout-lines-now/
3•gmays•1h 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!