frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Designing least-privilege registry credentials for CI

https://omniline.app/blog/death-by-a-thousand-tokens-least-privilege-registry-credentials-for-ci
1•libertas_quae_s•59s ago•0 comments

22 Years on Firefox, and Today I'm All In

https://rietta.com/blog/firefox-in-2026/
1•rietta•1m ago•1 comments

Show HN: Diamonds – Dots and Boxes, but with diagonals and area scoring

https://diamondsthegame.com
1•abhas9•3m ago•0 comments

An American Mosaic (interactive map of ancestry census data)

https://www.nytimes.com/interactive/2026/07/01/us/america-ancestry-census-data-map.html
1•cckolon•3m ago•0 comments

Fastest Inference in MENA

https://runinfra.ai/inference-api
2•OsamaJaber•4m ago•0 comments

Randomly Generated 'Peer Reviewed' Papers Published by Springer Nature

https://dailysceptic.org/2021/10/03/436-randomly-generated-peer-reviewed-papers-published-by-spri...
2•ForgotIdAgain•6m ago•0 comments

Plasmonics

https://en.wikipedia.org/wiki/Plasmonics
1•peter_d_sherman•10m ago•0 comments

Show HN: Interactive TSP solver with step-by-step algorithm explanation

https://tsp.uncledroid.app
1•Abhijit8086•11m ago•0 comments

How to Plan? (2022)

https://kellanem.com/notes/how-to-plan
1•tosh•11m ago•0 comments

Nixpkgs-Multiverse: Fast Mode

https://fzakaria.com/2026/08/14/nixpkgs-multiverse-fast-mode
1•birdculture•13m ago•0 comments

Ask HN: What tools are you using for human code review of AI-assisted code?

1•dafelst•16m ago•0 comments

Show HN: Rungraph – See your AI coding-agent runs as a graph

https://github.com/fayzan123/rungraph
1•FayzanMalik•17m ago•0 comments

When Astronomy Morphs into Astrology

https://www.realclearpolitics.com/articles/2026/08/16/when_astronomy_morphs_into_astrology_154414...
1•RickJWagner•18m ago•0 comments

Let's Be Honest: Tokens Are Replacing Payrolls

https://horse.energy/who_buys_the_tokens.html
2•aakil•19m ago•0 comments

Weather apps are crushing America's small businesses

https://www.businessinsider.com/weather-apps-rain-icon-small-businesses-summer-plans-2026-7
2•ripe•20m ago•2 comments

NIH is ending a key grant for budding clinical researchers

https://www.science.org/content/article/nih-ending-key-grant-budding-clinical-researchers
2•brandonb•21m ago•0 comments

I Made a Plex Server

https://henry.codes/writing/i-made-a-plex-server/
2•ohjeez•22m ago•0 comments

Show HN: ViaNJ – an app that makes NJ Transit ticketing less painful

1•perryraskin•23m ago•0 comments

Trump administration wants to allow companies to hack foreign cybercriminals

https://www.npr.org/2026/08/15/nx-s1-5930311/trump-companies-hack-foreign-cybercriminals
1•geox•23m ago•0 comments

Glider: Drive all your agent CLIs from one terminal

https://utsv.work/Glider/
2•uds5501•25m ago•1 comments

Being Ambitious and Being a Dad

https://nicholascharriere.com/blog/being-ambitious-and-being-a-dad/
1•nichochar•27m ago•0 comments

Who Tells You Whether the Molecule Your AI Just Designed Is Any Good?

https://huggingface.co/blog/FINAL-Bench/open-discovery-challenge
2•makaimc•28m ago•0 comments

Writing 300k+ lines of code per month is the new normal, I guess

https://nmn.gl/blog/how-i-actually-write-10000-lines
1•namanyayg•29m ago•0 comments

Rogue AI aren't science fiction anymore

https://www.theverge.com/column/980337/rogue-ai-science-fiction-openai
1•sbulaev•29m ago•0 comments

The experience of mathematical beauty and its neural correlates (2014)

https://pubmed.ncbi.nlm.nih.gov/24592230/
1•nvartolomei•31m ago•0 comments

I tested every Al model the same way. Only one task got better

https://www.thetrueengineer.com/p/i-tested-every-ai-model-the-same
1•adletbalzhanov•32m ago•0 comments

OLED Burn-In Hasn't Improved Like We Expected

https://www.rtings.com/tv/learn/oled-burn-in-not-improved-as-expected
2•doublepg23•33m ago•0 comments

Lichen – simplest CMS for the web, based on Forth

https://codeberg.org/stringbone/lichen/src/branch/master#lichen
2•smartmic•35m ago•0 comments

Build Cal.com on WordPress – Steem WP Plugin Generator

https://steem.dev/signin?next=%2Fapp%3Fproject%3D1e06c442-0b20-43df-a5d8-52b208416f47
1•startuphubai•37m ago•0 comments

Oracle's $165B New Mexico Data Center Plan Hits a Gas Pipeline Delay

https://oilprice.com/Latest-Energy-News/World-News/Oracles-165-Billion-Data-Center-Plan-Hits-a-Ga...
3•toomuchtodo•46m 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!