frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pruning LLMs Like a Physicist: Block Removal as an Ising Optimization Problem

https://huggingface.co/blog/MultiverseComputingCAI/pruning-llms-like-a-physicist-block-removal-as-an
1•Brajeshwar•36s ago•0 comments

Continual learning on a 28B Learner 1.0 model, new architecture

https://learnerlabs.ai/demos/skills/ten-skills
1•Anurup•53s ago•1 comments

What's going on with millennium maths problems [video]

https://www.youtube.com/watch?v=c79PsbkHw4A
2•Balgair•1m ago•0 comments

Ralph

https://danluu.com/pl-tokens/#ralph
1•tosh•1m ago•0 comments

Porting Doom's game logic and renderer to SQL

https://cedardb.com/blog/sqldoom/
1•durner•1m ago•0 comments

Tech elites launch college alternative, raises $42M

https://nypost.com/2026/09/22/business/tech-elites-launch-college-alternative-for-next-generation...
1•pinewurst•2m ago•0 comments

Rpi – a composable LLM agent SDK in Rust

https://github.com/bigfish1913/pi-rust
1•bigfishhk•3m ago•0 comments

Editors of higher education journal coauthor editorial with fake references

https://retractionwatch.com/2026/09/08/editors-of-higher-education-journal-coauthor-editorial-wit...
1•leephillips•4m ago•0 comments

God Help Us, Let's Try to Learn About Mechanistic Interpretability Techniques

https://www.astralcodexten.com/p/god-help-us-lets-try-to-learn-about
1•theptip•5m ago•0 comments

Vigil: Keeps your Mac awake while your coding agents work

https://vigilmac.com/
1•bullcitydev•5m ago•0 comments

Failures shown to be the harness, not the model (blog post)

https://blog.herlein.com/post/harness-not-model/
1•gherlein•5m ago•0 comments

Eiderdown: A Family Tradition – Trailer [video]

https://www.youtube.com/watch?v=kE4ltH7u77Q
1•thunderbong•6m ago•0 comments

Open source tries to govern AI code

https://freenode.net/article/from-blanket-bans-to-agents-md-open-source-tries-to-govern-ai-code
1•KinetiNode•6m ago•0 comments

Explore page for early internet websites

https://straw.page/explore
1•mikeoxmells•6m ago•0 comments

Managers Are Catalysts

https://laughingmeme.org/2026/09/14/managers-are-catalysts.html
1•mooreds•8m ago•0 comments

Show HN: An API that tells you what people love about a product

https://bb-product-api-docs.web.app/
1•aditya314159•9m ago•0 comments

Tokens Too Cheap to Meter

https://jyn.dev/tokens-too-cheap-to-meter/
1•williamcotton•9m ago•0 comments

I deleted slow, expensive LLM turns in coding agents with Jev

https://tawfeks.github.io/decisionkit/
1•respectattentio•9m ago•0 comments

Should I use Cloudflare for my SaaS, its so annoying

1•hummingbirdmg•10m ago•0 comments

M&Ms and Skittles sorting machine

https://willempennings.nl/mms-and-skittles-sorting-machine/
1•metrofun•11m ago•0 comments

PayPal partners with Muse for agentic checkout

https://twitter.com/alexandr_wang/status/2102418455622508722
1•vertigoruntime•12m ago•0 comments

OpenCode Reloaded

https://anoma.ly/notes/opencode-reloaded/
1•doppp•12m ago•0 comments

Binomial Coefficient Coincidences

https://johncarlosbaez.wordpress.com/2026/09/20/binomial-coefficient-coincidences/
2•pb1729•12m ago•0 comments

Show HN: Beachball – A Beachball that lives in your macOS Dock

https://beachball.click
1•nchudleigh•12m ago•0 comments

Creator of Windows Task Manager has vibe coded a version that runs on Mac/Linux

https://www.engadget.com/2262039/vibe-coded-modern-task-manager-runs-on-mac-and-linux/
2•losgehts•13m ago•0 comments

I Asked 100 Agents to Hack Me

https://blog.sshh.io/p/i-asked-100-agents-to-hack-me
2•surprisetalk•14m ago•0 comments

Writing Rust code that's fast by asking agents to make the code faster

https://minimaxir.com/2026/09/agentic-iteration/
3•mooreds•15m ago•0 comments

How much of the "AI is going rogue" talks is just a publicity stunt?

4•hackeryojo•16m ago•2 comments

How to Get from AI-Assisted to AI Native

https://www.oreilly.com/radar/how-to-get-from-ai-assisted-to-ai-native/
1•mooreds•16m ago•0 comments

Open-Source Business-as-Code Platform to Orchestrate Agents

https://github.com/littlehorse-enterprises
3•coltmcnealy•17m 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!