frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cortex – Agent-Native Knowledge OS on Markdown (Karpathy's LLM Wiki, via MCP)

https://github.com/synpulse8-opensource/pulse8-ai-cortex-knowledge-vault
1•jiekepan•35s ago•1 comments

Making FlashAttention-4 faster for inference

https://modal.com/blog/flash-attention-4-faster
1•birdculture•1m ago•0 comments

Honeypot Design

https://bruceediger.com/posts/honeypot-design/
1•NaOH•6m ago•0 comments

Reclaiming Digital Sovereignty

https://www.ucl.ac.uk/bartlett/publications/2024/dec/reclaiming-digital-sovereignty
1•carschno•7m ago•0 comments

Knowledge Collapse

https://www.bostonreview.net/articles/knowledge-collapse/
2•pseudolus•7m ago•0 comments

Show HN: Geiger – A blast radius triage tool for any credential

https://github.com/puck-security/geiger
2•thesubtlety•8m ago•0 comments

Finding high-severity security issues with publicly available models

https://twitter.com/RampLabs/status/2059678575939273091
1•gmays•9m ago•0 comments

Being an old school web-based sports sim dev in the era of vibe coded games

https://zengm.com/blog/2026/06/vibecoded-games/
1•YesBox•10m ago•0 comments

Measuring LLMs' impact on N-day exploits

https://red.anthropic.com/2026/n-days/
2•hackerBanana•10m ago•0 comments

How ClickHouse Became Fast at Joins

https://clickhouse.com/blog/clickhouse-fast-joins
1•eatonphil•10m ago•0 comments

A Fake Bug Report Hijacks Your AI Coding Agent – and Nothing Catches It

https://tenetsecurity.ai/blog/agentjacking-coding-agents-with-fake-sentry-errors/
1•patrickdavey•11m ago•0 comments

The Log Is the Agent

https://www.omnara.com/blog/the-log-is-the-agent
4•isehgal•12m ago•0 comments

EV demand up 50% in France and Germany since Iran war

https://www.reuters.com/business/renault-electric-vehicle-orders-have-surged-since-start-iran-war...
2•a_paddy•12m ago•0 comments

The apocalyptic future we're being sold isn't inevitable

https://www.theguardian.com/technology/2026/jun/11/ai-absolutism-apocalyptic-future
1•01-_-•13m ago•0 comments

Octopuses use mirrors to find food they cannot see

https://www.sciencedaily.com/releases/2026/06/260605023402.htm
1•bookofjoe•13m ago•0 comments

Google sues Chinese cybercrime network that used Gemini to automate scams

https://arstechnica.com/google/2026/06/google-sues-chinese-cybercrime-network-that-used-gemini-to...
3•01-_-•15m ago•0 comments

SpaceX Rented Out Computing After Own Teams Had Trouble Using It

https://www.bloomberg.com/news/articles/2026-06-12/spacex-rented-out-computing-after-own-teams-ha...
2•helsinkiandrew•18m ago•1 comments

The Socratic Method: Teaching by Asking Instead of by Telling

http://www.garlikov.com/Soc_Meth.html
3•thunderbong•18m ago•0 comments

Huh. Apparently we can just end smoking

https://www.not-ship.com/huh-apparently-we-can-just-stop-smoking/
3•gmays•18m ago•1 comments

More than a quarter of private colleges at risk of closing, new projection shows

https://hechingerreport.org/more-than-a-quarter-of-private-colleges-are-at-risk-of-closing-new-pr...
2•1vuio0pswjnm7•19m ago•0 comments

Ask HN: What are your best ideas you will probably never build?

3•hsuduebc2•21m ago•3 comments

A Peter Thiel-Backed Tribunal Is Putting Journalists on Trial

https://www.hollywoodreporter.com/business/business-news/peter-thiel-tribunal-journalists-trial-1...
8•cdrnsf•22m ago•1 comments

DNI Gabbard Reveals Evidence of U.S. Taxpayer-Funded Global Biolab Program [pdf]

https://www.dni.gov/files/BIOLAB_Slides.pdf
3•dnideny•24m ago•1 comments

I Won't Buy You a Coffee

https://hakkerman.eu/blog/i-wont-buy-you-a-coffee/
22•speckx•25m ago•21 comments

Mcy/best – A C++ STL replacement

https://github.com/mcy/best
1•pie_flavor•25m ago•0 comments

Recursive Self-Improvement

https://ana15.substack.com/p/recursive-self-improvement
2•aborovykh•27m ago•1 comments

Yeti

https://mth.github.io/yeti/
1•tosh•27m ago•0 comments

Ask HN: What happens when AI-voice becomes good enough?

1•boa00•32m ago•2 comments

Over 900 Arch Linux Packages Infected with infostealers and rootkits

https://lists.archlinux.org/archives/list/aur-general@lists.archlinux.org/thread/FGXPCB3ZVCJIV7FX...
5•fortran77•35m ago•1 comments

Scarab Field Lab – public case records for software drift diagnostics

https://github.com/scarab-systems/scarab-field-lab
1•scarabsystems•36m 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!