<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: f33d5173</title><link>https://news.ycombinator.com/user?id=f33d5173</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 02 Jul 2026 05:25:42 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=f33d5173" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by f33d5173 in "Study suggests most Americans would be healthier without daylight saving time (2025)"]]></title><description><![CDATA[
<p>It's a fairly trivial change. We already have timezones, which exist to deal with the fact that the sun comes up at different times in different parts of the world. We already have to design everything around the assumption that timezones can change, since people sometimes move to different parts of the world. All we do is cause, for an entire timezone, that it becomes a different timezone at one point in the year, and switches back later. This ensures that the sun continues to come up at a consistent time. The main issue it causes is to make the lives of programmers slightly more difficult, which I am sure they can cope with...</p>
]]></description><pubDate>Tue, 30 Jun 2026 07:21:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=48729512</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48729512</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48729512</guid></item><item><title><![CDATA[New comment by f33d5173 in "30-year sentence for transporting zines is a five-alarm fire for free speech"]]></title><description><![CDATA[
<p>>being charged as a terrorist oganization<p>Such charges are outright nonsense, for one thing. And I think that's relevant since it's the only possible jutification for the utter forfeiture of rights.</p>
]]></description><pubDate>Tue, 30 Jun 2026 06:54:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=48729358</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48729358</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48729358</guid></item><item><title><![CDATA[New comment by f33d5173 in "30-year sentence for transporting zines is a five-alarm fire for free speech"]]></title><description><![CDATA[
<p>It's one of those irregular verbs. My demonstration, your freedom fighting, their act of terrorism</p>
]]></description><pubDate>Mon, 29 Jun 2026 22:57:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=48726427</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48726427</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48726427</guid></item><item><title><![CDATA[New comment by f33d5173 in "The curious case of the disappearing Polish S (2015)"]]></title><description><![CDATA[
<p>> the accesskey attribute<p>Holy crow what a mess. No wonder I'd never heard of this.</p>
]]></description><pubDate>Mon, 29 Jun 2026 20:18:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=48724599</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48724599</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48724599</guid></item><item><title><![CDATA[New comment by f33d5173 in "Librepods: AirPods liberated"]]></title><description><![CDATA[
<p>They are ludicrously expensive for what they do. They have an apple logo on the box.</p>
]]></description><pubDate>Mon, 29 Jun 2026 00:14:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48713209</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48713209</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48713209</guid></item><item><title><![CDATA[New comment by f33d5173 in "The curious case of the disappearing Polish S (2015)"]]></title><description><![CDATA[
<p>The real issue here is first that browsers don't expose a simple way to check for key combinations and second that developers don't bother building their own. You'll find on any number of sites that an intended key combination can also be invoked with additional modifiers of alt or shift or whatnot. Even here, the code shown only fixes the broader issue on windows; alt+cmd+s still gets blocked.<p>There should be a proposal for browsers to expose a property on the keydown/up/press event containing a code for the key combination. Something like "CTRL+S", "CTRL+ALT+S", etc. The programmer could then switch over this property rather than having to check key codes and modifiers manually.<p>I would also propose to any web developers that they build this property themselves in their own code and check against it instead of checking modifiers directly. Not only would it protect against bugs like in the OP, it would also be a lot more convenient to use.</p>
]]></description><pubDate>Sun, 28 Jun 2026 15:58:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=48708527</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48708527</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48708527</guid></item><item><title><![CDATA[New comment by f33d5173 in "How memory safety CVEs differ between Rust and C/C++"]]></title><description><![CDATA[
<p>The syntax is rather confusing. This is not an array of length 1, but rather a pointer which points to a memory segment which is at least 1 integer long. In other words, any array of any length (>=1) would be a valid argument to this function. "static" here means "don't do the normal thing where you totally ignore the length of an array argument to a function (which is, like usual, really just a pointer)". "static" was chosen because the keyword was available rather than because it was a particularly descriptive name.</p>
]]></description><pubDate>Tue, 16 Jun 2026 07:36:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=48551885</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48551885</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48551885</guid></item><item><title><![CDATA[New comment by f33d5173 in "How memory safety CVEs differ between Rust and C/C++"]]></title><description><![CDATA[
<p><p><pre><code>  $ gcc -Wall -Werror -x c - << EOF
  void f(int x[static 1]){}int main(){f(0);}
  EOF
  <stdin>:1:37: error: null passed to a
      callee that requires a non-null argument
      [-Werror,-Wnonnull]
    1 | void f(int x[static 1]){}int main(){f(0);}
      |                                     ^ ~
  <stdin>:1:12: note: callee declares array
      parameter as static here
    1 | void f(int x[static 1]){}int main(){f(0);}
      |            ^~~~~~~~~~~
  1 error generated.
</code></pre>
It can be done, though it usually isn't.</p>
]]></description><pubDate>Mon, 15 Jun 2026 21:38:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=48547349</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48547349</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48547349</guid></item><item><title><![CDATA[New comment by f33d5173 in "Tesla Full Self Driving uses bicycle lane in official Denmark approval video"]]></title><description><![CDATA[
<p>The point isn't whether it's genuinely plausible or not. If there is some law against something, there is some group of people who believe very strongly that this law should be followed and enforced. If the law is not actually followed or enforced, then the system as a whole does not agree with that small group. The point of this "plausible deniability" is to allow whichever regulator is concerned to give a pass to rule breaking without explictly doing so and hence angering this small group.</p>
]]></description><pubDate>Mon, 15 Jun 2026 21:26:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48547228</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48547228</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48547228</guid></item><item><title><![CDATA[New comment by f33d5173 in "Tesla Full Self Driving uses bicycle lane in official Denmark approval video"]]></title><description><![CDATA[
<p>> An issue with that approach is that a lot of humans violate traffic laws, so you have the danger that your self driving system learns to violate traffic laws.<p>Phrased another way, a benefit of that approach is that if the local conditions necessitate or advise breaking certain traffic rules, your system learns to do so while retaining plausible deniability that it isn't intentional.</p>
]]></description><pubDate>Fri, 12 Jun 2026 21:50:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=48509848</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48509848</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48509848</guid></item><item><title><![CDATA[New comment by f33d5173 in "New Referendum Would Flip Brexit Result 10 Years On, Poll Finds"]]></title><description><![CDATA[
<p>It was a rhetorical question. Usually decisions in democracies require a 50% majority, as here.</p>
]]></description><pubDate>Wed, 10 Jun 2026 13:53:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=48476302</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48476302</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48476302</guid></item><item><title><![CDATA[New comment by f33d5173 in "German ruling declares Google liable for false answers in AI Overviews"]]></title><description><![CDATA[
<p>Banning faangs from doing something also bans small companies from doing it, and regardless prevents the user from receiving it as a service. You shouldn't let anger at large companies excuse stupid regulations.</p>
]]></description><pubDate>Wed, 10 Jun 2026 13:48:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=48476253</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48476253</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48476253</guid></item><item><title><![CDATA[New comment by f33d5173 in "German ruling declares Google liable for false answers in AI Overviews"]]></title><description><![CDATA[
<p>Corporations are you. Corporations provide a service to individuals, often in exchange for money. Restricting corporations from doing something is the same as restricting people from receiving that as a service.</p>
]]></description><pubDate>Wed, 10 Jun 2026 05:54:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=48471999</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48471999</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48471999</guid></item><item><title><![CDATA[New comment by f33d5173 in "New Referendum Would Flip Brexit Result 10 Years On, Poll Finds"]]></title><description><![CDATA[
<p>What percentage of the vote was required to join the EU? The EU effectively constitutes a relinquishment of sovereignty, but that's not how it was sold to citizens, they were told that they could leave at any time.</p>
]]></description><pubDate>Mon, 08 Jun 2026 19:11:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=48450090</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48450090</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48450090</guid></item><item><title><![CDATA[New comment by f33d5173 in "A Farmer Donated Land to Turn into a Park. The City Is Building a Data Center"]]></title><description><![CDATA[
<p>3000 years of philosophy, but fortunately you're here to tell us "war exists, so nothing can ever be bad or good".</p>
]]></description><pubDate>Mon, 08 Jun 2026 16:47:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=48447749</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48447749</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48447749</guid></item><item><title><![CDATA[New comment by f33d5173 in "Ultra-processed foods in the global food system: The role of tobacco companies"]]></title><description><![CDATA[
<p>> But your definition of processed foods has now shifted to being one of hyperpalitability and likelihood of overeating.<p>that's a very small shift. the two are very closely linked<p>> why have this proxy at all<p>very simple reason: if i am in the supermarket i can tell immediately looking at a food how highly processed it is.<p>we have spent many decades telling people "just don't overeat" and it hasn't worked at all. we have also spent many decades telling people that "unhealthy" can be established by looking for a particular ingredient, say sugar, or fat, and it again hasn't helped.<p>the heart of the advice we would like to give people is that a healthy diet isn't one that has the exact right nutrient balance, but rather one that causes your body to naturally pick the amounts it needs. and we would like to communicate this advice in a way that makes it easy for people to make purchasing decisions.</p>
]]></description><pubDate>Fri, 05 Jun 2026 21:24:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=48418539</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48418539</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48418539</guid></item><item><title><![CDATA[New comment by f33d5173 in "Ultra-processed foods in the global food system: The role of tobacco companies"]]></title><description><![CDATA[
<p>"health" as quantity of nutrients doesn't really make sense. pretty much everything we eat is good in some quantities, and bad in others. so there's no nutrient that you can name that makes food unhealthy (there are some like trans fats i guess, but mostly). then what makes some food "healthy" and other food "unhealthy"? there is actually a simple answer to this question: foods which lead you to overeat them are unhealthy, foods which don't aren't. so then the relation between ultra processing and health become obvious. processing is expensive. the reason companies do so much of it is to get people to eat more of their food. food that has been ultra processed is pretty much guaranteed to cause over eating and hence be unhealthy. food that has not been processed usually will only lead you to eat a healthy amount. so "ultraprocessed" is pretty much the same as "unhealthy". furthermore, as above, defining "unhealthy" directly is tricky, because it doesn't directly map to the nutrient content of food. so a good proxy metric, like "ultraproccessed", is useful.</p>
]]></description><pubDate>Fri, 05 Jun 2026 18:49:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=48416627</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48416627</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48416627</guid></item><item><title><![CDATA[New comment by f33d5173 in "Communication on European Tech Sovereignty, and an EU Open-Source Strategy"]]></title><description><![CDATA[
<p>Ireland can claim that actually they'd rather it be gaelic. It has the perception of a colonizer language for them too.</p>
]]></description><pubDate>Fri, 05 Jun 2026 16:13:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=48414585</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48414585</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48414585</guid></item><item><title><![CDATA[New comment by f33d5173 in "South Korean forums will need to scan every images with AI censorship tools"]]></title><description><![CDATA[
<p>CMS here not referring to content management system?</p>
]]></description><pubDate>Fri, 05 Jun 2026 04:38:03 +0000</pubDate><link>https://news.ycombinator.com/item?id=48408027</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48408027</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48408027</guid></item><item><title><![CDATA[New comment by f33d5173 in "SpaceX, Other Mega IPOs Denied Fast Index Entry by S&P"]]></title><description><![CDATA[
<p>An index is an index. It works fine as an index if it excludes one or two stocks. People seem to forget as well that this is a question of waiting a single year before it including the stock. It is literally just long enough to make sure the price settles, it's not some catastrophic thing.</p>
]]></description><pubDate>Fri, 05 Jun 2026 04:32:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=48407981</link><dc:creator>f33d5173</dc:creator><comments>https://news.ycombinator.com/item?id=48407981</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48407981</guid></item></channel></rss>