frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: TG Alpha Hunter – AI that turns Telegram noise into a crypto digest

https://app.flowgaia.io/
1•manueltena•15s ago•0 comments

Apple's Linux Container v1.0 Releases

https://github.com/apple/container/releases/tag/1.0.0
1•EvanZhouDev•22s ago•0 comments

Meta's oversight board says account bans lack due process, transparency

https://techcrunch.com/2026/06/04/metas-oversight-board-says-account-bans-lack-due-process-transp...
1•anigbrowl•2m ago•0 comments

Policy on the AI Exponential

https://darioamodei.com/post/policy-on-the-ai-exponential
1•yjp20•2m ago•0 comments

I'm tired of reading all the day. Anyone else?

https://grops.biz
1•filippo_ciprian•2m ago•0 comments

Anthropic's Full Literary Stack

https://samwilkinson.io/posts/2026-06-11-anthropics-full-literary-stack
1•sammycdubs•5m ago•0 comments

Improving the circular economy adoption for near-end-of-life offshore wind farms

https://www.sciencedirect.com/science/article/pii/S0301479725036552?via%3Dihub
2•PaulHoule•10m ago•0 comments

The Market Behind the Wall

https://www.cringely.com/2026/06/10/the-market-behind-the-wall/
1•dxs•10m ago•0 comments

Tyler Cowen: AI Isn't Conscious. Neither Are We

https://www.thefp.com/p/tyler-cowen-ai-consciousness-myth
1•paulpauper•10m ago•1 comments

Startups Are Ruining Reddit

https://frigade.com/blog/startups-ruining-reddit
2•pancomplex•11m ago•0 comments

Ex150salmon review: Failure after only 14 days

https://www.exfatloss.com/p/ex150salmon-review-failure-after
1•paulpauper•12m ago•0 comments

Scalable Intra-Process Data Redistribution W Ring-Buffer Shuffle (Redpanda Oxla)

https://arxiv.org/abs/2605.29099
1•PeterCorless•12m ago•0 comments

Show HN: Interbase – Long-running AI goals and aliases for any model

https://github.com/agentsorchestrationcompany/interbase
1•kathuria•12m ago•0 comments

Ask HN: How do you keep agent-written PRs reviewable?

1•andrewrn•14m ago•0 comments

Would you choose a simulated utopia or the real world?

https://www.lesswrong.com/posts/to9cSGgD6nALByKjg/my-favorite-depiction-of-utopia
2•paulpauper•14m ago•0 comments

Stackoverflow for Agents

https://stackoverflow.blog/2026/06/10/announcing-stack-overflow-for-agents/
5•rexthonyy•15m ago•0 comments

What's new with Postgres at Microsoft across 6 workstreams

https://techcommunity.microsoft.com/blog/adforpostgresql/whats-new-with-postgres-at-microsoft-202...
1•clairegiordano•15m ago•0 comments

Show HN: AI Mime - Turn a screen recording into a script you can rerun

https://github.com/prakhar1114/ai_mime
1•prakharjain•17m ago•0 comments

A tier list of secrets managers, after using all of them

https://www.vincentchan.vc/secrets-management-tools-2026-tier-list
1•cvince•17m ago•1 comments

Kyndryl showers execs with shares while staff ponder redundancy packages

https://www.theregister.com/on-prem/2026/06/09/kyndryl-showers-execs-with-shares-while-staff-pond...
1•taubek•18m ago•0 comments

Ask HN: Those who quit Software Eng. to do something else, what did you do?

1•trwhite•19m ago•0 comments

DNSSpeedTester Native Apps for DNS Benchmarking

https://dnsspeedtester.com/selfhosted-apps
1•vishnu351•19m ago•1 comments

A Nixpkgs for the Enterprise: An Update on Determinate Secure Packages

https://determinate.systems/blog/supply-chain-update/
1•biggestlou•20m ago•0 comments

Side Hustles

https://www.pankajtanwar.in/side-hustles
1•taubek•20m ago•0 comments

Supply chain attacks: is a Kessler Syndrome for OSS a risk worth acknowledging?

https://keydiscussions.com/2026/06/10/is-a-kessler-syndrome-for-software-a-risk-worth-acknowledging/
1•spenvo•21m ago•0 comments

Custom Rules Forward Proxy

https://github.com/Vaccarini-Lorenzo/ProductivityProxy
1•thisislorenzov•21m ago•0 comments

The Great Agent Skills Land Grab

https://denodell.com/blog/the-great-agent-skills-land-grab
1•speckx•21m ago•0 comments

How are you getting customers to taste your food?

1•playistry•23m ago•0 comments

Pros and Cons of the Harbor Framework

https://neurometric.substack.com/p/what-we-learned-about-the-harbor
1•robmay•24m ago•0 comments

Web-based virtual null modem to play Quake I in MS-DOS in multiplayer online

https://levels.io/virtual-null-modem-quake-1-multiplayer-browser
1•ingve•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!