frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Problem with Open Hardware [video]

https://www.youtube.com/watch?v=YLn4vnfchaE
1•Udo_Schmitz•2m ago•0 comments

Shares in Japanese toilet maker Toto soar on AI-related pivot

https://www.ft.com/content/38969e97-92e4-4066-a554-27274d32d545
1•JumpCrisscross•2m ago•0 comments

Names Are the First Thing You Read and the Last Thing You Remember

https://fagnerbrack.com/names-are-the-first-thing-you-read-and-the-last-thing-you-remember-b2b3f0...
1•fagnerbrack•3m ago•0 comments

Dependencies Are Replacing Knowledge

https://www.youtube.com/watch?v=99RgPS3Vu5M
1•birdculture•3m ago•0 comments

Becoming Unblockable

https://www.seangoedecke.com/unblockable/
1•fagnerbrack•4m ago•0 comments

Migrating 6000 React tests using AI Agents and ASTs

https://eliocapella.com/blog/ai-library-migration-guide/
1•fagnerbrack•4m ago•0 comments

Three full-stack data platforms in a weekend: Fabric and Azure AI Foundry

https://cubiczan.substack.com/p/how-we-shipped-3-full-stack-data
1•cubiczan•7m ago•0 comments

If society had a scorecard, what would be on it?

1•baptou12•9m ago•1 comments

Edible Plants Wiki

https://edibleplants.wikioasis.org/wiki/Main_Page
1•altilunium•17m ago•0 comments

Mnemory – Persistent memory for AI agents

https://github.com/fpytloun/mnemory
1•genunix64•21m ago•1 comments

Show HN: WebAssembly Interpreter in a Header

https://github.com/lifthrasiir/wah
1•lifthrasiir•21m ago•0 comments

Codeonix: Python task automation for your desktop – with AI, 14 triggers

https://codeonix.app
2•hassananayi•21m ago•1 comments

A month after being laid off, I wrote the story I needed to make sense of it

https://anushkakarmakar.substack.com/p/1-why-did-i-choose-to-run-that-marathon
1•thinkingkite•22m ago•0 comments

Why CFOs Need a Consensus Hardening Protocol for AI Decisions

https://cubiczan.substack.com/p/why-cfos-need-a-consensus-hardening
1•cubiczan•25m ago•0 comments

As a Ukrainian journalist, I've covered the US for 20 years. I find it shocking

https://www.theguardian.com/world/2026/apr/30/as-a-ukrainian-journalist-ive-covered-the-us-for-20...
1•YeGoblynQueenne•26m ago•0 comments

Graphene is on track to deliver on its promises (2019)

https://www.nature.com/articles/s41565-019-0557-0
1•simonebrunozzi•27m ago•0 comments

Livecodes – A Code Playground That Just Works

https://github.com/live-codes/livecodes
1•modinfo•38m ago•0 comments

Fujian Tulou

https://en.wikipedia.org/wiki/Fujian_tulou
1•simonebrunozzi•39m ago•0 comments

KMRI: A chunk-based compression format for MRI-style 3D volumes

https://github.com/Kiamehr5/KMRI
1•kiamehr•41m ago•0 comments

Ripple – the elegant TypeScript UI framework

https://www.ripple-ts.com/
2•modinfo•43m ago•0 comments

SMS blaster rising in Switzerland (French)

https://www.rts.ch/info/suisse/2026/article/sms-blaster-l-arnaque-aux-fausses-amendes-se-repand-d...
2•kuon•44m ago•0 comments

Man tar why we use -f

1•modinfo•47m ago•0 comments

Getting Gooier

https://contraptions.venkateshrao.com/p/getting-gooier
1•jger15•47m ago•0 comments

The Lore of Sam Altman Is Being Tested Like Never Before

https://www.wsj.com/tech/ai/the-lore-of-sam-altman-is-being-tested-like-never-before-968227ea
1•JumpCrisscross•49m ago•0 comments

Wikipedia in the Terminal

https://github.com/ImpulseDoes/wiki
2•thximpulse•53m ago•1 comments

The Bureaucratic Escalator and how it operates

https://profserious.substack.com/p/the-bureaucratic-escalator
2•idw•58m ago•1 comments

Does APL Need a Type System? (2018) [video]

https://www.youtube.com/watch?v=z8MVKianh54
1•tosh•1h ago•0 comments

Text Files as a User Interface

https://ratfactor.com/cards/text-files-as-ui
1•dev_hugepages•1h ago•0 comments

Matt Mullenweg thinks WordPress is in decline. He may be right

https://werd.io/matt-mullenweg-thinks-wordpress-is-in-decline-he-may-be-right/
2•vinhnx•1h ago•1 comments

Valuation Spaces and Relativisation: The Lambda Calculus Example

https://practal.com/blog/valuation-spaces-and-relativisation/
1•auggierose•1h ago•0 comments
Open in hackernews

MCPages

https://github.com/NoahCzelusta/mcpages
1•swimninja247•1h ago

Comments

swimninja247•1h ago
I made mcpages.dev. It's been helpful for me and my agents, so I open sourced it in hopes that others may find it useful.

Simply give agents access to https://mcpages.dev/mcp (or whatever URL you self host at).

Then, your they may use MCP to create an MCPage using a DSL that looks something like:

``` import { H1, Stack, Text } from "mcpages";

export default ( <Stack gap="lg"> <H1>Hello world</H1> <Text>This is my first MCPage.</Text> </Stack> ); ```

You open a link like https://mcpages.dev/p/1234 and see a page that has this content, but is rendered nicely.

Beyond this basic example, there is support for more expressive layouts, charts, and more.

Here are some other things my agents do with MCPages: - Pull product analytics data hourly and update an MCPage that is shared with my nontechnical coworkers - Read my calendar, emails, and Slack to compile a daily briefing for me every morning - Write product specs and text me links to their MCPage

wonderwhyer•1h ago
how this compares to giving agents access to github gists?
swimninja247•1h ago
Not too different. Wanted this to be accessible for others not on github, but still using Claude / ChatGPT
immanuwell•1h ago
this is genuinely clever, instead of agents dumping walls of text into chat, they get a shareable, human-readable url, which is the missing ux layer most agentic workflows completely ignore