<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: a_cul</title><link>https://news.ycombinator.com/user?id=a_cul</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Mon, 29 Jun 2026 22:38:05 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=a_cul" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by a_cul in "We found a bug in the hyper HTTP library"]]></title><description><![CDATA[
<p>You're missing how rust works. The function is explicitly allowed to fail, which is why it returns a Result<(), Error>. They're using the function calls within for their side effects. The ? at the end of each line signals that the function will short-circuit return with an error if the function call fails, and only if it is successful it returns the actual value: they just don't care about this value, hence the let _ =. Basically, they are doing the equivalent of:<p><pre><code>  let _, err = function_call();
  if err {
    return err
  }
  ...</code></pre></p>
]]></description><pubDate>Mon, 29 Jun 2026 09:24:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=48716861</link><dc:creator>a_cul</dc:creator><comments>https://news.ycombinator.com/item?id=48716861</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48716861</guid></item><item><title><![CDATA[New comment by a_cul in "How to succeed in MrBeast production (Leaked PDF)"]]></title><description><![CDATA[
<p>Something to note here is that most (if not all) of the "medical data" acquired by Axis experiments is useless: a lot of it is on the order of "if we make someone really cold they die". The methodology was, unsurprisingly, generally biased, non-reproducible, and often cruel for the sake of it, rather than unethical out of necessity.<p>IMO there's a nice parallel between useless evidence from bad experiments, and useless business practices from unethical companies. If you want to take the lessons but leave the bad stuff, often you'll find there's nothing left.</p>
]]></description><pubDate>Mon, 16 Sep 2024 08:43:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=41554033</link><dc:creator>a_cul</dc:creator><comments>https://news.ycombinator.com/item?id=41554033</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41554033</guid></item></channel></rss>