frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Redesigned my email privacy tool's landing page with Claude and signups tripled

https://eml.monster
1•platformx•2m ago•0 comments

The device that kept the downed F-15E navigator alive

https://www.calcalistech.com/ctechnews/article/rkfjlgghzg
1•maxloh•2m ago•0 comments

Improving OpenAI Codex with Repo-Specific Context

https://codeset.ai/blog/improving-openai-codex-with-codeset
1•andre15silva•5m ago•0 comments

Implantable 'charging station' boosts fight against cancer

https://medicalxpress.com/news/2026-03-implantable-station-boosts-cancer.html
1•PaulHoule•6m ago•0 comments

The Team Behind a Pro-Iran, Lego-Themed Viral-Video Campaign

https://www.newyorker.com/culture/infinite-scroll/the-team-behind-a-pro-iran-lego-themed-viral-vi...
1•tantalor•6m ago•1 comments

VisiCalc: The First 'Killer App'

https://www.spacebar.news/visicalc-the-first-killer-app/
1•firasd•6m ago•0 comments

Nash Equilibrium for Terminal Maneuvers

https://r6.ca/blog/20260402T135216Z.html
1•EthanHeilman•6m ago•0 comments

What Running a Multi-Agent Software Project Looks Like

https://www.yella.dev/blog/run-multi-agent-software-project/
1•nyell•6m ago•0 comments

Can AI responses be influenced? The SEO industry is trying

https://www.theverge.com/tech/900302/ai-seo-industry-google-search-chatgpt-gemini-marketing
1•gargan•6m ago•0 comments

Ask HN: How do you track competitor moves without an enterprise budget?

1•peerscope•6m ago•0 comments

San Francisco Sobers Up

https://www.nytimes.com/2026/04/06/opinion/san-francisco-drugs-decriminalization-fentanyl.html
2•mitchbob•7m ago•0 comments

Show HN: I built a navigation app that displays weather along the route

https://navimodo.com/
1•vkatluri•8m ago•0 comments

Tiny Corp Begins Accepting Pre-Orders for Their $10M Exabox

https://www.phoronix.com/news/Tiny-Corp-Exabox-Pre-Order
2•LorenDB•9m ago•0 comments

This Protein Slows the Aging Brain, and We Know How to Counter It

https://www.ucsf.edu/news/2025/08/430551/protein-slows-aging-brain-and-we-know-how-counter-it
1•Anon84•9m ago•0 comments

Latch: Terminal multiplexer, like tmux, with SSH, mosh, and web access built in

https://github.com/unixshells/latch
1•rasengan•10m ago•1 comments

Enduring constraints on grammar revealed by Bayesian spatiophylogenetic analyses

https://www.nature.com/articles/s41562-025-02325-z
1•derbOac•13m ago•0 comments

Dear Heroku: Uhh... What’s Going On?

https://judoscale.com/blog/heroku-whats-going-on
1•doppp•14m ago•0 comments

Germany Doxes "UNKN," Head of RU Ransomware Gangs REvil, GandCrab

https://krebsonsecurity.com/2026/04/germany-doxes-unkn-head-of-ru-ransomware-gangs-revil-gandcrab/
2•Bender•14m ago•1 comments

Show HN: Generative Gemstone Avatars

https://gems.m3000.io/
1•maerzhase3000•16m ago•0 comments

Claude Code is unusable for complex engineering tasks with the Feb updates

https://github.com/anthropics/claude-code/issues/42796
2•StanAngeloff•16m ago•2 comments

We open-sourced an AI-native operating model (CC, 6 languages)

https://framework.ai-native-transformation.com
1•zoyth•17m ago•1 comments

Antique Beef

https://carcinisation.com/2025/11/20/antique-beef/
1•surprisetalk•17m ago•0 comments

Will I ever own a zettaflop?

https://geohot.github.io//blog/jekyll/update/2026/01/26/own-a-zettaflop.html
3•surprisetalk•18m ago•0 comments

Compute FüR Alle

https://simongrimm.substack.com/p/compute-fur-alle
1•surprisetalk•18m ago•0 comments

The smallest number that is infinite

https://lemire.me/blog/2025/09/29/smallest-number-string-that-is-infinite/
3•surprisetalk•18m ago•0 comments

Rock-climbing fish can shimmy up a 50-foot waterfall

https://text.npr.org/nx-s1-5773315
2•mooreds•19m ago•0 comments

No Agenda, No Meeting

https://noagendanomeeting.net
1•mooreds•20m ago•0 comments

Char.social

https://char.social/p/34731
1•poorIy•21m ago•0 comments

Astronomer May Have Witnessed a Comet Stop Its Spin–Then Reverse Its Rotation

https://www.smithsonianmag.com/smart-news/in-a-first-an-astronomer-may-have-witnessed-a-comet-sto...
1•pseudolus•21m ago•0 comments

Book Review: There Is No Antimemetics Division

https://www.stephendiehl.com/posts/no_antimimetics/
1•ibobev•23m 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•11mo ago

Comments

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