<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: m11a</title><link>https://news.ycombinator.com/user?id=m11a</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 07 Apr 2026 07:49:27 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=m11a" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by m11a in "Welcome to FastMCP"]]></title><description><![CDATA[
<p>Cloudflare's Code Mode is conceptually the same as Anthropic's Code Mode (<a href="https://www.anthropic.com/engineering/code-execution-with-mcp" rel="nofollow">https://www.anthropic.com/engineering/code-execution-with-mc...</a>), or the various open source implementations that predate and postdate those blog posts.<p>tbh, that companies tried to make something proprietary of this concept is probably why its adoption has been weak and why we have "MCP vs CLI/Skills/etc" debates in the first place. In contrast, CLI tools only require a general a bash shell (potentially in a sandbox environment), which is very standardised.</p>
]]></description><pubDate>Wed, 25 Mar 2026 04:08:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47513120</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=47513120</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47513120</guid></item><item><title><![CDATA[New comment by m11a in "Welcome to FastMCP"]]></title><description><![CDATA[
<p>If I recall correctly, the ‘official’ Python one is a fork of FastMCP v1 (which then removed the attribution, arguably in violation of the original software’s license)</p>
]]></description><pubDate>Tue, 24 Mar 2026 20:37:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=47508837</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=47508837</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47508837</guid></item><item><title><![CDATA[New comment by m11a in "Launch HN: Terminal Use (YC W26) – Vercel for filesystem-based agents"]]></title><description><![CDATA[
<p>K8s gives you orchestration of Docker containers. I don’t think it handles the container boundary any more than Docker does.<p>I don’t think it should be assumed to give network isolation, unless you’re also using extensions and something like Cilium for that purpose. I don’t think it’s the right primitive for agent sandboxes, or other kinds of agent infra.<p>(Obviously, you could still run a custom runtime inside k8s pods, or something like GCP’s k8s gVisor magic.)</p>
]]></description><pubDate>Mon, 09 Mar 2026 20:11:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=47314785</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=47314785</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47314785</guid></item><item><title><![CDATA[New comment by m11a in "Anthropic officially bans using subscription auth for third party use"]]></title><description><![CDATA[
<p>Don't think that's a valid comparison.<p>Apple can do those things because they control the hardware device, which has physical distribution, and they lock down the ecosystem. There is no third party app store, and you can't get the Photos app to save to Google Drive.<p>With Claude Code, just export an env variable or use a MITM proxy + some middleware to forward requests to OpenAI instead. It's impossible to have lock in. Also, coding agent CLIs are a commodity.</p>
]]></description><pubDate>Fri, 20 Feb 2026 04:00:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=47083536</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=47083536</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47083536</guid></item><item><title><![CDATA[New comment by m11a in "I’m joining OpenAI"]]></title><description><![CDATA[
<p>> seems to be on it’s way out<p>Change is fraught with chaos. I don't think exuberant trends are indicators of whether we'll still care about secure and high quality software in the long term. My bet is that we will.</p>
]]></description><pubDate>Sun, 15 Feb 2026 23:57:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47029125</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=47029125</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47029125</guid></item><item><title><![CDATA[New comment by m11a in "Show HN: OpenWorkers – Self-hosted Cloudflare workers in Rust"]]></title><description><![CDATA[
<p>I agree, and as much as I think AI helps productivity, for a high security solution,<p>> Recently, with Claude's help, I rewrote everything on top of rusty_v8 directly.<p>worries me</p>
]]></description><pubDate>Thu, 01 Jan 2026 19:03:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=46456966</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=46456966</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46456966</guid></item><item><title><![CDATA[New comment by m11a in "Show HN: OpenWorkers – Self-hosted Cloudflare workers in Rust"]]></title><description><![CDATA[
<p>Is WASM’s story for side effects solved yet? eg network calls seems too complicated (<a href="https://github.com/vasilev/HTTP-request-from-inside-WASM" rel="nofollow">https://github.com/vasilev/HTTP-request-from-inside-WASM</a> etc)</p>
]]></description><pubDate>Thu, 01 Jan 2026 19:01:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=46456949</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=46456949</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46456949</guid></item><item><title><![CDATA[New comment by m11a in "Show HN: OpenWorkers – Self-hosted Cloudflare workers in Rust"]]></title><description><![CDATA[
<p>Node in Docker doesn’t have full isolation and ‘sandbox’ escapes are possible. V8 is comparatively quite hardened</p>
]]></description><pubDate>Thu, 01 Jan 2026 18:59:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=46456920</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=46456920</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46456920</guid></item><item><title><![CDATA[New comment by m11a in "Show HN: Use Claude Code to Query 600 GB Indexes over Hacker News, ArXiv, etc."]]></title><description><![CDATA[
<p>The quick setup is cool! I’ve not seen this onboarding flow for other tools, and I quite like its simplicity.</p>
]]></description><pubDate>Wed, 31 Dec 2025 11:32:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=46443299</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=46443299</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46443299</guid></item><item><title><![CDATA[New comment by m11a in "Cloudflare Global Network experiencing issues"]]></title><description><![CDATA[
<p>So ... any bets the cause isn't DNS?</p>
]]></description><pubDate>Tue, 18 Nov 2025 12:02:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=45964205</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=45964205</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45964205</guid></item><item><title><![CDATA[New comment by m11a in "OpenAI ChatKit"]]></title><description><![CDATA[
<p>It might meaningfully change the business model of LLM businesses. Becomes seemingly much harder to universally charge $30/mo subscriptions when the user is bringing their own API key.</p>
]]></description><pubDate>Tue, 07 Oct 2025 09:26:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=45501063</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=45501063</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45501063</guid></item><item><title><![CDATA[New comment by m11a in "Offline card payments should be possible no later than 1 July 2026"]]></title><description><![CDATA[
<p>Right. IIRC, the acquiring bank would send an authorisation advice to the issuer when it comes back online. An auth advice is like notice that a payment happened, the issuer doesn’t really get a say in rejecting it (as it does for an authorisation). For the most part, anyway.<p>If that transaction brings the customer into a negative balance, it’d be between the bank and customer to figure that out. Especially if the customer has no overdraft facility and isn’t supposed to be able to go negative, and isn’t able to easily recover the payment, or the customer is considered vulnerable, then the bank will often just swallow the loss.</p>
]]></description><pubDate>Sat, 04 Oct 2025 21:24:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=45476840</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=45476840</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45476840</guid></item><item><title><![CDATA[New comment by m11a in "OpenAI's H1 2025: $4.3B in income, $13.5B in loss"]]></title><description><![CDATA[
<p>I’d agree. The biggest exception I can think of is X, which post-Musk has plans to reduce/remove ads. Though I don’t know how much this tanked their ad revenue and whether it was worth it.</p>
]]></description><pubDate>Fri, 03 Oct 2025 01:26:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=45457724</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=45457724</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45457724</guid></item><item><title><![CDATA[New comment by m11a in "Pre-record your demos"]]></title><description><![CDATA[
<p>I think the problem is, so many demos are cooked these days, that it’s so much more trustworthy to see it work live.</p>
]]></description><pubDate>Thu, 02 Oct 2025 23:28:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=45456806</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=45456806</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45456806</guid></item><item><title><![CDATA[New comment by m11a in "Claude Code 2.0"]]></title><description><![CDATA[
<p>Codex got ported to Rust</p>
]]></description><pubDate>Tue, 30 Sep 2025 06:49:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=45422648</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=45422648</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45422648</guid></item><item><title><![CDATA[New comment by m11a in "Trying to get error backtraces in Rust libraries right"]]></title><description><![CDATA[
<p>For Rust, there are a few blogs that lean more on fundamentals and language design (like <a href="https://without.boats/blog" rel="nofollow">https://without.boats/blog</a>, <a href="https://smallcultfollowing.com/babysteps" rel="nofollow">https://smallcultfollowing.com/babysteps</a>).<p>For misc Rust engineering, like the OP, I agree it’s quite scattered. I personally like to save good ones in my Feedbin as I encounter them</p>
]]></description><pubDate>Sat, 30 Aug 2025 08:47:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=45073040</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=45073040</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45073040</guid></item><item><title><![CDATA[New comment by m11a in "Trying to get error backtraces in Rust libraries right"]]></title><description><![CDATA[
<p>Think you need a healthy mix?<p>eg: if you want distributed systems, esp Java-style, <a href="https://www.martinfowler.com" rel="nofollow">https://www.martinfowler.com</a> is a pretty handy reference. (similar for other areas of SWE).<p>It’s nice to have a single resource that documents a bunch of non-obvious but still-generally-accepted engineering practices relevant to a domain. It’s of course an opinion, but is reasonably uncontroversial. Or at least, you won’t go too wrong while you develop your own taste in said domain.</p>
]]></description><pubDate>Sat, 30 Aug 2025 08:42:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=45073011</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=45073011</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45073011</guid></item><item><title><![CDATA[New comment by m11a in "Code review can be better"]]></title><description><![CDATA[
<p>Graphite seems cool, it’s just unfortunately quite expensive and sometimes hard to convince procurement/etc to invest in when it has a noticeable cost involved.<p>So I’m really hoping something like Graphite becomes open-source, or integrated into GitHub.</p>
]]></description><pubDate>Thu, 21 Aug 2025 10:04:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=44970934</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=44970934</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44970934</guid></item><item><title><![CDATA[New comment by m11a in "How I use Tailscale"]]></title><description><![CDATA[
<p>I don't know enough about networking as I should, so to plug for my gap in knowledge, I generally prefer to use more comprehensible (to me) forms of security. And a feature like this:<p>> Speaking of SSH, Tailscale has special support for it whereby it handles any incoming connection to port 22 from the Tailscale network, and deals with authentication itself. No public keys or passwords: if you’re logged into Tailscale you can be logged into the machine.<p>kinda worries me (given also IP spoofing is possible?), compared to SSH keys whose mechanism is more obvious and thus easier to trust.<p>I definitely like the idea of Tailscale as an extra layer of protection, but I'm not sure I'd loosen existing protections while using it, whereas many Tailscale articles often present it as a panacea for internal-network-over-the-internet security. Are my concerns misplaced?</p>
]]></description><pubDate>Sun, 10 Aug 2025 10:22:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=44854176</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=44854176</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44854176</guid></item><item><title><![CDATA[New comment by m11a in "I want everything local – Building my offline AI workspace"]]></title><description><![CDATA[
<p>Agree, for now.<p>But the foundation models will eventually hit a limit, and the open-source ecosystem, which trails by around a year or two, will catch up.</p>
]]></description><pubDate>Fri, 08 Aug 2025 22:02:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=44842145</link><dc:creator>m11a</dc:creator><comments>https://news.ycombinator.com/item?id=44842145</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44842145</guid></item></channel></rss>