frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mnemo AI – Local agentic assistant for any LLM that learns from its failures

https://github.com/brunopistone/mnemoai
1•br1pistone•13s ago•0 comments

Lessons Learned from CISA's Recent GitHub Leak

https://krebsonsecurity.com/2026/07/lessons-learned-from-cisas-recent-github-leak/
1•guedou•37s ago•0 comments

Amethyst Post Bot – An Open-Source Editor for Telegram Rich Messages

https://github.com/rassvetteam/Amethyst-Post-Bot
1•waterflane•1m ago•0 comments

Shiploop – an autonomous delivery loop for Claude Code, pitch to MVP

https://github.com/BechsteinDigital/claude-shiploop
1•dbechstein•2m ago•0 comments

Web3dsurvey.com 2.0: Adds WebGPU WGLS language features and vendors details

https://ben3d.ca/blog/web-3d-survey-v2
1•bhouston•3m ago•0 comments

Hard Questions

https://claude.com/hard-questions
1•tosh•3m ago•0 comments

DOGE Used AI for Housing Policy. The Government Won't Say How

https://www.wired.com/story/doge-deployed-ai-housing-policy/
1•speckx•3m ago•1 comments

I modeled General Relativity as server lag in a discrete NavMesh universe

https://zenodo.org/records/21351434
1•TomerHaimovich•5m ago•0 comments

IBM shares down 23% as clients spend more on hardware and memory chips

https://www.cnbc.com/2026/07/14/ibm-warns-second-quarter-earnings-fell-short-of-expectations.html
1•rvz•5m ago•0 comments

SpaceX is gearing up for Starship's 13th test flight later this week

https://arstechnica.com/space/2026/07/spacex-is-gearing-up-for-starships-13th-test-flight-later-t...
1•rbanffy•6m ago•0 comments

We run a $7.5M trading company on $52/month of software

https://standardit.org/lanao.html
1•mixcocam•6m ago•0 comments

Switching an LLM's tier changes its "best tool" answer about half the time

https://modelsagree.com/labs/model-tiers
1•arephan•7m ago•0 comments

Show HN: Proton – A pure Go GUI library with zero CGO and API immunity

2•CzaxTanmay•8m ago•1 comments

Show HN: I RL-trained an agent that trains models with RL (for –$1.3k)

https://github.com/Danau5tin/ai-trains-ai
3•Danau5tin•8m ago•0 comments

Beautiful Type Erasure with C++26 Reflection

https://ryanjk5.github.io/posts/rjk-duck/
4•RyanJK5•9m ago•1 comments

Now, defenders are embracing the prompt injection, too

https://arstechnica.com/security/2026/07/now-defenders-are-embracing-the-prompt-injection-too/
2•thm•11m ago•0 comments

Lenz – A fact-checking API for AI-generated content

https://lenz.io/
2•kostaj•11m ago•0 comments

Show HN: EdgarKit – a real-time JSON API for SEC EDGAR filings

https://edgarkit.com/
2•mathewarena•11m ago•0 comments

The Unexamined Model Is Not Worth Training

https://bastian.rieck.me/blog/2026/unexamined/
2•Pseudomanifold•11m ago•0 comments

A Trusty Boot Key (Ventoy Alternative), for Bastille Day

https://codeberg.org/aol/trusty-boot-key
3•mixmastamyk•11m ago•0 comments

We need a PIT Crew for news

https://werd.io/we-need-a-pit-crew-for-news/
3•benwerd•14m ago•0 comments

The US-China AI arms race has taken an unexpected turn

https://www.newscientist.com/article/2532952-who-is-winning-the-ai-arms-race-between-the-us-and-c...
3•speckx•14m ago•0 comments

Using self-hosted Umami for iOS app analytics

https://hjerpbakk.com/blog/2026/07/14/umami-for-apps
2•Sankra•15m ago•1 comments

Lessons learned by a non-developer learning to deploy apps in production

https://maximerumpler.substack.com/p/how-i-manage-ai-as-a-non-developer
2•MaximeRumpler•17m ago•0 comments

Microsoft Surface Laptop 8 review

https://www.theguardian.com/technology/2026/jul/14/microsoft-surface-laptop-8-review
2•tosh•18m ago•0 comments

Human rabies despite PEP: review of breakthrough cases after zoonotic exposures

https://pmc.ncbi.nlm.nih.gov/articles/PMC11403119/
3•keepamovin•18m ago•0 comments

GigaWiper: Anatomy of a destructive backdoor assembled from multiple malware

https://www.microsoft.com/en-us/security/blog/2026/07/09/gigawiper-anatomy-of-a-destructive-backd...
2•andrewstetsenko•19m ago•0 comments

Don't Panic Cyberdeck

https://www.printables.com/model/1775113-dont-panic-cyberdeck
2•surprisetalk•19m ago•0 comments

Coding agents think ahead of time

https://arxiv.org/abs/2607.05188
6•andre15silva•21m ago•1 comments

Ask HN: Should I Promote My SaaS to get first 100 Customers without budget

3•HSK11•22m ago•3 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!