<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: AlienRobot</title><link>https://news.ycombinator.com/user?id=AlienRobot</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sun, 27 Sep 2026 02:02:18 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=AlienRobot" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by AlienRobot in "Plunging test scores are a slow-moving catastrophe"]]></title><description><![CDATA[
<p>I saw an ad with a guy saying he doesn't write e-mails because he can just speak to the machine, and then the AI does it for him.<p>Guess we'll live in an illiterate society soon...</p>
]]></description><pubDate>Sat, 26 Sep 2026 16:11:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=49857882</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49857882</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49857882</guid></item><item><title><![CDATA[New comment by AlienRobot in "Plunging test scores are a slow-moving catastrophe"]]></title><description><![CDATA[
<p>Another modern problem with education is that every student has a smartphone now, which they bring to the class, then they get distracted by it.</p>
]]></description><pubDate>Sat, 26 Sep 2026 16:09:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=49857859</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49857859</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49857859</guid></item><item><title><![CDATA[New comment by AlienRobot in "What even is an OS now?"]]></title><description><![CDATA[
<p>i.e. most users think the OS is shell, not the kernel.</p>
]]></description><pubDate>Sat, 26 Sep 2026 15:27:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=49857467</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49857467</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49857467</guid></item><item><title><![CDATA[New comment by AlienRobot in "One Month Without AI"]]></title><description><![CDATA[
<p>That's stupid. People didn't bash the em dash because it was an em dash. They bashed it because it made it obvious it was AI. If your product is so good why are your customers ashamed of using it?</p>
]]></description><pubDate>Sat, 26 Sep 2026 15:23:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=49857432</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49857432</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49857432</guid></item><item><title><![CDATA[New comment by AlienRobot in "One Month Without AI"]]></title><description><![CDATA[
<p>>Not the typing itself, but also because I had to think of how to implement it.<p>I believe "writing the code" means literally just "writing the code" not thinking how to implement it.</p>
]]></description><pubDate>Sat, 26 Sep 2026 15:19:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=49857406</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49857406</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49857406</guid></item><item><title><![CDATA[New comment by AlienRobot in "Tutoring company tells parents to save their money and 'use AI instead'"]]></title><description><![CDATA[
<p>>'Sure AI won't perform as well as our human tutors with all the support behind them, but it's also $30 a month.'<p>For how long, though.<p>>Mr Buckland also claimed the tutoring industry doesn't 'actually do anything unique' but instead provides comfort to students - something AI can replicate.<p>Jesus. That's really not a good thing.<p>It's not every day you see someone so incredibly dismissive of the product they're selling themselves.</p>
]]></description><pubDate>Fri, 25 Sep 2026 00:25:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=49838631</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49838631</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49838631</guid></item><item><title><![CDATA[New comment by AlienRobot in "We just shipped support for the ugliest part of HTTP: Vary"]]></title><description><![CDATA[
<p>Thanks, I didn't know that. I remember reading about verbs a long time ago, so I assumed the order was OPTIONS then HEAD or GET.</p>
]]></description><pubDate>Thu, 24 Sep 2026 15:57:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=49832533</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49832533</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49832533</guid></item><item><title><![CDATA[New comment by AlienRobot in "We just shipped support for the ugliest part of HTTP: Vary"]]></title><description><![CDATA[
<p>Right. But if the cache MUST be revalidated every time, it's the same thing as being disabled.<p>The point of a reverse proxy is to reduce load on the server rendering the page. If you GET, the page is rendered. So in order for etag/last-modified to be effective, the CMS must implement HEAD. If the CMS doesn't implement HEAD or implements it in a way that ends up doing all the work of GET anyway, you just end up with more load than just doing a GET every time.<p>The funny thing is that the way HTTP is designed the simplest PHP script can do this correctly, because the server must send the headers first, so a PHP script can NOT do the work to generate the HTML until it has sent the correct headers, as they won't be able to change the headers after they start sending the body. In theory, the process could just shut down the instant the first body byte starts being sent and save work in a HEAD request. The problem is that pretty much everything works in a more "clever" way: you have some sort of template engine that generates the whole HTML, a view method that makes the DB calls, etc., and only <i>after</i> all the work is done the HTTP headers are sent. Because this method allows the backend to add/change/remove headers at any point during the process, not just at the start.<p>Essentially the problem is that CF doesn't know what your server is running, and even an s-maxage=60 is going to look like a bug from the user's perspective if they go to /post?id=123, navigate to /edit-post?id=123, edit the post, go back to /post?id=123 and see the post unchanged.</p>
]]></description><pubDate>Thu, 24 Sep 2026 03:50:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=49826042</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49826042</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49826042</guid></item><item><title><![CDATA[New comment by AlienRobot in "We just shipped support for the ugliest part of HTTP: Vary"]]></title><description><![CDATA[
<p>They can't do that because a CMS under Cloudflare needs to be configured to bust the Cloudflare cache when content is edited or the user will see cached content after they edit a page.</p>
]]></description><pubDate>Thu, 24 Sep 2026 01:47:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=49825196</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49825196</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49825196</guid></item><item><title><![CDATA[New comment by AlienRobot in "Italian parliament votes for return to nuclear energy"]]></title><description><![CDATA[
<p>Do you mean nuclear isn't profitable compared to coal, whose costs are externalized, or compared to other renewables?</p>
]]></description><pubDate>Wed, 23 Sep 2026 20:29:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=49822083</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49822083</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49822083</guid></item><item><title><![CDATA[New comment by AlienRobot in "WordPress: Unauthenticated path traversal leading to conditional RCE"]]></title><description><![CDATA[
<p>Jesus. I don't think WP is nice to use, but people are saying WP is crap because someone else made pearcmd.php that allows you to run arbitrary commands, and then a third someone else included that in the default PHP docker image. In this case all PHP CMS's are a directory traversal bug away from this CVE.</p>
]]></description><pubDate>Wed, 23 Sep 2026 16:33:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=49818662</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49818662</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49818662</guid></item><item><title><![CDATA[New comment by AlienRobot in "WordPress: Unauthenticated path traversal leading to conditional RCE"]]></title><description><![CDATA[
<p>I'm not sure I understand. That's the main pre-condition... <i>to include an arbitrary PHP that is already in the server</i>.<p>On a fresh WP install, a random user can't upload PHP files. Normally you don't even need to allow random users to register an account since avatars on comments come from gravatar anyway.</p>
]]></description><pubDate>Tue, 22 Sep 2026 23:11:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=49809572</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49809572</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49809572</guid></item><item><title><![CDATA[New comment by AlienRobot in "I said no and Apple said yes"]]></title><description><![CDATA[
<p>Unfortunately, just because you have choices that doesn't mean those choices are good.<p>I was forced to the file explorer on Windows, and the file explorer was good so I didn't mind. I was also forced to use MS Paint. And it was good for a long time, until they added layers. Now my primary use case of it (pasting an image and cropping it) doesn't work as well as it used to.<p>On Linux I don't even have that choice. There are choices, yes, but none of them do what I want anyway.<p>What truly drives me insane is that if you say "I just want what Windows does" people tell you that it's not Windows, it's "different(tm)." Then you ask why do Linux software sucks in comparison to Windows, and you get told "well, it's because Windows has $ to spend in R&D." So it's double-think. Developers are aware proprietary software spends tons of money they don't have in R&D, and yet they shy away from just copying the results because they don't want to be Windows.<p>I just want Windows, but with freedom. I don't want "different" if it's not going to be better.</p>
]]></description><pubDate>Tue, 22 Sep 2026 21:29:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=49808392</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49808392</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49808392</guid></item><item><title><![CDATA[New comment by AlienRobot in "I said no and Apple said yes"]]></title><description><![CDATA[
<p>The former. You use one DE, typeahead triggers full text search. You use another, no metadata like image width/height when selecting images. You use a third one, no folder thumbnails.</p>
]]></description><pubDate>Tue, 22 Sep 2026 16:33:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=49803965</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49803965</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49803965</guid></item><item><title><![CDATA[New comment by AlienRobot in "I said no and Apple said yes"]]></title><description><![CDATA[
<p>I have used Windows for decades. Not once have I thought "I should make my own file manager."<p>I thought that after a few months of using Linux.</p>
]]></description><pubDate>Tue, 22 Sep 2026 16:13:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=49803666</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49803666</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49803666</guid></item><item><title><![CDATA[New comment by AlienRobot in "Attention is all you have"]]></title><description><![CDATA[
<p>But what if they update the webpage to something completely different from what you bookmarked? Wouldn't you like to have access to the most up-to-date version always? /s</p>
]]></description><pubDate>Mon, 21 Sep 2026 18:47:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=49791576</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49791576</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49791576</guid></item><item><title><![CDATA[New comment by AlienRobot in "What Zig felt like, coming from Rust"]]></title><description><![CDATA[
<p>I don't understand what you mean. The examples come from the article.</p>
]]></description><pubDate>Sun, 20 Sep 2026 16:49:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=49777520</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49777520</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49777520</guid></item><item><title><![CDATA[New comment by AlienRobot in "AI-generated posters don’t have to be horrible"]]></title><description><![CDATA[
<p>You need AI for this?<p>Go to Pinterest, search "poster", find some cool ideas, steal it and do it in Inkscape in 30 minutes.<p>Has the world gone crazy?</p>
]]></description><pubDate>Sun, 20 Sep 2026 00:34:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=49771419</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49771419</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49771419</guid></item><item><title><![CDATA[New comment by AlienRobot in "AI-generated posters don’t have to be horrible"]]></title><description><![CDATA[
<p>If they were the same thing nobody would complain about it, would they?</p>
]]></description><pubDate>Sun, 20 Sep 2026 00:28:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=49771388</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49771388</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49771388</guid></item><item><title><![CDATA[New comment by AlienRobot in "I think you should almost never use AI to write"]]></title><description><![CDATA[
<p>I find it so weird that people use AI to write things. Writing is one of the easiest things you can do. Just put one word after the other.</p>
]]></description><pubDate>Sat, 19 Sep 2026 17:45:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=49768628</link><dc:creator>AlienRobot</dc:creator><comments>https://news.ycombinator.com/item?id=49768628</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49768628</guid></item></channel></rss>