frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Race to Become the Context Layer for Agents

https://gavinray97.github.io/blog/the-race-for-universal-context-layer
1•gavinray•45s ago•0 comments

Most Developers Have Never Built Anything Real – The Numbers Are Embarrassing

https://comuniq.xyz/post?t=1032
1•01-_-•1m ago•0 comments

We removed AI from our game and it made it significantly better

https://zadzoud.com/chibitomo
1•ZeidJ•2m ago•1 comments

The King in Yellow (1895)

https://www.gutenberg.org/cache/epub/8492/pg8492-images.html
1•caminanteblanco•3m ago•0 comments

After 3 months of using standing desk

https://darshanmakwana412.github.io/2026/05/standing-desk/
1•darshanmakwana•6m ago•0 comments

Brockman: OpenAI to Spend $50B on Computing in 2026

https://www.bloomberg.com/news/articles/2026-05-05/openai-to-spend-50-billion-on-computing-in-202...
2•htrp•6m ago•0 comments

Every Type of Plastic Used by Lego

https://bricknerd.com/home/every-type-of-plastic-used-by-lego-2026-edition-3-12-26
1•speckx•6m ago•0 comments

AutoSP from PyTorch

https://pytorch.org/blog/introducing-autosp/
1•gmays•7m ago•0 comments

Show HN: Is your brand invisible to AI? We built a free visibility score

https://engagemii.com/aeo
1•Greg_engagemii•7m ago•0 comments

Why Is Electricity So Hard to Understand? (1989)

http://amasci.com/miscon/whyhrd3.html
1•downbad_•7m ago•1 comments

Public Service Announcement Badges

https://psas.dev/
1•edent•9m ago•0 comments

Show HN: Cockroach Battle Royale Game

https://roachoids.com
1•AFF87•10m ago•0 comments

LightInk, a Solar Powered ESP32 Smartwatch

https://hackaday.com/2026/05/05/lightink-a-solar-powered-esp32-smartwatch/
1•HardwareLust•10m ago•0 comments

Sam Bankman-Fried's Venture Bets Would Have Made Him $100B Richer

https://www.forbes.com/sites/ninabambysheva/2026/05/05/how-sam-bankman-frieds-venture-bets-would-...
1•paulpauper•10m ago•1 comments

The Programmer's Oath: 2025

https://ivanlugo.dev/oath.html
1•tikimcfee•10m ago•1 comments

Blackstone, KKR in Talks with Google to Bring AI Models to Portfolio Firms

https://www.bloomberg.com/news/articles/2026-05-05/blackstone-kkr-consider-google-deal-in-surge-o...
1•petethomas•10m ago•0 comments

Stop trying to review AI's code faster: bet on rollback instead

https://rootly.com/blog/stop-trying-to-review-ais-code-faster-bet-on-rollbacks-instead
1•sylvainkalache•11m ago•0 comments

Why didn't IPv6 work in my home network?

https://gowtham.dev/blog/ipv6-problems.html
1•lladnar•11m ago•0 comments

Ask HN: Have you ever thought of leaving programming for something else?

2•chistev•12m ago•1 comments

Font Changer Pro

https://chromewebstore.google.com/detail/font-changer-pro-—-fancy/gcnkiamhcnamjajanohnedpaafjgfbjc
1•asiffareed•12m ago•0 comments

Nature Portfolio paper for rigorous Bell-test for continuous quant systems

https://www.nature.com/articles/s41598-026-51406-0
1•singhshalender•13m ago•0 comments

What makes a good smartphone camera?

https://cadence.moe/blog/2026-05-05-what-makes-a-good-smartphone-camera
1•zdw•13m ago•0 comments

Zoo 2: getting the most out of Codex

https://tarantsov.com/meet-zoo-2/
1•andreyvit•14m ago•0 comments

The AI Cost of Admission

https://travismalone.substack.com/p/the-ai-cost-of-admission
1•tokonomy_dev•17m ago•0 comments

Stepping into the Future: A Paralyzed Veteran Returns to Georgia Tech for a PhD

https://research.gatech.edu/stepping-future-paralyzed-veteran-returns-georgia-tech-his-phd
1•duck•17m ago•0 comments

Ryan Cohen, GameStop CEO on TBPN, Purchase of eBay

https://x.com/i/broadcasts/1AxRnaEZRRkxl
1•vbhakta•18m ago•0 comments

The Brave Souls Who Bought a Used, 340k-Mile Rental Camper Van

https://www.thedrive.com/news/meet-the-brave-souls-who-bought-a-used-340000-mile-rental-camper-van
2•PaulHoule•18m ago•0 comments

Club-3090 Recipes for serving QWEN3.6 27B locally on RTX 3090s

https://github.com/noonghunna/club-3090
1•lastdong•19m ago•0 comments

Does Iran Have Secret Armed Dolphin Assassins?

https://www.popularmechanics.com/military/weapons/a30500130/iran-military-dolphins/
1•svenfaw•19m ago•2 comments

Show HN: The Agent That Orders My Groceries

https://twitter.com/pirosb3/status/2051733333592223822
1•pirosb3•21m 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!