frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Recursive Language Models and Neurosymbolic Context Management

https://jdsemrau.substack.com/p/recursive-language-models-and-neurosymbolic-context-management
1•ph4rsikal•1m ago•0 comments

AI job disruption is here, and most don't claim unemployment benefits

https://fortune.com/article/ai-layoffs-unemployment-benefits-eligibility-sam-altman-dario-amodei/
2•01-_-•3m ago•0 comments

Palantir co-founder gets student blacklisted by DOJ

https://twitter.com/ggreenwald/status/2066195825407971692
1•sosomoxie•5m ago•2 comments

Email, Lifecycle and CRM Marketing Knowledge Base

https://crmknowledgebase.com/
1•iamacyborg•7m ago•0 comments

Route optimization engine, 100% in Rust and can run 100% offline

https://twitter.com/m_punnerud/status/2066100400076337598
1•punnerud•7m ago•0 comments

Image of 3D printer-produced gun

https://pantagraph.com/image_f1f1a43d-6b07-4b0f-8ed7-b052c0bcf2f4.html
1•01-_-•9m ago•0 comments

Show HN: Fable clone Google in 2hr but return TikTok-style video instead of text

https://www.bluhe.ai
2•dhavd•10m ago•1 comments

Burpwn – Burp Suite but its for AI agents (it works)

https://github.com/own2pwn-fr/burpwn
2•own2pwn-fr•13m ago•0 comments

Show HN: Discover Wikipedia articles popular on Hacker News

https://www.orangecrumbs.com/
2•octopus143•13m ago•0 comments

Jane Elliott: Brown Eyes, Blue Eyes

https://www.lowellmilkencenter.org/programs/projects/view/brown-eyes-blue-eyes/hero
1•evo_9•13m ago•0 comments

Text Diffusion – Brendan O'Donoghue, Google DeepMind [video]

https://www.youtube.com/watch?v=r305-aQTaU0
2•Topfi•19m ago•0 comments

Feedback on Miz Framework GitHub

3•sajjadws•19m ago•0 comments

A clear fishing wire is tied around the island of Manhattan

https://old.reddit.com/r/Damnthatsinteresting/comments/boea4v/a_clear_fishing_wire_is_tied_around...
7•vinnyglennon•20m ago•0 comments

Anthropic Models in Microsoft Online Services

https://learn.microsoft.com/en-us/microsoft-365/copilot/connect-to-ai-subprocessor
2•sntran•20m ago•0 comments

Please Stay Calm and Listen

https://zhenyi.gibber.blog/please-stay-calm-and-listen
3•zhenyi•22m ago•0 comments

Oracle is changing free tier limits. Update by the 15th to avoid charges

https://old.reddit.com/r/selfhosted/comments/1u4wqnj/psa_oracle_is_changing_free_tier_limits_upda...
3•wrxd•22m ago•0 comments

Real-time tracker of AI-driven job displacement worldwide

https://ailayoffs.live/
2•streamer45•22m ago•0 comments

Meta moves to unwind $2B Manus deal after Beijing's demand

https://techcrunch.com/2026/06/13/meta-reportedly-moves-to-unwind-2b-manus-deal-after-beijings-de...
2•geox•24m ago•0 comments

Double, BigDecimal, or Fixed-Point?

https://blog.frankel.ch/bigdecimal-vs-double/
2•theanonymousone•25m ago•0 comments

RFC 5218: What Makes for a Successful Protocol? (2008)

https://www.rfc-editor.org/info/rfc5218/
2•themaxdavitt•25m ago•0 comments

Git merges can be better

https://brandondong.github.io/blog/git_merges_can_be_better/
2•thunderbong•25m ago•0 comments

The Future of Work Is Getting Out of the Way

https://julienreszka.com/blog/the-future-of-work-is-getting-out-of-the-way/
2•julienreszka•27m ago•0 comments

FFI in Miri at 8000 segfaults per second [video]

https://www.youtube.com/watch?v=9X-ngiKo_Y0
2•nia-e•28m ago•0 comments

Show HN: The Engineer – Drive Claude Code from a GitHub Issue to a Merged PR

https://github.com/FarzamMohammadi/the-engineer
6•m_farzam•32m ago•0 comments

Gemma 4 for Telephony: From Two AI Models to One – Until I Switched to Chinese

https://medium.com/@j.y.weng/gemma-4-for-telephony-i-replaced-two-ai-models-with-one-in-my-voice-...
2•fidotron•34m ago•0 comments

A frontier without an ecosystem is not stable

https://twitter.com/satyanadella/status/2066182223213293753
2•jger15•35m ago•0 comments

Defensible Deep Research from Open-Weight Models

https://thinkwright.ai/two-phase-research
2•oceanwaves•35m ago•0 comments

Show HN: Landmark AI and ML research explained, redrawn, animated

https://research.rudrite.com/
3•mridul_sahu•38m ago•0 comments

Show HN: Kage – Shadow any website to a single binary for offline viewing

https://github.com/tamnd/kage
23•tamnd•42m ago•14 comments

Prop-for-that: CSS reacts, JavaScript just listens

https://prop-for-that.netlify.app/
2•tobr•43m 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!