frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I'm a Happy Engineer [video]

https://www.youtube.com/watch?v=f1a_MRLibqU
1•denysvitali•2m ago•0 comments

How to Survive in the Tech industry in 2026

https://blog.phuaxueyong.com/post/2026-03-23-how-to-survive-tech-in-2026/
2•xueyongg•7m ago•0 comments

How Can Universities Value-Add Their Alumni?

https://blog.phuaxueyong.com/post/2025-06-27-university-role-in-alumni-engagement/
1•xueyongg•7m ago•0 comments

The CTO's Burden: Building What the World Doesn't See

https://blog.phuaxueyong.com/post/2025-04-29-questions-for-cto/
1•xueyongg•8m ago•0 comments

Show HN: Travel app that replaces trip research with a 30s briefing (TestFlight)

https://globallybased.com
1•ilyagruzhevski•9m ago•0 comments

Sad Story of Soviet Compact Disc Players

https://sovietrock.com/mediums/cd/sad-story-of-soviet-compact-disc-players/
2•thenthenthen•12m ago•0 comments

Credential Broker for Agents (CB4A)

https://datatracker.ietf.org/doc/draft-hartman-credential-broker-4-agents/
1•jruohonen•14m ago•0 comments

We tricked 1M+ bots and hackers with our honeypot

https://github.com/BlessedRebuS/Krawl
1•blessedrebus•15m ago•0 comments

Every Package You Install Can Read Your Secrets

https://www.eliranturgeman.com/2026/03/28/supply-chain-attacks/
1•gsky•16m ago•0 comments

Copilot Adverts in Pull Requests

https://github.com/search
2•tomwphillips•16m ago•1 comments

Show HN: A curated list of plugins,themes, agents,projects, for OpenCode

https://github.com/awesome-opencode/awesome-opencode
3•ishqdehlvi•26m ago•0 comments

Yahoo turns to AI-powered answer engine Scout to lead back to online search

https://isp.netscape.com/tech/story/0001/20260327/a9ec7ff0f7af72662b6d98ddd9c5280d
2•Imustaskforhelp•27m ago•0 comments

The Missing Equation of Quantum Biology

https://sectio-aurea-q.github.io/emc2-of-quantum-biology.html
1•sectio-aurea-q•37m ago•0 comments

Show HN: Veil – A Minimal Neovim GUI for macOS with Metal Rendering

https://github.com/rainux/Veil
3•rainux•39m ago•0 comments

AI tool that scores your job's displacement risk by role and skills

https://careerrisk.ee/
2•Equitis•39m ago•1 comments

Selling to AI Agents

https://mattgiustwilliamson.substack.com/p/selling-to-ai-agents
1•MattSWilliamson•40m ago•1 comments

Introduction to Gaussian Splats [video]

https://www.youtube.com/watch?v=X8yRlA7jqEQ
1•Khaine•41m ago•0 comments

Google's Larry Page Won the Bidding War for DeepMind

https://www.wsj.com/tech/ai/deepmind-google-demis-hassabis-5bd6de54
2•yihongs•43m ago•0 comments

Ask HN: Who needs contributors? (March 2026)

5•Kathan2651•43m ago•0 comments

Show HN: TermCanvas – An infinite canvas for your terminals

https://github.com/blueberrycongee/termcanvas
1•blueberrycongee•46m ago•0 comments

Hamilton-Jacobi-Bellman Equation: Reinforcement Learning and Diffusion Models

https://dani2442.github.io/posts/continuous-rl/
12•sebzuddas•46m ago•1 comments

Fast Image AI Image Enhancer

https://fastimage.ai/ai-image-enhancer
1•lucas0953•47m ago•0 comments

Twitching Before You Sprint

https://mikefisher.substack.com/p/twitching-before-you-sprint
1•kiyanwang•53m ago•0 comments

Compromised telnyx on PyPI

https://safedep.io/malicious-telnyx-pypi-compromise/
1•jruohonen•58m ago•1 comments

Getting a 404 when accessing the ZeroClaw repository

https://github.com/zeroclaw-labs/zeroclaw
1•imanhashemi•58m ago•0 comments

PixelSmile: Toward Fine-Grained Facial Expression Editing

https://arxiv.org/abs/2603.25728
1•ipotapov•58m ago•0 comments

Show HN: The Alphabetical Clock

https://boat.horse/clock/
2•secretdark•1h ago•2 comments

Hiring for "Twitter taste" is a thing now

2•husaiin•1h ago•0 comments

I use excalidraw to manage my diagrams for my blog

https://blog.lysk.tech/excalidraw-frame-export/
22•mlysk•1h ago•8 comments

AI Website Redesign Benchmark

https://medium.com/@kemyd/ai-website-redesign-benchmark-can-ai-actually-replace-designers-409551d...
1•avoc777•1h 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!