frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Nummi – AI companion with memory and daily guidance

https://www.nummi.ai/download
1•ab-abg•3m ago•1 comments

Show HN: Practicing Interview with AI

https://sungatae.com/posts/interviewshark/
1•visujosh•3m ago•0 comments

Give AI agents a real browser, watch them live via WebRTC

https://github.com/lowjax-com/vscreen
1•lowjax•4m ago•1 comments

Brain's "RAM" and "Hard Drive"

1•0ut0flin3•4m ago•1 comments

Show HN: Aide – Opinionated, deterministic code editing for AI agents

https://github.com/avataristvan/a-i-d-e
1•avataristvan•5m ago•0 comments

4,500 Physicians Agree (About Bacon)

https://machielreyneke.com/blog/persuasion/
1•machielrey•7m ago•0 comments

Antarctica just saw the fastest glacier collapse ever recorded

https://www.sciencedaily.com/releases/2026/02/260226042454.htm
1•yusufaytas•11m ago•0 comments

Ws – Keep Claude Code's context visible in your terminal

https://github.com/n-filatov/ws
1•notwhalee•12m ago•1 comments

Show HN: ZcoreAI – Z-score regression channel screener

https://www.zcoreai.com/
1•tchantchov•13m ago•0 comments

Configure MCP servers once. Sync them everywhere

https://conductor-mcp.vercel.app
1•aryaabyte•14m ago•1 comments

Measuring signals buried in noise with an Oscilloscope [video]

https://www.youtube.com/watch?v=vv-xkNa1Z9s
1•joebig•15m ago•0 comments

Show HN: Cloudflared-DNS-controller: Auto-sync DNS from cloudflared ConfigMap

https://github.com/seipan/cloudflared-dns-controller
1•Seipann11•19m ago•0 comments

E2EE Back end part 3: Passkeys with the PRF Extension

https://peterspath.net/blog/dev-e2ee-backend-part-3-passkeys-with-the-prf-extension/
2•peterspath•20m ago•0 comments

Claude Has Overtaken ChatGPT in the Apple App Store

https://old.reddit.com/r/ChatGPT/comments/1rhh9p2/claude_has_overtaken_chatgpt_in_the_apple_app/
2•rvnx•21m ago•0 comments

A Day in the Life of an Enshittificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
3•doener•23m ago•1 comments

Show HN: AgentLens – Open-source observability for AI agents

1•tranhoangtu•25m ago•0 comments

Full Linux on any Android (No Root) [video]

https://www.youtube.com/watch?v=PyDQmfeRXQc
4•Flavius•25m ago•0 comments

Piloting Claude and Gemini on Debian from Signal

https://nocodefunctions.com/blog/claude-gemini-on-debian-from-signal/
1•seinecle•27m ago•0 comments

A speed reader to help you finish PDFs/epubs/articles in < half the time

https://speed-read-eight.vercel.app/
2•ashtonmb•27m ago•2 comments

Micron built India's first semiconductor ATMP in India

https://www.firstpost.com/tech/micron-technology-launches-semiconductor-unit-in-india-13984963.html
1•akmittal•31m ago•0 comments

I Learned to Stop Worrying and Love the LLM in Agile

https://age-of-product.com/llm/
1•swolpers•32m ago•0 comments

Social media just doesn't hit like a website does

https://herbertlui.net/social-media-just-doesnt-hit-like-a-website-does/
2•herbertl•32m ago•0 comments

How do hardware timers work? [video]

https://www.youtube.com/watch?v=g_koa00MBLg
1•tosh•36m ago•0 comments

Show HN: Built Habits Easily

https://trykaro.xyz/
1•AkshayS96•39m ago•0 comments

Show HN: I was bored so I made a site that aggressively roasts other websites

https://siteroaster.vercel.app
1•macraft•39m ago•1 comments

The Cost of Accepting Without Agreeing: A Warning for Architects

https://architectureintel.com/the-hidden-cost-of-accepting-without-agreeing-a-warning-for-archite...
1•younss•40m ago•0 comments

Redis Patterns for Coding

https://antirez.com/news/161
1•surprisetalk•45m ago•0 comments

YARA rules to detect Palantir Gotham data federation

1•OussamaAfnakkar•49m ago•0 comments

Computer Says No

https://koenvangilst.nl/lab/computer-says-no
1•vnglst•54m ago•0 comments

Show HN: I built an app that screenshots news sites hourly on Raspberry Pi 5

https://github.com/herol3oy/kiosk24
1•herol3oy•54m 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!