frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Meta layoff wave impacting 8000 jobs

https://www.usatoday.com/videos/news/2026/04/20/meta-layoffs-impacting-8000-employees/89697461007/
1•tcp_handshaker•2m ago•0 comments

Is Starlink a Secret Radar Constellation? [video]

https://www.youtube.com/watch?v=jbp3kdJZ1_A
2•msuniverse2026•9m ago•0 comments

Show HN: Nova by civai, a platform for managed AI agents

https://nova.civai.co/
1•usecodenaija•11m ago•0 comments

RFK Jr. Defends Trump's Mathematically Impossible Drug Discount Claims

https://www.nytimes.com/2026/04/22/us/politics/rfk-jr-trump-impossible-drug-discounts.html
1•tcp_handshaker•11m ago•1 comments

Vision Banana: Image Generators Are Generalist Vision Learners

https://vision-banana.github.io
2•M4v3R•12m ago•0 comments

Show HN: We built a way for Claude Code to join meetings like a real teammate

3•pattern-ai•12m ago•0 comments

Debugging WASM in Chrome DevTools

https://eli.thegreenplace.net/2026/debugging-wasm-in-chrome-devtools/
1•mfrw•16m ago•0 comments

Hackers breach Anthropic's 'too dangerous to release' Mythos AI model

https://www.euronews.com/next/2026/04/22/hackers-breach-anthropics-too-dangerous-to-release-mytho...
2•latexr•16m ago•0 comments

Show HN: Razorpay-universal – A framework-agnostic Razorpay SDK

https://www.npmjs.com/package/razorpay-universal
1•rupamshil111•18m ago•0 comments

SpaceX and Cursor have explored a team-up with Mistral to take on AI rivals

https://www.businessinsider.com/elon-musk-xai-explored-collaborating-with-mistral-cursor-2026-4
2•consumer451•20m ago•0 comments

Former Israeli intelligence agents from Unit 8200 hired by Apple

https://vuseum.wordpress.com/2025/07/22/ex-spie-israeliane-dellunita-8200-assunte-da-apple/
2•kome•26m ago•1 comments

Google announced that Chrome is becoming an agentic workplace platform

https://thenextweb.com/news/google-chrome-enterprise-ai-coworker-agentic-browser
1•onchainintel•30m ago•0 comments

The new hosted agents in Foundry Agent Service

https://devblogs.microsoft.com/foundry/introducing-the-new-hosted-agents-in-foundry-agent-service...
1•nonfamous•33m ago•0 comments

Show HN: Autonomous coin-flipping machine with on-device CV

https://www.terencegrover.com/section/physicalart/4
2•tgrover•33m ago•0 comments

Supplies Probably Won't Be Stolen in a Disaster

https://www.jefftk.com/p/your-supplies-probably-wont-be-stolen-in-a-disaster
1•luu•36m ago•0 comments

Google Search Is Broken

https://www.vincentschmalbach.com/google-search-is-broken/
1•vincent_s•36m ago•0 comments

Agents-CLI CLI and skills for building agents on Google Cloud

https://google.github.io/agents-cli/
1•piqufoh•36m ago•0 comments

The For-Profit Education Company Scooping Up Welfare Dollars

https://www.wsj.com/us-news/education/for-profit-education-company-welfare-money-34efe5b4
1•JumpCrisscross•40m ago•0 comments

Ask HN: Can AI create demon slayer level animation?

1•shivang2607•40m ago•0 comments

Mythos is shaping up to be a nothingburger

https://www.theregister.com/2026/04/22/anthropic_mythos_hype_nothingburger/
4•tcp_handshaker•42m ago•0 comments

1024-bit prime,аvrg speed of~34ms;minimum latency:1.90 Ms.;over 1000 generations

https://github.com/model-vpr/ultrafast-spectral-primes
1•vpr-research•43m ago•0 comments

Ask HN: Would you take a job programming VMS?

3•smackeyacky•44m ago•0 comments

FFmpeg Command Generator for Common Encoding Workflows

https://ffmpeg-commander.com/
1•shantnutiwari•46m ago•0 comments

Death by A.I - New "Autonomous Warfare Center" will automate targeted killings

https://www.kenklippenstein.com/p/death-by-ai
3•bacteriumiu•49m ago•0 comments

What if the real driver of your health isn't genes or diet – but energy flow?

https://bigthink.com/science-tech/what-if-the-real-driver-of-your-health-isnt-genes-or-diet-but-e...
1•XzetaU8•49m ago•0 comments

OWASP Artificial Intelligence Security Verification Standard (Aisvs)

https://owasp.org/www-project-artificial-intelligence-security-verification-standard-aisvs-docs/
3•chha•51m ago•0 comments

Patients getting stuck in the emergency department waiting for inpatient ward

https://www.theatlantic.com/health/2026/04/emergency-department-boarding-crisis/686765/
1•JumpCrisscross•54m ago•0 comments

Volkswagen announces V2G for private customers for late 2026

https://www.heise.de/en/news/Volkswagen-announces-V2G-for-private-customers-for-late-2026-1126096...
2•doener•58m ago•0 comments

Denmark chooses Europe's Patriot rival for air defence system

https://www.reuters.com/business/aerospace-defense/denmark-chooses-europes-patriot-rival-air-defe...
4•doener•59m ago•1 comments

I, AI – a memoir written in first person by an AI about its own existence

https://www.amazon.com/dp/B0GX2Z9D9X
2•natal-ia•59m 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•12mo ago

Comments

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