frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Max-severity flaw in ChromaDB for AI apps allows server hijacking

https://www.bleepingcomputer.com/news/security/max-severity-flaw-in-chromadb-for-ai-apps-allows-s...
1•sbulaev•1m ago•0 comments

Job Rejection Survival Kit: Follow-Up Templates and GDPR SAR Demands

https://umnlife.gumroad.com/l/job-rejection-feedback
1•taubek•1m ago•0 comments

Good Code, Wrong Feature: The Handoff Problem

https://productnow.ai/blogs/good-code-wrong-feature-the-handoff-problem
1•kadhirvelm•3m ago•1 comments

Deutsche Bahn blocks Linux users

https://www.heise.de/en/news/Deutsche-Bahn-No-information-under-Linux-11300847.html
1•cuechan•4m ago•0 comments

AI Makes Mistakes; Process Design Matters More

https://medium.com/@olowu.marydan/ai-makes-mistakes-that-means-process-design-matters-more-than-e...
1•centrali•4m ago•0 comments

Cities are investing tax dollars on trees. Here's why it works

https://www.marketplace.org/story/2026/05/19/why-cities-investing-in-trees-pays-off
1•mooreds•4m ago•0 comments

What's Next for Stephen Colbert After 'The Late Show'?

https://www.cnn.com/2026/05/20/media/what-is-stephen-colbert-doing-next-late-show-cbs
1•mooreds•5m ago•0 comments

The $100B Gen Alpha Economy [video]

https://www.youtube.com/watch?v=vCVGiB05MlA
1•mooreds•5m ago•0 comments

James Murdoch Buys Half of Vox Media

https://www.nytimes.com/2026/05/20/business/media/vox-media-james-murdoch-sale.html
1•littlexsparkee•6m ago•0 comments

Performative Blogging

https://joelchrono.xyz/blog/performative-blogging
1•speckx•7m ago•0 comments

560-610 minutes of exercise a week needed for substantial heart benefits

https://bmjgroup.com/560-610-minutes-of-exercise-a-week-needed-for-substantial-heart-benefits/
2•stevenwoo•8m ago•1 comments

Expedia Group to Acquire Cartrawler

https://www.rte.ie/news/business/2026/0520/1574346-cartrawler-agrees-deal-to-join-expedia-group/
1•thomasbolger•8m ago•0 comments

Aperion Shield: local guardrail that blocks destructive AI coding agent ops

https://github.com/AperionAI/shield
1•ScottAperion•10m ago•0 comments

What do the ropes at Shinto shrines mean? [video]

https://www.youtube.com/shorts/cwrlkaId_X0
1•keepamovin•11m ago•0 comments

Intuit Announces 17% Layoffs

https://old.reddit.com/r/cscareerquestions/comments/1tikket/intuit_announces_17_layoffs/
2•theanonymousone•11m ago•0 comments

Does Your Startup Need an AI Data Analyst?

https://www.hadijaveed.me/2026/05/18/byaan-agent-harness-for-data-queries/
1•hjaveed•12m ago•0 comments

Gemini 3.5 Flash: more expensive, but Google plan to use it for everything

https://simonwillison.net/2026/May/19/gemini-35-flash/
1•flyaway123•12m ago•0 comments

Show HN: Every Lego minifigure ranked, from over 1.3M user votes

https://brickelo.com
1•gpattle•12m ago•1 comments

Evidence-Graded Timelines

https://zeroagendanews.com/methodology/
1•factorialboy•13m ago•0 comments

Evolutionary Psychologist Gad Saad Explains the Woke Mind Virus (2024)

https://www.prageru.com/videos/evolutionary-psychologist-gad-saad-explains-the-woke-mind-virus-an...
1•neofrog•13m ago•0 comments

How Much of the Internet Is AI Slop?

https://www.statsignificant.com/p/how-much-of-the-internet-is-ai-slop
2•prismatic•13m ago•0 comments

Toast gets a website redesign to celebrate its system theme

https://paradise-runner.github.io/toast/
1•dividedcomet•16m ago•1 comments

We've entered a golden age of idea thieves and liars

https://www.machinesociety.ai/p/weve-entered-a-golden-age-of-idea
2•mikelgan•17m ago•1 comments

Execs admit AI makes them value human workers less

https://www.theregister.com/ai-ml/2026/05/13/execs-admit-ai-makes-them-value-human-workers-less/5...
1•samtrack2019•18m ago•0 comments

Mast Climber

https://nabkmastclimber.com
1•youssefmaia•18m ago•1 comments

Mass surveillance of foreigners in China revealed by abandoned demo dashboard

https://netaskari.substack.com/p/sharp-eyes-how-to-track-a-foreigner
3•ilamont•18m ago•0 comments

LLM INQUISITOR: Evaluating how AI models handle long, realistic tasks

https://github.com/AssimilatedHuman/LLM-Inquisitor
1•ballista2026•18m ago•0 comments

A self-hosted, unified webmail client

https://github.com/maathimself/mailflow
1•goldfish8543•19m ago•0 comments

Scheduled GitHub Actions are now useless

https://www.viblo.se/posts/scheduled-gh-actions/
3•viblo•21m ago•0 comments

Map of music

https://toposonico.com/#lon=10.0593&lat=-4.5548&z=6.56&entity=track&rowid=8714
2•deppep•22m 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!