frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Arbitrary code execution breaking sandboxes in KDE Plasma

https://blog.kimiblock.top/2026/07/01/arbitrary-code-execution-in-kde-plasma/index.html
1•shscs911•19s ago•0 comments

Modernizing a 25-year-old minimal C++ unit testing framework (Part 2)

https://freshsources.com/code-capsules/test-part2/
1•chuckallison•40s ago•0 comments

Ask HN: First day using Fable – how was it?

1•akashwadhwani35•1m ago•0 comments

'The Book of Birds': Not just identifying avian species, but relating to them

https://www.csmonitor.com/Arts-Culture/Books/2026/0609/book-of-birds-robert-macfarlane-jackie-morris
1•Tomte•1m ago•0 comments

Tigera Introduces Lynx, a Unified Control Plane for Kubernetes‑Native AI Agents

https://cloudnativenow.com/features/tigera-introduces-lynx-a-unified-control-plane-for-kubernetes...
1•CrankyBear•1m ago•0 comments

AI should help researchers think deeper, not think less

https://agentbayes.com/blog/ai-should-help-researchers-think-longer
1•guyzana•2m ago•0 comments

Building Incremental Data Pipelines for Out-of-Order Scientific Data

https://bisarray.com/articles/disarrayed-file-ingestion
2•JohnLErvin•3m ago•0 comments

Exapunks

https://www.zachtronics.com/exapunks/
1•yu3zhou4•4m ago•0 comments

31 Days Until EU AI Act

https://leanpub.com/eu-ai-act
1•ballista2026•5m ago•0 comments

Postgres transactions are a distributed systems superpower

https://www.dbos.dev/blog/co-locating-workflow-state-with-your-data
1•KraftyOne•7m ago•0 comments

Projects by Walter P Moore (engineering firm)

https://www.walterpmoore.com/projects
1•gregsadetsky•7m ago•0 comments

Claude's AskUserQuestion: "No response after 60s – continued without an answer"

https://github.com/anthropics/claude-code/issues/73125
1•tubignaaso•8m ago•0 comments

Programming Language Design and Implementation in the Era of Machine Learning [video]

https://www.youtube.com/watch?v=Fc3cW0nqAQ0
1•matt_d•8m ago•0 comments

Canada Is Mother Natures Richest Country

https://simplisticsara.substack.com/p/canada-is-mother-natures-richest
1•QueenoftheNorth•8m ago•0 comments

Vulkan is now available on NetBSD

https://github.com/segaboy/vulkan-netbsd
2•segaboy81•9m ago•0 comments

Sitting for more than 30 minutes at a time linked to higher risk of cancer death

https://www.theguardian.com/science/2026/jul/02/sitting-minutes-cancer-death-risk-study
1•0in•11m ago•0 comments

The Peak and Collapse of Digital Research

https://nemanjatrifunovic.substack.com/p/the-peak-and-collapse-of-digital
1•whobre•13m ago•0 comments

TinyRetroPad, a 2.5 KB 'Notepad' for Windows

https://www.theregister.com/os-platforms/2026/06/30/former-microsoft-engineer-shrinks-notepad-dow...
2•alok-g•14m ago•0 comments

What the Halting Problem Means for Python Security

https://nocomplexity.substack.com/p/what-the-halting-problem-means-for
1•runningmike•16m ago•0 comments

Tournesol – Collaborative Content Recommendations

https://github.com/tournesol-app/tournesol
1•Qision•18m ago•0 comments

The Truth About AI: It's Not Intelligence, It's a Trick – Prof Jiang Xueqin

https://www.youtube.com/watch?v=5llffhy3SFs
2•oxqbldpxo•19m ago•1 comments

Bring Back the Gatekeeper, Please

https://thewalrus.ca/bring-back-the-gatekeeper-please/
1•gmays•20m ago•0 comments

Heat adds to strains on areas with data centers

https://apnews.com/article/data-center-heat-wave-lowell-5607b4ea8ef9776b28268561060752a8
1•geox•20m ago•0 comments

Journey to the Moon by Jules Verne

https://www.lrb.co.uk/the-paper/v48/n12/raymond-n.-mackenzie/platinum-noses
1•mitchbob•21m ago•1 comments

Red-Pill Robots Only, Please (2012) [pdf]

https://kryten.mm.rpi.edu/SBringsjordMClarkRed-PillRobotsOnly.pdf
1•projektfu•22m ago•0 comments

Ask HN: Why are so many "AI evangelists" posting such insufferable content?

3•seattle_spring•22m ago•2 comments

Launchpanda: Save your product info once, launch everywhere

https://www.launchpanda.dev
2•welsenesbros•22m ago•0 comments

Ask HN: Will AI force CS to focus on what to build instead of how to build it?

1•amichail•22m ago•0 comments

Show HN: RetainFlow – Subscription Retention for WooCommerce

https://wordpress.org/plugins/retainwoo/
1•techstuff123•23m ago•0 comments

Interpretable Coreference Resolution Evaluation Using Explicit Semantics

https://aclanthology.org/2026.acl-long.2126/
1•petethomas•25m 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!