frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

DNS-Aid

https://github.com/dns-aid
1•simonpure•58s ago•0 comments

Anchor – Zero-dependency LLM hallucination detector

https://github.com/malaxiya202505https://github.com/malaxiya20250530-glitch/anchor-llm-in-truth
1•hubeiligsng429•2m ago•0 comments

Microsoft Office 2019 for Mac Will Soon Stop Letting You Edit Documents

https://www.macrumors.com/2026/06/02/microsoft-office-2019-for-mac-no-edit-documents/
1•CharlesW•3m ago•0 comments

We Uncovered a Hidden Wealth Transfer in the SpaceX IPO. You're Holding the Bag [video]

https://www.youtube.com/watch?v=sYA-z0Y8WRQ
2•CharlesW•5m ago•0 comments

ADHD: Parallel Divergent Ideation for Coding Agents

https://adhdstack.github.io/
1•pgedge_postgres•7m ago•1 comments

I made a realtime world model for games that works on consumer GPUs

https://www.youtube.com/watch?v=GzQLwAXCKqo
1•abhisoflucidml•8m ago•0 comments

We shrank our TimescaleDB chunks from 30 days to 7

https://tech.wmg.com/why-we-shrank-our-timescaledb-chunks-from-30-days-to-7-07cab8afefc5
1•yask123•10m ago•0 comments

Haiku, a generative music album for Mac OS

https://www.giorgiosancristoforo.net/ooame/
1•CharlesW•10m ago•0 comments

H-1B Crackdown on Indian Workers Erodes a Texas Real Estate Boom

https://www.bloomberg.com/features/2026-dallas-h1b-housing-market/
3•littlexsparkee•12m ago•1 comments

Read vehicle license plates this API gives you 2,500 free reads per month

https://www.platenexus.com/?lang=en
1•androg•14m ago•0 comments

Show HN: Fork of Rsync

https://github.com/benja2998/better-sync
2•benja2998•17m ago•0 comments

SpaceX Sets Price for $1.77T IPO

https://www.cnbc.com/2026/06/03/spacex-ipo-stock-price-roadshow-musk.html
5•gen220•18m ago•0 comments

Roadmap 2026 – Fluxer

https://fluxer.app/blog/roadmap-2026
1•Cider9986•20m ago•0 comments

Stop Location-Tracking Your Friends and Lovers

https://www.nytimes.com/2026/06/03/opinion/location-sharing-surveillance-summer-house.html
4•corny•21m ago•1 comments

Deck Gallery

https://www.deck.gallery
1•handfuloflight•24m ago•0 comments

Know Your Nulls

https://nulls.claytn.dev/quiz/1
1•claytn•25m ago•0 comments

The Environmental Cost of AI: Carbon, Water, and Land Footprints

https://unu.edu/inweh/collection/environmental-cost-of-AIs-Enrgy-Use-Carbon-water-and-land-footpr...
2•SupremumLimit•27m ago•1 comments

Rockstar fit a city into PlayStation 2 memory [video]

https://www.youtube.com/watch?v=cIbCxbrBCys
2•birdculture•28m ago•0 comments

Google's Top DMCA Sender Plateaus at 70M Takedowns per Week

https://torrentfreak.com/googles-top-dmca-sender-plateaus-at-70-million-takedowns-per-week/
1•aa_is_op•30m ago•0 comments

I built a local news website

https://www.thomasmcgee.co/article/i-built-a-local-news-website
2•SunshineTheCat•31m ago•0 comments

Changing Document Version Control Forever

https://github.com/SCCS-HQ/legal-contract-version-control
1•slveer•33m ago•0 comments

Mac-sudo-touchid: When coding agents sudo, use touch ID instead of password

https://github.com/Divide-By-0/macos-sudo-touchid
1•gyush•36m ago•0 comments

Breaking Circular Imports in Python Without Losing Type Safety

https://www.orcaset.com/blog/breaking-circular-imports-in-python-without-losing-type-safety
1•jrdnocs•41m ago•0 comments

Journey to JPEG XL: open-source experiments shaped the future of image coding

https://opensource.googleblog.com/2026/06/journey-to-jpeg-xl-how-open-source-experiments-shaped-t...
4•ledoge•42m ago•2 comments

MisoTTS Emotive Speech Model

https://www.misolabs.ai/blog/miso-tts-8b
1•heystefan•45m ago•0 comments

Subpostmaster federation hit by ransomware attack

https://www.computerweekly.com/news/366643958/Subpostmaster-federation-hit-by-ransomware-attack
1•latein•47m ago•0 comments

ReactOS Joins VCF Southwest for the First Time

https://reactos.org/blogs/vcfsw-2026/
2•samtheDamned•49m ago•0 comments

Moravec's Paradox

https://en.wikipedia.org/wiki/Moravec%27s_paradox
3•chistev•50m ago•0 comments

Ask HN: How to voice disagreement over S&P500 inclusion rules change for SpaceX?

8•MakersF•52m ago•2 comments

Reddit user creates DB and MCP to mine Polygon, finds patterns on Polymarket

https://old.reddit.com/r/ClaudeAI/comments/1tvefqd/i_wired_claude_code_into_a_database_of_every/
4•consumer451•52m 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!