frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Quasicrystals Animation Playground with WebXR

https://hypnagogic-quasicrystals.github.io/
1•r34•1m ago•0 comments

Why are we having so many (or so few) earthquakes?

https://www.usgs.gov/faqs/why-are-we-having-so-many-or-so-few-earthquakes-has-naturally-occurring...
1•jahnu•4m ago•0 comments

So Who's Going to Buy All These Tokens?

https://horse.energy/who_buys_the_tokens.html
1•aakil•4m ago•0 comments

The Plasticity Thesis: How the Brain Learns to Be Conscious – PMC

https://pmc.ncbi.nlm.nih.gov/articles/PMC3110382/
1•lisper•5m ago•0 comments

Yadda 3.0.0: BDD in the Age of AI Agents

http://www.stephen-cresswell.com/2026/08/15/Yadda-3.0.0-BDD-in-the-Age-of-AI-Agents.html
1•scresswell•6m ago•1 comments

Generating Quantum Entanglement from Sunlight

https://opg.optica.org/captcha/(S(f1tudmft3lfosqlxanpvoxjl))/?guid=0DDB6A44-A99F-4451-B651-A095AB...
1•bookofjoe•6m ago•0 comments

Texas Court Locks Luxembourg-Based Adult Website's Domain

https://thetexasinsider.com/texas-court-locks-adult-websites-domain-after-company-ignores-state-a...
1•ColinWright•6m ago•0 comments

The Next Global Economic Crisis Could Be Made in China

https://www.foreignaffairs.com/china/next-global-economic-crisis-made-china-michael-froman
1•ericmay•7m ago•0 comments

Adversarial Creation and Detection of AI-Generated Social Bot Content

https://arxiv.org/abs/2606.07219
1•Anon84•9m ago•0 comments

Vantage – open-source CS2 player intelligence from Steam, FACEIT and Leetify

https://github.com/k6w/vantage
1•regele•10m ago•0 comments

VictoriaMetrics: AI Policy

https://docs.victoriametrics.com/victoriametrics/contributing/index.html
1•tosh•14m ago•0 comments

Show HN: FrontStep v0.5.2

https://github.com/GiovanniCst/frontstep
2•J_cst•16m ago•0 comments

Does Alpha School Work for Regular Kids?

https://danmeyer.substack.com/p/does-alpha-school-work-for-regular
1•MrBuddyCasino•16m ago•0 comments

GLM-5.3 – The Official Desktop Auditor for Z.AI's Cyber-Engine

https://github.com/ZAI-GLM-5-3/glm-5.3
2•nioj•17m ago•0 comments

Babel: A skyscraper where every Wikipedia edit becomes a brick

https://babel.reppie.org/
1•meetpateltech•19m ago•0 comments

AI Software Development – What Does the Data Say?

https://codemanship.wordpress.com/2026/08/12/ai-software-development-what-does-the-data-say/
1•jesterpm•20m ago•0 comments

PriEco: Customize Your Results Ranking

https://prieco.net/blog/goggles
1•JojoYou•21m ago•0 comments

Traffic Modeling with Sumo: A Tutorial

https://arxiv.org/abs/2304.05982
1•teleforce•22m ago•0 comments

DeepSeek V4 Flash at 278 tok/s, full precision, no quantization

https://runinfra.ai/inference-api/deepseek-v4-flash
2•OsamaJaber•23m ago•0 comments

Could a computer scientist build a brain?

https://stankerstjens.github.io/could-a-computer-scientist-build-a-brain/
1•ogundipeore•23m ago•0 comments

The best way to sell a concentrated position at SpaceX

https://ofdollarsanddata.com/the-best-way-to-sell-a-concentrated-position/
2•rwmj•24m ago•0 comments

The Gestalt Principles

https://ixdf.org/literature/topics/gestalt-principles
1•breppp•25m ago•0 comments

S.A.T.U.R.D.A.Y: serf-hosted speech to text AI assistant

https://github.com/GRVYDEV/S.A.T.U.R.D.A.Y
1•soupspaces•25m ago•0 comments

Show HN: I built a spatial node canvas to fix LLM context drift

https://treequence.ai
2•jebuehler55•25m ago•0 comments

Show HN: Feature-packed 6MB Rust+Tauri free bookmarking app

2•freakynit•28m ago•0 comments

1Password's new benchmark teaches AI agents how not to get scammed

https://1password.github.io/SCAM/#
3•mrkd•29m ago•0 comments

Great music selection without overthinking

3•cr34t1ve•29m ago•4 comments

My open source project's donations no longer go through my bank account

https://spliit.app/blog/spliit-funding-is-now-on-open-collective
3•scastiel•31m ago•0 comments

Brazilian election filter in X For You timeline

https://github.com/xai-org/x-algorithm/blob/main/home-mixer/filters/brazil_2026_election_filter.rs
15•LorenDB•31m ago•5 comments

AI assistance is not authorship

https://twitter.com/Seltaa_/status/2088353576259314024
2•bilsbie•32m 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!