frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple hints at more price increases coming later

https://9to5mac.com/2026/06/25/apple-hints-at-more-price-increases-coming-later/
1•virgildotcodes•13s ago•0 comments

ChoiceBeat: The Visual Novel and Interactive Fiction Zine

https://willyelektrix.itch.io/choicebeat-issue-17
1•Schiphol•3m ago•0 comments

Stop generating what you have

https://aazar.me/posts/stop-generating-what-you-already-have
1•44za12•4m ago•0 comments

A Niche Technology Became a Choke Point for A.I

https://www.nytimes.com/2026/06/26/technology/ai-advanced-chip-packaging-tsmc.html
1•thinkcontext•4m ago•0 comments

Analysed 3k+ AI thought leaders posts for Q2

https://aiweekly.co/recap/q2-2026
1•adu_onemore•5m ago•0 comments

Why AI in the classroom is a catastrophe – Sophie Winkleman [ARC 2026] [video]

https://www.youtube.com/watch?v=yFp5-i5fzyQ
2•yesbut•8m ago•0 comments

OpenAI Codex bombards SSDs with needless write operations, costing millions

https://www.theregister.com/ai-and-ml/2026/06/23/openai-codex-bombards-ssds-with-needless-write-o...
1•YeGoblynQueenne•9m ago•0 comments

Trump administration asks OpenAI to limit next model release

https://www.axios.com/2026/06/25/trump-administration-openai-gpt-model-release
1•FergusArgyll•9m ago•1 comments

$1.4T investment helps China restore freshwater ecosystem's oxygen

https://www.courthousenews.com/1-4-trillion-investment-helps-china-restore-freshwater-ecosystems-...
2•ilreb•12m ago•0 comments

The AI LinkedIn Post Generator That Grows Your Professional Brand

https://elevenwritt.com/blog/ai-linkedin-post-generator
1•piusk•13m ago•1 comments

Domino Tiling: From Dynamic Programming to Finite Fields

https://www.omegasyntax.com/domino/
2•birdculture•18m ago•0 comments

AMD Readies Full Open-Source HDMI 2.1 Support for Linux

https://www.techpowerup.com/348723/amd-readies-full-open-source-hdmi-2-1-support-for-linux
3•tosh•25m ago•1 comments

Windows-Copilot-API; Access GPT-4 and GPT-5 models without API keys or billing

https://github.com/sums001/Windows-Copilot-API
4•vantareed•27m ago•0 comments

Ask HN: Which free video downloader do you trust in 2026?

2•vanshsoni0027•30m ago•3 comments

Strange Knowledgeability

https://contraptions.venkateshrao.com/p/strange-knowledgeability
1•jger15•31m ago•0 comments

The Vim Learning Curve Is a Myth

https://thoughtbot.com/blog/the-vim-learning-curve-is-a-myth
3•tzury•32m ago•1 comments

The AI Productivity Trap Is More Output

https://www.vincentschmalbach.com/the-ai-productivity-trap-is-more-output/
1•vincent_s•34m ago•0 comments

Show HN: Unofficial cross-platform Shure MV client

https://github.com/Humblemonk/shurectl
1•PennRobotics•36m ago•0 comments

Show HN: Yet another self-hosted web analytics with no UI but MCP

https://yetanotherwebanalytics.dev/
2•le_chuck•37m ago•0 comments

Cali BioLab Peptides

https://www.calibiolabpeptides.com/
1•annweslay11•40m ago•0 comments

Continuous Enforcement and Continuous Verification

https://aguilar-pelaez.co.uk/continuous-enforcement-continuous-verification.html
2•r4vik•40m ago•0 comments

Optimal Travel App

https://web.docvalidity.com
2•TripCheck•42m ago•0 comments

Building a live football community is much harder than I expected

https://footychat.app/
1•olympikesoft•43m ago•0 comments

Llama.cpp flags auto-tuning tool

https://github.com/raketenkater/ggrun
1•raketenkater•45m ago•0 comments

You must be This Tall to Ride

https://www.jacquescorbytuech.com/writing/you-must-be-tall-ride
1•iamacyborg•45m ago•0 comments

Agentlint – A security scanner for MCP server configs

https://github.com/Leporis14/agentlint
1•leporis14•47m ago•0 comments

AI Search Engine Exa Raises $250M Series C

https://exa.ai/blog/announcing-series-c
1•ankitg12•49m ago•0 comments

MDLight: 14MB Markdown reader (Wails, Go and Svelte) – no vaults or plugins

https://github.com/mdlight-dev/mdlight/
2•ZuhayrBarhoumi•51m ago•0 comments

It took two weeks to make Claude's "overnight solution" for flaky tests useful

https://thoughtbot.com/blog/what-it-took-to-use-this-overnight-ai-solution
1•zingar•53m ago•0 comments

Ask HN: Which free video downloader do you trust in 2026?

1•vanshsoni0027•54m 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!