<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: ryangg</title><link>https://news.ycombinator.com/user?id=ryangg</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 23 Sep 2026 01:08:45 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=ryangg" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by ryangg in "Claude Opus 5.5"]]></title><description><![CDATA[
<p>Getting a 403 on that link. Mind checking it once?</p>
]]></description><pubDate>Tue, 22 Sep 2026 17:10:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=49804645</link><dc:creator>ryangg</dc:creator><comments>https://news.ycombinator.com/item?id=49804645</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49804645</guid></item><item><title><![CDATA[Sea Turtle Sex Crisis: Why 99% Are Now Female]]></title><description><![CDATA[
<p>Article URL: <a href="https://mazingamazingly.blogspot.com/2026/08/sea-turtle-sex-crisis-why-99-are-now.html">https://mazingamazingly.blogspot.com/2026/08/sea-turtle-sex-crisis-why-99-are-now.html</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49360384">https://news.ycombinator.com/item?id=49360384</a></p>
<p>Points: 9</p>
<p># Comments: 1</p>
]]></description><pubDate>Wed, 19 Aug 2026 12:03:35 +0000</pubDate><link>https://mazingamazingly.blogspot.com/2026/08/sea-turtle-sex-crisis-why-99-are-now.html</link><dc:creator>ryangg</dc:creator><comments>https://news.ycombinator.com/item?id=49360384</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49360384</guid></item><item><title><![CDATA[New comment by ryangg in "Will It Mythos?"]]></title><description><![CDATA[
<p>The leaderboard sorting is very misleading, gpt-5.5-pro only found 2 while mimo-v2.5-pro found 4.5 out of 9 cases.</p>
]]></description><pubDate>Tue, 23 Jun 2026 09:50:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48642603</link><dc:creator>ryangg</dc:creator><comments>https://news.ycombinator.com/item?id=48642603</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48642603</guid></item><item><title><![CDATA[Claude is about to begin its KYC verification process]]></title><description><![CDATA[
<p>Article URL: <a href="https://old.reddit.com/r/ClaudeAI/comments/1smr9vs/claude_is_about_to_begin_its_kyc_verification/">https://old.reddit.com/r/ClaudeAI/comments/1smr9vs/claude_is_about_to_begin_its_kyc_verification/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47795506">https://news.ycombinator.com/item?id=47795506</a></p>
<p>Points: 4</p>
<p># Comments: 2</p>
]]></description><pubDate>Thu, 16 Apr 2026 16:10:07 +0000</pubDate><link>https://old.reddit.com/r/ClaudeAI/comments/1smr9vs/claude_is_about_to_begin_its_kyc_verification/</link><dc:creator>ryangg</dc:creator><comments>https://news.ycombinator.com/item?id=47795506</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47795506</guid></item><item><title><![CDATA[New comment by ryangg in "Run GitHub Actions locally"]]></title><description><![CDATA[
<p>Just this week I tried giving this another chance to debug some weird CI failures for ruby tests. 
I’m on M-series macs so there is an inherent platform mismatch. That coupled with us using depot images as action runners. I was never able to get it running past the dry-run stage. 
There is just a lot of differences between CI runners and my local docker images. 
I even gave the image from catthehacker a try. Which is like >15GB. It still wouldn’t run. 
Finally gave up.</p>
]]></description><pubDate>Fri, 16 May 2025 18:10:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=44008304</link><dc:creator>ryangg</dc:creator><comments>https://news.ycombinator.com/item?id=44008304</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44008304</guid></item><item><title><![CDATA[Show HN: Build a Kafka broker from scratch, in any language]]></title><description><![CDATA[
<p>Hey everyone, Ryan here from CodeCrafters (<a href="https://codecrafters.io">https://codecrafters.io</a>).<p>I'm excited to share our latest challenge: Build your own Kafka.<p>In this challenge, you'll create a Kafka broker that can read Kafka log files and respond to requests using the Kafka wire protocol. We’ve broken the project down into 18 bite-sized stages, starting with simpler tasks like implementing the Kafka protocol and progressively getting more complex. You can check out the stage breakdown here: <a href="https://app.codecrafters.io/courses/kafka/overview">https://app.codecrafters.io/courses/kafka/overview</a>.<p>Like our other challenges, we'll continue adding extensions to this one to cover more Kafka features like transactions, replication, and more.<p>One of the toughest parts of building this challenge was reverse-engineering the Kafka protocol—it's notoriously under-documented, which our early testers also pointed out.<p>To make it easier to study Kafka's message formats, we built binspec.org, an interactive tool that lets you explore protocol formats byte by byte. Think of it like Wireshark’s analyzer, but designed for understanding protocols in detail. It visually breaks down message structures, showing each byte in context with helpful annotations. For instance, when examining a Kafka request, binspec highlights different fields—like message size or request headers—and explains their role in the protocol. Here's an example visualizer for a Kafka request: <a href="https://binspec.org/kafka-api-versions-request-v4" rel="nofollow">https://binspec.org/kafka-api-versions-request-v4</a><p>While working through this challenge, you'll get a deep understanding of how Kafka works under the hood, but you'll also build mastery in your language of choice. We currently support five languages—including Rust, Python, and Go—and like with our other challenges, we'll expand this based on demand.<p>We're keeping this challenge free in beta for a few weeks to gather feedback, so feel free to dive in and let us know what you think. You can start building here: <a href="https://app.codecrafters.io/courses/kafka/overview">https://app.codecrafters.io/courses/kafka/overview</a>. Grateful for all feedback!</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41742815">https://news.ycombinator.com/item?id=41742815</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 04 Oct 2024 16:08:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=41742815</link><dc:creator>ryangg</dc:creator><comments>https://news.ycombinator.com/item?id=41742815</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41742815</guid></item><item><title><![CDATA[New comment by ryangg in "Build your own BitTorrent"]]></title><description><![CDATA[
<p>I don't think that option is there anymore.<p>Started the build-your-own-git tutorial and there is a hard paywall after the 3rd stage.</p>
]]></description><pubDate>Thu, 19 Oct 2023 17:16:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=37945650</link><dc:creator>ryangg</dc:creator><comments>https://news.ycombinator.com/item?id=37945650</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37945650</guid></item></channel></rss>