frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Notion's Agents SDK

https://twitter.com/NotionDevs/status/2054600927810920894
1•umangsehgal93•2m ago•0 comments

Claude helped recover 5 BTC that was thought lost for 11 years

https://twitter.com/cprkrn/status/2054586810475364536
2•serial_dev•3m ago•0 comments

Local Android emulation in an AI agent

https://docs.devin.ai/onboard-devin/environment/android-emulation
1•Alextigtig•4m ago•0 comments

Adopting Helix*Isms

https://kristun.dev/posts/adopting-helix-isms/
1•polyamid23•4m ago•0 comments

AI in Bio Biggest Questions

https://shelbyann.substack.com/p/biggest-questions-in-biotech
1•cellsnstuff•4m ago•0 comments

Everything Claude Code: performance optimization system for AI agent harnesses

https://github.com/affaan-m/everything-claude-code
1•doener•6m ago•0 comments

Rars: a Rust RAR implementation, mostly written by LLMs

https://bitplane.net/log/2026/05/rars/
2•davidsong•8m ago•1 comments

Agents Window in VS Code

https://code.visualstudio.com/docs/copilot/agents/agents-window?source=vsc-website-banner
1•nor0x•8m ago•0 comments

Type-driven design in automotive C: how much of my code is manual type checking?

https://lmilz.dev/blog/2025/12/11/From-Defensive-Programming-to-Type-Driven-Design.html
1•lmilz•10m ago•0 comments

How AI Killed a 133-Year-Old Princeton Tradition

https://www.theatlantic.com/ideas/2026/05/princeton-ai-honor-code/687144/
2•paulpauper•11m ago•0 comments

An Urgent Question for Anyone Who Uses Social Media

https://www.theatlantic.com/books/2026/05/influencer-family-kids-latifi-review/687156/
1•paulpauper•11m ago•0 comments

Health advice is all over social media. Here’s how to vet claims

https://apnews.com/article/tiktok-instagram-fitness-mental-wellness-influencer-coach-4f3b44e71d3c...
3•jethronethro•11m ago•0 comments

Why Jet Engines Aren't "Made in China"

https://aakash.substack.com/p/why-jet-engines-arent-made-in-china
2•logicx24•12m ago•0 comments

ZachXBT exposes alleged 18-year-old crypto thief tied to $19M in scams

https://www.msn.com/en-us/news/us/zachxbt-exposes-alleged-18-year-old-crypto-thief-tied-to-19-mil...
2•paulpauper•12m ago•0 comments

What Is HLS Streaming? HTTP Live Streaming Explained

https://www.red5.net/blog/what-is-hls-streaming/
2•mondainx•14m ago•0 comments

A Changing Job Market Leans Against Men

https://www.wsj.com/economy/jobs/jobs-men-employment-data-ec4d6d68
2•littlexsparkee•15m ago•1 comments

Malware crew TeamPCP open-sources its Shai-Hulud worm on GitHub

https://www.theregister.com/security/2026/05/13/malware-crew-teampcp-open-sources-its-shai-hulud-...
2•birdculture•16m ago•0 comments

Using LLMs to find Python C-extension bugs

https://lwn.net/Articles/1067234/
2•PaulHoule•19m ago•0 comments

Gunshots fired in standoff at Philippine Senate over ICC suspect

https://www.reuters.com/world/asia-pacific/philippine-senator-says-arrest-is-imminent-urges-publi...
3•JumpCrisscross•20m ago•0 comments

Neanderthals used stone drills to treat cavities 59k years ago, tooth suggests

https://www.theguardian.com/science/2026/may/13/neanderthals-stone-drills-treat-cavities-tooth-si...
2•bookofjoe•20m ago•0 comments

Mandala: A low latency logistics event bridge for Samsara fleets

https://github.com/theoddden/Mandala
2•Facingsouth•21m ago•1 comments

Global Ammonia Infrastructure

https://ammoniaobservatory.com/infrastructure
4•leonidasrup•21m ago•0 comments

Anthropic tests Jupiter-v1-p ahead of its developer conference

https://www.testingcatalog.com/anthropic-tests-jupiter-v1-p-before-potential-launch-on-may-6/
2•gmays•21m ago•0 comments

'Pioneering' message that changed the world

https://www.bbc.co.uk/news/articles/cp84d5pl39zo
2•austinallegro•23m ago•0 comments

Neanderthals Performed Root Canals

https://www.wsj.com/science/archaeology/neanderthals-tooth-root-canal-dentist-study-dfa8a037
2•JumpCrisscross•23m ago•0 comments

CC-Ledger: anatomy of your Claude Code spend

https://ccledger.dev
2•tejpal-diffuse•25m ago•0 comments

How to Build Safe AI (Without Making the AI Safe)

https://whattotelltherobot.com/p/how-to-build-safe-ai-without-making
2•stefie10•25m ago•0 comments

AI as Social Technology

https://knightcolumbia.org/content/ai-as-social-technology
2•beepbooptheory•26m ago•1 comments

System2 – Multi-Agents for Data

https://github.com/diegoscarabelli/system2
3•diegoscara•27m ago•1 comments

Holos runs a complete ActivityPub server directly on your smartphone

https://holos.social/how-it-works
3•ZacnyLos•27m 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!