frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Offshore to onshore: Europe expands carbon storage with nature-inspired tech

https://projects.research-and-innovation.ec.europa.eu/en/horizon-magazine/offshore-onshore-europe...
1•PaulHoule•26s ago•0 comments

First highway sign with Superchargers, more to come

https://twitter.com/TeslaCharging/status/1970987475951903142
1•toomuchtodo•33s ago•0 comments

Beyond Reading the RFC: How to Shape Identity Standards

https://ciamweekly.substack.com/p/beyond-reading-the-rfc-how-to-actually
1•mooreds•37s ago•0 comments

DeepSeek-v3.2-Exp: Long-Context Efficiency with DeepSeek Sparse Attention [pdf]

https://github.com/deepseek-ai/DeepSeek-V3.2-Exp/blob/main/DeepSeek_V3_2.pdf
1•g42gregory•54s ago•0 comments

Agentic Commerce Protocol

https://developers.openai.com/commerce/guides/get-started/
1•brandonb•2m ago•0 comments

Cloudflare Confidence Scorecards to Deal with Shadow IT/AI

https://blog.cloudflare.com/cloudflare-confidence-scorecards-making-ai-safer-for-the-internet/
1•nilsandrey•3m ago•0 comments

Why the idea that the English have a common Anglo-Saxon origin is a myth (2017)

https://theconversation.com/why-the-idea-that-the-english-have-a-common-anglo-saxon-origin-is-a-m...
1•csb6•3m ago•0 comments

The Case Against Generative AI

https://www.wheresyoured.at/the-case-against-generative-ai/
1•speckx•4m ago•0 comments

Lovable Cloud

https://lovable.dev/cloud
1•titel•4m ago•0 comments

Show HN: Sync your currently playing Spotify track to Telegram

https://github.com/therepanic/spotify-telegram-sync
1•therepanic•7m ago•0 comments

LoRA Without Regret

https://931c2d17.connectionism.pages.dev/blog/lora/
1•grantpitt•9m ago•0 comments

The Curious Conservative War on Beer

https://slate.com/life/2025/09/beer-sales-decline-bud-light-donald-trump-news.html
2•LAsteNERD•12m ago•1 comments

EA Sold to Saudi Arabia and Trump's Son-in-Law for $55B

https://www.gamespot.com/articles/ea-goes-private-in-55-billion-deal-from-saudi-arabia-jared-kush...
7•geox•12m ago•0 comments

The secret to great art? Finding someone else to make it

https://www.ft.com/content/d84c8502-d413-4a26-a59c-494af11978b5
1•bookofjoe•13m ago•1 comments

The Most Important Decision You'll Ever Make

https://www.infinitescroll.us/p/the-most-important-decision-youll
2•paulpauper•14m ago•0 comments

"How Do People Get New Ideas?" (1959)

https://www.technologyreview.com/2014/10/20/169899/isaac-asimov-asks-how-do-people-get-new-ideas/
1•cjbarber•14m ago•0 comments

What Americans Think About Nuclear Power

https://www.betonit.ai/p/what-americans-think-about-nuclear
1•paulpauper•15m ago•0 comments

Indent: Indent and Format C Program Source

https://www.gnu.org/software/indent/manual/indent.html
1•welovebunnies•19m ago•0 comments

Ask HN: Why LLMs confidently hallucinate instead of admitting knowledge cutoff?

2•cryptography•19m ago•1 comments

Vibe Check: Claude Sonnet 4.5

https://every.to/vibe-check/vibe-check-claude-sonnet-4-5
1•amrrs•20m ago•0 comments

Fast Data Persistence: GrausDB and Zero-Copy Serialization

https://rpallas.xyz/zero-copy-serde/
1•ibobev•20m ago•0 comments

Show HN: PyMOL 3.0 with new movie maker UI

https://www.schrodinger.com/platform/products/pymol/
1•amey20•20m ago•0 comments

Recursive data structures. (Hoare, 1973) [pdf]

https://apps.dtic.mil/sti/pdfs/AD0772509.pdf
1•fanf2•20m ago•0 comments

Elon Musk could turn national governments into Potemkin powers

https://www.washingtonpost.com/opinions/2025/09/29/musk-space-x-satellites-phones-communications/
3•Animats•20m ago•1 comments

Fitting a double exponential function to three points

https://www.johndcook.com/blog/2025/09/29/fitting-a-double-exponential/
1•ibobev•20m ago•0 comments

Instant Checkout for Merchants in ChatGPT

https://chatgpt.com/merchants
2•tortilla•21m ago•0 comments

Adding a new instruction to RISC-V back end in LLVM

https://blog.gustavoleite.me/llvm-riscv-instruction
1•Bogdanp•23m ago•0 comments

Developing an open standard for agentic commerce

https://stripe.com/blog/developing-an-open-standard-for-agentic-commerce
2•OG_BME•25m ago•1 comments

Imagine with Claude

https://claude.ai/imagine/
1•felixrieseberg•26m ago•0 comments

Show HN: DataXLator – Client-Side JSON ↔ YAML Converter (Privacy-First)

https://kcreed713.github.io/DataXLator-MVP/
1•kevinreed•27m ago•1 comments
Open in hackernews

I built a Context7 alternative that costs 40% less with similar code quality

1•addy999•1h ago
I've been working on a RAG-based solution that functions similarly to Context7 but at a significantly lower cost. After some rigorous testing, I thought I'd share my findings with the community.

TL;DR: This implementation costs roughly half as much as Context7 while producing code of comparable quality.

The Tests

I ran three coding challenges using Gemini-2.5-pro (set to temp=0) with both Context7 and Custom MCP:

- Creating a Next.js page with API data fetching

- Building a FastAPI endpoint for streaming large files

- Developing a FastAPI WebSockets app with Redis pub/sub

The Results

- Average cost savings: ~40%

- Next.js Test: Context7 ($0.056) vs Custom MCP ($0.023)

- FastAPI Streaming Test: Context7 ($0.044) vs Custom MCP ($0.031)

- WebSockets/Redis Test: Context7 ($0.052) vs Custom MCP ($0.040)

Both tools generated fully functional code that implemented all requirements, but the Custom MCP server did it at consistently lower costs.

Why This Matters

If you're building AI-powered coding tools or using them extensively in your workflow, these cost savings add up fast.

For teams making thousands of API calls daily, you could be saving hundreds or thousands of dollars monthly.

What's Next

I encourage you to try the MCP server yourself and share your feedback. Currently it supports the latest versions of Expo, FastAPI, and NextJS:

{ "documentation": { "url": "https://doc-mcp.fly.dev/mcp/" } }

If there's enough interest, I'll add more libraries.

Would love to hear your thoughts and questions about the approach!