frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SDLC was built around human limitations AI doesn't share

https://www.preascent.com/insights/ai-problem-not-ai-problem
1•ocivelek•1m ago•1 comments

Just got approved on the Apple App Store – launching our digital rehab startup

1•spenzev•1m ago•0 comments

Agentic swarms are an org-chart delusion

https://www.joanwestenberg.com/agentic-swarms-are-an-org-chart-delusion/
1•surprisetalk•1m ago•0 comments

The Collective Ambition Behind Odysseus, a Game-Changing Sci-Fi Larp

https://mssv.net/2025/03/19/the-collective-ambition-behind-odysseus/
1•surprisetalk•1m ago•0 comments

Bridging Research and Manufacturing: The Role of Surface Science Nanometrology [video]

https://www.youtube.com/watch?v=Dcl6O_gRgqo
1•surprisetalk•1m ago•0 comments

A Visual Guide to DNA Sequencing

https://www.asimov.press/p/dna-sequencing
1•surprisetalk•1m ago•0 comments

James K. Polk and the 5,106 Votes That Changed America

https://www.coolidgereview.com/articles/james-polk-misremembered
1•RickJWagner•1m ago•0 comments

Into the Shadows: 3D game from Triton, supposed to release in 1995 but abandoned

https://www.gamesthatwerent.com/2024/04/into-the-shadows/
1•markus_zhang•2m ago•1 comments

Show HN: Learn distributed ML by playing a sci-fi browser game

https://simulator.zhebrak.io/?welcome
1•zhebrak•2m ago•1 comments

Why Do Investors Keep Buying Century Bonds?

https://thedailyeconomy.org/article/why-do-investors-keep-buying-century-bonds/
1•RickJWagner•2m ago•0 comments

Why I'm no longer releasing Linux builds of my games

https://bigosaur.com/blog/201-why-no-longer-linux-builds
1•babuskov•2m ago•0 comments

Beyond Oil: The Strait of Hormuz and the Global Food Risk

https://www.forbes.com/sites/rrapier/2026/03/01/beyond-oil-the-strait-of-hormuz-and-the-global-fo...
1•AndrewDucker•2m ago•0 comments

Why Claude Runs on Electron and Not ClaudeVM

https://jperla.com/blog/claude-electron-not-claudevm
1•ljlolel•3m ago•0 comments

Geometric and Control-Theoretic Limits on Drone Density in Bounded Airspace

https://www.mdpi.com/2504-446X/10/2/139
1•PaulHoule•4m ago•0 comments

Show HN: A Chrome extension that adds private notes to Pinterest pins

https://chromewebstore.google.com/detail/pinterest-notes-organizer/pjipjbaeocglhcfegkkalkglagojapom
1•losalah•5m ago•0 comments

When the Model Is the Machine

https://blog.mikegchambers.com/posts/when-the-model-is-the-machine/
1•mikegchambers•7m ago•1 comments

Rhode Island Files First-in-Nation Single-Room Occupancy Model Legislation

https://ij.org/press-release/rhode-island-files-first-in-nation-single-room-occupancy-model-legis...
1•mhb•12m ago•0 comments

SpaceWar – Maybe the Most Important Computer Game

https://wheels.org/spacewar/index.html
1•TigerUniversity•12m ago•0 comments

Wall Street's Capital Discipline is why US oil production won't ramp up at $100

https://www.governance.fyi/p/wall-street-killed-the-wildcatters
1•daveland•13m ago•2 comments

Privacy Pass

https://privacypass.github.io/
1•nothrowaways•13m ago•0 comments

Show HN: What % of your commits were written by AI?

https://technically-your-name-is-on-it.btao.org/
1•tao_oat•13m ago•0 comments

Show HN: Not_pad: local idea hub, Windows, single .exe, no install, zip

https://github.com/SylvaMoth/not_pad/releases/tag/v0.98.3-Beta
1•SylvaM•14m ago•0 comments

Software Engineering Isn't Dead Yet

https://deadneurons.substack.com/p/software-engineering-isnt-dead-yet
1•nr378•16m ago•0 comments

Painting that made Turner's name gets second public showing since 1799

https://www.thetimes.com/culture/art/article/painting-turner-abergavenny-bridge-rcvx8hglh
1•bookofjoe•17m ago•0 comments

$82,000 in 48 Hours from stolen Gemini API Key vs. normal monthly Usage Of $180

https://old.reddit.com/r/googlecloud/comments/1reqtvi/82000_in_48_hours_from_stolen_gemini_api_ke...
2•NewCzech•17m ago•1 comments

Glaze

https://www.raycast.com/blog/introducing-glaze
1•romac•19m ago•0 comments

Glaze by Raycast

https://www.glazeapp.com/
16•romac•19m ago•0 comments

Editing changes in patch format with Jujutsu

https://www.knifepoint.net/~kat/kb-jj-patchedit.html
1•cassepipe•19m ago•0 comments

Ancient Greece's most famous oracle was just high on gas fumes

https://www.popsci.com/science/oracle-of-delphi-drugs/
2•Brajeshwar•22m ago•1 comments

India's tech sovereignty is built on digital dependence

https://restofworld.org/2026/dwaipayan-banerjee-india-technology-book/
1•Brajeshwar•23m 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!