frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Controversial Linear No-Threshold Model

https://jnm.snmjournals.org/content/58/1/7
1•leonidasrup•1m ago•0 comments

Amazon says cloud infrastructure in Bahrain, UAE 'beyond saving'

https://thecradle.co/articles-id/39961
1•slowin•2m ago•0 comments

Housekeeping and Manpower Outsourcing Services

1•tasmiyai•3m ago•0 comments

My HP EliteDesk 800 G1 Decrypts Bitlocker

https://postimg.cc/0rj2vW64
1•sehw•3m ago•1 comments

We don't need AI regulation – leave safety to us, Nvidia's Jensen Huang says

https://techcrunch.com/2026/09/15/we-dont-need-ai-regulation-leave-safety-to-us-nvidias-jensen-hu...
2•girish_r•10m ago•1 comments

The Customizable Select

https://utilitybend.com/blog/the-customizable-select-part-one-history-trickery-and-styling-the-se...
1•nesk_•13m ago•0 comments

Schadenfreude

https://en.wikipedia.org/wiki/Schadenfreude
1•vismit2000•19m ago•0 comments

The Unwilding of Patagonia's Pollinators

https://biographic.com/the-unwilding-of-patagonias-pollinators/
1•Tomte•20m ago•0 comments

Ask HN: Are requests/demands coming from AI companies for regulation genuine?

2•atakan_gurkan•21m ago•2 comments

Show HN: MinMAX Sort – A Stable Bidirectional Selection Sort Family Algorithm

2•jodenghog•38m ago•1 comments

Prefill a 284B model on Nvidia. Decode it on Apple Silicon. Over plain 10GbE

https://github.com/chadhurley25075-png/pd-bridge
2•jnaina•39m ago•1 comments

MartyPC – A Cycle-Accurate IBM PC/XT Emulator

https://github.com/dbalsom/martypc
2•yitchelle•40m ago•0 comments

We are all Product Engineers now

https://seldo.com/posts/we-are-all-product-engineers-now/
2•ColinEberhardt•43m ago•0 comments

Show HN: An open-source Socratic coach for competitive programming

https://chromewebstore.google.com/detail/socratic-algo-coach/inppdfdpenccjiggnlfaomfnckadoaoi
1•boriskurikhin•45m ago•1 comments

Looking back on Servo's first donation-funded role

https://servo.org/blog/2026/09/15/one-year-of-sponsorship/
2•luu•45m ago•0 comments

Show HN: Check an NPM package or MCP server for malicious code before install

https://bouncer.run/check
1•nader•46m ago•0 comments

The first ever API built for dictation;Today we're launching the Dictation API

https://www.assemblyai.com/dashboard/login
1•iharnoor•47m ago•1 comments

There are no optical corrections in the Parthenon

https://doi.org/10.1098/rsos.260999
2•yzydserd•47m ago•0 comments

I wrote a kill number before I wrote the landing page copy

https://deskthaw.com/blog/preorder-mechanics/
2•aaaan•49m ago•1 comments

A software thing I built: GPS on a 25MHz 486-SX

https://forum.vcfed.org/index.php?threads/a-software-thing-i-built-gps-on-a-25mhz-486-sx.1258966/
3•JPLeRouzic•53m ago•1 comments

I built dual cam app because I had credits left and didn't know what else to do

https://play.google.com/store/apps/details?id=app.heynomad.camera.dualshot.creator.ai&hl=en
1•yugendhar•53m ago•1 comments

Noise-Coded Illumination for Forensic and Photometric Video Analysis

https://arxiv.org/abs/2507.23002
1•1e1a•54m ago•0 comments

Show HN: HTMLCATS – Editor-First Learning for HTML, CSS, and JavaScript

https://htmlcats.com/
1•chriskkim•56m ago•0 comments

Fusion in Devin Desktop and CLI

https://cognition.com/blog/local-fusion
1•ludovicianul•57m ago•0 comments

Show HN: Makerpa.ge – project hub and syncing badge across your sites

https://makerpa.ge
1•leon2589•57m ago•0 comments

IOS27 removes feature to hide safari, why?

1•robglick•58m ago•0 comments

Is Jev That Good?

https://twitter.com/completeskeptic/status/2099925682726002904
2•bchelli•58m ago•0 comments

Dan Selsam's Personal Statement on AI Risk

https://www.reddit.com/r/singularity/comments/1wgibs1/ai_2027_author_daniel_kokotajlo_tweets_mess...
1•dwaltrip•59m ago•0 comments

Where Prediction Markets Struggle

https://economist.com/graphic-detail/2026/09/10/where-prediction-markets-struggle
1•andsoitis•1h ago•0 comments

The AI Language We Can't Read: Neuralese [video]

https://www.youtube.com/watch?v=iuHddnIzKRA
1•__vivek•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!