frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A text based browser, written in Rust, for humans and agents

https://github.com/DO-SAY-GO/web-cli
1•keepamovin•2m ago•0 comments

Europe asked for fair markets. Nobody asked to be left out

https://siri4eu.com
1•frizlab•3m ago•0 comments

A Parents Guide to AI

https://parentsguidetoai.ca/
1•ygjb•4m ago•1 comments

Show HN: Remove Anything – AI Background Removal Tool

https://www.remove-anything.com
1•liulanggoukk•5m ago•0 comments

CommBench: Can LLMs Write Correct and Efficient GPU Communication Code?

https://uccl-project.github.io/posts/commbench/
1•matt_d•6m ago•0 comments

Frontier: A Discrete-Event Simulator for Modern LLM Serving

https://github.com/NetX-lab/Frontier
1•matt_d•9m ago•0 comments

Pokémon Go Scans Trained the Navigation Tech for Military Drones

https://dronexl.co/2026/06/09/pokemon-go-scans-niantic-vantor-military-drone-navigation/
2•vrganj•11m ago•0 comments

Revenge of the nerds: How data scientists catch fraudsters

https://medium.com/fourthline-tech/revenge-of-the-nerds-how-data-scientists-catch-fraudsters-part...
2•Doch88•13m ago•0 comments

Your Package Manager Is Lying to You

https://blog.gaborkoos.com/posts/2026-06-11-Your-Package-Manager-Is-Lying-to-You/
1•theanonymousone•16m ago•0 comments

Show HN: Aegis – post-quantum cyberdefense proxy (687 attacks, 0 breaches, 40d)

https://github.com/conchaestradamiguelangel-droid/aegis
1•conchaestrada•18m ago•0 comments

Phantomix – Open-source browser AI agent, free alternative to OpenAI Operator

https://github.com/dimitrisdimitrov5-blip/Phantomix
2•michoni12•18m ago•0 comments

Macaroni – a single HTML file messenger

https://github.com/vanyapr/makaroshki
3•snowflaxxx•21m ago•1 comments

I got inside a North Korean hiring scam

https://indicator.media/p/i-got-inside-a-north-korean-hiring-scam-what-i-found-reveals-a-troublin...
1•jruohonen•21m ago•0 comments

Ask HN: Want to build something open source on nights and weekends together?

1•vira28•22m ago•1 comments

Show HN: NightCity Tracer is an open-source Blue Team Simulator

https://thomassimmer.github.io/nightcity-tracer/
1•thomassimmer•24m ago•0 comments

Gordon Wood's Proust

https://thelampmagazine.com/blog/gordon-woods-proust
1•prismatic•24m ago•0 comments

Cybercriminals claim breach of Oracle PeopleSoft servers at 100 organizations

https://techcrunch.com/2026/06/10/cybercriminals-claim-breach-of-oracle-peoplesoft-servers-at-100...
2•ameypandey•24m ago•0 comments

The AI Resist List

https://airesistlist.org/
1•jruohonen•26m ago•0 comments

XY

https://nsl.com/k/xy/xy.txt
1•tosh•30m ago•0 comments

The Jqwik Anti-AI Affair

https://blog.johanneslink.net/2026/06/09/the-jqwik-anti-ai-affair/
1•xyzal•32m ago•0 comments

Knowledge Collapse: AI companies are racing to mechanize mathematics

https://www.bostonreview.net/articles/knowledge-collapse/
3•Hooke•32m ago•0 comments

AI researcher claims he's bypassed Anthropic's Fable 5 guardrails

https://cointelegraph.com/news/researcher-claims-hes-already-jailbroken-anthropics-guardrailed-cl...
2•bushwart•34m ago•0 comments

Show HN: AI Coloring Page Generator – printable worksheets from prompts

https://aicoloringpagegenerator.org/
1•robot1996•35m ago•0 comments

Is It AI? How to Tell Using Metadata

https://photoinvestigator.co/blog/how-to-tell-if-a-photo-is-ai-generated-metadata/
1•Danbana•36m ago•0 comments

Open-source Next.js salon booking template, built on Opencals booking API

https://www.indiehackers.com/post/open-source-next-js-salon-booking-template-built-on-opencals-bo...
1•stangineer•41m ago•0 comments

FDA OKs first new sunscreen ingredient in more than 25 years

https://apnews.com/article/sunscreen-fda-bemotrizinol-ingredient-uva-protection-9b9c7e04b418b3c9c...
1•XzetaU8•42m ago•0 comments

Overparameterization's Puzzling Success: Lottery Tickets or Escape Dimensions?

https://infoscience.epfl.ch/entities/publication/9a49779b-f9f8-448d-b3d1-737c78455309
1•selimonder•42m ago•0 comments

Elizabeth Warren Asks the SEC to Delay the SpaceX IPO

https://www.businessinsider.com/elizabeth-warren-spacex-ipo-delay-letter-sec-2026-6
6•borski•43m ago•0 comments

Show HN: Dloom – a dotfile manager I wanted

https://swaranga.dev/posts/dloom-the-dotfile-manager-i-wanted/
1•swaranga•45m ago•0 comments

Ask HN: Is anyone shorting the overspend in AI yet?

4•ggm•47m ago•2 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!