frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open Source is not immune to monopoly

https://humancode.us/2026/07/17/open-source-monopoly
1•ilreb•2m ago•0 comments

Nadella Blasts AI Industry's Double Standard

https://finance.biggo.com/news/438f299b-ca23-468d-b37d-0ffe09a4ca55
1•nittanymount•8m ago•1 comments

The Netdna-Ssl.com Takeover

https://scotthelme.co.uk/a-dead-cdn-a-wildcard-and-an-attack-waiting-to-happen-the-netdna-ssl-com...
1•mercurybee•9m ago•0 comments

Native C# CEL Implementation

https://www.nuget.org/packages/Celly
2•jackedEngineer•14m ago•0 comments

New Jersey Couple Aids Meteorite Discovery After It Crashes Through Their Roof

https://www.nytimes.com/2026/07/15/science/meteorite-new-jersey.html
2•gmays•16m ago•0 comments

Merck's Lipfendra becomes first oral PCSK9 treatment

https://www.fiercepharma.com/pharma/merck-scores-fda-nod-lipfendra-becomes-first-oral-pcsk9-treat...
1•toomuchtodo•17m ago•1 comments

Open Problems Solved by LLMs? A Survey of Verifiable Mathematical Discovery [pdf]

https://aclanthology.org/2026.bigpicture-main.2.pdf
2•antondd•26m ago•1 comments

Credit Card Points Are a Transfer from the Broke to the Comfortable

https://willisallstead.substack.com/p/your-credit-card-points-are-a-transfer
9•willio58•31m ago•0 comments

Why X Is Not Our Ideal Window System

https://people.freedesktop.org/~ajax/WhyX.pdf?__goaway_challenge=meta-refresh&__goaway_id=c287e9b...
2•signa11•31m ago•0 comments

ReFrame – The EPaper Camera

https://reframe.camera/
2•NetOpWibby•32m ago•0 comments

PSA about abuse of cat(1) command. Don't abuse cats

https://www.abuseofcats.com
3•scooterbooper•33m ago•0 comments

Aside – Reddit-like circles with AI-ranked feeds

https://aside.cool/
1•zhiwenhuang•35m ago•0 comments

People Counter with Infrared Sensor: Build Your Own System in a Few Hours

https://comuniq.xyz/post?t=1406
3•01-_-•40m ago•0 comments

Sourced ranking of the AI infrastructure build-out

https://www.capexindex.com/
2•umangsehgal93•42m ago•0 comments

Loop Library for Engineers

https://signals.forwardfuture.com/loop-library/
1•tylerdane•44m ago•0 comments

Common diet tips about water intake and spicy foods could be dead wrong

https://news.cornell.edu/stories/2026/07/common-diet-tips-about-water-intake-and-spicy-foods-coul...
2•littlexsparkee•44m ago•0 comments

Figma for Email?

https://www.hedwig-ai.com/
2•neshc•45m ago•1 comments

M17 rev B done, rev C next

https://m17project.org/2026/06/16/linht-rev-b-status-what-works-what-broke-and-why-rev-c-is-next/
2•client4•45m ago•0 comments

My C and Assembler 3D Real Time Renderer from 1997

https://ben3d.ca/blog/rendering-real-time-3d-before-gpus
2•bhouston•49m ago•0 comments

Clang: Hardware-Assisted AddressSanitizer Design Documentation

https://clang.llvm.org/docs/HardwareAssistedAddressSanitizerDesign.html
2•signa11•50m ago•0 comments

A Functional Taxonomy of World Models by Fei-Fei Li

https://drfeifei.substack.com/p/a-functional-taxonomy-of-world-models
3•andsoitis•50m ago•0 comments

Goiânia Accident

https://en.wikipedia.org/wiki/Goi%C3%A2nia_accident
3•isagues•52m ago•0 comments

Tyler Cowen: the future belongs to AI maniacs

https://www.thefp.com/p/tyler-cowen-ai-maniacs-future-economy
2•thoughtpeddler•54m ago•1 comments

Repeal of national park rule could impact drinking water for millions

https://www.courthousenews.com/repeal-of-national-park-rule-could-impact-drinking-water-for-milli...
4•geox•54m ago•0 comments

Things you didn't know about indexes

https://jon.chrt.dev/2026/04/15/things-you-didnt-know-about-indexes.html
2•thunderbong•55m ago•0 comments

Claude Code(Fable) refused my slow down instruction

https://qusaisuwan.github.io/cc-incident/index.html
2•qusaisuwan•57m ago•0 comments

VM Timekeeping: Using the PTP Hardware Clock on KVM

https://www.libertysys.com.au/2024/04/vm-timekeeping-using-the-ptp-hardware-clock-on-kvm/
2•randen•57m ago•0 comments

BigKeyRing – Physical Key Management

https://bigkeyring.com/
2•Kroopo•1h ago•0 comments

Avatoon – React Three Fiber component for audio-synced 3D avatar lip-sync

https://github.com/khaledalam/avatoon
2•KhaledAlam•1h ago•1 comments

A non-partisan map of how Congress votes and who donates

https://anaximander.us
2•Vavnik•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!