frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Recovoly – Built for Better Document Recovery

https://www.recovoly.com/
1•thisarajay•5m ago•0 comments

240M-Year-old giant "sand creeper" found hidden in retaining wall

https://www.sciencedaily.com/releases/2026/05/260504154028.htm
1•Eridanus2•6m ago•0 comments

Pomodoro CLI

https://codeberg.org/kevinschoon/pomo
1•ankitg12•7m ago•0 comments

Know Your .agent?

https://estherdyson.substack.com/p/know-your-agent
1•nembal•8m ago•0 comments

OpenClaw Had a Rough Week

https://openclaw.ai/blog/openclaw-rough-week
1•nouhailaeg•8m ago•0 comments

The AI operator: Biggest role in Silicon Valley

https://www.rishgupta.com/blog/the-ai-operator-biggest-role-in-silicon-valley
2•nreece•11m ago•0 comments

Map projections: a practical guide to common mistakes and how to fix them

https://dominicroye.github.io/blog/map-projections/
1•altilunium•12m ago•0 comments

Facebook Buying Instagram For $1B.(2012)

https://www.bgr.com/general/facebook-paying-1-billion-for-instagram/
1•downbad_•13m ago•2 comments

Car Dealerships Scam America [video]

https://www.youtube.com/watch?v=GREaEG_0Xcw
1•type4•13m ago•0 comments

How I caught an illegal Russian spy [video]

https://www.youtube.com/watch?v=xjo0iLssbI8
1•burnt-resistor•20m ago•0 comments

Why should a Trace-ID be 128 bits? (A Surprisingly Long Answer)

https://newsletter.signoz.io/p/why-should-a-trace-id-be-128-bits
1•elza_1111•24m ago•0 comments

FairwayMapper – Introducing Golfers to Mapping

https://community.openstreetmap.org/t/fairwaymapper-introducing-golfers-to-mapping/142814
1•altilunium•25m ago•0 comments

Banking Malware hiding inside a flashlight app? (BeatBanker / BTMOB)

https://blog.ostorlab.co/beatbanker-btmob-tv-v-23-static-analysis.html
1•Jhonny_doe•25m ago•0 comments

Garmin releases new luxury home audio system globally

https://www.notebookcheck.net/Garmin-releases-new-luxury-home-audio-system-globally.1289575.0.html
1•thunderbong•26m ago•0 comments

The Kurzweil Library

https://www.thekurzweillibrary.com
1•andsoitis•26m ago•1 comments

A bidirectional typechecking puzzle in the Grace programming language

https://haskellforall.com/2026/05/a-bidirectional-typechecking-puzzle
3•fanf2•29m ago•0 comments

Code never mattered in the first place

https://mar.coconauts.net/blog/posts/code-never-mattered/
1•marbartolome•33m ago•0 comments

The Place of Houses: Questionnaire [pdf]

http://www.duodickinson.com/Yours_complete.pdf
2•Kaibeezy•34m ago•0 comments

How to improve code quality of Claude Code and codex (on 2026-05)

1•david_d8912•34m ago•0 comments

It is distressing that AI does not know the seven cardinal virtues

https://en.wikipedia.org/wiki/Seven_virtues
2•chasil•41m ago•5 comments

You made me rich, thank you

https://github.com/theori-io/copy-fail-CVE-2026-31431/issues/128
9•mfi•41m ago•4 comments

Donlyn Lyndon, Last Surviving Creator of the Sea Ranch, Dies at 90

https://www.nytimes.com/2026/05/05/arts/design/donlyn-lyndon-dead.html
2•Kaibeezy•41m ago•1 comments

NHS England withdraws public software over AI hacking fears

https://www.computing.co.uk/news/2026/security/nhs-england-withdraws-public-software-over-hacking...
2•latein•42m ago•0 comments

Show HN: Yumi – Your workspace for AI chat, notes, and research

https://askyumi.app
1•yumi-dev•42m ago•0 comments

Fedora is now the default Linux recommendation, and Ubuntu did this to itself

https://www.xda-developers.com/fedora-becoming-default-linux-recommendation-ubuntu-fault/
2•bundie•43m ago•1 comments

The Deletion Test – The Phoenix Architecture

https://aicoding.leaflet.pub/3md5ftetaes2e
2•fagnerbrack•45m ago•0 comments

The 80% Problem in Agentic Coding

https://addyo.substack.com/p/the-80-problem-in-agentic-coding
1•fagnerbrack•45m ago•0 comments

How the Lobsters front page works – nilenso blog

https://blog.nilenso.com/blog/2026/01/20/lobsters-front-page/
1•fagnerbrack•45m ago•0 comments

The Boring Internet

https://www.terrygodier.com/the-boring-internet
4•crowdhailer•47m ago•1 comments

Code coverage tells you what you didn't test – not whether your tests are good

https://bubble.ro/2026/05/04/code-coverage-in-ci-cd-what-it-really-tells-you-and-what-it-doesnt/
2•birdculture•50m 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!