<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: windenntw</title><link>https://news.ycombinator.com/user?id=windenntw</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Thu, 17 Sep 2026 14:37:01 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=windenntw" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by windenntw in "Reversing Factorio's RNG"]]></title><description><![CDATA[
<p>Correct, but also beside the point.<p>To do it in almost-plain C, you'd need fairly complex macros that are more difficult to write correctly.<p>To do it in plain C without macros, or plain C++ without templates... you'd need to work out the combination of the template expansion yourself and write down a piece of code that is more likely to have bugs and more difficult to understand.</p>
]]></description><pubDate>Thu, 17 Sep 2026 10:32:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=49738782</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=49738782</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49738782</guid></item><item><title><![CDATA[New comment by windenntw in "Reversing Factorio's RNG"]]></title><description><![CDATA[
<p>This is called template-based compile-time programming.<p>By making 3 instances of linear_feedback_shift_engine class template ( and 2 of xor_combine_engine ), you are forcing the compiler to expand the code exactly as-is 3 times, each with different parameters.<p>The parameters to the template are constant, therefore the compiler can easily look at how they are used and you are guaranteed ( even in a 1999 c++ compiler ) that the compiler will look at the copies of the code and merge them as much as possible into a single piece of code... which is the one that you see when you decompile the code.<p>So in summary, it means that you get to write fairly readable code while the final binary is fully optimized as-if you had spent the time merging all the variants as needed for the specific constants.</p>
]]></description><pubDate>Thu, 17 Sep 2026 10:30:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=49738759</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=49738759</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49738759</guid></item><item><title><![CDATA[New comment by windenntw in "The Inference Hardware Revolution of 2026"]]></title><description><![CDATA[
<p>This is essentially the way many 8 bit games did 3d rendering ( for example the world famous Elite )... you just need two tables, one linear2log and another log2linear, with careful measurement of the ranges and number of elements needed in you application ( which is easy for inference ).<p>ps. Also used in the original circuits of the Yamaha DX7 synthetiser ( <a href="https://www.righto.com/2021/11/reverse-engineering-yamaha-dx7.html" rel="nofollow">https://www.righto.com/2021/11/reverse-engineering-yamaha-dx...</a> ).</p>
]]></description><pubDate>Wed, 16 Sep 2026 10:31:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=49724438</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=49724438</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49724438</guid></item><item><title><![CDATA[New comment by windenntw in "User Interfaces of the Demo Scene"]]></title><description><![CDATA[
<p>Greetings from Spain!<p>We somehow got a copy of Defy diskmag, started swapping with Cro^Cydonia and got to enjoy Satisfaction Guaranteed by Pearl :)<p>I always did all my small tools and stuff in blitz basic 2, would dump binary file and incbin them in Devpac.<p>-- winden^TNC^Network<p>[ <a href="https://www.pouet.net/prod.php?which=14404" rel="nofollow">https://www.pouet.net/prod.php?which=14404</a> and <a href="https://www.pouet.net/prod.php?which=7645" rel="nofollow">https://www.pouet.net/prod.php?which=7645</a> ]</p>
]]></description><pubDate>Wed, 29 Jul 2026 09:50:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=49095303</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=49095303</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49095303</guid></item><item><title><![CDATA[New comment by windenntw in "User Interfaces of the Demo Scene"]]></title><description><![CDATA[
<p>Can confirm all sceners call it sinus in Spain :)</p>
]]></description><pubDate>Wed, 29 Jul 2026 09:43:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=49095243</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=49095243</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49095243</guid></item><item><title><![CDATA[New comment by windenntw in "NotebookLM is now Gemini Notebook"]]></title><description><![CDATA[
<p>Thats an excellent idea. I've created <a href="https://gemini.google.com/gem/17xMogBqRSc2AtdCC-WRfObgHcceD0qxq?usp=sharing" rel="nofollow">https://gemini.google.com/gem/17xMogBqRSc2AtdCC-WRfObgHcceD0...</a> and tested it with a couple conversations and it works great :)</p>
]]></description><pubDate>Fri, 17 Jul 2026 13:47:58 +0000</pubDate><link>https://news.ycombinator.com/item?id=48947385</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=48947385</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48947385</guid></item><item><title><![CDATA[New comment by windenntw in "Jurassic Park computers in excruciating detail"]]></title><description><![CDATA[
<p>Protip: all modern monitors and TVs can still run at 50HZ and you can configure Linux to use it all the time --> zero vsync micro jumps when running european software under ZX, Amiga or C64 emulators :)</p>
]]></description><pubDate>Wed, 15 Jul 2026 11:55:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=48919460</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=48919460</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48919460</guid></item><item><title><![CDATA[New comment by windenntw in "Jurassic Park computers in excruciating detail"]]></title><description><![CDATA[
<p>The memory requirement is actually not a problem, because you may be able to stream the mp3 from a harddisk ( easily 159 KB per second from a 2.5 inch ide disk when used on a 7mhz 68000 of amiga 600)  or maybe even from a floppy ( 10 KB per second on a double density floppy ).<p>The actual problem is that mp3 decoding requires lots of math, and the total cpu usage to decode at 22Khz mono is the equivalent of a 68030 running at 50mhz, which is more or less 5 times as much CPU as a 68000 running at 16mhz.</p>
]]></description><pubDate>Wed, 15 Jul 2026 11:49:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=48919395</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=48919395</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48919395</guid></item><item><title><![CDATA[New comment by windenntw in "Mechanistic interpretability researchers applying causality theory to LLMs"]]></title><description><![CDATA[
<p>For me: January = up, April = left, July = down, October = right.<p>Never sure why I did this association, maybe it comes from a drawing in a book I read when I was six or somthn?</p>
]]></description><pubDate>Mon, 13 Jul 2026 18:26:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=48896708</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=48896708</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48896708</guid></item><item><title><![CDATA[New comment by windenntw in "Additive Blending on the Nintendo 64"]]></title><description><![CDATA[
<p>Here is one in plain 68000 assembler.<p><pre><code>  move.b #200,d0
  move.b #100,d1
  add.b  d0,d1   ; 8th bit goes to X flag
  subx.b d0,d0   ; d0 = $00 or $ff depending on X flag
  or.b   d0,d1   ; d1 = 255 if there was saturation
</code></pre>
You can do the same with all others that somehow store
the 8th bit carry somewhere then allow using it for substraction.</p>
]]></description><pubDate>Thu, 21 May 2026 10:40:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=48220460</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=48220460</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48220460</guid></item><item><title><![CDATA[New comment by windenntw in "Revision Demoparty 2026: Razor1911 [video]"]]></title><description><![CDATA[
<p>For me <a href="https://demozoo.org/music/249024/" rel="nofollow">https://demozoo.org/music/249024/</a> from the Deep Remix is their best coop.</p>
]]></description><pubDate>Wed, 15 Apr 2026 11:05:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=47777414</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=47777414</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47777414</guid></item><item><title><![CDATA[New comment by windenntw in "72% of the dollar's purchasing power was destroyed in just four episodes"]]></title><description><![CDATA[
<p>IMO the first graph would make a lot more sense when plotted in log scale.<p>Also this way of framing "As of February 2026, the US dollar has lost 96.9% of its purchasing power relative to January 1914. This means that $100 in 1914 would buy only approximately $3.05 worth of goods today" is of course math-correct but difficult to understand intuitively.<p>I think it makes more sense to explain it in the opposite direction or in both directions: "$100 in 1914 would buy only approximately $3.05 worth of goods today, or equivalently, $100 in 1914 is worth ~ $3278 nowdays (because 100 / 3.05 ~= 32.78 "<p>This also makes it easier to understand that the term "millionaire == person that has 1 million USD" only makes sense around 1914, because the equivalent amount of wealth nowdays would be "millionaire == person that has 32 million USD"<p>Anyways,  I liked a lot this visualization <a href="https://mlde8o0xa4ew.i.optimole.com/cb:VNTn.d9a/w:auto/h:auto/q:mauto/f:best/ig:avif/https://eco3min.fr/wp-content/uploads/2026/03/cpi-inflation-episode-decomposition-v1-1.svg" rel="nofollow">https://mlde8o0xa4ew.i.optimole.com/cb:VNTn.d9a/w:auto/h:aut...</a> that visualizes the compression in time of the big value changes.</p>
]]></description><pubDate>Mon, 30 Mar 2026 15:54:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=47575870</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=47575870</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47575870</guid></item><item><title><![CDATA[New comment by windenntw in "The Rise of Whatever"]]></title><description><![CDATA[
<p>100 times this</p>
]]></description><pubDate>Fri, 04 Jul 2025 11:00:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=44463403</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=44463403</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44463403</guid></item><item><title><![CDATA[Incremental, a powerful library for building self-adjusting computations (2015)]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.janestreet.com/introducing-incremental/">https://blog.janestreet.com/introducing-incremental/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42273283">https://news.ycombinator.com/item?id=42273283</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 29 Nov 2024 12:11:46 +0000</pubDate><link>https://blog.janestreet.com/introducing-incremental/</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=42273283</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42273283</guid></item><item><title><![CDATA[New comment by windenntw in "Backdoor in upstream xz/liblzma leading to SSH server compromise"]]></title><description><![CDATA[
<p>What do you mean "tests"?</p>
]]></description><pubDate>Sun, 31 Mar 2024 10:30:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=39883011</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=39883011</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39883011</guid></item><item><title><![CDATA[New comment by windenntw in "Understanding Google's File System (2020)"]]></title><description><![CDATA[
<p>Single Malt, specially Islays, are still very much welcomed :)</p>
]]></description><pubDate>Wed, 20 Mar 2024 09:51:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=39764487</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=39764487</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39764487</guid></item><item><title><![CDATA[New comment by windenntw in "Drawing and illustrating in the pre-digital time (2019)"]]></title><description><![CDATA[
<p>Get her to try <a href="https://www.escapemotions.com/products/rebelle/about" rel="nofollow">https://www.escapemotions.com/products/rebelle/about</a> , it is reaaaaally close to the original watercolour finish.</p>
]]></description><pubDate>Mon, 26 Feb 2024 09:29:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=39509220</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=39509220</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39509220</guid></item><item><title><![CDATA[New comment by windenntw in "Tachyum’s Prodigy CPU Specs"]]></title><description><![CDATA[
<p>You can already get that by replacing the cpu with a pistorm:<p><a href="https://linuxjedi.co.uk/2021/12/27/800mips-amiga-with-emu68-and-pistorm/" rel="nofollow">https://linuxjedi.co.uk/2021/12/27/800mips-amiga-with-emu68-...</a></p>
]]></description><pubDate>Mon, 13 Jun 2022 14:36:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=31726231</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=31726231</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=31726231</guid></item><item><title><![CDATA[New comment by windenntw in "Amend – A small revision control system for Macintosh (System 6)"]]></title><description><![CDATA[
<p>Yes, it has a low-pass-filter that you can turn on or off. See<p><a href="http://amigadev.elowar.com/read/ADCD_2.1/Hardware_Manual_guide/node00EE.html" rel="nofollow">http://amigadev.elowar.com/read/ADCD_2.1/Hardware_Manual_gui...</a><p>and more generally:<p><a href="http://amigadev.elowar.com/read/ADCD_2.1/Hardware_Manual_guide/node00E8.html" rel="nofollow">http://amigadev.elowar.com/read/ADCD_2.1/Hardware_Manual_gui...</a></p>
]]></description><pubDate>Mon, 07 Feb 2022 17:51:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=30248363</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=30248363</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30248363</guid></item><item><title><![CDATA[New comment by windenntw in "Amend – A small revision control system for Macintosh (System 6)"]]></title><description><![CDATA[
<p>I took a small look at your repo and noticed a possible issue: while Gravis Ultrasound did linear interpolation of samples [1], on Amiga all sample replay was strictly non-interpolated [2] ... essentially on each display scanline the hardware would check the period down-counter and load the next sample if zero was reached.<p>cf:<p>[1] <a href="http://www.gravisultrasound.com/files/documentation/GUSFAQ.txt" rel="nofollow">http://www.gravisultrasound.com/files/documentation/GUSFAQ.t...</a><p>[2] <a href="http://bax.comlab.uni-rostock.de/dl/Paula_SystemTheoretic.pdf" rel="nofollow">http://bax.comlab.uni-rostock.de/dl/Paula_SystemTheoretic.pd...</a></p>
]]></description><pubDate>Mon, 07 Feb 2022 14:40:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=30245457</link><dc:creator>windenntw</dc:creator><comments>https://news.ycombinator.com/item?id=30245457</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=30245457</guid></item></channel></rss>