• 0 Posts
  • 15 Comments
Joined 2 years ago
cake
Cake day: July 4th, 2023

help-circle



  • but_what_about_.jpg

    whataboutism isn’t some magical phrase that you can utter every time someone brings up hypocrisy

    if we’re going to support sanctioning civilians based on their countries breaking international law, then we should not have double standards. otherwise it’s very clear to anyone paying attention that this is a geopolitical issue and not a moral one.

    and that’s what this is actually about. the US sanctions on Russia are a geopolitical tool meant to make the Russian re-subjugation of Ukraine more expensive. that’s it. US doesn’t actually care about Ukraine- neither this administration or the last.

    to me, that doesn’t justify banning individuals from participating in OSS projects. anybody that wants to contribute should be able to.



  • Research has shown it has historically had very little to no impact on policy. What it does do is harm the lowest rungs of society.

    For example a 2019 report on Trump’s Venezeuala sanctions estimate up to 40,000 people died. Mostly poor people who went without healthcare and medicine because the US froze all of the government’s funds and access to credit.

    In my opinion, I’d prefer if we just bombed civilians in the countries we sanction. It’s more honest. It really is a form of low level warfare. Something akin to a medieval raiding party




  • imagemagick handles almost all image files

    images ) ls
    001.jpg  002.jpg  003.jpg  004.jpg  005.jpg
    images ) convert 001.jpg example.pdf
    

    ffmpeg handles almost all video files

    ex ) ls
    rock.mp4
    ex ) ffmpeg -i rock.mp4 rock.avi
    

    if you use gnome there’s a nice little feature of the file explorer where you can just drag and drop scripts into ~/.local/share/nautilus/scripts/

    for example

    make a fish script (ignoring error checking for brevity here, my real script had a couple guard rails)

    /#!/usr/bin/env fish
    set file $argv[1]
    convert $file (basename $file .png).pdf
    

    then when you right click on a file in your gnome file explorer you can click the scripts option

    example

    and the script is right there so you can just easily convert with the press of a button

    example

    note, i crossed out some stuff that includes client names

    tldr: there are so many ways to do what you need to do there’s no reason to trust random websites you don’t know. there’s a lot of slimey people out there wanting to take advantage of people. and everybody should strive to be at least a little computer literate. the examples i gave here aren’t complicated. they’re simple commands