frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Google AI Edge Eloquent (iOS)

https://apps.apple.com/us/app/google-ai-edge-eloquent/id6756505519
2•ukuina•1m ago•0 comments

Happiness is a maintenance problem, not a discovery problem

https://gist.github.com/emeitch/390360452a9f5e37fa39ff91c836edbd
1•emeitch•2m ago•0 comments

Sync Chrome Tabs Across Multiple Computers

https://www.rabbitpair.com/en/blog/chrome-tab-sync-across-devices-guide
1•xiguali•10m ago•0 comments

Gestify – Gesture Controls for Every Web Video

https://www.rabbitpair.com/en/blog/gestify-mobile-fullscreen-video-guide
1•xiguali•12m ago•0 comments

Code quality: a concern for businesses, bottom lines, and empathetic programmers

https://stackoverflow.blog/2021/10/18/code-quality-a-concern-for-businesses-bottom-lines-and-empa...
2•perpetua•23m ago•2 comments

Show HN: Wan 2.7 – AI Video Generator for Cinematic Content

https://wan27.co
1•danielmateo773•24m ago•0 comments

Brazil, India and Russia hold large reserves of rare earth but don't mine them

https://ourworldindata.org/data-insights/brazil-india-vietnam-and-russia-hold-large-reserves-of-r...
1•alphabetatango•25m ago•0 comments

Voxtype – Push-to-Talk Voice-to-Text for Linux and macOS

https://voxtype.io/
1•ticoombs•28m ago•1 comments

Show HN: Swarmed.DEV – The Autonomous AI Development Swarm

https://www.swarmed.dev
1•freezabb•30m ago•0 comments

Claude Is Not Your Architect. Stop Letting It Pretend

https://www.hollandtech.net/claude-is-not-your-architect/
1•gpi•32m ago•0 comments

Attention Residuals

https://arxiv.org/abs/2603.15031
1•djhemath•32m ago•1 comments

Agentic AI and Occupational Displacement: Multi-Regional Task Exposure Analysis

https://arxiv.org/abs/2604.00186
1•raviishgupta•36m ago•0 comments

Show HN: Coding Planets – turn GitHub contributions into sound and space

https://joaonetto.me/projects/music/
1•jnettome•40m ago•0 comments

MLX-Serve a Native LLM Runtime for Apple Silicon

https://ddalcu.github.io/mlx-serve/
2•ddalcu•42m ago•1 comments

Why We're Removing Our Programmatic Ads

https://prospect.org/2026/04/06/why-were-removing-our-programmatic-ads/
2•colinprince•48m ago•0 comments

Show HN: Portable offline LLM knowledge system that runs in browser

1•muthuishere•50m ago•0 comments

China Orders Bitchat Pulled from Apple App Store

https://decrypt.co/363367/china-orders-jack-dorseys-bitchat-pulled-from-apple-app-store
2•giuliomagnifico•51m ago•0 comments

DevTerm – Portable Terminal

https://www.clockworkpi.com/home-devterm
2•kristianpaul•54m ago•1 comments

Clockworkpi

https://www.clockworkpi.com
3•kristianpaul•56m ago•1 comments

Why the majority of vibe coded projects fail

https://www.reddit.com/r/ClaudeAI/s/Vkkzi4lUW0
15•juniormpakou•1h ago•3 comments

One Softie's View of the Evolution of Windows APIs

https://twitter.com/stevesi/status/2036921223150440542
3•jnord•1h ago•0 comments

Free Early Learning Content for Kids – Feedback Welcome

https://www.youtube.com/channel/UCuC2pezENaY3BTsDnACzY-w
1•fatbrother•1h ago•0 comments

My Real-Life Account as a Federally Cleared US Government Whistleblower

https://drive.proton.me/urls/TVQBZBVQK0#g50TCYlBdeeb
2•kernel_haathi•1h ago•1 comments

I'm building a local-first CLI "knowledge foundry" for LLM workflows

https://twitter.com/theopuslabs/status/2041316189515723028
2•opuslabs•1h ago•0 comments

Lab Gloves May Be Skewing Microplastics Data

https://hackaday.com/2026/04/06/lab-gloves-may-be-skewing-microplastics-data/
2•lxm•1h ago•1 comments

Robots Eat Cars

https://telemetry.endeff.com/p/robots-eat-cars
1•JMill•1h ago•0 comments

A.I. Is on Its Way to Upending Cybersecurity

https://www.nytimes.com/2026/04/06/technology/ai-cybersecurity-hackers.html
3•lxm•1h ago•1 comments

Anthropic's refusal to drop AI safeguards for The Pentagon

https://claude.ai/public/artifacts/f1c3dd80-a3eb-49eb-9d92-867705526437
2•skmadd•1h ago•0 comments

We Don't Know: A Case for Mars

https://dave.autonoma.ca/blog/2026/04/06/case-for-mars/
1•thangalin•1h ago•1 comments

"Do you think AI will ever be able to write a good song?"

https://www.theredhandfiles.com/considering-human-imagination-the-last-piece-of-wilderness-do-you...
1•Nition•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•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!