<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: gildas</title><link>https://news.ycombinator.com/user?id=gildas</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 25 Apr 2026 21:49:31 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=gildas" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by gildas in "Gwtar: A static efficient single-file HTML format"]]></title><description><![CDATA[
<p>I just ran a test on a 10GB HTML page and called window.stop() via a 100ms setTimeout, which, in my opinion, simulates what would happen in a better-implemented case in SingleFile if the call to window.stop() were made as soon as the HTTP headers of the fetch request are received (i.e. easy fix). And it actually works. It interrupts the loading at approx. 15MB of data, the rendering of the page, and it's partially and smoothly displayed (no freeze). So it's not totally useless but it deserves to be optimized at a minimum in SingleFile, as I indicated. In the end, the MDN documentation is not very clear...<p>Edit: I've just implemented the "good enough of my machine fix" aka the "easy fix", <a href="https://github.com/gildas-lormeau/single-file-core/commit/a08c69fa1a417b6fccdeeeeb6c20c4faeff59b21" rel="nofollow">https://github.com/gildas-lormeau/single-file-core/commit/a0...</a>.<p>Edit #2: I've just understood that "parent" in "this method cannot interrupt its *parent* document's loading" from the MDN doc probably means the "parent" of the frame (when the script is running into it).</p>
]]></description><pubDate>Sun, 15 Feb 2026 23:43:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=47029009</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=47029009</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47029009</guid></item><item><title><![CDATA[New comment by gildas in "Gwtar: A static efficient single-file HTML format"]]></title><description><![CDATA[
<p>The call to window.stop() stops HTML parsing/rendering, which is unnecessary since the script has downloaded the page via HTTP and will decompress it as-is as a binary file (zip.js supports concatenated payloads before and after the zip data). However, in my case, the call to window.stop() is executed asynchronously once the binary has been downloaded, and therefore may be too late. This is probably less effective than in your case with gtwar.<p>I implemented this in the simplest way possible because if the zip file is read from the filesystem, window.stop() must not be called immediately because the file must be parsed entirely. In my case, it would require slightly more complex logic to call window.stop() as early as possible.<p>Edit: Maybe it's totally useless though, as documented here [1]: "Because of how scripts are executed, this method cannot interrupt its parent document's loading, but it will stop its images, new windows, and other still-loading objects." (you mentioned it in the article)<p>[1] <a href="https://developer.mozilla.org/en-US/docs/Web/API/Window/stop" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/API/Window/stop</a><p>Edit #2: Since I didn't know that window.call() was most likely useless in my case, I understand your approach much better now. Thank you very much for clarifying that with your question!</p>
]]></description><pubDate>Sun, 15 Feb 2026 22:45:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=47028529</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=47028529</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47028529</guid></item><item><title><![CDATA[New comment by gildas in "Gwtar: A static efficient single-file HTML format"]]></title><description><![CDATA[
<p>The reason I did not implement the innovative mechanism you describe is because, in my case, all the technical effort was/is focused on reading the archive from the filesystem. No one has suggested it either.<p>Edit: Actually, SingleFile already calls window.stop() when displaying a zip/html file from HTTP, see <a href="https://github.com/gildas-lormeau/single-file-core/blob/22fc429b766d88bae1a9755896a92d9def6e0a37/processors/compression/compression.js#L441" rel="nofollow">https://github.com/gildas-lormeau/single-file-core/blob/22fc...</a></p>
]]></description><pubDate>Sun, 15 Feb 2026 21:52:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=47027992</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=47027992</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47027992</guid></item><item><title><![CDATA[New comment by gildas in "Gwtar: A static efficient single-file HTML format"]]></title><description><![CDATA[
<p>I haven't looked closely, but I get the impression that this is an implementation detail which is not really related to the format. In this case, a polyglot zip/html file could also interrupt page loading via a window.stop() call and rely on range requests (zip.js supports them) to unzip and display the page. This could also be transparent for the user, depending on whether the file is served via HTTP or not. However, I admit that I haven't implemented this mechanism yet.</p>
]]></description><pubDate>Sun, 15 Feb 2026 21:38:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=47027845</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=47027845</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47027845</guid></item><item><title><![CDATA[New comment by gildas in "Gwtar: A static efficient single-file HTML format"]]></title><description><![CDATA[
<p>I would like to know why ZIP/HTML polyglot format produced by SingleFile [1] and mentioned in the article "achieve static, single, but not efficiency". What's not efficient compared to the gwtar format?<p>[1] <a href="https://github.com/gildas-lormeau/Polyglot-HTML-ZIP-PNG" rel="nofollow">https://github.com/gildas-lormeau/Polyglot-HTML-ZIP-PNG</a></p>
]]></description><pubDate>Sun, 15 Feb 2026 21:30:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=47027770</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=47027770</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47027770</guid></item><item><title><![CDATA[Gwtar: A static efficient single-file HTML format]]></title><description><![CDATA[
<p>Article URL: <a href="https://gwern.net/gwtar">https://gwern.net/gwtar</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=46771811">https://news.ycombinator.com/item?id=46771811</a></p>
<p>Points: 4</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 26 Jan 2026 21:28:49 +0000</pubDate><link>https://gwern.net/gwtar</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=46771811</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46771811</guid></item><item><title><![CDATA[New comment by gildas in "Await Is Not a Context Switch: Understanding Python's Coroutines vs. Tasks"]]></title><description><![CDATA[
<p>If we were to compare this to the JS world, it seems Python’s async is closer to Babel-style generator-based coroutines [1] than to JavaScript’s async/await execution model.<p>[1] <a href="https://babeljs.io/docs/babel-plugin-transform-async-to-generator" rel="nofollow">https://babeljs.io/docs/babel-plugin-transform-async-to-gene...</a></p>
]]></description><pubDate>Wed, 26 Nov 2025 12:29:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=46056773</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=46056773</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46056773</guid></item><item><title><![CDATA[New comment by gildas in "Await Is Not a Context Switch: Understanding Python's Coroutines vs. Tasks"]]></title><description><![CDATA[
<p>You haven't got it wrong, the first example in the article behaves the same in JS, see <a href="https://jsfiddle.net/L5w2q1p7/" rel="nofollow">https://jsfiddle.net/L5w2q1p7/</a>.</p>
]]></description><pubDate>Wed, 26 Nov 2025 11:55:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=46056534</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=46056534</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46056534</guid></item><item><title><![CDATA[New comment by gildas in "Perkeep – Personal storage system for life"]]></title><description><![CDATA[
<p>Thank you also for the kind words! Regardoing support, you can choose whichever method you prefer; it makes no difference to me actually.</p>
]]></description><pubDate>Wed, 12 Nov 2025 22:05:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=45907461</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=45907461</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45907461</guid></item><item><title><![CDATA[New comment by gildas in "Perkeep – Personal storage system for life"]]></title><description><![CDATA[
<p>Author of SingleFile here. Sorry, this is obviously not normal. Please feel free to report any bugs here <a href="https://github.com/gildas-lormeau/SingleFile/issues" rel="nofollow">https://github.com/gildas-lormeau/SingleFile/issues</a>.</p>
]]></description><pubDate>Wed, 12 Nov 2025 10:14:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=45898421</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=45898421</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45898421</guid></item><item><title><![CDATA[New comment by gildas in "Ask HN: How to stop an AWS bot sending 2B requests/month?"]]></title><description><![CDATA[
<p>Great idea, some people have already implemented it for the same type of need, it would seem (see the list of user agents in the source code). Implementation seems simple.<p><a href="https://github.com/0x48piraj/gz-bomb/blob/master/gz-bomb-server.go" rel="nofollow">https://github.com/0x48piraj/gz-bomb/blob/master/gz-bomb-ser...</a></p>
]]></description><pubDate>Fri, 17 Oct 2025 08:51:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=45614560</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=45614560</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45614560</guid></item><item><title><![CDATA[New comment by gildas in "Peeking Inside Gigantic Zips with Only Kilobytes"]]></title><description><![CDATA[
<p>FYI, zip.js has no issues with 1 (it can be fixed with standard extra fields), 3 (zip64 support), and 5 (you cannot have more than 64K of comment data at the end of the file).</p>
]]></description><pubDate>Fri, 17 Oct 2025 08:38:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=45614485</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=45614485</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45614485</guid></item><item><title><![CDATA[New comment by gildas in "Peeking Inside Gigantic Zips with Only Kilobytes"]]></title><description><![CDATA[
<p>Unfortunately, I will have difficulty answering your question because my knowledge is limited to the zip format. In the use case presented in the article, I find that the zip format meets the need well. Generally speaking, in the context of long-term archiving, its big advantage is also that there are thousands of implementations for reading/writing zip files.</p>
]]></description><pubDate>Thu, 16 Oct 2025 21:03:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=45610632</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=45610632</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45610632</guid></item><item><title><![CDATA[New comment by gildas in "Peeking Inside Gigantic Zips with Only Kilobytes"]]></title><description><![CDATA[
<p>For implementation in a library, you can use HttpRangeReader [1][2] in zip.js [3] (disclaimer: I am the author). It's a solid feature that has been in the library for about 10 years.<p>[1] <a href="https://gildas-lormeau.github.io/zip.js/api/classes/HttpRangeReader.html" rel="nofollow">https://gildas-lormeau.github.io/zip.js/api/classes/HttpRang...</a><p>[2] <a href="https://github.com/gildas-lormeau/zip.js/blob/master/tests/all/test-http-range.js" rel="nofollow">https://github.com/gildas-lormeau/zip.js/blob/master/tests/a...</a><p>[3] <a href="https://github.com/gildas-lormeau/zip.js" rel="nofollow">https://github.com/gildas-lormeau/zip.js</a></p>
]]></description><pubDate>Thu, 16 Oct 2025 19:51:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=45609918</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=45609918</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45609918</guid></item><item><title><![CDATA[New comment by gildas in "uBlock Origin Lite now available for Safari"]]></title><description><![CDATA[
<p>The warning message you mentioned simply means that the extension can inject "content scripts" into the web pages you visit. This feature is necessary, for example, to remove ads that cannot be blocked via HTTP.</p>
]]></description><pubDate>Tue, 05 Aug 2025 11:16:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=44796672</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=44796672</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44796672</guid></item><item><title><![CDATA[New comment by gildas in "A sysadmin's rant about feed readers and crawlers (2022)"]]></title><description><![CDATA[
<p>Bonus point for clients that don't support the HTTP “Accept-Encoding” header [1] and consume all your bandwidth.<p>[1] <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding" rel="nofollow">https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Ac...</a></p>
]]></description><pubDate>Wed, 05 Mar 2025 13:54:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=43266378</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=43266378</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43266378</guid></item><item><title><![CDATA[New comment by gildas in "China tells its AI leaders to avoid U.S. travel over security concerns"]]></title><description><![CDATA[
<p>Thank you for explaining your point of view on the interest of this conversation. Here's mine, I consider an offense to be something quite subjective sometimes. In some cases, it's possible to offend someone without meaning to. The solution to this problem is to apologize and offer to talk about it. If that doesn't work, and the offense is in some way "forbidden", then the offended person can simply defend themselves by going to the “authorities”.</p>
]]></description><pubDate>Sun, 02 Mar 2025 21:02:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=43235052</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=43235052</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43235052</guid></item><item><title><![CDATA[New comment by gildas in "China tells its AI leaders to avoid U.S. travel over security concerns"]]></title><description><![CDATA[
<p>I'm sorry. I'm open to discussion if you can explain what is offending to you</p>
]]></description><pubDate>Sun, 02 Mar 2025 18:26:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=43233359</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=43233359</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43233359</guid></item><item><title><![CDATA[New comment by gildas in "China tells its AI leaders to avoid U.S. travel over security concerns"]]></title><description><![CDATA[
<p>I'm sorry if you feel offended. My comments will be removed by HN moderators if they think it's necessary. You can flag and downvote them meanwhile. You can also contact the moderators or your local police if you think it is necessary.<p>EDIT: It might not be possible to flag or downvote comments. So, I recommend you to contact the moderators or your local police. You can find my name and address on my GitHub profile.</p>
]]></description><pubDate>Sun, 02 Mar 2025 18:24:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=43233339</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=43233339</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43233339</guid></item><item><title><![CDATA[New comment by gildas in "China tells its AI leaders to avoid U.S. travel over security concerns"]]></title><description><![CDATA[
<p>I sincerely apologize again if you found my response offensive. You can contact your local police to make a complaint, I suppose.</p>
]]></description><pubDate>Sun, 02 Mar 2025 09:44:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=43228883</link><dc:creator>gildas</dc:creator><comments>https://news.ycombinator.com/item?id=43228883</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43228883</guid></item></channel></rss>