<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: continuational</title><link>https://news.ycombinator.com/user?id=continuational</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 21 Jul 2026 20:40:32 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=continuational" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by continuational in "Mythologizing AI makes it more likely that we’ll fail to operate it well (2023)"]]></title><description><![CDATA[
<p>If an alien lands on Earth and learns English, would you deem it non-intelligent if you can tell it apart from a human in conversation?<p>I think we should consider slime mold intelligent, and realise that it's a spectrum. Path finding is AI. There are probably forms of intelligence we have yet to discover.</p>
]]></description><pubDate>Mon, 20 Jul 2026 16:48:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=48981383</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=48981383</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48981383</guid></item><item><title><![CDATA[New comment by continuational in "China’s open-weights AI strategy is winning"]]></title><description><![CDATA[
<p>Maybe.<p>School shootings happen every year in the US, yet guns aren't banned.<p>Besides, banning open models would put ordinary US businesses at a disadvantage compared to the rest of the world.</p>
]]></description><pubDate>Mon, 20 Jul 2026 15:43:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=48980450</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=48980450</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48980450</guid></item><item><title><![CDATA[New comment by continuational in "The EU is about to sell our most sensitive data to the US for visa-free travel"]]></title><description><![CDATA[
<p>The parent post is saying that the officer didn't show up for 20 years, with no burglaries in your neighborhood in between.</p>
]]></description><pubDate>Mon, 20 Jul 2026 15:13:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=48980010</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=48980010</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48980010</guid></item><item><title><![CDATA[New comment by continuational in "Ask HN: Do you thank your agents when they did a good job?"]]></title><description><![CDATA[
<p>I do, and frankly I enjoy my day more when I don't feel like I'm being a jerk, even towards a robot. But mostly as part of a follow up message.<p>I also think it signals that I was happy with that solution in the ongoing conversation.<p>On the other hand, I'm much more sloppy with my writing.<p>The token cost is irrelevant, tool calls and reasoning probably dominates.</p>
]]></description><pubDate>Fri, 26 Jun 2026 15:14:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=48687626</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=48687626</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48687626</guid></item><item><title><![CDATA[New comment by continuational in "The AI backlash is only getting started"]]></title><description><![CDATA[
<p>Well, what if it "just" increased white collar productivity by 1.5x, what would that be worth?</p>
]]></description><pubDate>Fri, 26 Jun 2026 14:46:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=48687275</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=48687275</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48687275</guid></item><item><title><![CDATA[New comment by continuational in "Functional programmers need to take a look at Zig"]]></title><description><![CDATA[
<p>Sure, but this is an example from the article, and pertains to sum types in general, not just Maybe.</p>
]]></description><pubDate>Thu, 30 Apr 2026 04:48:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=47958234</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=47958234</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47958234</guid></item><item><title><![CDATA[New comment by continuational in "Functional programmers need to take a look at Zig"]]></title><description><![CDATA[
<p>I don't think so, where's the extra information in the Zig example?<p>In Rust, which is arguably also a low level language, it looks like this:<p><pre><code>    enum Option<T> {
        None,
        Some(T),
    }</code></pre></p>
]]></description><pubDate>Thu, 30 Apr 2026 04:47:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47958226</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=47958226</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47958226</guid></item><item><title><![CDATA[New comment by continuational in "Functional programmers need to take a look at Zig"]]></title><description><![CDATA[
<p>Do you really prefer this:<p><pre><code>  fn Maybe(comptime T: type) type {
    return union(enum) {
        value: T,
        nothing,

        const Self = @This();

        pub fn just(the_val: T) Self   { return .{ .value = the_val }; }
        pub fn nothing() Self          { return .nothing; }

      }
    }
</code></pre>
Over this?<p><pre><code>    data Maybe a = Just a | Nothing</code></pre></p>
]]></description><pubDate>Thu, 30 Apr 2026 04:32:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=47958133</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=47958133</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47958133</guid></item><item><title><![CDATA[New comment by continuational in "Trinity Large Thinking"]]></title><description><![CDATA[
<p>What's open about OpenRouter?</p>
]]></description><pubDate>Thu, 02 Apr 2026 08:29:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=47611557</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=47611557</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47611557</guid></item><item><title><![CDATA[New comment by continuational in "Ask HN: What Are You Working On? (March 2026)"]]></title><description><![CDATA[
<p>I'm working on Firefly, a programming language for full stack webapps:<p><a href="https://www.firefly-lang.org/" rel="nofollow">https://www.firefly-lang.org/</a></p>
]]></description><pubDate>Mon, 09 Mar 2026 06:16:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=47305413</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=47305413</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47305413</guid></item><item><title><![CDATA[New comment by continuational in "Real engineering failures instead of success stories"]]></title><description><![CDATA[
<p>To find slop in this submission, you don't have to look any further than the very first picture.</p>
]]></description><pubDate>Sun, 01 Feb 2026 19:31:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=46848637</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=46848637</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46848637</guid></item><item><title><![CDATA[New comment by continuational in "Claude Shannon's randomness-guessing machine"]]></title><description><![CDATA[
<p>Got 50% in first try, the computer only made two guesses, one right and one wrong, and passed the rest.</p>
]]></description><pubDate>Sun, 18 Jan 2026 11:24:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=46666882</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=46666882</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46666882</guid></item><item><title><![CDATA[New comment by continuational in "Ruby website redesigned"]]></title><description><![CDATA[
<p>Not long ago I was looking through programming language sites to figure out how to best introduce the language I'm working on.<p>ruby-lang.com stood out with a text in a big font:<p>Ruby is...<p>Followed by a paragraph about what makes Ruby special. I think that was an exceptionally simple and natural way of introducing something as complex as a programming language.</p>
]]></description><pubDate>Sun, 21 Dec 2025 09:20:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=46343421</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=46343421</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46343421</guid></item><item><title><![CDATA[New comment by continuational in "Ask HN: What Are You Working On? (December 2025)"]]></title><description><![CDATA[
<p>A programming language for the web:
<a href="https://www.firefly-lang.org/" rel="nofollow">https://www.firefly-lang.org/</a></p>
]]></description><pubDate>Mon, 15 Dec 2025 06:06:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=46270979</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=46270979</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46270979</guid></item><item><title><![CDATA[New comment by continuational in "Where are you supposed to go if you don't care about growth?"]]></title><description><![CDATA[
<p>Sure, but one could imagine that there are people working at the supermarket who would also rather do personal stuff or go cycling. But there they are, serving you.</p>
]]></description><pubDate>Tue, 09 Dec 2025 12:54:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=46204429</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=46204429</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46204429</guid></item><item><title><![CDATA[New comment by continuational in "Comic Code Reviews"]]></title><description><![CDATA[
<p>I think this kind of slop has negative value. It's unclear how much of the information in the comic is hallucinated, and the malformed code "for i = i1+|>" and nonsense text "(starts write hooks!" doesn't bode well.</p>
]]></description><pubDate>Thu, 27 Nov 2025 06:12:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=46066244</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=46066244</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46066244</guid></item><item><title><![CDATA[New comment by continuational in "AWS is 10x slower than a dedicated server for the same price [video]"]]></title><description><![CDATA[
<p>But on Hetzner, you can usually get a dedicated server installed and ready tomorrow.</p>
]]></description><pubDate>Wed, 26 Nov 2025 08:58:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=46055544</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=46055544</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46055544</guid></item><item><title><![CDATA[New comment by continuational in "The terminal of the future"]]></title><description><![CDATA[
<p>A few years ago I worked on TopShell, an attempt to reimagine the shell+terminal using functional programming:
<a href="https://github.com/topshell-language/topshell#readme" rel="nofollow">https://github.com/topshell-language/topshell#readme</a><p>It ticks some of the boxes, but tonnes of work would be needed to turn it into a full alternative.</p>
]]></description><pubDate>Wed, 12 Nov 2025 15:59:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=45901761</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=45901761</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45901761</guid></item><item><title><![CDATA[New comment by continuational in "Ask HN: What Are You Working On? (Nov 2025)"]]></title><description><![CDATA[
<p>Thank you! Yeah, I think some of the newer frameworks really complicate dataflow. We're trying to keep dataflow clear, though it's a big design space given the distributed nature of webapps.<p>In any case, if you take it for a spin, I'd love some feedback.</p>
]]></description><pubDate>Mon, 10 Nov 2025 17:44:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=45878484</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=45878484</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45878484</guid></item><item><title><![CDATA[New comment by continuational in "Ask HN: What Are You Working On? (Nov 2025)"]]></title><description><![CDATA[
<p>Working on a programming language for webapps!<p><a href="https://www.firefly-lang.org/" rel="nofollow">https://www.firefly-lang.org/</a><p>Speed is not an optional feature on the web. The site above is written in Firefly, uses hydration, and scores 100% on PageSpeed Insights.<p>The language is largely complete, and we're now working on DX: Got a language server, a devserver, and some essential libraries.</p>
]]></description><pubDate>Mon, 10 Nov 2025 06:41:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=45873099</link><dc:creator>continuational</dc:creator><comments>https://news.ycombinator.com/item?id=45873099</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45873099</guid></item></channel></rss>