frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Figma's dynamic stroke feature produced 2MB SVG files [video]

https://www.youtube.com/watch?v=Dzpmx4yBFyo
1•AndreasMoeller•2m ago•1 comments

Ryhtr

https://pastebin.com/uDHYCXu2
1•Bunny121212111•12m ago•0 comments

What Research Says About "AI Sycophancy"

https://www.techpolicy.press/what-research-says-about-ai-sycophancy/
1•jruohonen•12m ago•0 comments

Rapid Energy Transition by Paying Renewable Energy Up Front

https://zenodo.org/records/17288906
1•NiceWayToDoIT•14m ago•0 comments

Found an interest YC partner simulation game

https://www.ycarena.com/games/partnersim
1•liurenju•16m ago•1 comments

AI Defend Chapter 10 – Eclipse and External Anchors

https://zenodo.org/records/17383818
1•thevieart•18m ago•1 comments

Why formalize mathematics – more than catching errors

https://rkirov.github.io/posts/why_lean/
2•Bogdanp•20m ago•0 comments

How to NPM and avoid getting rekt

https://blog.theredguild.org/how-to-npm-and-avoid-getting-rekt/
1•kwar13•24m ago•0 comments

Chosing Friction

https://phirephoenix.com/blog/2025-10-11/friction
1•iSpiderman•25m ago•0 comments

Apple Accuses Epic Games of Wanting a 'Free Ride'

https://www.macrumors.com/2025/10/17/apple-epic-games-free-ride-australia/
2•olyellybelly•30m ago•1 comments

Amazon's Ring now works with video surveillance company Flock

https://www.theverge.com/news/801856/amazon-ring-partners-flock-video
1•olyellybelly•31m ago•0 comments

Show HN: Cmtly – turns staged Git diff into a polished commit message

https://github.com/tofa84/cmtly
1•tomfal•43m ago•0 comments

Benioff Apologizes for Saying Trump Should Send Troops to San Francisco

https://www.nytimes.com/2025/10/17/us/benioff-apologizes-san-francisco.html
2•pretext•46m ago•0 comments

Megaprojects figure into Chinese culture unlike in any other culture

https://twitter.com/yishan/status/1977273380374986952
3•Michelangelo11•49m ago•1 comments

My Most Popular Application

https://blog.6nok.org/my-most-popular-application/
2•frontsideair•51m ago•1 comments

Yang Chen-ning, Nobel Prize-winning physicist, passes away at 103

https://en.wikipedia.org/wiki/Yang_Chen-Ning
2•xnhbx•54m ago•0 comments

BBC Gaza documentary serious breach of rules

https://www.bbc.com/news/articles/c629j5m2n01o
20•nsoonhui•1h ago•2 comments

TXR Bytecode Optimization Case Study

https://www.nongnu.org/txr/txr-opt.html
2•Bogdanp•1h ago•0 comments

Real FinTech Example from My Consulting Career

https://lukasniessen.medium.com/this-is-a-detailed-breakdown-of-a-fintech-project-from-my-consult...
4•thunderbong•1h ago•0 comments

Watching 25,000 Dice Neatly Arrange Themselves [2017]

https://www.sciencealert.com/packing-density-shear-force-dice-inside-cylinder-physics
1•latchkey•1h ago•1 comments

Santos Is Released After Trump Commutes His Sentence

https://www.nytimes.com/2025/10/17/us/politics/trump-george-santos-sentence-commute.html
1•ivape•1h ago•0 comments

Baltasar Gracián

https://en.wikipedia.org/wiki/Baltasar_Graci%C3%A1n
1•benbreen•1h ago•0 comments

StageConnect: Behringer protocol is open source

https://github.com/OpenMixerProject/StageConnect
41•jdboyd•1h ago•6 comments

Multilingual Document Parsing via a 0.9B Vision-Language Model

https://huggingface.co/papers/2510.14528
1•meander_water•1h ago•0 comments

Physicist Chen-Ning Yang, Nobel laureate, dies at 103

https://www.chinadaily.com.cn/a/202510/18/WS68f3170ea310f735438b5bf2.html
1•nhatcher•1h ago•1 comments

Killing Charles Dickens (2023)

https://www.newyorker.com/magazine/2023/07/10/on-killing-charles-dickens
2•bryanrasmussen•1h ago•0 comments

Reap: One-Shot Pruning for Trillion-Parameter Mixture-of-Experts Models

https://www.cerebras.ai/blog/reap
3•todsacerdoti•1h ago•0 comments

Netflix RT Dist Graph: Ingesting and Processing Data Streams at Internet Scale

https://netflixtechblog.com/how-and-why-netflix-built-a-real-time-distributed-graph-part-1-ingest...
1•mfrw•1h ago•0 comments

Gateway Algorithms and Data Structures Taskforce 1986 [pdf]

https://www.ietf.org/proceedings/01.pdf
1•o4c•1h ago•0 comments

Average Database: the best free-est, open source data platform

https://averagedatabase.com
2•hunvreus•2h ago•0 comments
Open in hackernews

Show HN: FastApps – zero-boilerplate framework for building ChatGPT apps

https://www.fastapps.org
2•zachpark•2h ago
Building interactive widgets for ChatGPT turned out to be way more complex than I expected. Between the MCP protocol, widget registration, build setup, CSP policies, and resource serving — I kept writing the same boilerplate over and over just to get something basic working.

That’s why I built FastApps, an open-source framework that lets you build ChatGPT apps with only two files: a Python backend and a React frontend.

It removes all the glue code and focuses on developer experience:

- Auto-discovers and registers MCP widgets automatically

- Builds and bundles React UIs with zero config

- Manages CSP, metadata, and resource serving out of the box

- Type-safe data flow with Pydantic and React hooks

- Runs as an MCP server, fully compatible with ChatGPT and other MCP clients

If you’ve been experimenting with MCP or building ChatGPT tools, I’d love your feedback. It’s fully open source — and I’m looking for contributors who want to help shape this ecosystem together.

GitHub → https://github.com/DooiLabs/FastApps

Docs → https://www.fastapps.org/

Comments

rosaaie•2h ago
looks promising. So is this basically just a codegen tool or scaffolding to save some boilerplate or is it an actual runtime framework that keeps running alongside the chatgpt?
zachpark•2h ago
It’s an actual runtime, not just scaffolding. FastApps runs as an MCP server and it handles widget registration, protocol messages, static assets, and the data flow between backend and frontend.

When you run fastapps create, you get a running service that ChatGPT talks to over MCP, not just a code template. You can extend or deploy it like any other web app.

rosaaie•2h ago
Makes sense. How opinionated is it about the frontend? I saw React in the docs or can I use something else?
zachpark•2h ago
Right now it's React-first because the Apps SDK UI layer is React-based. But the frontend is bundled automatically, so if OpenAI expands support for other frameworks later, swapping it out would be straightforward.