frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Local, CPU-Friendly, High-Quality TTS (Text-to-Speech) with Kokoro

https://ariya.io/2026/03/local-cpu-friendly-high-quality-tts-text-to-speech-with-kokoro/
1•speckx•1m ago•0 comments

Ukrainian drones hit Russia's refinery Zelenskyy says Siberia now 'within reach'

https://www.cnbc.com/2026/07/07/ukraine-russia-omsk-oil-refinery-putin-nato.html
1•tcp_handshaker•3m ago•0 comments

TRCR – Time tracking, projects, CRM and invoicing in one tool

https://trcr.pro
1•mihailshumilov•3m ago•0 comments

Midtown NYC building 'shifting' and in danger of 'localized collapse'

https://nypost.com/2026/07/07/us-news/midtown-nyc-building-shifting-and-in-danger-of-localized-co...
1•appreciatorBus•4m ago•0 comments

No Effort

https://tomreinert.de/no-effort/
1•tom2948329494•5m ago•0 comments

Show HN: Docx-CLI: agents read/edit Word docs using 1/2 the time and tokens

https://github.com/kklimuk/docx-cli
1•kirillklimuk•6m ago•1 comments

PL/Ruby: Ruby as a procedural language for PostgreSQL (functions, triggers, SPI)

https://github.com/commandprompt/plruby
2•thunderbong•6m ago•0 comments

Show HN: How AI-generated is this website?

https://slopcop.adriankrebs.ch
1•hubraumhugo•6m ago•0 comments

Show HN: Fork – Let users build features on top of existing applications

https://withfork.co/
1•realdjpaulyd•7m ago•0 comments

Former Facebook insiders sketch a low-cost AI endgame on Threads for Meta

https://runtimewire.com/article/former-facebook-insiders-sketch-meta-s-low-cost-ai-endgame-on-thr...
1•ryanmerket•8m ago•0 comments

Rich Guy Quote Journalism

https://stringinamaze.net/p/rich-guy-quote-journalism
1•i4i•9m ago•1 comments

We learned to trust our AI code reviewer at DoorDash

https://careersatdoordash.com/blog/how-we-learned-to-trust-our-ai-code-reviewer-at-doordash/
1•luispa•9m ago•0 comments

Notes on Software Quality

https://anthonyhobday.com/blog/20260410
1•speckx•10m ago•0 comments

Show HN: OpenSpeech – Compare open-source TTS models side-by-side

https://www.openspeech.dev
1•ushercakes•10m ago•0 comments

FOMO-Driven Development

https://estuary.dev/blog/fomo-driven-development/
1•danthelion•10m ago•0 comments

AI needs the best-of-breed data stack: Postgres and ClickHouse

https://clickhouse.com/blog/ai-best-of-breed-data-stack
1•saisrirampur•11m ago•0 comments

Show HN: Cfswitch – Switch between multiple Cloudflare accounts in Wrangler

https://github.com/dukeeagle/cfswitch
1•lukeigel•12m ago•0 comments

Abusing the Sandbox for a Critical Cross-Tenant Vulnerability in Writer AI

https://www.sandsecurity.ai/blog/writeout-writer-ai-cross-tenant
1•talhof8•14m ago•0 comments

Every night trillions of tiny creatures rise from the ocean depths

https://www.bbc.com/future/article/20260706-the-deep-sea-creatures-that-rise-every-night
1•saikatsg•16m ago•0 comments

A new runtime for k and q: l

https://lv1.sh/
2•skruger•16m ago•0 comments

The MFA Rollout Disaster

https://stuartdotson.substack.com/p/the-wetness-humaning-multiplier
1•sdotson•17m ago•0 comments

Tech jobs market in 2026, part 3: hiring managers and job seekers

https://newsletter.pragmaticengineer.com/p/tech-jobs-market-in-2026-part-3-hiring
2•nedruod•19m ago•0 comments

Opbox: Real-time sync for plaintext files

https://www.opbox.dev/
1•shikhar•21m ago•0 comments

Who's doing what on AI security in the US government?

https://horizonlaunchpad.substack.com/p/whos-doing-what-on-ai-security
1•paulpauper•22m ago•0 comments

Why the West stopped making land

https://worksinprogress.co/issue/why-the-west-stopped-making-land/
2•paulpauper•22m ago•0 comments

Tell HN: Fable 5 promotion extended through July 12, 2026 at 11:59:59 PM PT

6•theanonymousone•22m ago•0 comments

Wiesbaden Notes

https://marginalrevolution.com/marginalrevolution/2026/07/wiesbaden-notes.html
1•paulpauper•23m ago•0 comments

Visual Studio Code Learn

https://code.visualstudio.com/learn
1•saikatsg•24m ago•0 comments

Show HN: An agentic CRM, built for AI agents to drive over plain HTTP

https://github.com/crmkit/crmkit
1•_pdp_•24m ago•0 comments

We will happily disempower ourselves: Go edition

https://blog.jcx.au/posts/we-will-happily-disempower-ourselves-go-edition
1•speckx•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!