frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Sasquatch science

https://aeon.co/essays/the-surprisingly-scientific-methods-of-bigfooters
2•rifish•45s ago•1 comments

Barclays on AI testing, telemetry and kill switches

https://qa-financial.com/barclays-on-ai-testing-telemetry-and-kill-switches/
1•bryanrasmussen•1m ago•0 comments

What happened to Loom after the Atlassian acquisition?

https://chairkick.com/what-happened-to-loom
1•olieidel•2m ago•0 comments

Looking to build 1–2 SaaS projects at a low price

https://www.indiehackers.com/post/looking-to-build-1-2-saas-projects-at-a-very-low-price-0b83cfe530
1•AutFlowStudio•5m ago•0 comments

When the best decision is no decision: the rise of randomization in grant

https://www.nature.com/articles/d41586-026-02082-7
1•sbulaev•5m ago•0 comments

Show HN: Mr_tech – Treating 3D games as source code, not as their runtime

https://github.com/markel1974/godoom
1•markel1974•5m ago•0 comments

Show HN: Overlay – Design with your React components and CSS tokens in your IDE

https://www.overlay.studio/
1•frabia•6m ago•0 comments

CVE-2026-56852: x/text/Unicode/norm infinite loop on invalid UTF-8 (DoS)

https://pkg.go.dev/vuln/GO-2026-5970
1•refp•8m ago•0 comments

Rust game engine Bevy's sixth birthday

https://bevy.org/news/bevys-sixth-birthday/
1•killercup•8m ago•0 comments

How to organize Claude Code for product work

https://www.theaithinker.com/p/how-to-organize-claude-code-for-product
2•adamfaik•10m ago•0 comments

AI for science needs reasoning, not just data

https://www.technologyreview.com/2026/08/10/1141384/ai-agents-for-science/
1•joozio•10m ago•0 comments

Show HN: Anansi – open-source memory API for LLM apps

https://github.com/g-33-L/anansi
1•jsuleiman•10m ago•0 comments

Claude Opus 4.8 Costs 57.1× More, Loses All 5 Benchmarks – Beaten by the Harness

https://floatboat.ai/news/harness-benchmark
1•Floatboat_ai•12m ago•0 comments

CodeSnap – Open-source Carbon.sh alternative with SVG export

http://87.106.146.111:8181
1•chainman•15m ago•0 comments

My Little Game History Anthology

https://felipepepe.medium.com/my-little-game-history-anthology-4029a0d29089
1•rdmuser•15m ago•0 comments

Chinese Mini-Game Sites That Defined Millennial Summer Holidays

https://radii.co/article/6-chinese-mini-game-websites-millennial-summer-holidays
1•rdmuser•15m ago•1 comments

Linus Torvalds says AI has made 'huge' Linux kernel updates the new normal

https://www.theregister.com/os-platforms/2026/08/10/linus-torvalds-says-ai-has-made-huge-linux-ke...
3•pseudolus•16m ago•0 comments

What Makes a Best-Selling Novel? A Machine Learning Approach (2016)

https://marcinciura.wordpress.com/2016/04/17/what-makes-a-best-selling-novel/
1•mci•16m ago•0 comments

AI cyclone forecasts could add 30 hours of warning time

https://phys.org/news/2026-08-ai-cyclone-hours.html
1•pseudolus•17m ago•0 comments

Remembering the pre-Google web, when search was an experiment

https://arstechnica.com/gadgets/2026/08/remembering-the-pre-google-web-when-search-was-an-experim...
1•rbanffy•17m ago•0 comments

From GNSS Fundamentals to Static GPS Spoofing

https://payatu.com/blog/from-gnss-fundamentals-to-static-gps-spoofing/
3•Shubham_Thorat•17m ago•0 comments

Mark Zuckerberg doesn't understand how to live

https://www.theverge.com/ai-artificial-intelligence/977623/mark-zuckerberg-ai-manifesto-dim-vision
3•pythonic_hell•23m ago•1 comments

Nginx reloaded nothing. Certbot still exited 0

https://www.certpost.ai/blog/certbot-renewed-nginx-still-serves-old-cert
2•mlmusson•26m ago•0 comments

Fast Haskell Scripts on GitHub Actions

https://abhinavsarkar.net/posts/fast-haskell-scripts-on-github-actions/
3•abhin4v•29m ago•0 comments

What I learned by putting GitHub Copilot behind a MitM proxy

https://www.lighthousenewsletter.com/p/i-put-github-copilot-behind-a-mitm
2•j0selit0•31m ago•0 comments

Nvidia partners with Wall Street giants to raise $500B for AI buildout

https://www.reuters.com/technology/wall-street-giants-partner-with-nvidia-500-billion-ai-financin...
3•ashurandi•32m ago•0 comments

Show HN: Compare Wikipedia articles between languages in the Middle East

https://wikicompare.app
3•idonov•34m ago•0 comments

We built a realtime system for responsive voice AI in six months

https://openai.com/index/continuous-voice-interaction-with-gpt-live/
1•karimf•35m ago•0 comments

aria2: The next generation download utility

https://aria2.github.io/
1•Bluestein•36m ago•0 comments

Inferact vLLM creators are hiring

https://twitter.com/SemiAnalysis_/status/2086815217497849987
1•aaqaishtyaq•36m 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!