frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Duck-UI – Browser-Based SQL IDE for DuckDB

https://demo.duckui.com
155•caioricciuti•8h ago•51 comments

Show HN: Pyversity – Fast Result Diversification for Retrieval and RAG

https://github.com/Pringled/pyversity
47•Tananon•5h ago•5 comments

Show HN: Notepad.exe – macOS editor for Swift and Python (now Linux runtime)

https://notepadexe.com/
29•krzyzanowskim•3h ago•20 comments

Show HN: Open-Source Voice AI Badge Powered by ESP32+WebRTC

https://github.com/VapiAI/vapicon-2025-hardware-workshop
28•Sean-Der•1w ago•3 comments

Show HN: MarkdownConverters – Convert any file format to clean Markdown

https://markdownconverters.com
3•Dkaur•1h ago•0 comments

Show HN: HN Terminal Theme Browser Extension

https://github.com/DanceItBreakIt/hacker-news-terminal-theme
4•danceitbreakit•1h ago•1 comments

Show HN: CheckHN – A checklist for the most popular Hacker News posts

https://checkhn.ad-si.com
3•adius•2h ago•0 comments

Show HN: Photerra – One app to discover hidden gems, plan with friends, and book

https://www.photerra.com/
3•davidlevien•2h ago•1 comments

Show HN: Syna – Minimal ML and RL Framework Built from Scratch with NumPy

https://github.com/sql-hkr/syna
5•sql-hkr•6h ago•0 comments

Show HN: Web-directive.js – A directive pattern for native HTML

https://github.com/asika32764/web-directive
8•asika32764•5h ago•2 comments

Show HN: Browser-based PDF form fields detection (YOLO-based)

https://commonforms.simplepdf.com/
7•nip•3h ago•1 comments

Show HN: Moonfish – AI podcast generator with research, writing, and voicing

https://apps.apple.com/us/app/moonfish-ai/id6748574770
2•huygiab•3h ago•0 comments

Show HN: EloqDoc: MongoDB-Compatible Doc DB with Object Storage as First Citizen

https://github.com/eloqdata/eloqdoc
9•eloqdata•4h ago•8 comments

Show HN: 17 Y/O built my second app: Omegle for Indie Hackers and Builders

https://www.xappy.fun/
4•imad-101•4h ago•0 comments

Show HN: MotionFlow – Extract Android Motion Photos to .jpg and .mp4

https://motionflow.dejavu.moe/
2•DejavuMoe•5h ago•0 comments

Show HN: Jekyll Book Boilerplate – A boilerplate for self-publishing books

https://github.com/abuseofnotation/jekyll-book-boilerplate
2•boris_m•5h ago•0 comments

Show HN: EraseVideo – a Free Mac app removes Sora video watermark in 1 minute

https://erasevideo.app
2•qzcanoe•5h ago•0 comments

Show HN: C and C++ preprocessor for modern memory safety

https://github.com/krishnaTORQUE/cdefer
5•KrishnaTorque•6h ago•1 comments

Show HN: Nova: Open-source solution for CAD file conflicts

https://github.com/agg111/nova
5•aishwaryagune•11h ago•0 comments

Show HN: Proxmox-GitOps: Container Automation Metaframework (Recursive Monorepo)

https://github.com/stevius10/Proxmox-GitOps
5•gitopspm•10h ago•1 comments

Show HN: The Shape of YouTube

https://soy.leg.ovh/
32•hide_on_bush•1w ago•11 comments

Show HN: ServiceRadar – open-source Network Observability Platform

https://github.com/carverauto/serviceradar
56•carverauto•1d ago•3 comments

Show HN: We packaged an MCP server inside Chromium

https://github.com/browseros-ai/BrowserOS/blob/main/docs/browseros-mcp/how-to-guide.mdx
45•felarof•2d ago•16 comments

Show HN: Inkeep (YC W23) – Agent Builder to create agents in code or visually

https://github.com/inkeep/agents
78•engomez•3d ago•49 comments

Show HN: Land use visualization for European countries

https://onsland.koenvangilst.nl/
20•vnglst•1d ago•6 comments

Show HN: A large format XY scanning hyperspectral camera

https://www.anfractuosity.com/projects/waverider/
44•anfractuosity•1w ago•10 comments

Show HN: Firm, a text-based work management system

https://github.com/42futures/firm
169•danielrothmann•4d ago•60 comments

Show HN: Open-source implementation of Stanford's self-learning agent framework

https://github.com/kayba-ai/agentic-context-engine
9•kayba•1d ago•1 comments

Show HN: WP-Easy, framework to build WordPress themes

https://github.com/drewbaker/wp-easy
2•drewrbaker•16h ago•0 comments

Show HN: Halloy – Modern IRC client

https://github.com/squidowl/halloy
374•culinary-robot•4d ago•98 comments
Open in hackernews

Show HN: EloqDoc: MongoDB-Compatible Doc DB with Object Storage as First Citizen

https://github.com/eloqdata/eloqdoc
9•eloqdata•4h ago
We're excited to share EloqDoc, a new open source document database built on top of Data Substrate. EloqDoc is designed around the principle of treating object storage (like S3) as a first-class citizen for durability and cost efficiency. If you love the flexibility of MongoDB's document model but are struggling with scaling, cost, and consistency due to its coupled architecture, EloqDoc is for you. It’s built to solve MongoDB's inherent infrastructure challenges while remaining fully compatible with existing MongoDB clients and drivers.

Key Features:

1. Object Storage as First Citizen: Uses object storage for primary durability, leveraging local NVMe caching to achieve both lower cost and higher performance than using block-level storage (e.g. EBS).

2. Decoupled Compute & Storage: Scale your compute/QPS independently of your storage capacity, or vice-versa, without data movement.

3. True ACID Transactions: Delivers full ACID compliance with especially fast distributed transactions—consistency without compromise.

4. Native Distribution & Multi-Writer: It's a natively distributed database, eliminating complex manual sharding routers (like mongos) and supporting true Multi-Writer scalability.

Check it out: https://www.github.com/eloqdata/eloqdoc

We welcome any feedback, critique, or questions on the EloqDoc!

Comments

fluxkernel•4h ago
There is a discussion on Reddit for a 5TB data volume but very low throughput, I think Object Storage based document database would help in this case. https://www.reddit.com/r/mongodb/comments/1o41dta/is_there_a...
hodr_super•4h ago
Mongo Atlas also supports using archive database to store infrequently accessed cold data. It’s also object storage based.
fluxkernel•4h ago
Typically a separate archive database is not desired choice. You need to specify the rule how old the data is move from production database to archive database. Also the archive database is read only and slow, you can not achieve transaction between production database and archive database.
eloqdata•3h ago
Yes, this is exactly the typical use case where EloqDoc shines.

Our auto-tiering feature allows you to manage a massive database (e.g., 5TB+) primarily on cheap, durable object storage (like S3), which is already built for cross-AZ replication and is up to 3x cheaper than traditional cloud block storage (EBS).

We use local NVMe SSDs (200K+ IOPS) purely as a high-performance cache layer to accelerate read access. Hot and cold data are automatically swapped across memory, SSD, and object storage tiers based on access frequency, ensuring high performance (up to 100x faster than archive solutions)

the_precipitate•4h ago
FerretDB and DocumentDB seem to be the only other two Mongo-compatible open source database implementations. Both are based on PostgreSQL.
eloqdata•3h ago
That’s correct. FerretDB and DocumentDB both pursue PostgreSQL-based document models.

EloqDoc follows a fundamentally different architectural path. Instead of executing in Postgres, we leverage the existing MongoDB parser and executor to ensure maximum compatibility. Our main contribution is to replace the single-writer WiredTiger storage engine entirely with Data Substrate.

The Data Substrate is an abstract layer built specifically to handle distributed database fundamentals: scalable buffer pooling, concurrency control, durability, elasticity, and fault tolerance. You can read more: https://www.eloqdata.com/blog/2025/07/14/technology

This architectural choice is what enables EloqDoc to deliver features that Postgres-based solutions cannot easily match, including: full compatibility, native Multi-Writer capability, Object Storage First and extremely low-latency distributed transactions.

PeterZaitsev•1h ago
I see the license is AGPLv3 while current MongoDB versions as SSPL - does it means you took the MongoDB Parser circa 2018 as a base ?
eloqdata•16m ago
That is right. We leverage some of the AGPL MongoDB code for the parser, as indicated by the License. Our own code can be licensed differently, see a previous discussion on Hacker News [1]. The Mongo API are reasonably stable over the last few years, only seeing very minor changes. Most of the later versions improved upon performance and transactions, which we support natively with our underlying technologies. Still, if you have any specific API that you feel is needed, we'd be happy to implement and we welcome community contributions.

[1] https://news.ycombinator.com/item?id=44937978