frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Reconfigurable single-walled carbon nanotube ferroelectric FET transistors

https://www.nature.com/articles/s41467-025-62827-2
1•westurner•40s ago•0 comments

Tell HN: GitHub Having Issues

3•Sytten•1m ago•1 comments

When Everyone Has an Agent

https://heynavii.substack.com/p/when-everyone-has-an-agent
1•saurabhpalan•2m ago•0 comments

AgentOps and operationalizing AI agents for the enterprise

https://www.uipath.com/blog/ai/agent-ops-operationalizing-ai-agents-for-enterprise
2•vladionescu•3m ago•1 comments

Prediction and Entropy of Printed English – Claude Shannon (1950) [pdf]

https://languagelog.ldc.upenn.edu/myl/Shannon1950.pdf
2•thunderbong•3m ago•0 comments

Intel's make-or-break 18A process node debuts for data center with 288-core Xeon

https://www.tomshardware.com/pc-components/cpus/intels-make-or-break-18a-process-node-debuts-for-...
4•vanburen•5m ago•0 comments

Silent Backwards Compatibility Breaking Changes in PyTorch

https://blog.ezyang.com/2026/03/silent-bc-breaking-changes/
2•matt_d•9m ago•0 comments

Hacked traffic cameras & US Intel: How plot to kill Iran's leader came together

https://www.cnn.com/2026/03/03/middleeast/us-israel-plot-kill-iran-khamenei-latam-intl
2•CGMthrowaway•9m ago•0 comments

Claude Code escapes its own denylist and sandbox

https://ona.com/stories/how-claude-code-escapes-its-own-denylist-and-sandbox
3•tomvault•9m ago•1 comments

I Built a Spy Satellite Simulator in a Browser. Here's What I Learned

https://www.spatialintelligence.ai/p/i-built-a-spy-satellite-simulator
2•CGMthrowaway•11m ago•0 comments

LotusQ Cross platform voice dictation with free local Whisper(Mac/Windows/Linux)

2•nkodev•11m ago•1 comments

The gap between ICP documents and buyer understanding in B2B sales

https://artemisgtm.ai/blog/why-most-b2b-companies-get-icp-wrong
2•thegtmauditguy•12m ago•1 comments

Academics Need to Wake Up on AI

https://alexanderkustov.substack.com/p/academics-need-to-wake-up-on-ai
2•verdverm•12m ago•0 comments

Qwen Tech Lead Steps Down

https://twitter.com/JustinLin610/status/2028865835373359513
3•informal007•13m ago•0 comments

Fire the CEO, Introducing the AxO's

https://boringops.sh/articles/fire_the_ceo/
2•boringops-dan•13m ago•0 comments

Mpv Is the MVP of Video and Image Viewing

https://nickjanetakis.com/blog/mpv-is-the-mvp-of-video-and-image-viewing
2•nickjj•14m ago•0 comments

Deprecate confusing APIs like "os.path.commonprefix()"

https://sethmlarson.dev/deprecate-confusing-apis-like-os-path-commonprefix
2•todsacerdoti•14m ago•0 comments

Ask HN: Using AI at work is stupidity, or a good tool if used properly?

2•MrLey•18m ago•0 comments

How HN: DocAPI – HTTP 402 as designed: agents register, pay USDC, run forever

https://www.docapi.co
2•siwandev•21m ago•1 comments

Why exe.dev VMs are persistent

https://blog.exe.dev/persistent
3•tosh•21m ago•0 comments

Gram 1.0 Released

https://gram.liten.app/posts/first-release/
2•birdculture•23m ago•0 comments

OpenAI releases GPT-5.3 Instant update to make ChatGPT less 'cringe'

https://9to5mac.com/2026/03/03/openai-releases-gpt-5-3-instant-update-to-make-chatgpt-less-cringe/
2•HiroProtagonist•24m ago•0 comments

Beatport and Beatsource to Unite into One Premium DJ Platform

https://www.beatportal.com/articles/1291036-beatport-and-beatsource-to-unite-into-one-premium-dj-...
2•DocFeind•24m ago•0 comments

Identity Formation and the Politics of Belonging: Bengali Migrants in Kerala [pdf]

https://www.aijfr.com/papers/2025/5/1400.pdf
2•thunderbong•24m ago•0 comments

Ask HN: What are your go to sources for relatively unbiased global news?

2•Jimmc414•25m ago•0 comments

Show HN: Voquill, an open source and cross-platform alternative to wisprflow

https://github.com/josiahsrc/voquill
2•josiahsrc•26m ago•0 comments

The unfortunate need for an "age verification" API for legal compliance

https://lists.ubuntu.com/archives/ubuntu-devel/2026-March/043510.html
3•turrini•26m ago•1 comments

OpenclawwOpenClaw Partners with VirusTotal for Skill Security

https://openclaw.ai/blog/virustotal-partnership
1•breitkreutz•27m ago•0 comments

Blocking a brain receptor may calm blood pressure signals

https://medicalxpress.com/news/2026-02-clue-hypertension-blocking-brain-receptor.html
3•PaulHoule•28m ago•0 comments

Show HN: Mozilla.ai introduces Clawbolt, an AI Assistant for the trades

https://github.com/mozilla-ai/clawbolt
8•river_otter•29m 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•10mo ago

Comments

semihs•10mo 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_•10mo 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•10mo 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_•10mo ago
That sounds great!