frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

3code, the Economical Coding Agent

https://3code.capocasa.dev/
1•rainmaking•13s ago•1 comments

Petition: Reverse NHS England's decision to closed-source its code repositories

https://petition.parliament.uk/petitions/769638
1•RobotToaster•42s ago•0 comments

Stack Overflow for Agents

https://agents.stackoverflow.com/
1•kisamoto•2m ago•0 comments

Fable 5 on par with GPT-5.5 in Artificial Analysis Coding Agent Index

https://artificialanalysis.ai/agents/coding-agents
2•StanAngeloff•3m ago•1 comments

Creating Godot Games on Android

https://godotengine.org/article/gabe-stable-release/
2•wiseowise•3m ago•0 comments

The Environmental Cost of Artificial Intelligence: Carbon, Water and Land

https://unu.edu/inweh/collection/environmental-cost-of-AIs-Enrgy-Use-Carbon-water-and-land-footpr...
2•smartmic•7m ago•1 comments

Labour's spyware plan for phones is straight out of North Korea

https://www.telegraph.co.uk/news/2026/06/11/labour-spyware-plan-phones-straight-out-of-north-korea/
2•BoxOfRain•7m ago•0 comments

How to Grep Like an LLM

https://marcusmichaels.com/notes/grep-like-an-llm/
1•marcusmichaels•7m ago•2 comments

Similarities between human psychopathology and errors in LLMs

https://www.nature.com/articles/s44277-026-00064-1
2•giuliomagnifico•9m ago•1 comments

Extract version information from a Git repository for dynamic versioning

https://github.com/synacker/git-version-utils
1•synacker•11m ago•0 comments

CursorBar: Keep an eye on spending and agent status' in your macOS MenuBar

https://github.com/c-johannesen/cursorbar
1•johannesen•12m ago•0 comments

Cheaper Tokens, Bigger Bills

https://www.apollo.com/wealth/the-daily-spark/cheaper-tokens-bigger-bills
1•akyuu•12m ago•0 comments

Roiting – Agencia de Marketing B2B orientada a oportunidades reales de venta

https://www.roiting.com/
1•roihacking•15m ago•0 comments

Teardown Confirms the Trump Phone Is a Gold-Painted HTC U24 Pro

https://www.ifixit.com/News/117789/teardown-confirms-the-trump-phone-is-a-gold-painted-htc-u24-pro
2•vintagedave•17m ago•0 comments

Google's DiffusionGemma uses diffusion tech to speed text generation

https://www.theregister.com/ai-and-ml/2026/06/11/googles-diffusiongemma-uses-diffusion-tech-to-sp...
1•beardyw•17m ago•0 comments

Agribrain / ag-int/nce for AI agents (weather, ET₀, GDD, spray windows, soil)

https://github.com/VasileiosTs/agribrain
2•vasileiosts•19m ago•1 comments

Show HN: LiveHere – AI Videos, Self-Hosted Nvidia Cosmos on H200 GPUs

https://twitter.com/manassharmahere/status/2065370878519468221
2•manas95•19m ago•0 comments

No One Can Compare LLMs

https://xlii.space/eng/no-one-can-compare-llms/
1•xlii•21m ago•0 comments

The first game engine for robotics

https://luckyrobots.com/
1•arnejenssen•21m ago•0 comments

GatiNOW – A Fast, Modern, Identity‑Driven Scheduling Platform

https://www.gatinow.com/
1•chowkodali•21m ago•0 comments

Tokenmining: Low token plans maximize your output

https://www.kcoleman.me/2026/06/10/low-vibe-coding.html
1•itake•22m ago•1 comments

From Telehealth MVP to Production-Ready AI Product

https://geekyants.com/blog/from-telehealth-mvp-to-production-ready-ai-product-the-architecture-co...
1•shymasen•23m ago•1 comments

Books for Digital Business Owners: A Practical Reading List

https://abzglobal.net/technology/top-10-books-for-digital-business-owners
1•marian_abz•25m ago•0 comments

Findings from analysing a lot of QA discussions

https://quashbugs.com/blog/state-of-test-maintenance
1•pr_khar•25m ago•0 comments

How to Check If a VSCode Extension Is Safe Before You Install It

https://medium.com/@ishaan_agrawal/youre-about-to-install-a-vs-code-extension-did-you-check-any-o...
1•shadow-ninja•25m ago•0 comments

What are the biggest documentation problems your startup faces today?

1•anuragpujari•28m ago•0 comments

Revolutionary British artist David Hockney dies aged 88

https://www.theguardian.com/artanddesign/2026/jun/12/artist-david-hockney-dies
5•helsinkiandrew•29m ago•0 comments

How do lava lamps help with Internet encryption?

https://www.cloudflare.com/learning/ssl/lava-lamp-encryption/
2•Gedxx•30m ago•0 comments

ASML from Machine Builder to Strategic Infrastructure

https://altairmedia.eu/from-machine-builder-to-strategic-infrastructure/
1•pieterr•33m ago•0 comments

Confluence is down

https://confluence.status.atlassian.com
1•whirlwin•34m 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!