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

help-circle

  • wizardbeard@lemmy.dbzer0.comtoMemes@lemmy.mlJust sayin
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 days ago

    But if you can’t summarize the solution to a complex societal problem with a history to it into a single simple sentence that can be used as a punchy “hot take”, clearly you just don’t want a solution! /s

    Way too many people in the world who are more willing to believe that things suck because everyone’s too stupid to try the “obvious” solution, instead of the fact that most societal issues are icebergs of complication and causes.


  • 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.





  • For-profit vs. Non-profit is an entirely different distinction under US law, with specific legal definitions for each. This is entirely separate under US law from publicly traded vs. privately owned, which has separate specific legal definitions.

    Valve is a for-profit privately owned company. That is what allows it to not maximize shareholder value, and is the unstated distinction that allows your quote to be true.

    For-profit publicly traded companies do have a legal responsibility for such.


  • 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.





  • wizardbeard@lemmy.dbzer0.comtoF-Droid@lemmy.mlNoice app
    link
    fedilink
    English
    arrow-up
    10
    ·
    2 months ago

    If I remember right, Noice started offering paid subscriptions to stream higher quality sound files from a central server. I just rolled back my install to the last version before that change (looks like 2.5.6) and disabled updating.

    I’ll have to check out soothing noise player!



  • 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?