frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I built a small arena where AI write robot brains and then fight each other

https://github.com/nigrosimone/llms-robot-arena
1•nsimone•33s ago•0 comments

The Pelican Collection – Simonw Pelican Bicycle Gallery (2024-2026)

https://pelican-model-gallery.alienfluid.chatgpt.site/
1•dv35z•2m ago•0 comments

Hot Chips 2026: Irrational Recap

https://irrationalanalysis.substack.com/p/hot-chips-2026-irrational-recap
1•akshayt•10m ago•0 comments

CobaltC Programming Language Specification

https://strawberry9.github.io/the-wrong-memory/Appendix_06.html
1•VolatileRegiste•11m ago•0 comments

Celebrating Kazakhstan's first wild-born Przewalski's horse in 200 years

https://www.fauna-flora.org/news/celebrating-kazakhstans-first-wild-born-przewalskis-horse-in-200...
3•thunderbong•16m ago•1 comments

MCP server for 340k SVG icons

https://github.com/LeulAria/Aria-Icons
3•leularia•22m ago•0 comments

Our Suggestion Box

https://medium.com/luminasticity/our-suggestion-box-247d754ae1ad
1•bryanrasmussen•22m ago•0 comments

Show HN: Slock – A one-bit messenger inside your capslock key

https://github.com/jonaraphael/slock
2•jonaraphael•28m ago•2 comments

Archival Resource Keys (ARKs) serve as persistent identifiers

https://arks.org/
1•Tomte•29m ago•0 comments

Reimagining projections for the interactive maps era (2021)

https://www.mapbox.com/blog/adaptive-projections
3•gherkinnn•35m ago•1 comments

Site Is Closed on Sundays

https://v7.robweychert.com/
5•edent•38m ago•0 comments

I built an interactive networking lab for learning network engineering

https://net-forge-kappa.vercel.app/
2•OmarAfnan•40m ago•0 comments

An advanced attacker is targeting Salesforce and ServiceNow instances worldwide

https://www.reco.ai/blog/city-forum-campaign-salesforce-servicenow
3•daretograsp•43m ago•0 comments

Show HN: Public message board for limited systems

https://anystation.net/
2•jonahss•46m ago•0 comments

Switzerland's invisible skyline: why Zug towers over the rest

https://prospex.ch/blog/switzerlands-invisible-skyline-companies-by-building/
1•theanonymousone•54m ago•0 comments

A Figma clone built by GPT-6 Astra

https://wieslawsoltes.github.io/Vellum/
5•aghuang•58m ago•5 comments

Ask HN: Do you route only certain websites through a VPN?

1•dennysora-main•1h ago•1 comments

The Structured Vacuum: Thinking about Nothing [pdf]

https://rafelski.com/~johann/Books/StructVacuumE.pdf
3•rramadass•1h ago•0 comments

Revealing a Hidden Class of Task-in-Prompt Adversarial Attacks on LLMs

https://aclanthology.org/2025.acl-long.334/
1•aghuang•1h ago•0 comments

Show HN: Rust and Box2D browser physics game – build destructive machines

https://v-yanakiev.itch.io/machina
2•v-yanakiev•1h ago•0 comments

MyNoise – Custom Soundscapes for Focus, Relaxation and Sleep

https://mynoise.net/index.php
1•pan69•1h ago•0 comments

interpretation to AI agents

https://ag3497120.github.io/call-me-vera/
1•pakupaku•1h ago•0 comments

Robot writes in languages it has never seen before

https://www.wired.com/story/robot-writing/
3•euanming•1h ago•0 comments

The biggest problem in buying AI compute is credit

https://twitter.com/gpugene/status/2096427973893411312
1•MrBuddyCasino•1h ago•0 comments

Anthropic IPO launch shifts toward mid-October

https://www.cnbc.com/2026/09/05/anthropic-ipo-launch-shifts-toward-mid-october-reuters.html
3•aghuang•1h ago•0 comments

Show HN: Assist (Voice Screenshot)

https://assistapp.dev
1•abhishekucs•1h ago•1 comments

TR-106

https://en.wikipedia.org/wiki/TR-106
2•num42•1h ago•0 comments

LA District Bans Most A.I. For Students

https://www.nytimes.com/2026/09/03/us/lausd-schools-ban-ai-artificial-intelligence.html
3•narenst•1h ago•1 comments

Greenland forces Trump's US oil firm to delay drilling

https://www.theguardian.com/world/2026/aug/12/trump-greenland-oil
8•Alien1Being•1h ago•0 comments

Consciousness, creativity andunderstanding not obstacles to machine intelligence

https://link.springer.com/article/10.1007/s11229-026-05655-1
4•klaustro•1h 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!