frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Refusal Residue: When Probes Catch Alignment Faking and When They Don't

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

Has anyone used Online casino?

https://geekyants.com/case-studies/secure-casino-web-platform-kyc-payments-geo-compliance
2•aneesharasannan•1m ago•0 comments

Show HN: I made ts-node alternative, ttsc/ttsx, a TypeScript-go toolchain

https://github.com/samchon/ttsc
1•autobe•2m ago•0 comments

Can we trust open weight models?

https://twitter.com/insiderphd/status/2077037121869664410
1•mef•2m ago•0 comments

GPT-Red: an LLM super-hacker OpenAI built to make its models safer

https://www.technologyreview.com/2026/07/15/1140514/meet-gpt-red-an-llm-super-hacker-openai-built...
1•joozio•7m ago•0 comments

A bunch of stuff I used to not know about K&R C

https://sebsite.pw/w/20260712-kandr.html
1•birdculture•7m ago•0 comments

The Looting of Science Fiction

https://aeon.co/essays/silicon-valley-has-a-science-fiction-problem
2•gajju3588•9m ago•0 comments

Uber moves to acquire Delivery Hero for €12.5B

https://www.reuters.com/business/finance/uber-nears-125bn-deal-acquire-delivery-hero-ft-reports-2...
1•ProjectBarks•9m ago•0 comments

Is There a Reliable Way to Generate Figma Designs from Code?

https://geekyants.com/blog/how-we-built-the-missing-bridge-from-code-to-figma
2•varda_62892•13m ago•0 comments

Building This Blog: Jekyll on GitHub Pages from Zero to 130 Posts

https://mcgarrah.org/setting-up-jekyll-blog-github-pages/
1•ankitg12•16m ago•0 comments

What is the real point of Codex Micro? [video]

https://www.youtube.com/watch?v=m8uUUUsMD3Y
1•hsuduebc2•26m ago•1 comments

Notes on Structured Programming [pdf]

https://www.cs.utexas.edu/~EWD/ewd02xx/EWD249.PDF
1•andsoitis•32m ago•0 comments

20-20-20 Rule: Are These Numbers Justified?

https://pubmed.ncbi.nlm.nih.gov/36473088/
1•ankitg12•35m ago•0 comments

From Microservice to Subprocess

https://kerkour.com/from-microservice-to-subprocess
1•enz•40m ago•0 comments

Notes on structured concurrency, or: Go statement considered harmful

https://vorpus.org/blog/notes-on-structured-concurrency-or-go-statement-considered-harmful/
4•Redoubts•41m ago•0 comments

What Psychology Says About HITL

https://aviatrix.ai/
2•karthik-a2z•43m ago•0 comments

Linus Torvalds tells AI haters to fork off

https://www.theregister.com/ai-and-ml/2026/07/15/linus-torvalds-tells-ai-haters-to-fork-off/5271894
8•galaxyLogic•44m ago•1 comments

Are U.S. Consumers Ready to Use Pay-by-Bank at the Point of Sale?

https://www.kansascityfed.org/research/payments-system-research-briefings/are-us-consumers-ready-...
1•toomuchtodo•50m ago•0 comments

Prominent Haskell defector pilloried by anti-AI purists

https://www.theregister.com/devops/2026/07/15/prominent-haskell-defector-pilloried-by-anti-ai-pur...
2•galaxyLogic•52m ago•1 comments

Celebrity influencers paid up to £1M to advertise deodorant on Instagram

https://www.bbc.co.uk/news/articles/cvgegqrp656o
2•mmarian•56m ago•1 comments

Vercel Native Awesome List

https://github.com/henryoman/awesome-vercel-native
1•henryoman•56m ago•0 comments

Holding the LLM Stack in Your Head

https://thegustafson.com/series
1•yayitswei•1h ago•0 comments

Show HN: Applications Are All You Need

https://www.npmjs.com/package/@openluxeco/cli
1•chandlerwilcox•1h ago•0 comments

Roko's Dancing Basilisk

https://boston.conman.org/2025/12/02.1
1•signa11•1h ago•0 comments

Mirage – fast and simple GTK+ image viewer

https://gitlab.com/thomasross/mirage
1•Mr_Minderbinder•1h ago•0 comments

Show HN: Free Ollama AI Trading Desktop App

https://www.vaultcharts.com/
1•AlexBThomsen•1h ago•0 comments

How AI Slop Is Killing World War II History (video)

https://www.youtube.com/watch?v=iUfP6amE7UA
2•MichaelMoser123•1h ago•1 comments

Firefox-WASM: Firefox in WebAssembly

https://github.com/HeyPuter/firefox-wasm
2•thunderbong•1h ago•1 comments

Triton Plugin Extensions

https://pytorch.org/blog/triton-plugin-extensions-enabling-tlx-and-custom-compiler-passes-out-of-...
2•zer0zzz•1h ago•0 comments

Linus Torvalds on AI usage in Linux development

https://lore.kernel.org/linux-media/CAHk-=wi4zC+Ze8e+p3tMv8TtG_80KzsZ1syL9anBtmEh5Z40vg@mail.gmai...
6•tosh•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!