frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

'Naked Dressing' Is Spreading and It's Making Things Awkward

https://www.wsj.com/style/fashion/naked-dressing-hailey-bieber-madonna-d2a1d94b
1•petethomas•5m ago•0 comments

Moochacha

https://codeberg.org/markdascher/moochacha
1•sillysaurusx•6m ago•0 comments

J3blocks

https://codeberg.org/amano.kenji/j3blocks
1•sillysaurusx•7m ago•0 comments

Show HN: Nuking the crap Claude left in the codebase – CCN

https://github.com/jonhardwick-spec/ccn
1•jonhardwickspec•8m ago•0 comments

Running Kimi K3 on MI355X at Better Performance per Dollar Than B300

https://www.wafer.ai/blog/kimi-k3-mi355x
4•ilreb•19m ago•0 comments

Booting Fuchsia's Zircon on a Homebrew RISC-V SoC, on an Artix-7 FPGA

https://www.hdlfactory.com/post/2026/07/19/cocoapuffs-booting-fuchsias-zircon-kernel-on-a-risc-v-...
3•mbStavola•21m ago•0 comments

Sick of waiting for agents to run and then having to debug

1•seafaithless•22m ago•1 comments

Ask HN: Collection of Best Pitch Decks?

3•carbonclaw•23m ago•0 comments

PostgreSQL and the Linux OOM Killer: A Better Default

https://clickhouse.com/blog/strict-memory-overcommit-for-postgres
1•saisrirampur•27m ago•0 comments

Don't credit the LLM

https://isaacsu.com/2026/08/dont-credit-the-llm/
6•isaacsu•32m ago•3 comments

Safeguards Based on Copyable Context Cannot Provide Reliable Safety for LLMs

https://arxiv.org/abs/2607.27951
1•sbulaev•33m ago•0 comments

Karpathy's Pelican

https://twitter.com/karpathy/status/2083749667410727319
1•delichon•34m ago•0 comments

Canadians are leaving the country at record levels. Can anyone solve this?

https://thehub.ca/2026/04/03/can-anyone-solve-canadas-brain-drain-problem/
1•TMWNN•34m ago•0 comments

Simple Outlier Detection in a Kalman Filter

https://gurevich.ca/simple-outlier-detection-in-a-kalman-filter/
1•gregsadetsky•43m ago•0 comments

Futurism says Meta has "almost nothing" to show for AI. The numbers say

https://runtimewire.com/article/futurism-says-meta-has-almost-nothing-to-show-for-ai-the-numbers-...
3•ryanmerket•45m ago•6 comments

AI Models as Commodities

https://www.axios.com/2026/08/01/deepseek-model-cheap-ai-price-war
1•kooi•49m ago•0 comments

Play Neuromancer

https://archive.org/details/msdos_Neuromancer_1988
1•mindcrime•58m ago•0 comments

OpenAI's claimed disproof of Connes' Rigidity Conjecture is invalid [pdf]

https://philarchive.org/archive/NIEWTCv17
5•muglug•58m ago•0 comments

Foundational ternary-model inference and training – CUDA, CPU, BitNet/TQ

https://github.com/Quitetall/tritium
1•jacquesm•59m ago•0 comments

Windows XP Original

https://archive.org/details/windows-xp-all-sp-msdn-iso-files-en-de-ru-tr-x86-x64
1•shrikaranhanda•1h ago•1 comments

ModRetro M64 – Nintendo 64 that plays original cartridges with 4K HDMI

https://modretro.com/products/m64
1•dazzatron•1h ago•0 comments

Task Hounds – a local-first, inspectable multi-agent dev workspace

https://github.com/catowabisabi/task-hounds
1•enomars•1h ago•0 comments

Show HN: I get 25 deep researched ideas with one single prompt

https://github.com/ringlochid/banksia
5•ringlochid•1h ago•2 comments

Large language models can predict the results of social science experiments

https://www.nature.com/articles/s41586-026-10742-x
1•Tomte•1h ago•0 comments

Show HN: CleanSlate – an open-source coding agent for the IDE, CLI, and SDK

https://github.com/TheWariend/CleanSlate
1•maaaz7n•1h ago•0 comments

AI Marketing

https://www.lerobit.com
1•akliluart•1h ago•0 comments

The teenage hitmen recruited to kill across Europe

https://www.bbc.com/news/articles/czrjyevmv61o
38•1659447091•1h ago•17 comments

Ask HN: Do Something about Bots

3•gregdaniels421•1h ago•4 comments

MkLinux and the pimped-out Apple Workgroup Server 9150

http://oldvcr.blogspot.com/2026/08/mklinux-and-pimped-out-apple-workgroup.html
20•goldenskye•1h ago•1 comments

Linux desktop market share has hit over 10% in North America

https://old.reddit.com/r/linux/comments/1vcpk8i/linux_desktop_market_share_has_hit_over_10_in/
19•dviola•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!