10 comments

  • fao_3 hours ago
    This article has the bones of something interesting, but the style is too barren and the content really needs to be fleshed out more. I feel like if a human had written it, they would have thought of more to write. Like a human wouldn&#x27;t be content with two paragraph section about K&amp;R C without actually writing about difficulties encountered with this, parts that were interesting to implement and parts that weren&#x27;t, et cetera. A human would look at that and go &quot;ok but, what is the point to this, what makes this interesting?&quot;<p>It is not enough to simply say you have done something interesting (which is all that this blog post amounts to), we as humans want to know the <i>story</i> of it, it&#x27;s that that makes it interesting. You can&#x27;t get that story if you&#x27;re just vibecoding it, much like how the one person involved in Wolfram Alpha spent a lot of tokens on an LLM that constructed alternative forms of logic, and came away from it thinking that it was worthless, the entire time wasted, because there was absolutely no way for a human to interact with it, those logics had no story or analogies or anything for a human to latch on to.
    • jdsnape3 hours ago
      I agree, another example is the line ‘lots of things had to be done by hand’. I think a more human narrative would be describing the discovery that thing X that we take for granted was missing and tell the story of figuring it out.<p>Giving them the benefit of the doubt though, perhaps they were aiming for brevity.
    • glimshe2 hours ago
      I respect your tastes but, as a human, I like the objectivity in the article. I actually couldn&#x27;t care less about the backstory and I tend to skip articles that wander around without getting to the point. I prefer to read a book when I want that.<p>In other words, different people sometimes want different things...
  • el_peaton3 hours ago
    While I haven&#x27;t daily driven Windows in years and am usually the first to criticize Microsoft. You have to give credit where credit is due; Windows backwards compatibility is simply nuts. I had never run into compatibility issues with programs or games built for older Windows version, nor have I heard of anyone who did.
    • shakna2 hours ago
      Some games that ran on Vista, can run under Wine, but not on Windows 11. The backwards compatibility story has changed in the last few years.
      • Asmod4n1 hour ago
        Games for Windows, can’t play any of those anymore without cracking them since the severs got turned off.
      • pathartl58 minutes ago
        I&#x27;d like to know which ones you&#x27;ve had issues with. I&#x27;ve compiled a collection of hundreds of Windows games from ~96-2006 and I&#x27;ve only run into one that&#x27;s required an appcompat flag (carmageddon 2).
        • GeekyBear49 minutes ago
          Heroes of Might and Magic 3
    • zabzonk2 hours ago
      &gt; I had never run into compatibility issues with programs or games built for older Windows version<p>Try running a real-mode Windows program on a modern version of Windows.
      • dwattttt2 hours ago
        Intel backwards compatibility has meant that real mode is still with us more of less, but to give context to people who aren&#x27;t as familiar: real mode was superseded by protected mode with the introduction of the 80286, in 1982.
      • EvanAnderson1 hour ago
        For sure.<p>Not building NTVDM for 64-bit Windows was a major departure from previous strategy and marks a clear regression in Microsoft&#x27;s attitudes toward backwards compatibility.
        • mschuster9133 minutes ago
          &gt; and marks a clear regression in Microsoft&#x27;s attitudes toward backwards compatibility.<p>Yeah... but for what purpose should it have been kept? Anyone with a legitimate need to run 16 bit software on a modern Windows machine can always go for virtualization or emulation. The effort required in supporting that technology is far from zero, and old code to work with legacy stuff - no matter in which project - is always a fruitful source of security exploits.
          • EvanAnderson4 minutes ago
            My observation is the &quot;old Microsoft&quot; would have kept it in and supported it because that&#x27;s how they rolled. The lack of NTVDM in x64 Windows signaled a change that the commitment to compatibility is now on shaky ground.<p>Whether it should have been kept or not is secondary, in my mind, to eroding the confidence their Customers had that old software would continue to work.<p>The market doesn&#x27;t seem to give a damn so I guess they made the right call.
      • rvnx2 hours ago
        You just need to install 86Box as a compatibility layer. Everything runs perfectly.<p>You only have to copy-paste one .exe file and then you can launch your app from Windows, that’s it. Sounds perfectly reasonable.
        • Narishma2 hours ago
          86box is a PC emulator, not a compatibility layer.
    • rvba2 hours ago
      Lots of old games dont work anymore, but you can still run them by compabtibility modes.<p>16 bit programs dont seem to work at all though - you need wine or dosbox
  • Dwedit2 hours ago
    16-bit windows applications aren&#x27;t supported natively by 64-bit windows, but OTVDM (based on Wine code) will run most of them fine.
    • masfuerte56 minutes ago
      I&#x27;ve been using otvdm (aka winevdm) and it is very good. It works like the original ntvdm did when running on non-x86 platforms. It emulates the processor and translates 16-bit api calls into 32-bit api calls so things work as you&#x27;d expect.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;otya128&#x2F;winevdm" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;otya128&#x2F;winevdm</a>
  • Dwedit2 hours ago
    The game is known as Qix, Xonix (title of a clone) is not a common name for the game.
  • wiseowise2 hours ago
    Yet whenever I take a look at some random React&#x2F;mobile project it is impossible to build after upgrade.
  • 7087334549275161 hour ago
    Just fwiw, it built and ran ok on windows 10, with tcc. 64 bit exe...
  • PaulHoule1 hour ago
    So em dash.
  • fithisux2 hours ago
    Winapi has exploded the last years in terms of functionality, still it was never sanitized to follow any C standard in terms of types.
    • Dwedit2 hours ago
      To be fair, the C standard for types is pretty dreadful. How big is an int? A long? Want an integer type that matches the size of a pointer? &lt;stdint.h&gt; did fix a lot of the issues, but people targeting an early C version don&#x27;t have this header available.<p>Windows type names have stayed mostly stable since Win32, but some of them are still misleading. DWORD, UINT and ULONG are all 32-bit unsigned integer types. But in C#, &quot;ulong&quot; is a 64-bit type despite having the same name, this leads to making mistakes when transcribing Win32 type names into C# code.<p>Windows came up with its type names before &lt;stdint.h&gt; existed, so you won&#x27;t see any uint32_t in there, just DWORD.
    • delta_p_delta_x55 minutes ago
      Use Windows Implementation Library to clean things up and get some RAII on handle types: <a href="https:&#x2F;&#x2F;github.com&#x2F;microsoft&#x2F;wil" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;microsoft&#x2F;wil</a>
    • mschuster9155 minutes ago
      It&#x27;s not (reasonably) possible to do so though, because it would break so, so much legacy code. The only thing you can do is to add new functionality (e.g. the difference between A and W APIs - A is ASCII, W is UTF-16) or to shoehorn crap onto existing interfaces (again, A APIs to which you pass UTF-8 and pray for the best), but you cannot delete any publicly exposed API or modify existing types.
  • Asooka2 hours ago
    &gt; That was probably the most surprising part of the entire experiment: internally, Windows has changed enormously over the decades, yet the application interface has stayed so stable that code written in the mid-1980s still looks completely familiar.<p>Imagine if Linux stuck to that same level of interface compatibility. Think of the thousands of man-hours lost to rewriting perfectly good code just chasing the new shiny thing. In an OS built by volunteers we&#x27;re wasting all developers&#x27; time to rebuild their software for the new interface, instead of having on developer spend time to keep the old interface working with the new implementation. And don&#x27;t try to go &quot;uhm akchyually Linux is the kernel and the kernel is stable&quot;, nobody cares. I mean the whole OS, from the kernel to the GUI layer. Is it any surprise that the best tools on Linux are all console programs using the POSIX interface, which has remained stable for the lifetime of the OS? I would go as far as to say that GTK is the Linux Desktop&#x27;s original sin (followed closely by Qt). Motif and CDE were already established as the Unix GUI API, they should have been reimplemented with an optional separate GTK-native API. Maybe the next generation will learn from our mistakes.
    • ezst44 minutes ago
      Who exactly in the Linux world is supposed to get paid wonderfully to keep mountains of old cruft and technical debt in working order? Not to say I&#x27;m insensitive to your point, but when whole UI frameworks are amateurs&#x27; passion-projects, the practical burden of maintenance has very real implications. That&#x27;s essentially the whole story behind the Linux desktop losing Xorg.
    • markus_zhang14 minutes ago
      OSS is essentially more chaotic as everyone as his&#x2F;her own ideas. It’s not too different in a corporation but when someone is in control it’s easier to centralize things.
    • velcrovan2 hours ago
      Ah but what about (<i>dun dun dun</i>) “innovation”
  • londons_explore2 hours ago
    The M6 Bolt has been around since it was first standardized in 1898.<p>An M6 nut from then will fit a bolt made today, and vice versa.<p>Compatibility over a long time period isn&#x27;t hard to achieve. Simply don&#x27;t mess with the standard - don&#x27;t break what doesn&#x27;t need fixing.