<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: maxwellg</title><link>https://news.ycombinator.com/user?id=maxwellg</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 10 Sep 2026 04:20:07 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=maxwellg" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by maxwellg in "Growing proof that autonomous cars save lives"]]></title><description><![CDATA[
<p>We can have both. The resources aren't coming from the same bucket. Public transportation must be built by the local government, and is subject to that local government's ability to execute. In contrast, Self driving cars are largely siphoning resources from for-profit companies.<p>I live in the west side of San Francisco, and we may get a subway station by 2050 if we're exceptionally lucky. I'd rather have self-driving cars this decade, please.</p>
]]></description><pubDate>Wed, 09 Sep 2026 21:29:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=49634654</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=49634654</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49634654</guid></item><item><title><![CDATA[New comment by maxwellg in "New MCP Roadmap"]]></title><description><![CDATA[
<p>It is viable. Think of workload identity federation as the mechanism for the client to get an bearer token initially, and DPoP as the mechanism for the client to present the access token to a resource server. Each DPoP proof is entirely self-contained, so resource servers don't need to manage any additional state. The only new state is the (usually ephemeral) private key held by the client:<p>1. Client generates a private/public keypair and uses it to generate DPoP Proofs - 
JWTs containing the entire public key embedded as a JWK within<p>2. Client presents credentials (WIF, client creds, auth code, etc.) to the Authorization Server along with a DPoP Proof<p>3. Authorization Server validates DPoP Proof and adds a claim to the access token containing the thumbprint - the SHA-256 hash - of the public JWK.<p>4. Resource Servers will now see the thumbprint claim and now know the access token needs to be presented with a fresh DPoP proof.<p>5. Clients generate fresh DPoP proofs and send them along with the access token<p>There are lots of additional details around nonces, timestamps, per-request binding, etc. but DPoP can be rolled out to any HTTP system that speaks Bearer token already.</p>
]]></description><pubDate>Sat, 22 Aug 2026 15:51:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=49400946</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=49400946</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49400946</guid></item><item><title><![CDATA[New comment by maxwellg in "What ORMs have taught me: just learn SQL (2014)"]]></title><description><![CDATA[
<p>> There are lighter weight options that do basic stuff like transaction management and binding result sets to object properties that are much less of a PITA than ORMs.<p>Query builders like these are my personal favorite from a productivity perspective! The point of a query builder is to dynamically build SQL statements that have many subtle variations (do we want to filter by EmailID or PhoneID here? What about a subquery? Did the caller want all results, or just results where $field=X?). They're basically one level above string templating for SQL generation, and often have niceties around ser/de and transaction management as you mentioned.<p>Because they are primarily about query generation, it feels _very_ natural to pop off the hood and write raw queries directly when necessary. You can usually use the transaction management and ser/de parts with raw queries, too.<p>My personal favorite in this field is knex.js.</p>
]]></description><pubDate>Sat, 04 Jul 2026 16:51:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=48786840</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=48786840</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48786840</guid></item><item><title><![CDATA[New comment by maxwellg in "Claude Code is steganographically marking requests"]]></title><description><![CDATA[
<p>> If the client wants to detect custom API gateways, it can say so plainly. It can send an explicit telemetry field with documentation. It can make the policy visible. It can put the behavior in release notes.<p>This seems like a very naive response. If clients send explicit telemetry fields to the gateway, a malicious gateway can trivially strip or modify the field to conform to what normal traffic looks like. The steganography cat-and-mouse game is valuable because it is much harder for a gateway to continuously reverse engineer all the fingerprinting mechanisms used. Sure, some malicious gateways will be able to stay on top of things, but not all - and not always.</p>
]]></description><pubDate>Tue, 30 Jun 2026 18:52:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48737522</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=48737522</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48737522</guid></item><item><title><![CDATA[New comment by maxwellg in "Zero-Touch OAuth for MCP"]]></title><description><![CDATA[
<p>Huge congrats to the folks behind this at Okta, A\, Microsoft, Figma, Linear, etc...<p>For the MCP nay-sayers - don't worry there's something here for you too :)<p>This is powered by a new token format called an ID-JAG - <a href="https://datatracker.ietf.org/doc/draft-ietf-oauth-identity-assertion-authz-grant/" rel="nofollow">https://datatracker.ietf.org/doc/draft-ietf-oauth-identity-a...</a> - and isn't MCP specific at all. ID-JAGs can be used for safe and secure data sharing anywhere where data is shared between applications that use the same SSO provider.</p>
]]></description><pubDate>Thu, 18 Jun 2026 23:49:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=48593149</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=48593149</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48593149</guid></item><item><title><![CDATA[New comment by maxwellg in "Zero-Touch OAuth for MCP"]]></title><description><![CDATA[
<p>In regular OAuth, end users consent to share their data with applications individually. This makes sense for consumer usecases, where the end users own their data. But it doesn't make sense for many business usecases, where the business is the entity that should control data sharing and access, not the end user. As an employee at Acme, I shouldn't decide to link my Acme Google Drive data to Claude or ChatGPT, that should be the decision of my IT Department.<p>Enterprise-Managed OAuth, or Cross App Access (XAA), brings this IT-Admin centrally controlled sharing model into the OAuth framework so it works with the existing ecosystem.<p>There's also a great UX benefit from moving data sharing consent management from employees to IT Admins - it means that employees don't need to sit through a bunch of OAuth flows to link their accounts together. Their IT Admin has already set up all the sharing controls. Everything plugs in together and should Just Work from day one. Think joining a new company on the first day and your Slack is already linked to your Zoom, your Drive, your Calendar, etc...</p>
]]></description><pubDate>Thu, 18 Jun 2026 23:41:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48593091</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=48593091</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48593091</guid></item><item><title><![CDATA[New comment by maxwellg in "Ask HN: What was your "oh shit" moment with GenAI?"]]></title><description><![CDATA[
<p>Pre-GenAI I wrote a new interview question for a role on our team. As far as I know, the question was never made public. The interview required implementing a pretty basic CSS-in-JS utility in vanilla javascript. We instructed the candidate read the MDN documentation for the CSSStyleSheet interface, and then gave them a public API to implement. Passing implementations usually consisted of a ~10 line for loop, and was really just a test of whether a developer pick up and work with new libraries on the fly. Still, the interview probably had a 30% pass rate.<p>On a lark, I asked ChatGPT to complete the interview question in late 2022. I would have hired ChatGPT back then based on its first response! It was easily in the 90th percentile of responses I have seen.</p>
]]></description><pubDate>Fri, 05 Jun 2026 20:40:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=48417939</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=48417939</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48417939</guid></item><item><title><![CDATA[New comment by maxwellg in "ChatGPT won't let you type until Cloudflare reads your React state"]]></title><description><![CDATA[
<p>Wouldn't a browser that doesn't execute JS also not execute the browser fingerprinting code in the first place?</p>
]]></description><pubDate>Mon, 30 Mar 2026 01:19:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47569362</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=47569362</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47569362</guid></item><item><title><![CDATA[New comment by maxwellg in "Chrome DevTools MCP (2025)"]]></title><description><![CDATA[
<p>Is your agent harness dropping the entire MCP server tool description output directly into the context window? Is your agent harness always addig MCP servers to the context even when they are not being used?<p>MCP is a wire format protocol between clients and servers. What ends up inside the context window is the agent builder's decision.</p>
]]></description><pubDate>Mon, 16 Mar 2026 00:55:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47393833</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=47393833</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47393833</guid></item><item><title><![CDATA[New comment by maxwellg in "London's most controversial cyclist"]]></title><description><![CDATA[
<p>Mikey might have a profit incentive at play, but let's be abundantly clear - the drivers he is catching are frequently flagrantly breaking the law and endangering both themselves and the people around them. I have a very hard time feeling sympathy for those who are unable or unwilling to operate a car safely on public roads.</p>
]]></description><pubDate>Tue, 10 Feb 2026 19:09:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=46965192</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=46965192</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46965192</guid></item><item><title><![CDATA[New comment by maxwellg in "Donating the Model Context Protocol and establishing the Agentic AI Foundation"]]></title><description><![CDATA[
<p>> The only issue it solves is if you want to bring your own tools to an existing chatbot.<p>That's a phenomenally important problem to solve for Anthropic, OpenAI, Google, and anyone else who wants to build generalized chatbots or assistants for mass consumer adoption. As well as any existing company or brand that owns data assets and wants to participate as an MCP Server. It's a chatbot app store standard. That's a huge market.</p>
]]></description><pubDate>Tue, 09 Dec 2025 21:53:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=46211246</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=46211246</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46211246</guid></item><item><title><![CDATA[New comment by maxwellg in "Waymo robotaxis are now giving rides on freeways in LA, SF and Phoenix"]]></title><description><![CDATA[
<p>I've also had drivers do 50+ in residential areas, run red lights, play on their phones, cut off pedestrians in crosswalks, and once even park in a handicap spot at a gas station to buy cigs with me left in the back seat. If I was guaranteed a driver that could obey the traffic laws, I'd be happy to continue taking Ubers. That hasn't been the case.</p>
]]></description><pubDate>Wed, 12 Nov 2025 18:21:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=45903759</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=45903759</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45903759</guid></item><item><title><![CDATA[New comment by maxwellg in "MCP-Scanner – Scan MCP Servers for vulnerabilities"]]></title><description><![CDATA[
<p>The initial remote MCP specification was pretty painful, but the June spec and the upcoming November spec are much more workable - MCP auth is (mostly) just OAuth now. MCP Clients are OAuth clients and can be granted access tokens and managed just like any other 3rd party app integration.<p>I'd love to hear more about the specific issues you're running into with the new version of the spec. (disclaimer - I work at an auth company! email in bio if you wanna chat)</p>
]]></description><pubDate>Mon, 27 Oct 2025 20:45:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=45726067</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=45726067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45726067</guid></item><item><title><![CDATA[Show HN: ChatGPT Tamagochi Pet Using Apps SDK]]></title><description><![CDATA[
<p>Article URL: <a href="https://chatagotchi.app/">https://chatagotchi.app/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=45543906">https://news.ycombinator.com/item?id=45543906</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 10 Oct 2025 21:19:41 +0000</pubDate><link>https://chatagotchi.app/</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=45543906</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45543906</guid></item><item><title><![CDATA[New comment by maxwellg in "Gem.coop"]]></title><description><![CDATA[
<p>Ironic that DHH is politically active enough that it affects his day to day activities and public perception of his company - kind of the exact opposite of his own policy he expects his employees to abide by.</p>
]]></description><pubDate>Mon, 06 Oct 2025 17:33:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=45493827</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=45493827</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45493827</guid></item><item><title><![CDATA[New comment by maxwellg in "Selling Lemons"]]></title><description><![CDATA[
<p>I’ve bought several of the WAOAW sleep masks as well. They’re great for the price point - I have a nasty habit of forgetting them in hotel beds though. I tend to go through one every few years or so. My wife enjoys hers as well.<p>Has anyone bought the third brand to round out the discussion?</p>
]]></description><pubDate>Tue, 30 Sep 2025 17:56:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=45428825</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=45428825</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45428825</guid></item><item><title><![CDATA[New comment by maxwellg in "Tell HN: Phishing campaign claiming to be GitHub Developer Fund"]]></title><description><![CDATA[
<p>The innocuous <a href="https://grants.github.com/apply" rel="nofollow">https://grants.github.com/apply</a> URL goes to a completely different site. Sneaky sneaky.</p>
]]></description><pubDate>Sat, 20 Sep 2025 00:44:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=45308612</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=45308612</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45308612</guid></item><item><title><![CDATA[New comment by maxwellg in "Our data shows San Francisco tech workers are working Saturdays"]]></title><description><![CDATA[
<p>I should caveat this by saying this is certainly not 9/9/6, yeesh. Weekdays are fuzzy but never 12 hour days. Do you count going to a meetup after hours as work? A dinner with a prospect? Early coffee with a coworker? Saturdays or Sundays are maybe two or three hours at the most.</p>
]]></description><pubDate>Mon, 08 Sep 2025 17:28:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=45171132</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=45171132</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45171132</guid></item><item><title><![CDATA[New comment by maxwellg in "Our data shows San Francisco tech workers are working Saturdays"]]></title><description><![CDATA[
<p>Of course we are! This year has been the most exciting (and fun!) of my career in the Bay. There is so much to do and so much going on. Things that were impossible a year ago suddenly feel imminent. Nobody is forcing (or really even asking) me to work on the weekends but if I have an interesting idea bouncing around in my brain I'm not going to wait to Monday to play around with it.</p>
]]></description><pubDate>Mon, 08 Sep 2025 17:22:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=45171029</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=45171029</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45171029</guid></item><item><title><![CDATA[New comment by maxwellg in "Web Bot Auth"]]></title><description><![CDATA[
<p>Cloudflare is only the first to market with a solution. If this proposal catches on every WAF vendor under the sun will have it implemented before the next sales cycle. Enforcement of this standard will be commoditized down to nothing.</p>
]]></description><pubDate>Thu, 28 Aug 2025 22:07:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=45057608</link><dc:creator>maxwellg</dc:creator><comments>https://news.ycombinator.com/item?id=45057608</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45057608</guid></item></channel></rss>