frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mining And refining: uranium and plutonium (2024)

https://hackaday.com/2024/04/24/mining-and-refining-uranium-and-plutonium/
1•leonidasrup•36s ago•0 comments

How an astrophysicist uses Codex to help simulate black holes

https://openai.com/index/using-codex-to-simulate-black-holes/
1•gmays•6m ago•0 comments

AI: Surgeon's Assistant or Commodity on a Meter?

https://replicated.wiki/blog/stream.html
1•gritzko•6m ago•0 comments

Show HN: Hanzi Popup – Chinese Language Reader for iOS

https://krmanik.github.io/hanzipopupapp/
1•krmani•12m ago•0 comments

Effective Note Taking

https://isgin01.github.io/posts/effective-note-taking/
1•pullshark91•16m ago•0 comments

SchemaFlow: Agentic Database Change Impact Analysis, SQL Gen and Eval Guardrails

https://developers.openai.com/cookbook/examples/partners/schemaflow_design_guide/schemaflow_cookbook
1•gmays•18m ago•0 comments

Making FlashAttention-4 faster for inference

https://modal.com/blog/flash-attention-4-faster
1•birdculture•18m ago•0 comments

A Missing Woman from Germany Reappears in the Epstein Files

https://www.spiegel.de/international/world/the-mystery-of-michele-a-missing-woman-from-germany-re...
1•doener•25m ago•0 comments

Consciousness likely not unique to earthlings, paper says

https://news.ucr.edu/articles/2026/06/10/consciousness-likely-not-unique-earthlings-paper-says
1•giuliomagnifico•26m ago•0 comments

As Donald Trump turns 80, he faces a foe he can never defeat: Father Time

https://www.theguardian.com/news/ng-interactive/2026/jun/14/donald-trump-turns-80-faces-foe-fathe...
2•hebelehubele•27m ago•1 comments

An O(x)Caml book that runs

https://kcsrk.info/ocaml/oxcaml/teaching/nptel/llm/2026/06/13/an-oxcaml-book-that-runs/
1•matt_d•28m ago•0 comments

Tribblix: the retro illumos distribution

http://tribblix.org/
7•naturalmovement•30m ago•0 comments

How (and Why) SpaceX Will Colonize Mars

https://waitbutwhy.com/2015/08/how-and-why-spacex-will-colonize-mars.html
2•kunalsin9h•38m ago•0 comments

Digg Reborn

https://digg.com/tech
2•gurjeet•38m ago•0 comments

Story of How Im Running an Unlimited $6/Month AI Provider on 4x RTX 3090s

1•yolo-auto•42m ago•0 comments

World Models and the Emergence of a "First-Person" Perspective in an AI [video]

https://www.youtube.com/watch?v=2nQSoiC5VHs
1•mojuba•43m ago•0 comments

Frontier AI companies will never exceed the capability frontier again

https://andrewtrask.substack.com/p/breaking-todays-frontier-ai-companies
2•williamtrask•49m ago•0 comments

OpenAI hit with multistate probe into possible user harm as its IPO looms

https://www.yahoo.com/news/politics/articles/openai-hit-multistate-probe-possible-191744135.html
2•1vuio0pswjnm7•49m ago•0 comments

AP Transit – A lightweight 3D real-time NYC subway and PATH map

https://aptransit.co/
1•UnitedOfTransit•50m ago•0 comments

Git merges can be better

https://brandondong.github.io/blog/git_merges_can_be_better/
2•brandon_bot•53m ago•0 comments

New Documents Detail Nine-Figure, Silicon Valley–Funded "Abundance Movement"

https://prospect.org/2026/06/12/new-documents-detail-nine-figure-silicon-valley-funded-abundance-...
2•slater•59m ago•0 comments

Extinction-Level Capitalism

https://matthewbutterick.com/extinction-level-capitalism.html
3•csbartus•59m ago•0 comments

Phoenix LiveView 1.2 Released

https://phoenixframework.org/blog/phoenix-liveview-1-2-released
2•ksec•59m ago•0 comments

Show HN: Motplot is a crossword but it plays like Sudoku

https://motplot.app/
3•jamwise•1h ago•1 comments

Quick: An internal hosting platform for the AI era

https://shopify.engineering/quick
2•ksec•1h ago•0 comments

Forked TensorZero after it was archived after raising $7.3M

https://github.com/agentify-sh/gateway
2•agentifysh•1h ago•0 comments

Initial Results on Legal Agent Benchmark

https://twitter.com/gabepereyra/status/2059320727988224128
1•gmays•1h ago•0 comments

Show HN: Agent Gate – a deterministic CI firewall for AI-generated PRs

https://github.com/sjh9714/Agent-Gate
1•sjh9714•1h ago•0 comments

Design Engineer at Solve Intelligence

https://foundersarehiring.com/job/on-site/design-engineer-6a2bbb90fd4cdebe8c4ed02f
1•niksmac•1h ago•0 comments

Co-Founder Honch

https://www.honch.io/
2•Raeedzz•1h ago•1 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!