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

help-circle

  • I feel like that’s a stretch, and there’s some important things to consider here.

    People are weird, and can fetishize all sorts of shit. There’s no reasonable way to control say, someone jerking off to pictures of hand models. Or to stop someone shlicking it to your shlubby beer gut at the beach photos you put up on social media if that’s their thing (and I know a woman who’s thing was “straight bears” for a long time).

    But no one has any agency or ability to prevent that. No one has any agency to prevent any random person passing them on the street and then later using that memory plus imagination as cranking fuel.

    For the sake of every individual’s personal sanity, I think it’s important that each and every one of us understand and accept that. Existing in the world is naturally giving up a certain amount of control. This is part of it, as disgusting as it is.

    This is even more the case when you put content out there. Whether through acting in film or other media, creating artwork, posting pictures, etc. Creating content in the current age of the internet is inherently ceding ownership and control over it. The moment it hits the public space, you cannot control what is done with it, and the sooner people can learn to accept that, the better off I think we all will be.


    I understand that feeling of violation to learn that someone has used you purely as an object for arousal.

    abuse

    Multiple times an ex manually stimulated me to physical arousal and used me as a human dildo. At the time I convinced myself I was into it, because I was a guy. I wasn’t, and while my trauma is relatively minor, it exists.


    That said, there is nuance. This content was not edited, it was merely taken out of the original context. Are we going to prevent news from doing this to prevent using content in ways unintended and unanticipated by the original creators?

    “I’ll know misuse when I see it” is not a sustainable method for evaluating misuse at scale.

    “If it’s clearly being used for erotic purposes” likewise doesn’t work, as defining that line isn’t straightforward. Do we ban reposts of bikini shots?

    This isn’t something that was created for private use that was leaked. It was content made for public consption. Being disgusted with how the public chooses to consume it is your right, but there’s no way to control that.

    Again, I entirely sympathize with the women experiencing this. Being used in this manner is dehumanizing.

    But there’s no stopping it. Best to accept as best you can and ignore it.





  • PowerShell variable names and function names are not case sensitive.

    I understand the conventions of using capitalization of those names having specific meanings in regards to things like constants, but the overwhelming majority of us all use IDEs now with autocomplete.

    Personally, I prefer to use prefixes anyway to denote that info. Works better with segmenting stuff for autocomplete, and has less overhead of deriving non-explicit meaning from stuff like formatting or capitalization choices.

    On top of that, you really shouldn’t be using variables with the same name but different capitalization in the same sections of code anyway. “Did I mean to use $AGE, $Age, or $age here?” God forbid someone come through to enforce standards or something and fuck that all up.



  • Lol, tell me you’ve never worked IT support again.

    The average user can’t remember passwords without browser autofill. They don’t want to tinker. A “just works” linux distro with a relatively limited set of default features targeted to a specific hardware set to avoid complications, like SteamOS on Steam Deck, is pretty much at the limit of the investment level the average user is willing to put in to keep things working.



  • Does anyone else remember Microsoft’s amazingly tone deaf slide deck about how integrating their systems and making thing seamless across multiple platforms including mobile phones and laptops would allow people to work during any/every spare moment in their lives, like while commuting?

    Businesses want to own every moment of your life not strictly required for continued existence. If they can normalize using sleep time for extra “passive” income by using your dream power or by just renting out “spare” brain computation power, they will.


  • Expecting any part of the brain to work that simply is foolish. We already know that REM sleep does a lot of the lifting for forming long term memories and processing complex input from your waking hours. Not to mention the importance of it for actual rest/recharging so you aren’t an exhausted zombie all the time.

    Sounds like a wonderful idea to just fuck around with that.


  • Fair enough. Just always seemed like a weird repeated sticking point.

    For anyone looking to buy it cheaper, look for OEM key resellers. It’s the discounted price for companies preinstalling Windows. You can only install it on one device though, instead of whatever “multiple install grace window” they allow normally.

    For anyone wanting it for free, MASgrave utilizes some sort of loophole with an official licensing method meant for corporations to get Microsoft to grant you a valid official license key for free. Microsoft can’t go back and somehow differentiate these keys from paid legit ones, so there’s no risk. Just make sure you’re getting MASgrave from their official source on github so there isn’t any malware snuck in. It also has some functionality for Office licenses as well.


    Also worth noting that with effort, you can excise the overwhelming majority of the anti-consumer bullshit from Windows. Not really accessible to the average joe though, real easy to break shit or not disable things properly so they get re-enabled through updates.







  • Yep, it’s blatant attempts to decrease costs of employment. Just like outsourcing various tech jobs, automated phone trees, and every business tech “no code required” automation/workflow platform ever devised.

    Convince people they can do more with your particular flavor of less. Charge them enough that they save money on the books but you make a profit through them using your toolkit.

    At the end of the day, you will always still need someone to fully understand the problem, the inputs, the expected outputs, the tiny details that matter but are often overlooked, to identify roadblocks and determine options around them with associated costs and risks, and ultimately to chart a path from point A to B that has room for further complications.

    Whatever the tool set, job title, or perceived level of efficiency provided by the tools, this need will never go away. Businesses are involved in a near constant effort to reduce what they have to pay for these skills, and welcome whatever latest fad points towards the potential of reducing those costs.


  • Assuming the latest version of OpenOffice doesn’t work for these files…


    My next course of action would be using the Win 10 machine with Word, or a VM with Win10 or 11 and the latest version of Word. Use MASGrave to trick M$ into considering it licensed if you need to.

    Use a Powershell script to interact with Word through the COM object interface and automate opening Word, opening the file, saving it as a different filetype, and closing. Here’s a snippet of Powershell from Reddit for going in the opposite direction (odt to docx) for a single file. I wouldn’t try to do this through Linux, just suck it up and use Windows so you don’t have an extra layer of mess to deal with.

    Going off M$ documentation of the save types enum, I would replace “wdFormatDocumentDefault” in that snippet with wdFormatOpenDocumentText or wdFormatStrictOpenXMLDocument, then test it with a single file to see which gives the output you need.

    Getting all the files of the starting type from a folder can be done using Get-ChildItem. Store those in a variable and use a foreach loop over the initial file list.