frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Agent Engineering Roadmap – a beginner-friendly guide to building AI agents

https://github.com/audi0417/agent-engineering-roadmap
1•Audi0417•44s ago•0 comments

Leave Windows 11 Idle for 24 Hours and Watch What Happens [video][18 mins]

https://www.youtube.com/watch?v=Wtg_s1GQiMU
1•Bender•3m ago•0 comments

You can never replace your understanding

https://www.anthropic.com/research/claude-code-expertise
1•martianvoid•8m ago•0 comments

Faster KNN search in Manticore: 2-pass HNSW, batched distances, and AVX-512

https://medium.com/@s_nikolaev/faster-knn-search-in-manticore-2-pass-hnsw-batched-distances-and-a...
1•snikolaev•14m ago•0 comments

Has UC Denver Lost Control of Their Website?

https://www.ucdenver.edu/homepage
1•idontwantthis•18m ago•4 comments

The Art of War

https://en.wikipedia.org/wiki/The_Art_of_War
1•martianvoid•18m ago•0 comments

Agent Zero – A full Docker Linux system for your AI agent

https://github.com/agent0ai/agent-zero
1•modinfo•19m ago•0 comments

Hydrating plants during the heatwave with DIY irrigation

https://www.womanandhome.com/homes/homes-news/diy-irrigation-garden-hack-for-hot-weather/
1•smooke•20m ago•0 comments

Show HN: Shotlist – Make your AI agent prove its work with real screenshots

https://github.com/varmabudharaju/shotlist
2•softie123•22m ago•0 comments

Jim Keller: 'AI Still Obeys the Old Laws of Compute'

https://www.eetimes.com/jim-keller-on-tenstorrents-blackhole-scaling-and-ipo-ambitions/
1•firefoxd•29m ago•0 comments

Ho progettato un'infrastruttura logistica per azzerare lo spreco alimentare

2•mnnnnnnn•29m ago•0 comments

Expedia but for Western Union & Moneygram

https://www.remit-scout.com/
1•oghabayen•35m ago•0 comments

Rift Wizard 3 now in Early Access

https://store.steampowered.com/app/4366330/Rift_Wizard_3/
1•peteforde•44m ago•0 comments

Crazy Rich Returns Lure Cabbies and Even Kids to Red-Hot Asian Markets

https://www.wsj.com/world/asia/stock-market-ai-chips-taiwan-korea-01b7d385
2•ValentineC•45m ago•1 comments

Building an 8-bit breadboard computer – playlist

https://www.youtube.com/playlist?list=PLowKtXNTBypGqImE405J2565dvjafglHU
1•xeonmc•45m ago•0 comments

Seeking Third Technical Cofounder

1•nathanchou•47m ago•3 comments

Why are we so obsessed with lawns?

https://www.gardensillustrated.com/features/the-history-of-lawns
2•andsoitis•51m ago•0 comments

The modern company won't have bullshit jobs

https://12gramsofcarbon.com/p/agentics-i-no-longer-spend-time-counting
2•theahura•54m ago•0 comments

No-One Escapes the Permanent Underclass

https://borretti.me/article/no-one-escapes-the-permanent-underclass
30•hamish-b•1h ago•17 comments

Building domain-specific AI chatbots with Claude

https://gregwilson.tech/building-domain-specific-ai-chatbots
2•gw5815•1h ago•1 comments

Show HN: A GPU/VRAM filter for finding LLMs that will run on your hardware

https://www.whichllmmodel.com/app/text?local=true
1•mzubairtahir•1h ago•2 comments

No Bailouts for Big Tech Billionaires: Policies for When the AI Bubble Bursts

https://www.openmarketsinstitute.org/publications/no-bailouts-for-big-tech-billionaires-policies-...
3•nsagent•1h ago•0 comments

Libre Barcode Project

https://graphicore.github.io/librebarcode/
26•luu•1h ago•0 comments

Ask HN: How has the ML engineer job evolved outside of LLM labs?

1•olalonde•1h ago•0 comments

Thundermail June 2026 Update

https://blog.thunderbird.net/2026/06/thundermail-june-2026-update-what-we-learned-after-the-first...
3•bariumbitmap•1h ago•0 comments

Russell Vought's Latest Plan to Gut the Government Should Terrify You

https://www.thenation.com/article/politics/russell-vought-omb-grant-rule/
8•petethomas•1h ago•2 comments

Rura: Interactive TUI scratchpad for building shell pipelines

https://github.com/tlipinski/rura
4•loa_observer•1h ago•0 comments

China's CXMT Is Set to Challenge DRAM Incumbents

https://newsletter.semianalysis.com/p/chinas-cxmt-is-set-to-challenge-dram
3•djfergus•1h ago•1 comments

Show HN: HowMuch – Wordle, but you guess prices

https://howmuchgame.com/
2•spsneo•1h ago•3 comments

LogiGate: A zero-trust middleware architecture for AI liability written in Rust

https://github.com/Les-Senters/Logigate-architecture
2•zkpvault•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•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!