frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Agent Security 101: stop sending your transactional data to telemetry services

https://www.ashpreetbedi.com/articles/agent-security
1•bediashpreet•7m ago•0 comments

Fil-C: A memory-safe C implementation

https://lwn.net/SubscriberLink/1042938/ac9a001023324bf8/
2•askl•7m ago•1 comments

Show HN: Noodle Seed – Create ChatGPT Apps for businesses to reach 800M users

1•uziiuzair•9m ago•0 comments

Israel strikes Gaza after accusing Hamas of ceasefire violations

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

From Keyboard to Voice: The Future of Computing Is Talking

https://zackproser.com/newsletter/2025-10-20
2•ingve•13m ago•0 comments

Show HN: Run PyTorch on CPU boxes, offload kernels to remote GPUs

1•medicis123•14m ago•0 comments

Preserving Digital Memory at the Festival of Floppies

https://digitalpreservation-blog.lib.cam.ac.uk/preserving-digital-memory-at-the-festival-of-flopp...
2•gnabgib•15m ago•0 comments

History of Lambda Syntax

http://www.hydromatic.net/draft-blog/2025/10/26/history-of-lambda-syntax.html
2•tanelpoder•15m ago•1 comments

AWS: Operational issue – Multiple services (N. Virginia)

https://health.aws.amazon.com/health/status
1•snicker7•17m ago•0 comments

Transport of Contaminated Person Offsite

https://www.nrc.gov/reading-rm/doc-collections/event-status/event/2025/20251022en#en57996
2•nycdatasci•17m ago•0 comments

Static Android Debug Bridge (adb)

https://github.com/kiddlu/adb-static
2•1vuio0pswjnm7•18m ago•0 comments

ChatGPT's API docs recommend library fields that don't exist

https://community.openai.com/t/are-chatgpt-docs-lying-about-this-mcp-tool-field-existing/1362688
1•stillatit•19m ago•0 comments

You Aren't in the DSM

https://asteriskmag.com/issues/12-books/you-arent-in-the-dsm
3•rorylawless•20m ago•1 comments

Transport of Contaminated Person Offsite

https://www.nrc.gov/reading-rm/doc-collections/event-status/event/2025/20251022en
1•nycdatasci•22m ago•0 comments

Creative neglect: What about the apps in Apple?

https://sixcolors.com/post/2025/10/creative-neglect-what-about-the-apps-in-apple/
4•ingve•22m ago•0 comments

Building a WebGPU shader editor for designers

https://vladinator.net/blog/shader-editor-part-1/
2•vladinator1001•24m ago•1 comments

Neo Home Robot

https://www.1x.tech/discover/neo-home-robot
1•sirobg•25m ago•0 comments

Who Is Ladling the Chum?

https://hollisrobbinsanecdotal.substack.com/p/who-is-ladling-the-chum
2•HR01•25m ago•0 comments

Detour: Dynamic linking on Linux without Libc

https://github.com/graphitemaster/detour
2•generichuman•28m ago•0 comments

Tokasaurus on AWS

https://builder.aws.com
1•fraseque•30m ago•0 comments

Scout for League of Legends

https://scout-for-lol.com/
1•shepherdjerred•30m ago•1 comments

Keeping the Internet fast and secure: introducing Merkle Tree Certificates

https://blog.cloudflare.com/bootstrap-mtc/
4•tatersolid•31m ago•0 comments

Bridging Minds and Machines

https://ofcarbonandsilicon.substack.com/p/bridging-minds-and-machines
1•Romoflow•32m ago•0 comments

Waymo runs over neighborhood cat in Mission District

https://www.instagram.com/p/DQXZH4TEnC0/
9•archagon•37m ago•2 comments

The New Home for Blockly

https://www.raspberrypi.org/blog/new-home-for-blockly/
3•geerlingguy•39m ago•0 comments

Show HN: Turn Videos to Sandbox Game Like Experience

https://meme-gen.ai/community
1•bd2025•40m ago•0 comments

Monte Carlo modeling in Python with probabilit

https://tommyodland.com/articles/2025/monte-carlo-modeling-in-python-with-probabilit/index.html
1•Bogdanp•40m ago•0 comments

On-Policy Distillation

https://thinkingmachines.ai/blog/on-policy-distillation/
1•cyanf•40m ago•0 comments

Mushrooms as Computer Memory

https://hackaday.com/2025/10/28/mushrooms-as-computer-memory/
2•fork-bomber•41m ago•1 comments

Some US Consumers Say a Recession Is Here

https://www.bloomberg.com/news/newsletters/2025-10-28/us-consumer-confidence-falls-again-on-reces...
1•zerosizedweasle•42m 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•6mo ago

Comments

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