frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: PR review time decreased by N3MO:impact analyser (15 days free trial)

https://n3mo.vercel.app
1•RajX_dev•27s ago•0 comments

PJM board proposes backstop capacity auction, data center curtailment plans

https://finance.yahoo.com/energy/articles/pjm-board-proposes-backstop-capacity-100932204.html
1•measurablefunc•2m ago•0 comments

China tests 6.5 Tesla magnet

https://theprint.in/india/breakthrough-china-artificial-sun-project-6-5-tesla-magnet/2999321/
1•soniman•5m ago•0 comments

More Tailscale tricks for your jailbroken Kindle

https://tailscale.com/blog/jailbroken-kindle-proxy-tun-modes
1•Error6571•5m ago•0 comments

Show HN: Firemaps Spain – Live wildfire map with wind flow for ES and PT

https://firemapsspain.online/
1•kalamarico•14m ago•0 comments

Manganin: Tools Matter

https://blog.manganin.dev/blog/tools-matter/
1•ai2027•15m ago•0 comments

Israel Is Paying Millions to Train AI Chatbots How to Talk About Gaza

https://www.dropsitenews.com/p/israel-brad-parscale-ai-chatbots-gaza
6•jaykru•17m ago•1 comments

Cross-platform Shadow AI: Find, score, and report unmanaged AI

https://www.npmjs.com/package/@guardion/shadow-ai
1•rflsandroni•20m ago•0 comments

Show HN: Wordknots

https://wordknots.barapa.dev/
1•barapa•25m ago•0 comments

Google DeepMind dismantles Nobel-winning AlphaFold team in strategy shift

https://www.ft.com/content/61b2953d-ee0d-45de-af6e-a9c1cf524b33
2•marcopolis•30m ago•0 comments

Cracking Windows Open: Porting RADV to Win32

https://www.collabora.com/news-and-blog/news-and-events/cracking-windows-open-porting-radv-to-win...
3•zdw•33m ago•0 comments

User Interfaces of the Demo Scene

https://www.datagubbe.se/scenegui/
1•zdw•33m ago•0 comments

Kospi Plunges After Nvidia CEO's Visits Spark 'Huang Curse' Fears

https://www.chosun.com/english/market-money-en/2026/07/29/6FEUZWQT5BG3HMJ3G2RZPHROGM/
4•mapping365•34m ago•0 comments

Encode and Decode any digital text for free

https://www.qrexpress.org/ro/
2•levario•35m ago•1 comments

Self-Hosting has 34× First-Year ROI at 90% capacity

https://www.reddit.com/r/LocalLLM/comments/1v8dv47/what_am_i_missing_selfhosting_kimi_k3_has_34/
2•linxy97•45m ago•2 comments

Protecting My Server and Knowing What It Does with Tailscale and Beszel

1•SyedFazil•46m ago•0 comments

Show HN: Robust Blockchain Infrastructure

https://onfinality.io/en
1•cyrbuzz•47m ago•1 comments

A CLI that shows which sub-agent burned your tokens in one run

https://github.com/rrkher059/token-trace-viewer
1•rrkher059•48m ago•2 comments

Certified in Theory, Broken in Practice: Assumption Gaps in Cryptographic Model

https://arxiv.org/abs/2607.21839
2•sbulaev•57m ago•0 comments

The Future Is Here (2009)

https://retout.co.uk/2009/10/25/the_future_is_here/
2•jruohonen•58m ago•0 comments

MonkeysCode and Capuchin AI: The Agentic IDE That Gives You Total Control

https://monkeyscode.com/blog/introducing-monkeyscode-capuchin-the-agentic-ide-that-gives-you-tota...
1•monkeyscloud•1h ago•0 comments

What Has Happened to Taste?

https://www.esquire.com/style/a71276009/what-has-happened-to-taste/
3•acmnrs•1h ago•1 comments

Kestrel – passive AD audit tool on native C

https://github.com/ssteelfactor-oss/Kestrel
1•steelfactor•1h ago•0 comments

Transformer Transformer: A Unified Model for Motion-Conditioned Robot Co-Design

https://transformer-transformer.github.io/
11•ilreb•1h ago•0 comments

Exit Codes

https://bettercli.org/design/exit-codes/
2•ankitg12•1h ago•1 comments

One transcript, four different GPA views

https://mongol-jimmi.github.io/medcompass-audit/guides/gpa-formulas.html
1•medcompassaudit•1h ago•0 comments

An autonomous fleet to turn your Intent into production systems

https://intentlab.ai/blog/turn-your-intent-into-production-systems
1•jinqueeny•1h ago•0 comments

Show HN: Poople Today – Word Ladders Ending in Poop

https://poopletoday.com/
1•aitooltrek-com•1h ago•0 comments

Show HN: I run 30B 22tok/s, 109tok/s not novel,6GB/16GB RAM overcoming llama.cpp

https://github.com/FedericoTs/quantprobe
1•federicoTXTS•1h ago•0 comments

Scrum's "Product Owner" Problem

https://rethinkingsoftware.substack.com/p/scrums-product-owner-problem
2•aard•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!