• 0 Posts
  • 12 Comments
Joined 1 year ago
cake
Cake day: March 21st, 2024

help-circle








  • Colobot - don’t think it was “shareware” but it absolutely came as a demo on ceebot.com (still hosted there today I believe). Literally THE game that got me into computer programming and whatnot.

    Otherwise for actual shareware, I loved Jazz Jackrabbit 2, Crazy Gravity and The Worm (found it!)

    I really wanted to play a couple shareware games called Jetpack Joyride, and Hot Chix n Gear Stix as a kid, but neither of them would play on my Windows XP netbook as they had a hard check for if you were on either Windows 95 or 98, even with compatibility mode.



  • There is still not a neat replacement for wmic in PowerShell. If I want to do the equivalent of wmic product where name="some shitware" call uninstall it looks like this:

    $instance = Get-CimInstance win32_process -Filter "Name = 'powershell_ise.exe'" $instance | Invoke-CimMethod -MethodName 'Terminate'

    Like how the hell is that easier to understand Microsoft? Everything else in PowerShell follows a general pattern of Upper Camelcase.

    That’s just one instance of what I’ve found working with pwsh at work that leaves me thinking wtf