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

help-circle


  • Surprisingly enough, a one-sentence Twitter link has led you astray!

    Bernie’s communication director lied? That sounds like a bad thing to do given they could be complicit in genocide.

    The bill blocks a particular sale by Trump of weapons to Israel.

    So only offensive weapons then…

    What’s carved out of it?

    Carved out is the absence of Bernie blocking the iron dome missiles that israel uses to act with impunity… Bernie would never touch them since the existence of the occupation is necessary in his mind.



  • Why are you making up what I said?

    Whee look at the goalposts go

    Failing to call it a genocide in 77 years is not moving a goalpost. Its basic human decency

    I am honestly a little bit surprised to see so many people eager to jump up and provide examples of the type of bad faith argument I was talking about in my original comment.

    Bad faith is what Bernie has done, always blaming Nentanyahu, continuing the flow of any arms, trade and people to the settler state.


  • No, his bills were always weasely with what restrictions they placed. They always had easy to reach exceptions that continued the flow of trade to the occupation. They always allowed more Americans to settler in the land and steal homes from the Palestinians.

    Bernie never truly has taken an anti-zionist position. He always ultimately props up the settler state. Even in his latest speech he blames the resistance.


  • He’s been doing what most of Lemmy would like to see someone in the US Congress doing

    He has focused more of his time criticising the Nentayahu government specifically, rather than the fundamental concept of running a settler colony. He has only recently starting naming the full israeli government. He still believes in sending weapons, aid and trade to the occupation ensuring the continued murder of the Palestinians can continue.

    is just going to get smoothly replaced by these users with some other reason to nailbite about him

    Because ultimately Bernie still supports the conditions that will continue the genocide. He is still a liberal zionist. He will still buy a beachfront property in Gaza once it is cleansed but I guess its ok if he cries the entire time.


  • For smaller backups <10GB ea. I run a 3 phased approach

    • rsync to a local folder /srv/backup/<service>
    • rsync that to a remote nas
    • rclone that to a b2 bucket

    These scripts run on the cron service and I log this info out to a file using --log-file option for rsync/rclone so I can do spot checks of the results

    This way I have access to the data locally if the network is down, remotely on a different networked machine for any other device that can browse it, and finally an offsite cloud backup.

    Doing this setup manually through rsync/rclone has been important to get the domain knowledge to think about the overall process; scheduling multiple backups at different times overnight to not overload the drive and network, ensuring versioning is stored for files that might require it and ensuring I am not using too many api calls for B2.

    For large media backups >200GB I only use the rclone script and set it to run for 3hrs every night after all the more important backups are finished. Its not important I get it done asap but a steady drip of any changes up to b2 matters more.

    My next steps is to maybe figure out a process to email the backup logs every so often or look into a full application to take over with better error catching capabilities.

    For any service/process that has a backup this way I try and document a spot testing process to confirmed it works every 6months:

    • For my important documents I will add an entry to my keepass db, run the backup, navigate to the cloud service and download the new version of the db and confirm the recently added entry is present.
    • For an application I will run through a restore process and confirm certain config or data is present in the newly deployed app. This also forces me to have a fast restore script I can follow for any app if I need to do this every 6months.