frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Let Claude use your computer from the CLI

https://code.claude.com/docs/en/computer-use
1•taspeotis•3m ago•0 comments

Using complex polynomials to approximate arbitrary continuous functions (2025)

https://www.lesswrong.com/posts/9gNewBQCF47FyjYfw/using-complex-polynomials-to-approximate-arbitrary
1•measurablefunc•6m ago•0 comments

Explore Benjamin Franklin's Science on NotebookLM

https://blog.google/company-news/outreach-and-initiatives/arts-culture/benjamin-franklin-notebooklm/
2•y1n0•7m ago•0 comments

From static findings to runtime exploits: testing 6 popular MCP servers

https://agentseal.org/blog
1•Resham_Joshi•8m ago•0 comments

Retraining my terrible typing habits

https://technicallychallenged.substack.com/p/retraining-my-terrible-typing-habits
1•koinedad•12m ago•0 comments

Show HN: Gives your AI agents a shared, searchable, persistent memory – locally

https://github.com/vbfs/agent-memory-store/
1•vbfs•13m ago•0 comments

Research game measuring how humans detect AI-generated phishing emails

https://github.com/scottalt/ai-email-threat-research
1•serious_angel•14m ago•1 comments

Incident March 30th, 2026 – Accidental CDN Caching

https://blog.railway.com/p/incident-report-march-30-2026-accidental-cdn-caching
4•cebert•15m ago•0 comments

Adobe Illustrator can now use AI to rotate 2D vectors in 3D space

https://9to5mac.com/2026/03/30/adobe-illustrator-now-lets-you-rotate-2d-vectors-in-3d-space/
1•bundie•17m ago•0 comments

Universal Claude.md – cut Claude output tokens by 63%

https://github.com/drona23/claude-token-efficient
6•killme2008•19m ago•0 comments

Parsing a Chinese Poem as a Formal System That Runs

https://jimiwen.substack.com/p/si-wu-zi-4d7
1•jimiwen•22m ago•0 comments

Don't overthink electric car charging (we should be doing it differently)

https://www.youtube.com/watch?v=5NG4hycq8n0
1•em-bee•23m ago•0 comments

Six cloned horses help rider win prestigious polo match (2016)

https://www.science.org/content/article/six-cloned-horses-help-rider-win-prestigious-polo-match
1•pinkmuffinere•24m ago•1 comments

What I Talk About When I Talk About Grading

https://unintendedconsequenc.es/what-i-talk-about-when-i-talk-about-grading/
1•paulorlando•28m ago•0 comments

Maybe Finance Asset Sale

https://maybefinance.notion.site/asset-sale
1•raybb•31m ago•0 comments

Small ways the App Store could be improved for developers

https://lapcatsoftware.com/articles/2026/3/13.html
2•walterbell•32m ago•0 comments

Show HN: Cut your tail latencies by 74% with zero config

https://pkg.go.dev/github.com/bhope/hedge
2•soniccontroller•32m ago•0 comments

Rust's next-generation trait solver

https://lwn.net/SubscriberLink/1063124/81483612b1c8a493/
1•dabinat•34m ago•0 comments

Ask HN: How do you maintain technical deep-focus in a world of Slack/Teams

1•lion__93332•35m ago•0 comments

A Man and the Elevator

https://joseantunes.tech/life/2026/03/22/the-elevator.html
1•zemike•36m ago•1 comments

Whispr Flow – Vision Flow

https://github.com/tanayvin1216/VisionFlow
1•tanay_vin•38m ago•1 comments

GTabs – AI tab organizer for Chrome that works with any LLM

https://github.com/vaddisrinivas/gtabs
1•srinivasvaddi•38m ago•0 comments

Yes, you need a Mac Mini

https://hyperengineering.bottlenecklabs.com/p/yes-you-actually-need-a-mac-mini
2•Areibman•39m ago•0 comments

Ask HN: Is anyone still resisting the slop onslaught?

3•0xDEFACED•39m ago•2 comments

The AI Shift: Will software engineers survive agentic AI?

https://www.ft.com/content/7325e967-5f4e-40b1-af3f-7d2351781843
2•mooreds•43m ago•0 comments

Think tank collaborate and earn bata testing

https://solve-hive-pro.base44.app
1•wesley-Alan•45m ago•0 comments

Ask HN: After three years of open source software, I can't stand it

https://github.com/drl990114/MarkFlowy
3•drl5•51m ago•0 comments

Adding custom webhooks to my Samsung smart ring

https://github.com/TheVellichor/SamsungOpenRing
1•_vellichor•59m ago•1 comments

Proposal for adding a useful pipe operator to JavaScript

https://github.com/tc39/proposal-pipeline-operator
1•jcbhmr•1h ago•0 comments

Review: The Wireless Cookbook

https://www.helpnetsecurity.com/2025/10/28/review-the-wireless-cookbook/
1•teleforce•1h 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•11mo ago

Comments

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