frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Dumbsmarten

https://kevinkelly.substack.com/p/dumbsmarten
1•swolpers•21s ago•0 comments

I created a YAML-based API Testing framework in Rust

https://github.com/cd-4/yapitest
1•cd-4•2m ago•1 comments

Alibaba's Qwen family captures over 50% of global open-source model downloads

https://www.scmp.com/tech/big-tech/article/3349552/alibabas-qwen-family-captures-over-50-global-o...
1•angst•2m ago•1 comments

Canary – tiny filesystem honeypot for macOS

https://github.com/dweinstein/canary
1•TheTaytay•4m ago•0 comments

Ask HN: Are most agent skills just fancy system prompts with a name?

1•skillcompass•5m ago•0 comments

Hacker compromises A16Z-backed phone farm, calling them the 'antichrist'

https://www.404media.co/hacker-compromises-a16z-backed-phone-farm-tries-to-post-memes-calling-a16...
1•wibbily•5m ago•1 comments

Rep. Tony Gonzales quits Congress after affair, lewd texting scandal with

https://nypost.com/2026/04/13/us-news/rep-tony-gonzales-announcing-retirement-from-congress-after...
1•mananbasim•6m ago•1 comments

Google Faces Billions in Mass Arbitration over Illegal Monopoly Rulings

https://www.bloomberg.com/news/articles/2026-04-13/google-faces-mass-arbitration-by-advertisers-s...
2•1vuio0pswjnm7•11m ago•1 comments

All in One for AI Chatbot

https://nottoai.com/
2•jeyzolo•13m ago•1 comments

Opus 4.6 is getting BAD [video]

https://www.youtube.com/watch?v=j7oHwvEcrC8
1•zadkey•15m ago•1 comments

Free Blur Image Online – Easily Blur Your Photos

https://www.youtube.com/redirect?q=https://www.blurimageonline.com
2•teroquyiqwu•18m ago•0 comments

Save tokens and save money with this self-evolving beast

https://github.com/juyterman1000/entroly
1•ashuabhi•21m ago•0 comments

A watch made for space

https://www.cnn.com/2026/04/13/style/iwc-schaffhausen-space-watch
2•1659447091•23m ago•0 comments

DECT (Digital Enhanced Cordless Telecommunications)

https://en.wikipedia.org/wiki/DECT
1•gregsadetsky•24m ago•0 comments

MCP server for personal finance so AI assistants can manage money

https://era.app/articles/how-to-connect-claude-to-your-bank-account/
1•era_context•25m ago•1 comments

Municipal water fluoridation, adolescent IQ and cognition across the life course

https://www.pnas.org/doi/full/10.1073/pnas.2536005123
2•cpncrunch•28m ago•0 comments

A portable social graph on Base – own your friends and currency on-chain

https://moondala.one
1•HamoodBahzar•29m ago•0 comments

A new spam policy for "back button hijacking"

https://developers.google.com/search/blog/2026/04/back-button-hijacking
4•zdw•31m ago•1 comments

Open Agents. Spawn coding agents that run infinitely in the cloud

https://open-agents.dev/
1•iBelieve•31m ago•0 comments

Sometimes powerful people just do dumb shit

https://www.joanwestenberg.com/sometimes-powerful-people-just-do-dumb-shit/
3•zdw•33m ago•0 comments

Social media platforms need to stop never-ending scrolling, UK's Starmer says

https://www.reuters.com/business/media-telecom/social-media-platforms-need-stop-never-ending-scro...
1•1vuio0pswjnm7•38m ago•2 comments

Attorneys Face Disciplinary Charges, License Suspension for AI Misuse

https://www.law.com/therecorder/2026/04/13/two-attorneys-face-disciplinary-charges-third-agrees-t...
1•1vuio0pswjnm7•41m ago•1 comments

Hybrid Constructions: The Post-Quantum Safety Blanket

https://soatok.blog/2026/04/13/hybrid-constructions-the-post-quantum-safety-blanket/
1•zdw•44m ago•0 comments

Show HN: Prmana – OIDC SSH Login for Linux with DPoP (Rust, Apache 2.0)

https://github.com/prodnull/prmana
1•cbchhaya•46m ago•0 comments

HR 8197 – A Bill to Terminate the All-Domain Anomaly Resolution Office

https://www.congress.gov/bill/119th-congress/house-bill/8197/text?s=1&r=1
3•OhMeadhbh•48m ago•1 comments

Reddit content moderation is broken

https://old.reddit.com/
1•pavas•49m ago•1 comments

Aura – A locally-sovereign cognitive architecture for Apple Silicon

https://github.com/youngbryan97/aura
1•bryanyoung97•50m ago•0 comments

A Dumb Introduction to Z3

https://ar-ms.me/thoughts/a-gentle-introduction-to-z3/
2•y1n0•52m ago•0 comments

Contained Codex Networking

1•orbisvicis•54m ago•0 comments

Developer to Manager

https://matthewquerzoli.com/#/blog/08-10-2025-developer-to-manager
2•Quiza12•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•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!