frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Thoma Bravo hands Medallia to lenders in one of private equity's biggest losses

https://www.ft.com/content/ae4b6c77-9b3d-46fb-a7fc-59f072e7291b
1•petethomas•2m ago•0 comments

Rationale for the 2026 Iran War

https://en.wikipedia.org/wiki/Rationale_for_the_2026_Iran_war
1•doener•5m ago•0 comments

How Does One Brain Speak Two Languages?

https://www.nytimes.com/2026/06/15/science/brain-language-grammar.html
2•Anon84•6m ago•1 comments

Agent finder for GitHub Copilot now available

https://github.blog/changelog/2026-06-17-agent-finder-for-github-copilot-now-available/
2•soheilpro•6m ago•0 comments

GitHub Copilot app generally available

https://github.blog/changelog/2026-06-17-github-copilot-app-generally-available/
2•soheilpro•7m ago•0 comments

South Georgia Student Develops Method to Control Kudzu [video]

https://www.youtube.com/watch?v=jDCCuiFynrU
1•assimpleaspossi•10m ago•0 comments

Copilot individual plan sign-ups are reopening

https://github.blog/changelog/2026-06-17-copilot-individual-plan-sign-ups-are-reopening/
1•soheilpro•13m ago•0 comments

Show HN: Pitch-by-pitch baseball simulation app to simulate games and seasons

https://baseball.chesterton.tech/
2•HaxleRose•22m ago•3 comments

A Human Artist's Defense of AI Art

https://asherperlman.substack.com/p/a-human-artists-defense-of-ai-art
2•erikschoster•23m ago•0 comments

Best Laptops

https://www.wired.com/story/best-laptops/
2•adrianwaj•27m ago•0 comments

Free Will (2026)

https://gt.ms/blog/free-will/
1•geetuu•28m ago•1 comments

Bernie Sanders unveils plan to give the public direct ownership of AI companies

https://apnews.com/article/bernie-sanders-ai-public-ownership-57b9f20d96490083e2749adba0f13977
4•petethomas•28m ago•3 comments

ArsenalOS: Anduril's Digital Manufacturing Backbone

https://www.anduril.com/news/introducing-arsenalos-tm-anduril-s-digital-manufacturing-backbone
1•ilreb•29m ago•0 comments

Claude Fable 5: The harness matters more than the model

https://www.endorlabs.com/learn/claude-fable-5-take-two-same-model-different-harness-and-a-very-d...
1•bugvader•29m ago•0 comments

Estonia assigns personal ID numbers to AI agents to grant them "authorizations"

https://www.bloomberg.com/news/articles/2026-06-17/estonia-to-grant-ai-bots-legal-rights-with-per...
3•thoughtpeddler•31m ago•0 comments

USP – Write once in Markdown, post everywhere

https://github.com/adamarutyunov/usp
2•tmatme•32m ago•0 comments

Making GHC Upgrades Easy

https://blog.haskell.org/making-ghc-upgrades-easy/
2•birdculture•33m ago•0 comments

Loop Unrolling in the ML Era

https://hiraditya.github.io/posts/why-loop-unrolling-is-popular-again/
1•matt_d•34m ago•0 comments

JPEG XL Art Gallery

https://jpegxl.info/art/big_gallery.html
1•6581•35m ago•0 comments

Show HN: A free CLI coding agent, powered by ads

https://freebuff.com
6•moado•36m ago•7 comments

Seven Perfect Shuffles Randomize a Deck of Cards. But How Many Sloppy Ones?

https://www.quantamagazine.org/seven-perfect-shuffles-randomize-a-deck-of-cards-but-how-many-slop...
1•jnord•40m ago•0 comments

Why standard WER fails for Indian languages

https://www.sarvam.ai/blogs/evaluating-indian-language-asr
1•laxmena•40m ago•0 comments

Vlk: MemAct for the IDE – persistent working memory agents can prune themselves

https://github.com/aranajhonny/vlk
1•akatsutki•44m ago•0 comments

Taxonomy of the Occlupanida (parasitoids on bread bag tags)

https://www.horg.com/horg/?page_id=921
5•beatthatflight•46m ago•2 comments

StackOverflow closed my OpenClaw and paperclipAI integration q. as "irrelevant"

https://stackoverflow.com/questions/79958607/how-do-i-view-server-logs-from-paperclipai-being-run...
3•khelavastr•46m ago•1 comments

License Plate Cameras Will Soon Track Phones, Wearables, Infotainment and Pets

https://www.thedrive.com/news/license-plate-cameras-will-soon-track-phones-wearables-infotainment...
6•xoxxala•47m ago•0 comments

Clojure Hosted on Go

https://github.com/glojurelang/glojure
3•dnlo•52m ago•0 comments

Show HN: ML condenses billions of logs into a tiny snapshot your LLM can debug

https://github.com/Rocketgraph/rocketgraph
5•kvaranasi_•52m ago•2 comments

A Secret Microsoft Tool Fixed Windows Performance [video]

https://www.youtube.com/watch?v=jH0BYAkPj78
3•tambourine_man•54m ago•0 comments

Build in Lovable, from Claude

https://xcancel.com/Lovable/status/2067326328110494129
1•doener•55m 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!