frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI Dumps Cursor

https://www.bloomberg.com/news/articles/2026-08-29/openai-to-end-partnership-with-cursor-after-sp...
1•MehrdadKhnzd•3m ago•1 comments

A shelf with counts in HTML (no JavaScript)

https://webwithoutjs.com/lab/shelf/
2•nreece•7m ago•0 comments

Terminal-Bench 4.0

https://www.tbench.ai/news/terminal-bench-4-0
1•mji•7m ago•0 comments

Quest for the Eternal Dock – Lambdock

https://jointhefreeworld.org/blog/articles/gnu-linux/quest-for-eternal-dock/index.html
2•signa11•8m ago•0 comments

Box breathing: Inside the 'most powerful hack' to control stress

https://www.bbc.com/news/articles/c5y5jqly153o
1•1659447091•9m ago•0 comments

Why this philosopher turned down Anthropic

https://www.ft.com/content/bdb3b820-905b-431e-82c0-386535755af1
1•outside1234•9m ago•0 comments

Show HN: SlideX – Open-source presentations with MDX

https://www.slidexdeck.com/en/
1•zz41354899•10m ago•0 comments

Personal Dynamic Media (1977)

https://ieeexplore.ieee.org/document/1646405
1•gone35•13m ago•0 comments

LSPs for LLMs

https://ianbarber.blog/2026/08/11/lsps-for-llms/
2•ocamoss•15m ago•0 comments

Show HN: Metis – An agent harness pushing DeepSeek to Opus-tier coding (82%)

https://github.com/Wholiver/metis
1•oliverhuchenrui•16m ago•0 comments

Subs, a cloud native agent harness

https://github.com/substructureai/subs
1•xwil•17m ago•0 comments

TurboKV: Insanely fast Rust key-value store

https://github.com/kingroryg/turbokv
5•rgbimbochamp•29m ago•0 comments

PureSpace – Lightweight macOS cleaner and uninstaller

https://www.haoqibit.com/puremac
2•Popang•33m ago•1 comments

PastePal – Clipboard manager for Mac with iCloud sync

https://www.haoqibit.com/pastepal
2•Popang•34m ago•0 comments

Our decision on Cursor following its acquisition by SpaceX

https://twitter.com/OpenAI/status/2093515564786540695
7•qainsights•35m ago•1 comments

Landlady to 9/11 hijackers reveals their links to alleged Saudi spy

https://www.bbc.com/news/articles/c99dvm39mreo
2•1659447091•36m ago•0 comments

"We quit the CDC last year. The problems we protested remain"

https://www.statnews.com/2026/08/28/cdc-protest-resignations-one-year-later-houry-jernigan-daskal...
4•EA-3167•39m ago•0 comments

ASCII City: Traffic and Detail Update [video]

https://www.youtube.com/watch?v=DSRooHo_HSI
4•guiambros•41m ago•0 comments

Start a Blog

https://guzey.com/personal/why-have-a-blog/
3•bilsbie•42m ago•1 comments

Search songs based on feelings or images

https://vibemax.streamlit.app
2•sushmeywork•43m ago•1 comments

Safety Does Not Compose: Non-Decaying Loop State for Autonomous LLM Agents

https://arxiv.org/abs/2608.27141
2•sbulaev•45m ago•0 comments

JDK 28: Structured concurrency proposed finalised

https://openjdk.org/jeps/8389757
2•alnlkjlknlkn•48m ago•0 comments

It's One Parking Spot in New York City. What Could It Cost, $250k?

https://www.nytimes.com/2026/08/25/nyregion/private-parking-spots-new-york-city.html
2•thelastgallon•52m ago•1 comments

YouTube Auto Dubbing, Explained

https://blog.youtube/creator-and-artist-stories/youtube-auto-dubbing-explained/
2•cisc•53m ago•0 comments

OpenAI and Anthropic are ruining San Francisco

https://www.sfgate.com/local/article/open-ai-anthropic-ruining-sf-22404657.php?link_source=ta_fir...
6•catchmeifyoucan•1h ago•2 comments

Kumander Linux – A Linux Distro with a Windows 7 Desktop

https://www.kumander.org/
10•linuxkernal•1h ago•1 comments

Our decision on Cursor following its acquisition by SpaceX

https://openai.com/index/our-decision-on-cursor-following-its-acquisition-by-spacex/
81•meetpateltech•1h ago•22 comments

Increased Errors for Durable Objects in the Hong Kong Region – Cloudflare Status

https://www.cloudflarestatus.com/incidents/mlr8smgngv5h
2•kyisaiah47•1h ago•0 comments

Trump announces new US oil agreement with Venezuela

https://www.theguardian.com/us-news/2026/aug/28/trump-venezuela-oil-agreement
6•TheAlchemist•1h ago•0 comments

'Devastating' rush for critical minerals has little to do with green energy

https://news.mongabay.com/short-article/2026/08/devastating-rush-for-critical-minerals-has-little...
2•littlexsparkee•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!