frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Kestero, website widgets that record what they do (no cookies)

https://kestero.com
1•oscarMeldgaard•19s ago•0 comments

"Enshittification" Isn't Real

https://www.a16z.news/p/enshittification-isnt-real
3•qikouki•1m ago•0 comments

Fingerprinting and proof of work: how CrowdSec 1.8 tells browsers from bots

https://www.crowdsec.net/blog/crowdsec-1-8-waf-bot-detection-kubernetes
1•mazzma•1m ago•0 comments

Show HN: LibreDB Studio, a self-hosted MIT browser IDE for 10 database engines

https://github.com/libredb/libredb-studio
1•devgundogdu•1m ago•0 comments

Show HN: Hot. Dog. Bench. Mark. The AI benchmark we deserve

https://hotdogbenchmark.lol/
1•naniel•2m ago•1 comments

Perverts could push Norway to become the first country to ban smart glasses

https://www.neowin.net/news/perverts-could-push-norway-to-become-the-first-country-to-ban-smart-g...
1•bundie•3m ago•0 comments

Show HN: AI Usage Ball – Claude/Codex/Antigravity Quota as Mac Liquid Orbs

https://github.com/aiusageball/ai-usage-ball
1•xbyxy2000•5m ago•0 comments

Show HN: I built a better right-click menu for macOS

https://github.com/ganeshmshetty/openclip
1•ganeshmshetty•5m ago•0 comments

Show HN: Flipdot display with an AI chat that codes sandboxed animations for it

https://github.com/mdbug/flipdot
1•mdbug•5m ago•0 comments

When 'if' slows you down, avoid it

https://easylang.online/blog/branchless
1•theanonymousone•7m ago•0 comments

Skills vs. MCP tools for AI agents: when to use which

https://blog.logrocket.com/skills-vs-mcp-tools-agent-guide/
2•deepmem•7m ago•0 comments

Training a coding model to paint watercolours

https://huggingface.co/blog/train-to-paint-with-code
2•makaimc•11m ago•0 comments

Unveiling the Cognitive and Social Toll of ChatGPT Over-Reliance

https://onlinelibrary.wiley.com/doi/10.1002/acp.70205
1•geox•13m ago•0 comments

I turned the periodic table into a live market

https://elementswar.lol
1•tunarob•13m ago•0 comments

HotDog and Sausage Software: the HTML editor that barked at the world

https://karamatli.com/posts/hotdog-html-editor-sausage-software/
1•sparsesignal•14m ago•1 comments

Show HN: jeden.day – a compact habit tracker with flexible schedules

https://jeden.day/
3•mdbug•14m ago•0 comments

A Story About Joe

https://alisnic.github.io/posts/story-about-joe/
1•alisnic•16m ago•0 comments

Show HN: Jern Cloud – a coding agent bound by a policy file in your repository

https://jern.ai
1•ademar•17m ago•0 comments

A brief guide to French polling data

https://maxhalford.github.io/blog/french-polling-data/
1•sebg•17m ago•0 comments

Free OpenHelper AI Chatbot v2 Preview is coming with many features

https://techambient.github.io/HybridAI/v2.html
1•techambient•18m ago•0 comments

Bill Gates' roots in the trashcans of history (2000)

https://www.theregister.com/software/2000/06/29/bill-gates-roots-in-the-trashcans-of-history/1502096
1•Bluestein•18m ago•0 comments

Show HN: I built my first MCP to manage Google Ads

https://adchestra.com/
4•MichalKrk•18m ago•1 comments

Anthropic's distillation battle turns to the dark web as China concerns swell

https://www.cnbc.com/2026/09/03/anthropic-distillation-battle-turns-to-dark-web-china-concerns-sw...
2•prng2021•18m ago•0 comments

'Insane data': Duke professor Dan Ariely accused of additional research fraud

https://dukechronicle.com/article/duke-university-professor-dan-ariely-accused-of-additional-rese...
1•_tk_•19m ago•0 comments

Nvidia to Acquire Hugging Face

https://blogs.nvidia.com/blog/nvidia-to-acquire-hugging-face/
6•tosh•19m ago•0 comments

Freelancers are getting buried with 'soulless' AI slop cleanup

https://www.theguardian.com/technology/2026/sep/02/ai-jobs-freelance-cleanup
1•_____k•20m ago•0 comments

Absurd Adventure and Amygdalectomy Advocacy

https://www.astralcodexten.com/p/absurd-adventure-and-amygdalectomy
1•eatitraw•24m ago•0 comments

Show HN: Vantage – One prioritized health action per day from Apple Health

https://www.vantagehealthapp.com/
1•petreradu•25m ago•0 comments

Show HN: Oconee Runtime – Policy enforcement for browser AI and coding agents

https://www.oconeeruntime.com/news/policy-enforcement-for-browser-ai-and-coding-agents
2•hthomas4•26m ago•0 comments

Release 13.0.8 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.0.8
2•kyisaiah47•27m 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!