frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Swik – open catalog of asset-specific sentiment inversions for financial NLP

1•multidude•1m ago•0 comments

The new best free project management tool

https://mytracker.today
1•rakanalalami•3m ago•0 comments

AMD GPU-Initiated I/O

https://thegeeko.me/blog/nvme-amdgpu-p2pdma/
1•hatgfx•6m ago•0 comments

I rebuilt Claude Desktop in 10 days. Here's why

https://raulriera.medium.com/i-rebuilt-claude-desktop-in-10-days-heres-why-2efb47133da9
1•ingve•9m ago•0 comments

Been using this Tourist eSIM while traveling, super cheap unlimited data

https://touristesim.net
1•globalnomader•9m ago•0 comments

OpenClaw is just cron, Markdown and a chat bot and that's why it matters

https://twitter.com/efexen/status/2034352992233672945
2•efexen•11m ago•1 comments

Show HN: Get a quick skincare analysis by uploading a photo

https://howolddoyoulook.com/skincare
1•beast200•19m ago•0 comments

Show HN: EasyShot – macOS screenshot thumbnails that don't disappear after 5s

1•amlug•20m ago•0 comments

AI Hairstyle Changer

https://hairstyleaichanger.com/
1•Fsen•26m ago•0 comments

Why Whisper Notes for Mac Left the App Store

https://whispernotes.app/blog/why-whisper-notes-left-mac-app-store
1•mazzystar•28m ago•1 comments

"I hope you don't use Generative AI"

https://rmv.fyi/notes/i-hope-you-don-t-use-generative-ai
2•garblegarble•29m ago•1 comments

The AI Morning Show: Automating German Humor

https://portfolio.bildsignal.de/p_gagflatrate/
2•pahn•30m ago•1 comments

Rippling AI

https://www.rippling.com/blog/introducing-rippling-ai
1•tosh•33m ago•0 comments

The Five Companies You Can Build in 2026

https://www.dylancollins.com/p/the-five-companies-you-can-build
1•dylancollins•34m ago•0 comments

AI Council: run mupliple LLMs on your question, get consolidated opinion

https://github.com/yanbrod/council
1•ianbrode•35m ago•0 comments

TBM 406: Seeing Everything, Understanding Nothing (The Context Trap)

https://cutlefish.substack.com/p/tbm-406-seeing-everything-understanding
1•kiyanwang•39m ago•0 comments

Gea: A Compile-Time Reactive UI Framework That's Just JavaScript

https://github.com/dashersw/gea
1•dokdev•41m ago•0 comments

The Reason Most People Are Terrible Communicators (and How to Fix It)

https://alifeengineered.substack.com/p/the-reason-most-people-are-terrible
1•kiyanwang•42m ago•0 comments

Bombadil: Property-based testing for web UIs by Antithesis

https://github.com/antithesishq/bombadil
1•Klaster_1•42m ago•0 comments

Management in the Age of AI – Stay SaaSy

https://staysaasy.com/management/2026/03/12/ai-management.html
1•kiyanwang•44m ago•0 comments

'Alright mate?': Amazon pins UK hopes on AI upgrade of Alexa

https://www.theguardian.com/technology/2026/mar/19/amazon-uk-ai-upgrade-alexa-voice-assistant-dev...
2•chrisjj•46m ago•0 comments

Wikigacha – Collect cards from articles on Wikipedia and use them in battle

https://wikigacha.com
1•helloplanets•47m ago•0 comments

Taste at scale. Why the hardest part of building products stayed human

https://designexplained.substack.com/p/taste-at-scale
1•kaizenb•50m ago•0 comments

Context Engineering for Coding Agents

https://martinfowler.com/articles/exploring-gen-ai/context-engineering-coding-agents.html
2•BerislavLopac•52m ago•0 comments

Ask HN: Have you cancelled any software subscriptions because AI replaced them?

1•maxim_bg•52m ago•1 comments

Google to Allow AI Opt-Out to Ease UK Competition Concerns

https://www.globalbankingandfinance.com/google-allow-ai-opt-out-ease-uk-competition-concerns/
1•_____k•53m ago•0 comments

Anonymous model Hunter Alpha is Xiaomi's model

https://mimo.xiaomi.com/mimo-v2-pro
1•sergdigon•53m ago•0 comments

Agentic CTF

https://jemini.live
1•4ppsec•57m ago•0 comments

Principles for sustaining open source in the age of generative AI

https://www.human-oss.dev/
1•starptech•57m ago•0 comments

Vance plans Hungary visit in show of support for Orban ahead of tight election

https://www.reuters.com/world/europe/vance-plans-hungary-visit-show-support-orban-ahead-tight-ele...
1•vrganj•59m 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•10mo ago

Comments

semihs•10mo 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_•10mo 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•10mo 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_•10mo ago
That sounds great!