frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Osint Expert Recreates Timeline of Operation Epic Fury in Interactive 3D Model

https://www.jfeed.com/news-world/operation-epic-fury-3d-replay
1•rapnie•1m ago•0 comments

Show HN: Trade Stocks and Crypto On-Chain with Full Transparency

https://www.aulico.com
2•rendernos•2m ago•0 comments

Buckle Up for Bumpier Skies

https://www.newyorker.com/magazine/2026/03/09/buckle-up-for-bumpier-skies
2•littlexsparkee•11m ago•0 comments

Claude's Constitution and Asimov's Laws

https://yadin.com/notes/asimov/
2•dryadin•21m ago•0 comments

Data-structure-typed – TreeMap, Heap, Graph and more for TypeScript

https://github.com/zrwusa/data-structure-typed
1•zrwusa•24m ago•1 comments

Stop macOS 26 nagging with one tiny policy tweak

https://www.theregister.com/2026/03/02/stop_tahoe_update/
2•fghorow•24m ago•0 comments

Is Mandarin superior for LLM data?

https://medium.com/@tjanmichela/the-language-of-intelligence-could-mandarin-be-the-secret-to-smar...
2•treebeard901•26m ago•2 comments

Show HN: DiffMem in production, Git-based AI memory

https://withanna.io
1•alexmrv•29m ago•0 comments

Constraints and the Lost Art of Optimization

https://denodell.com/blog/constraints-and-the-lost-art-of-optimization
1•CharlesW•29m ago•0 comments

Show HN: Calendar Tool for College Students

https://almanaccal.com/
1•TG_Dev•32m ago•0 comments

Show HN: Private AI Document Server

https://github.com/queryhat/super-hat/blob/main/README.md
1•chhetri978•32m ago•1 comments

Underrated Reasons to Dislike AI

https://www.autodidacts.io/underrated-reasons-to-dislike-ai/
1•Curiositry•33m ago•0 comments

Show HN: Word Doodle – A generative engine that turns text into dense doodle art

https://j-ncel.github.io/word-doodle/
2•koalux•34m ago•0 comments

Principles of Adult Behavior by John Perry Barlow

https://kottke.org/18/02/a-list-of-25-principles-of-adult-behavior-by-john-perry-barlow
3•Curiositry•37m ago•0 comments

Show HN: A visual sitemap tool to simplify SaaS navigation

3•epic_ai•40m ago•3 comments

2025 State of Rust Survey Results

https://blog.rust-lang.org/2026/03/02/2025-State-Of-Rust-Survey-results/
1•Curiositry•40m ago•0 comments

I've been running GrapheneOS on my Pixel Fold for over half a year

https://blog.matthewbrunelle.com/8-4-months-of-daily-driving-grapheneos/
7•zdw•43m ago•0 comments

The Brilliant Developer, Unreliable Operator

https://the-infrastructure-mindset.ghost.io/brilliant-developer-unreliable-operator/
1•donutshop•45m ago•0 comments

Facing Its Third Data Center, an Iowa County Rolls Out Extensive Zoning Rules

https://insideclimatenews.org/news/01032026/iowa-county-data-center-ordinance/
3•WaitWaitWha•46m ago•0 comments

Web Haptics

https://haptics.lochie.me/
1•tontonius•49m ago•0 comments

Typhoid Mary

https://en.wikipedia.org/wiki/Mary_Mallon
2•metadat•51m ago•0 comments

Nbdantic, Pydantic for Jupyter Notebooks

https://github.com/ivanbelenky/nbdantic
1•ivanbelenky•53m ago•0 comments

Show HN: Argus – VSCode debugger for Claude Code sessions

2•lydionfinance•54m ago•0 comments

Wikipedia's entry on Ali Khamenei is a master class in narrative framing

https://twitter.com/thefp/status/2028587979900420303
2•nailer•57m ago•0 comments

How to Reach More Users?

1•m2fauzaan•1h ago•1 comments

Show HN: Video to Text AI Transcription

https://videototext.tools
2•gregzeng95•1h ago•0 comments

Show HN: PantheonOS–An Evolvable, Distributed Multi-Agent System for Science

https://pantheonos.stanford.edu/
2•PantheonOS•1h ago•0 comments

DexCode – AI Slide Creation Environment for Developers

https://co-r-e.github.io/dexcode-lp/
2•mokuwaki•1h ago•1 comments

Impact of Code Changes on the Fault Localizability of Large Language Models

https://www.alphaxiv.org/abs/2504.04372v3
1•measurablefunc•1h ago•0 comments

Does anyone have an old Mac they don't use?

3•anothereng•1h ago•2 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•10mo ago

Comments

semihs•10mo 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_•10mo 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•10mo 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_•10mo ago
That sounds great!