frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Akashi Notari – On-chain Proof of Existence for any file in 60s for <$1

https://akashi-notari.com/
2•takeshi_w•1h ago•0 comments

Show HN: AI Bubble Monitor

https://aibubblemonitor.com
4•itsnotmyai•2h ago•0 comments

Show HN: I made an open-source Rust program for memory-efficient genomics

https://github.com/logannye/rosalind
10•logannyeMD•8h ago•0 comments

Show HN: Gerbil – an open source desktop app for running LLMs locally

https://github.com/lone-cloud/gerbil
30•lone-cloud•2d ago•6 comments

Show HN: Cancer diagnosis makes for an interesting RL environment for LLMs

41•dchu17•18h ago•20 comments

Show HN: I built a platform where audiences fund debates between public thinkers

https://logosive.com
32•mcastle•14h ago•32 comments

Show HN: Chime – Full-screen meeting alerts for time blindess (macOS)

https://www.usechime.app/
3•tsormed•8h ago•0 comments

Show HN: Cactoide – Federated RSVP Platform

https://cactoide.org/
66•orbanlevi•1d ago•28 comments

Show HN: SkillGraph – Open-source agentic framework with skills instead of tools

https://github.com/tejassudsfp/skillgraph-backend
12•tejassuds•21h ago•0 comments

Show HN: Made MadLibs-style game to play with my kids

https://www.storygaps.org/
2•ronbenton•9h ago•0 comments

Show HN: ShellDash – Browser server dashboard with SSH and globe monitoring

https://shelldash.com
4•mannders•16h ago•0 comments

Show HN: Invisitris a Tetris-like game, where the placed pieces become invisible

https://invisitris.bitechunk.com/
4•eddguzzo•11h ago•1 comments

Show HN: Data Formulator – interactive AI agents for data analysis (Microsoft)

https://data-formulator.ai/
36•chenglong-hn•1d ago•11 comments

Show HN: Tusk Drift – Open-source tool for automating API tests

https://github.com/Use-Tusk/drift-node-sdk
53•Marceltan•1d ago•17 comments

Show HN: The Prompt Engineering Bible – Complete Guide to AI Communication

https://dimitriosmitsos.gumroad.com/l/prompt-engineering-bible
3•Cranot•12h ago•0 comments

Show HN: Open-Source LaTeX OCR, Alternative to Mathpix/SimpleTex

https://texocr.netlify.app/
3•alephpi•19h ago•0 comments

Show HN: KV Marketplace – share LLM attention caches across GPUs like memcached

https://github.com/neelsomani/kv-marketplace
2•nsomani•13h ago•1 comments

Show HN: SecurVO – Compliance management for service businesses

https://securVO.com
2•AaronKushner•13h ago•0 comments

Show HN: ChatExport Structurer – parse ChatGPT/Claude exports into queryable SQL

https://github.com/1ch1n/chat-export-structurer
2•chan1•14h ago•0 comments

Show HN: Venturu – Zillow for the market of local businesses

https://www.venturu.com
32•lifenautjoe•1d ago•36 comments

Show HN: Get an email when your favorite director releases a movie

https://www.premierepal.com/
2•samteeeee•14h ago•0 comments

Show HN: Built a tiny interpreter from scratch in C to understand how they work

https://github.com/renvins/toyforth-interpreter
4•renvins•14h ago•0 comments

Show HN: Creavi Macropad – Built a wireless macropad with a display

https://creavi.tech/blog/creavi-macropad-build-log/
31•cmpx•1d ago•7 comments

Show HN: Gametje – A casual online gaming platform

https://gametje.com
111•jmpavlec•1d ago•40 comments

Show HN: YaraDB – Lightweight open-source document database built with FastAPI

https://github.com/illusiOxd/yaradb
9•ashfromsky•1d ago•1 comments

Show HN: What Is Hacker News Working On?

https://waywo.eamag.me/
221•eamag•6d ago•51 comments

Show HN: Vibemail – AI-powered MJML email editor that runs in the browser

https://vibemail-beta.vercel.app/
2•elliotbnvl•16h ago•0 comments

Show HN: DeltaGlider – Store 4TB of build artifacts in 5GB

https://github.com/beshu-tech/deltaglider
7•sscarduzio•1d ago•2 comments

Show HN: SQL++ – 5x faster than Prisma (Rust)

https://github.com/sinisterMage/sqlpp
2•SinisterMage2•18h ago•2 comments

Show HN: JavaScript Engines Zoo

https://github.com/ivankra/javascript-zoo
2•ivankra•19h ago•0 comments
Open in hackernews

Show HN: YaraDB – Lightweight open-source document database built with FastAPI

https://github.com/illusiOxd/yaradb
9•ashfromsky•1d ago

Comments

ashfromsky•1d ago
Hi everyone! I’m the developer of YaraDB, an open-source lightweight document-oriented database written in Python using FastAPI and Pydantic.

YaraDB is designed to be simple, self-hosted, and easy to integrate — perfect for small projects, prototyping, or learning about database internals. It focuses on transparency and correctness with built-in mechanisms for data integrity, versioning, and recovery.

Features: - Core Database Engine - CRUD API — Full create/read/update/delete (archive) operations over REST. - Write-Ahead Log (WAL) — Ensures data durability and crash safety. - In-Memory First — Fast O(1) lookups using dictionaries before persistence. - JSON-Based Storage — The main database snapshot is stored as a single JSON file (yaradb_storage.json). - Optimistic Concurrency Control (OCC) — Updates require the latest version number to prevent stale writes. - Data Integrity Hashing — SHA-256 hash verification for every document. - Soft Deletes — Archives documents with timestamps instead of hard deletion. - Key-Value Search — Query by exact key-value pairs. - Combined Documents — Merge multiple documents with flexible strategies. - Field Processors — Validate and preprocess fields (e.g. email, age). - Batch Operations — /document/batch/create endpoint for bulk ingest. - Python Client — Available on PyPI: yaradb-client

I'm still polishing the documentation and adding indexing + replication support. Feedback, testing, or contributions are all welcome — especially from backend devs, DB engineers, and FastAPI enthusiasts.