frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Trump Signs "Treaty of Versailles" in Israeli-American Surrender to Iran

https://www.theguardian.com/us-news/live/2026/jun/17/trump-georgia-primary-mike-collins-jon-ossof...
1•casey2•39s ago•0 comments

Gloat: Q2 Grant Halfway Report

https://gloathub.org/blog/2026/06/16/gloat-q2-grant-halfway-report/
1•tosh•1m ago•0 comments

GLM 5.2 is now available via a unified Model API

https://www.hpc-ai.com/model-apis
1•hpcaitech•1m ago•1 comments

There Were Lots of Invitations, and I Know You Sent Me Some

https://www.astralcodexten.com/p/waiting-for-the-miracle
2•Michelangelo11•5m ago•0 comments

An URL shortner for all Codeberg users

https://libl.in
1•mindaslab•7m ago•0 comments

South Korea's Fake Online Stores Help Shopping Addicts Save Money

https://www.odditycentral.com/news/south-koreas-fake-online-stores-help-shopping-addicts-save-mon...
2•networked•11m ago•0 comments

CBC will no longer air NHL games in 'end of an era' as broadcast deal expires

https://www.cbc.ca/sports/cbc-nhl-hockey-night-in-canada-ends-9.7236977
3•canucker2016•12m ago•0 comments

Zigzag Decoding with AVX-512

https://zeux.io/2026/06/17/zigzag-decoding-avx512/
1•matt_d•12m ago•0 comments

The 14-point US-Iran peace plan, annotated

https://www.cnn.com/2026/06/17/politics/us-iran-memo-annotated-intl-vis
2•SilverElfin•12m ago•0 comments

Trump admin blocking Fable 5 rerelease unless Anthropic ensures no jailbreaks

https://www.wired.com/story/the-white-house-wants-anthropic-to-block-all-jailbreaks-that-may-not-...
4•reasonableklout•13m ago•1 comments

JPMorgan Chase cuts off Anthropic access for its Hong Kong staff

https://www.ft.com/content/de83d303-6a03-456b-bfb9-7b11dd502ab3
2•frb•13m ago•0 comments

An open-source AI just beat OpenAI's GPT-5.5 at coding (1/6th the price)

https://docs.z.ai/guides/llm/glm-5.2
1•Raj_Sidwadkar•16m ago•0 comments

GLM 5.2 playing text adventures

https://entropicthoughts.com/glm-5-2-playing-text-adventures
1•kqr•18m ago•0 comments

An Open Source Implementation of Notebook LM

https://github.com/lfnovo/open-notebook
1•saikatsg•19m ago•0 comments

Explaining Attention with Program Synthesis

https://arxiv.org/abs/2606.19317
1•E-Reverance•23m ago•0 comments

Data Viz and Table Design from the Letterpress Era

https://chris-parmer.com/data-viz-from-the-letterpress-era/
1•chriddyp•23m ago•0 comments

Estimate and pay your Q2 taxes

https://www.kip-ai.com/estimate
1•prudhvid•24m ago•0 comments

Does Your Programming Language Ever Surprise You in a Good Way?

https://donraab.medium.com/does-your-programming-language-ever-surprise-you-in-a-good-way-eb29e1e...
1•ingve•31m ago•1 comments

The Australian Government to Require SMS/MMS Sender ID Registraion

https://www.acma.gov.au/sms-sender-id-register
12•anitil•34m ago•2 comments

How to Become a Person After Smartphones Have Rotted Your Brain

https://www.thenewatlantis.com/publications/how-to-become-a-person-after-smartphones-have-rotted-...
8•the-mitr•34m ago•0 comments

Six months of AI in 2026, and a whole lot of noise

https://jatniel.dev/en/bytes/six-months-of-ai-in-2026-and-a-whole-lot-of-noise
1•jtnl•36m ago•0 comments

LLMs: Don't use a sledgehammer when tweezers will do

https://superuserdone.com/posts/2026-06-18-dont-use-a-sledgehammer/
1•SuperUserDone•37m ago•0 comments

Catching bad LLM behavior: OpenAI's new Deployment Simulation

https://openai.com/index/deployment-simulation/
1•Raj_Sidwadkar•38m ago•0 comments

DeepSeek Introduces Vision

https://chat.deepseek.com/
17•RIshabh235•39m ago•1 comments

Tesla remotely disabled the €6,200 FSD feature I had used for months

https://teslatookwhatipaidfor.com/en/
3•bartoszhernas•41m ago•4 comments

Environment AI writing code for simulations to test new models of particles

https://github.com/openwave-labs/openwave/blob/main/MODELS.md
1•eln1•44m ago•1 comments

Stack Overflow for Agents

https://stackoverflow.blog/2026/06/10/announcing-stack-overflow-for-agents/
3•marinesebastian•49m ago•0 comments

World-famous Robin Hood oak tree has died

https://news.sky.com/story/world-famous-robin-hood-oak-tree-has-died-13555186
3•austinallegro•1h ago•0 comments

Cervical cancer deaths fall to zero in young women given vaccine

https://www.bbc.com/news/articles/c621z28z138o
4•geox•1h ago•0 comments

What my trade data taught me that 3 years of reading couldn't

https://www.traderscompanion.org
1•mathono•1h ago•1 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!