• 0 Posts
  • 78 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle

  • They hated him because he spoke the truth.

    porting security updates from those LTSC versions into the regular ones might be doable.

    The way will likely be to just adjust some registry keys to force Windows Update to pull from the LTSC update channel. That’s been the solution for ages, no “porting” needed.

    Group Policy

    I’ve lost count of how many of these articles have been posted on Lemmy screaming that the sky was falling over something you can switch off with three clicks and a scroll (Start, Settings, Personalization, scroll to the bottom and click the final switch). Group policy may be beyond the general skill level, which makes the constant Linux suggestions even more laughable.

    Like you, I regularly direct people to group policy (and even how to safely activate Windows with a fake Pro license so they can get Group Policy). Fighting an uphill battle.




  • Same, but surely you realize that ads have only gotten worse in the intervening time. I also don’t truly believe that we’ll ever reach critical mass on adblocker users. You’re asking people who don’t care, who don’t use the internet the same way we do, to suddenly care enough to take manual action outside of their knowledgebase amd comfort zone.

    The only way the adblocker user numbers get pumped up to critical mass for a change is if a popular default browser makes adblocking an opt-out default.


  • As well as predatory/not, there’s also a trend with attention grabbing/not.

    There was a period of time where Google AdWords ruled the online ad space, and most ads were pure text in a box with a border making the border between content and ads visually distinct.

    Kind of like having small portions of the newspaper classified section cut out and slapped around the webpage.

    I still disliked them, but they were fairly easy to look past, and you didn’t have to worry about the ad itself carrying a malware payload (just whatever they linked to).

    Companies found that those style ads get less clickthrough than flashier ones, and that there’s no quantifiable incentive to not make their ads as obnoxious as possible. So they optimized for the wrong metric: clickthrough vs sales by ad.

    More recently, companies have stepped up their tracking game so they can target sales by ad more effectively, but old habits die hard, and predatory ads that just want you to click have no incentive to care and “de-escalate” the obnoxiousness.



  • That’s absolutely acceptable. Don’t fix what ain’t broke.

    But please don’t publicly post a joke/rant about how your only option to accomplish something was through absurd hacky workarounds, when the issue is that you refused to learn the tools you have.

    What we have here is the slightly more tech literate version of printing out a Word Doc so you can re-arrange, remove, and add pages physically before scanning it back in as a PDF to email someone, then complaining about it being so difficult, rather than just using one of the many many print to PDF and PDF editing/splicing tools.




  • All of those inputs would likely be much better built into the ps1 file. PowerShell is meant as a sucessor to vbscript which was meant as a successor to windows batch.

    Selecting options? Make them parameters that you just set when calling the script: ./build.ps1 -Arch 64 -CompressSplines

    Needing someone to manually confirm something completed? Add a while loop to wait 5 seconds while whatever spawned process is still running.

    Etc.

    Also, you can have multiple terminals open in VSCode.

    You’ve not listed any requirements that aren’t more easily solved with existing features in the tools you’ve listed. Learn the tools your work expects you to use before you start blaming them for shit.



  • Still hurts, but sometimes it’s the only option.

    If you’re trying to confirm things like account existence/deletion, there’s often no “account exists” function to return true or false. You just have to figure out the specific exception thrown and catch that specific one.

    The worst are libraries that don’t give specific exceptions, so you have to catch all exceptions then do extra work to tell what the specific situation is. Does the account not exist, or is the system unreachable?