frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: I made a daily language guessing game

https://raymondtana.github.io/projects/pages/Langr.html
1•raymondtana•2m ago•0 comments

Ignore the pessimists – we are living through a literary golden age

https://www.commonreader.co.uk/p/ignore-the-pessimists-we-are-living
1•paulpauper•2m ago•0 comments

Do AIs think differently in different languages?

https://www.theargumentmag.com/p/do-ais-think-differently-in-different
1•paulpauper•3m ago•0 comments

A Richly Deserved Prize

https://fusionaier.org/2025/a-richly-deserved-prize/
1•paulpauper•3m ago•0 comments

From Concept to Reality: Developing MotorManage, a motorcycle maintenance app

https://motormanage.app/blog/motormanage-launch-google-play-store
1•l0rrenzz00•4m ago•0 comments

HomeFront – An AI CRM that runs your home service business

1•Homefront•5m ago•0 comments

Misophonia: Negative reactions to certain sounds linked to mental inflexibility

https://theconversation.com/misophonia-having-strong-negative-reactions-to-certain-sounds-is-link...
2•bookofjoe•7m ago•0 comments

Reddit looks like it's 2025

https://old.reddit.com/
1•sh_tomer•8m ago•0 comments

Doyensec – Info Leak in Squid Proxy

https://github.com/squid-cache/squid/security/advisories/GHSA-c8cc-phh7-xmxr
2•tony-ds•10m ago•0 comments

Carbon credits are failing to help with climate change – here's why

https://www.nature.com/articles/d41586-025-03313-z
2•bikenaga•13m ago•0 comments

I built a link shortener with security features

https://redr.io/
1•MojaveTech•14m ago•1 comments

Instructions help you remember better than emotions or a good night's sleep

https://medicalxpress.com/news/2025-10-emotions-good-night-scientists.html
2•PaulHoule•16m ago•0 comments

Weird, but Haskell Feels Easy

https://xlii.space/eng/haskell-feels-easy/
1•xlii•18m ago•0 comments

ChatGPT's mobile app is seeing slowing download growth and daily use

https://techcrunch.com/2025/10/17/chatgpts-mobile-app-is-seeing-slowing-download-growth-and-daily...
1•phyzix5761•18m ago•0 comments

The state of the Rust dependency ecosystem

https://00f.net/2025/10/17/state-of-the-rust-ecosystem/
1•jedisct1•19m ago•0 comments

Age of Distractions

https://blog.rohanrd.xyz/posts/distractions/
1•quaintdev•20m ago•0 comments

Mutable atomic deletes with Parquet backed columnar tables on S3

https://www.shayon.dev/post/2025/285/mutable-atomic-deletes-with-parquet-backed-columnar-tables-o...
1•shayonj•21m ago•0 comments

State-of-the-Art Performance on AMD MI355 – In 14 Days

https://www.modular.com/blog/achieving-state-of-the-art-performance-on-amd-mi355----in-just-14-days
1•jedharris•23m ago•0 comments

Hitchdeck: Pitch Your Single Friend

https://www.blogto.com/events/hitchdeck-pitch-your-single-friend-toronto/
1•colinprince•25m ago•0 comments

Boris Johnson confesses: He's fallen for ChatGPT

https://www.theregister.com/2025/10/17/boris_johnson_loves_chatgpt/
3•rntn•25m ago•1 comments

Walmart deploying millions of new ambient IoT sensors by end of 2026

https://www.cnbc.com/2025/10/15/walmart-deploying-millions-of-internet-iot-sensors-across-us.html
1•nozzlegear•26m ago•0 comments

Observable: The end-to-end solution for building and hosting better data apps

https://observablehq.com/documentation/cells/observable-javascript
1•doener•29m ago•0 comments

Quarto: An open-source scientific and technical publishing system

https://quarto.org/
1•doener•30m ago•0 comments

Show HN: Stop Chasing Success: Write for Wonder Instead

https://blog.mattbass.me/p/stop-chasing-success-write-for-wonder
2•babblingfish•30m ago•1 comments

The Bottleneck Cascade

https://www.davidlpeterson.com/the-bottleneck-cascade/
1•makeavish•31m ago•1 comments

Identity Is Fundamental

https://djcodes.substack.com/p/identity-is-fundamental
2•drumdance•34m ago•1 comments

Ten rules for a better conference name badge

https://badge.reviews/10-rules-for-a-better-conference-name-badge/
1•fanf2•34m ago•0 comments

OpenAI Needs $400B In The Next 12 Months

https://www.wheresyoured.at/openai400bn/
40•chilipepperhott•35m ago•15 comments

Claude Skills are awesome, maybe a bigger deal than MCP

https://simonwillison.net/2025/Oct/16/claude-skills/
30•weinzierl•36m ago•9 comments

The first fully recyclable, sub-micrometer printed electronics

https://pratt.duke.edu/news/submicrometer-transistor-printing/
1•giuliomagnifico•36m ago•0 comments
Open in hackernews

Show HN: We packaged an MCP server inside Chromium

https://github.com/browseros-ai/BrowserOS/blob/main/docs/browseros-mcp/how-to-guide.mdx
6•felarof•1h ago
Hey HN, we just shipped a browser with an inbuilt MCP server!

We're a YC startup (S24) building BrowserOS — an open‑source Chromium fork. We're a privacy‑first alternative to the new wave of AI browsers like Dia, Perplexity Comet. Since launching ~3 months ago, the #1 request has been to expose our browser as an MCP server.

-- Google beat us to launch with chrome-devtools-mcp (solid product btw), which lets you build/debug web apps by connecting Chrome to coding assistants. But we wanted to take this a step further: we packaged the MCP server directly into our browser binary. That gives three advantages:

1. MCP server setup is super simple — no npx install, no starting Chrome with CDP flags, you just download the BrowserOS binary.

2. with our browser's inbuilt MCP server, AI agents can interact using your logged‑in sessions (unlike chrome-devtools-mcp which starts a fresh headless instance each time)

3. our MCP server also exposes new APIs from Chromium's C++ core to click, type, and draw bounding boxes on a webpage. Our APIs are also not CDP-based (Chrome Debug Protocol) and have robust anti-bot detection.

-- Few example use cases for BrowserOS-mcp are:

a) *Frontend development with Claude Code*: instead of screenshot‑pasting, claude-code gets WYSIWYG access. It can write code, take a screenshot, check console logs, and fix issues in one agentic sweep. Since it has your sessions, it can do QA stuff like "test the auth flow with my Google Sign‑In." Here's a video of claude-code using browserOS to improve the css styling with back-and-forth checking: https://youtu.be/vcSxzIIkg_0

b) *Use as an agentic browser:* You can install BrowserOS-mcp in claude-code or Claude Desktop and do things like form-filling, extraction, multi-step agentic tasks, etc. It honestly works better than Perplexity Comet! Here's a video of claude-code opening top 5 hacker news posts and summarizing: https://youtu.be/rPFx_Btajj0

-- *How we packaged MCP server inside Chromium binary*: We package the server as a Bun binary and expose MCP tools over HTTP instead of stdio (to support multiple sessions). And we have a BrowserOS controller installed as an extension at the application layer which the MCP server connects to over WebSocket to control the browser. Here's a rough architecture diagram: https://dub.sh/browseros-mcp-diag

-- *How to install and use it:* We put together a short guide here: https://git.new/browseros-mcp

Our vision is to reimagine the browser as an operating system for AI agents, and packaging an MCP server directly into it is a big unlock for that!

I'll be hanging around all day, would love to get your feedback and answer any questions!