frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

JJ2+ – Jazz Jackrabbit 2 mod

https://jj2.plus/website.php
1•skibz•21s ago•0 comments

Worms: The Future of Yesterday's Worms Today

https://worm.net/
1•doener•57s ago•0 comments

From LLM to shopping cart (Portugal)

https://cesta.pt/
1•marcogarces•1m ago•0 comments

The Gargantuan Lie That Is Collapsing the Climate

https://www.currentaffairs.org/news/the-massive-climate-lie-that-will-destroy-human-civilization
1•Anon84•1m ago•0 comments

AI Meet CAD: Beat Opus/Mythos 5, GPT 5.6 Sol on BenchCAD

https://arxiv.org/abs/2608.00799
1•SUPERustam•3m ago•1 comments

Indie dev claims Gemini leaked scarily specific details in private documents

https://www.gamesradar.com/games/google-ai-leaks-scarily-accurate-and-very-specific-game-detail-f...
1•Sha1rholder•4m ago•0 comments

You are a kitten in a catnip forest

https://kittensgame.com/web/
1•xkcd1963•7m ago•0 comments

"Aura" and the Backlash Against the Slop Machine

https://decodingvibes.com/blog/aura-and-the-backlash-against-the-slop-machine/
1•altmanaltman•9m ago•0 comments

India's IT sector is surviving artificial intelligence

https://economist.com/finance-and-economics/2026/08/06/indias-it-sector-is-surviving-artificial-i...
1•_tk_•11m ago•0 comments

Four Ex-Stratfor Analysts Reunite to Predict How the World Ends [video]

https://www.youtube.com/watch?v=z9zH8CJTPS8
1•mooreds•14m ago•0 comments

Show HN: Discover and Compare the Best Software Tools – GeeksDive

https://geeksdive.com
1•not_wowinter13•14m ago•0 comments

EU Regulators Barred from Disclosing Tesla FSD Approval Research

https://www.reuters.com/legal/litigation/pressured-by-tesla-european-regulators-keep-full-self-dr...
1•qprofyeh•14m ago•1 comments

Win a Copy of Mastering Digital Identity

https://ciamweekly.substack.com/p/want-to-win-a-copy-of-mastering-digital
1•mooreds•16m ago•0 comments

Navigating Private Equity ownership (2024)

https://lethain.com/private-equity-strategy/
1•mooreds•17m ago•0 comments

The Hottest New AI Chatbot Is Just a Guy Answering Your Questions

https://www.wired.com/story/this-chatbot-is-just-a-random-guy-lol/
3•joozio•18m ago•0 comments

Making Postgres 300x faster for analytics: batching, operator fusion, and SIMD

https://malisper.me/how-we-made-postgres-hundreds-of-times-faster-the-query-engine/
1•poly2it•20m ago•0 comments

Marp now supports Mermaid diagrams

https://github.com/marp-team/marp-core/blob/main/docs/markdown.md
1•jamesbelchamber•21m ago•0 comments

How to Not Write Parsers

https://crtschin.com/posts/how-to-not-write-parsers
1•Thom2503•23m ago•0 comments

Show HN: We automated reading and filtering competitor website changes

https://competitortracker.io
2•slobodan_•24m ago•1 comments

Meta apologises to India for restricting PM Modi's post

https://www.reuters.com/world/india/meta-apologises-india-restricting-pm-modis-post-2026-08-05/
3•thisislife2•25m ago•0 comments

From constraint models to playable puzzle games

https://zayenz.se/blog/post/constraint-generated-puzzle-games/
1•mzl•26m ago•0 comments

Airworthiness Directive: Cracks in Fuselage of Boeing 737-8, 737-9, and 737-8200

https://www.federalregister.gov/documents/2026/08/06/2026-15936/airworthiness-directives-the-boei...
2•impish9208•27m ago•0 comments

New Intelligence Warns Russia May Provoke NATO Amid Dwindling U.S. Munitions

https://www.wsj.com/finance/investing/new-intelligence-warns-russia-may-provoke-nato-amid-dwindli...
1•doener•28m ago•0 comments

Our world is full of slop

https://refactoringorgs.com/ramblings/world-full-of-slop.php
2•polocode•28m ago•1 comments

Show HN: textlog – A quiet, text-only microblogging platform

https://textlog.cc/about
2•stagas•28m ago•0 comments

Ask HN: Is there an AI app that generates a feed of personalized cheat sheets

1•ElegantTrader•30m ago•0 comments

Claude Code skill allowing orchestration of edits beat-synced to songs

https://github.com/ZiadAbdelkarim/beat-synced-edit
1•iwasastreamer•31m ago•0 comments

Ask HN: Alternatives to Hotline Telegram CRM?

1•hotline•32m ago•0 comments

Loop Engineering in Claude

https://claude.com/blog/getting-started-with-loops
2•abrbhat•35m ago•0 comments

An explosion of new AI-written genealogy tree tools

https://blog.dnapainter.com/blog/an-explosion-of-new-tree-tools/
1•vintermann•35m 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!