<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: mark_and_sweep</title><link>https://news.ycombinator.com/user?id=mark_and_sweep</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 30 Jul 2026 05:11:02 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=mark_and_sweep" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by mark_and_sweep in "The LLM Critics Are Right. I Use LLMs Anyway"]]></title><description><![CDATA[
<p>> a genuinely good tool that enriches your thinking<p>A smartphone is also a genuinely good all-around tool. Even social media is a genuinely good tool for connecting people.<p>Yet, I feel like we've been overly optimistic about the impact of said tools on us and our societies in the past two decades.<p>Smartphones are so good, in fact, in some societies, half of us are addicted to them. Billions of people world-wide.<p>I ask myself: Will LLMs enrich my thinking in the long run, or will they ruin it?<p>And what about most people? Will half of us outsource most of our thinking in a decade from now?<p>Given the speed and global scale that we're running these experiments with, it's fair, I think, to be a bit sceptical of the conclusion that, in the long run, LLMs will enrich our thinking.</p>
]]></description><pubDate>Thu, 16 Jul 2026 13:14:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=48934070</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=48934070</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48934070</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Using Claude Code: The unreasonable effectiveness of HTML"]]></title><description><![CDATA[
<p>Technically, yes. Markdown was always intended to be used for creating HTML and thus allows you to use HTML inline (with some minor caveats, see: <a href="https://daringfireball.net/projects/markdown/syntax#html" rel="nofollow">https://daringfireball.net/projects/markdown/syntax#html</a>).<p>If you rename a .html file to .md, your markdown viewer should render it just the same as your browser did.</p>
]]></description><pubDate>Sat, 09 May 2026 07:42:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=48072831</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=48072831</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48072831</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "I am worried about Bun"]]></title><description><![CDATA[
<p>What do you mean by corrupted?<p>Been using Deno happily for many years now.<p>Did I miss anything?</p>
]]></description><pubDate>Tue, 05 May 2026 01:29:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=48017010</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=48017010</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48017010</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Dropping Cloudflare for Bunny.net"]]></title><description><![CDATA[
<p>Sorry, what? I never mentioned lock-in.<p>I assume by Service Worker API, you mean FetchEvent? [1] As in:<p>self.addEventListener("fetch", (event) => {});<p>That is a web standard indeed, but not one that was designed for use as a general-purpose HTTP handler, but rather for use in a Service Worker proxy.<p>[1] <a href="https://developer.mozilla.org/en-US/docs/Web/API/FetchEvent" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/API/FetchEvent</a></p>
]]></description><pubDate>Wed, 08 Apr 2026 20:19:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=47695743</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=47695743</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47695743</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Dropping Cloudflare for Bunny.net"]]></title><description><![CDATA[
<p>Their fetch handler [1] is not a web standard.<p>[1] <a href="https://developers.cloudflare.com/workers/runtime-apis/handlers/fetch/" rel="nofollow">https://developers.cloudflare.com/workers/runtime-apis/handl...</a></p>
]]></description><pubDate>Tue, 07 Apr 2026 18:45:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47679631</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=47679631</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47679631</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Dropping Cloudflare for Bunny.net"]]></title><description><![CDATA[
<p>> > I don't understand how none of the alternatives really embrace WinterTC<p>> You provide handlers that fulfil requests from the system.<p>As I said previously, though I wish they were, such handlers are not part of WinterTC.<p>And then again, how those handlers are registered is also not part of WinterTC, which I also wish it were.<p>> APIs like that leak implementation details<p>How?<p>Almost all runtimes, like Bunny Edge Scripting, Cloudflare Workers, Deno, Bun, etc. use the same basic signature for the handler:<p>(request: Request) => Promise<Response><p>Only how you register said handler is, unfortunately, different for each runtime.</p>
]]></description><pubDate>Tue, 07 Apr 2026 18:42:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=47679570</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=47679570</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47679570</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Dropping Cloudflare for Bunny.net"]]></title><description><![CDATA[
<p>AFAIC, WinterTC doesn't specify how to start an HTTP server. Their minimum common API requires, among other things, that the Request and Response interfaces from the fetch specification are present. Unfortunately, it does not specify any sort of serve function.</p>
]]></description><pubDate>Tue, 07 Apr 2026 16:18:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=47677632</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=47677632</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47677632</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "You can't refuse to be scanned by ICE's facial recognition app, DHS document say"]]></title><description><![CDATA[
<p>As a German, I gotta ask: Is this a reference to Martin Niemöller's "First They Came"?<p><a href="https://en.wikipedia.org/wiki/First_They_Came" rel="nofollow">https://en.wikipedia.org/wiki/First_They_Came</a></p>
]]></description><pubDate>Sat, 01 Nov 2025 15:14:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=45782295</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=45782295</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45782295</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Show HN: CSS Extras"]]></title><description><![CDATA[
<p>> Is there still a real-world use case for XHTML<p>If I need the markup of a page to not contain any structural errors, I often use XHTML for testing at least because, though it's a little more verbose, if there's a nesting error, for example, the browser will flat out refuse to render it and show some sort of stacktrace error page instead. So it's quite a good built-in "tool" for checking that your markup is clean.<p>With HTML, everything goes and the browser will happily render broken markup, which is probably the correct default for the web as a whole. After all, you surely don't want a page like Wikipedia to show an error message to its users because a developer forgot to close a tag somewhere.</p>
]]></description><pubDate>Tue, 14 Oct 2025 14:52:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=45580813</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=45580813</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45580813</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Show HN: CSS Extras"]]></title><description><![CDATA[
<p>XHTML (or the XML syntax for HTML) wasn't removed (see: <a href="https://html.spec.whatwg.org/multipage/introduction.html#html-vs-xhtml" rel="nofollow">https://html.spec.whatwg.org/multipage/introduction.html#htm...</a>). You may be thinking of XSLT, which may be removed in future.</p>
]]></description><pubDate>Tue, 14 Oct 2025 12:32:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=45579274</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=45579274</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45579274</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Less is safer: Reducing the risk of supply chain attacks"]]></title><description><![CDATA[
<p>Switching to Deno might help. It's sandboxed by default and offers granular escape hatches. So if a script needs access to a specific environment variable or read or write specific files, it's simple to configure that only those accesses are allowed.</p>
]]></description><pubDate>Sat, 20 Sep 2025 08:24:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=45311509</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=45311509</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45311509</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "XSLT – Native, zero-config build system for the Web"]]></title><description><![CDATA[
<p>From my experience, most simple websites are fine with XSLT 1.0 and don't experience any performance problems.</p>
]]></description><pubDate>Fri, 27 Jun 2025 09:36:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=44395306</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=44395306</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44395306</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Reports of Deno's Demise Have Been Greatly Exaggerated"]]></title><description><![CDATA[
<p>> My favorite testing framework, AVA, still isn’t supported.<p>Have you checked recently? The docs (<a href="https://docs.deno.com/runtime/fundamentals/testing/" rel="nofollow">https://docs.deno.com/runtime/fundamentals/testing/</a>) specifically mention AVA as being supported. Then again, I'd assume that most devs using Deno just use the built-in `deno test` instead of a third-party testing framework.<p>> The one area of Node compatibility that I want the most is support for ESLint configs in the Deno linter.<p>Again, have you checked recently? According to the docs this is supported: "Deno's built-in linter, `deno lint`, supports recommended set of rules from ESLint to provide comprehensive feedback on your code. (...) You can specify custom rules, plugins, and settings to tailor the linting process to your needs." (<a href="https://docs.deno.com/runtime/fundamentals/linting_and_formatting/" rel="nofollow">https://docs.deno.com/runtime/fundamentals/linting_and_forma...</a>)<p>I've been using Deno for 6 years now. And I'm actually quite happy that most Deno projects don't have a custom testing and linting setup.</p>
]]></description><pubDate>Tue, 20 May 2025 16:44:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=44043521</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=44043521</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44043521</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Why can't HTML alone do includes?"]]></title><description><![CDATA[
<p>This bug is specifically about <xsl:text disable-output-escaping="yes"> not working in Firefox. How is disabling output escaping relevant in regards to sharing templates between pages?</p>
]]></description><pubDate>Sun, 04 May 2025 12:17:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=43886296</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=43886296</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43886296</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Why can't HTML alone do includes?"]]></title><description><![CDATA[
<p>What bug specifically?</p>
]]></description><pubDate>Sat, 03 May 2025 22:39:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=43882954</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=43882954</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43882954</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Why can't HTML alone do includes?"]]></title><description><![CDATA[
<p>I believe XSLT 1 is still working in all major browsers today. Here's a simple HTML 5 example with two pages sharing a header template: <a href="https://gist.github.com/MarkTiedemann/0e6d36c337159a3e6d5072ccb7d7f6fe" rel="nofollow">https://gist.github.com/MarkTiedemann/0e6d36c337159a3e6d5072...</a></p>
]]></description><pubDate>Sat, 03 May 2025 18:50:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=43881192</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=43881192</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43881192</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Universal basic income: German experiment bring surprising results"]]></title><description><![CDATA[
<p>The study actually shows that the people on UBI switched their jobs more often than the control group.<p>Considering that the group on UBI was also happier, felt more financially secure and freer than the control group, this is hardly surprising.</p>
]]></description><pubDate>Sun, 13 Apr 2025 09:31:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=43671423</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=43671423</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43671423</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Ask HN: Any jobs that don't force you to always be advancing career wise?"]]></title><description><![CDATA[
<p>A pretty safe option is working for a utility company.</p>
]]></description><pubDate>Fri, 14 Mar 2025 14:42:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=43363090</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=43363090</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43363090</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "To buy a Tesla Model 3, only to end up in hell"]]></title><description><![CDATA[
<p>I'm driving a 2022 Kia Niro EV. Yes, the sign detection is pretty unreliable, but otherwise I've had no (software) issues with the car yet.</p>
]]></description><pubDate>Mon, 10 Feb 2025 09:47:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=42998638</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=42998638</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42998638</guid></item><item><title><![CDATA[New comment by mark_and_sweep in "Taxing unrealized gains has caused an entrepreneurial exodus in Norway"]]></title><description><![CDATA[
<p>There is still a wealth tax in Germany which is, in fact, enshrined in its constitution. However, the tax has not been collected since 1997 due to legal issues regarding its calculation. Back then, the constitutional court decided that wealth in the form of properties would have to be taxed more. However, instead of adjusting the calculation, politics instead decided to suspend collecting the tax. Ever since, there have been multiple political initiatives aimed at restarting the collection of the tax, none successful so far, despite a large majority of Germans (70+%) being in favor of collecting the wealth tax.</p>
]]></description><pubDate>Thu, 28 Nov 2024 23:39:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=42269463</link><dc:creator>mark_and_sweep</dc:creator><comments>https://news.ycombinator.com/item?id=42269463</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42269463</guid></item></channel></rss>