Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)AO
Posts
0
Comments
1,229
Joined
2 yr. ago

  • None, because I never subscribed in the first place.

    Most of my media consumption is video games, and I often revisit decades-old games, so only temporarily having access to a game is not acceptable. Neither am I interested in paying more than once to retain access to content I already paid for; that's a scam. Perpetual license or GTFO.

    I don't generally watch movies, but if that ever changes, I'll be buying them on disc, keeping them, and ripping them so I can play them on my Linux PC. If I can't rip a disc because available tools can't break the DRM, then the disc is defective as far as I'm concerned, so I'll most likely return it for a refund without watching the movie.

    I'd like to credit early-2000s Slashdot for teaching me to think this way. If everyone did, a lot of today's problems wouldn't exist, including the subscription scam we're discussing in this thread. Shame what happened to that website and its community, but it was good while it lasted.

  • Well, that's the nice thing about virtual machines! 😁 You can copy them and bork them freely.

    In case you feel like experimenting, WinWorld has installation disk images for most of Apple's and Microsoft's vintage operating systems.

  • I just tried this in an MS-DOS + Windows 3.1 virtual machine that I have, and no, that doesn't happen. del *.dl does exactly what you'd expect.

    • del *.dl does not delete DLL files. Your friend probably accidentally pressed the L key twice.
    • del *.dl does not delete anything in any folder other than the current one. Your friend probably stored his porn in the C:\WINDOWS\SYSTEM folder or something.
    • I don't think there even is a built-in way in MS-DOS to delete files matching a pattern across multiple folders. You can delete files in a single folder matching a pattern (del), or you can delete a folder and all of its contents (deltree), but neither of those does what you're talking about.
    • Deleting DLLs stops Windows from starting, but doesn't stop MS-DOS from booting. MS-DOS doesn't have any DLLs to delete.
    • MS-DOS isn't even capable of loading DLLs at all. If you were writing an MS-DOS program and you wanted to link code dynamically, you had to bring your own dynamic linker to do it with. Fun times.

    You're right that it doesn't stop you from deleting system files, though, which is kind of odd as MS-DOS does have a mechanism for stopping you from doing that: the “system” attribute. This is used to protect the MS-DOS kernel files, IO.SYS and MSDOS.SYS. For whatever reason, though, the Windows installer doesn't give the Windows system files this attribute, so you can still see them and delete them at will.