boydster

joined 1 year ago
[–] boydster@sh.itjust.works 4 points 14 hours ago* (last edited 14 hours ago)

If Democrats can't point at a fascist and say, "Look, I'm running against a literal fascist. You and I may disagree on some things, but we all know fascists are bad" while Trump aligns himself with other autocrats and fascists, then what is even happening in this world? We failed ourselves on election day. Trump has made himself known. A majority of voters picked him, and they collectively either completely ignored reality for the last decade or decided they're on board with his vision. The party isn't to blame, when the alternative was so foul. People chose this, whether through ignorance or malice. Make no mistake, both made an appearance

[–] boydster@sh.itjust.works 6 points 1 day ago (1 children)

My bet is Trump gets the 25th amendment treatment just after he passes the 2-year mark of his term. That way, the back half of the term won't start the timer on Vance's 2-term limit and the fascists can keep Americans sleepwalking for the next 12 years before we collectively wake up and realize we're in a dictatorship. I hope I'm wrong but I could easily imagine this plan already having been drawn up.

[–] boydster@sh.itjust.works 11 points 2 days ago

Yes, I fear defenestration of various "problems" will become more and more commonplace here in the US now, sadly

[–] boydster@sh.itjust.works 25 points 2 days ago* (last edited 2 days ago)

Here's a horrifying thought: JD's Silicon Valley puppetmasters wait until Trump has served just over 2 years into his term, then invoke the 25th and install JD. In the meantime, the MAGA types work the system to ensure they can guarantee a Vance victory through whatever means necessary for the next 2 cycles (since his first abbreviated session won't count as an official term), or a total of 10 years, before most Americans even realize we have sleepwalked into a Vance dictatorship funded by and primarily benefiting oligarchs like Musk and Thiel

[–] boydster@sh.itjust.works 5 points 2 days ago

"Surely the special interests and their enormous piles of money will offer guidance the people will all benefit from in these trying times," they'll say

[–] boydster@sh.itjust.works 4 points 4 days ago (1 children)

Too respectful for him, and too disrespectful for the environment. Love the energy though, I'm with you

[–] boydster@sh.itjust.works 30 points 4 days ago (1 children)

He'll be better for the worms than he was for humanity. This asshole put my grandfather's multi-generation lumber and hardware supply company out of business way back when.

[–] boydster@sh.itjust.works 0 points 4 days ago* (last edited 4 days ago) (1 children)

That's not how this started, moving the goalposts is pretty cheap. I was literally linking to an issue happening in this vary election that illustrates why secret ballots are so important. A position which, if you recall, you began by stating was invalid because you misunderstand (or, now more clearly, willfully misrepresent) how democracy in the US works, and your proposed "solution" only helps illustrate the easy ways vote buying and manipulation would be introduced without secret ballots. I'll block you, for obvious reasons. Good luck

There is already a record of who voted for what, all of your fears could be taking place as things are now. Making it accessible to the person, even with hoops to jump through, would only be an improvement.

Edit: additional context for added relevance

[–] boydster@sh.itjust.works 4 points 4 days ago* (last edited 4 days ago)

This kind of shilling has to be considered a massive, unreported campaign contribution. Come on.

Edit: a word, for clarity

[–] boydster@sh.itjust.works 75 points 1 week ago* (last edited 1 week ago) (1 children)

Here it is, proper orientation and including artist signature:

image

ETA: Another look at it, with the white background changed to transparent

[–] boydster@sh.itjust.works 17 points 2 weeks ago

Off on another long, strange trip, no doubt. RIP, Phil.

 

Trump was on Univision yesterday for a town hall, and during one exchange he made a huge deal about how great he was for farmers. Additionally, he's been talking about crazy tariffs again at recent events like the Economic Club of Chicago. With those things in mind, I thought it would be relevant to take a quick walk down memory lane. It's also worth noting, the article is pre-COVID - August 30, 2019. As many people with functioning memories will recall, things would not go on to get better from there.

 

Iran's alleged plot to assassinate former President Donald Trump and hack the Trump campaign amount to "an act of war," according to Republican Senator Lindsey Graham of South Carolina.

Just days after a would-be assassin's bullet grazed Trump's ear in July, the FBI announced that Iran had allegedly been separately plotting to kill the former president. Federal officials later revealed that Iran had hacked and stolen confidential information from the Trump campaign.

...

 

Paraphrasing his psychotic post that they are discussing in this article: "Bullets are flying, the war has begun, the Immigrant Problem must be brought to a final solution!"

23
submitted 8 months ago* (last edited 8 months ago) by boydster@sh.itjust.works to c/linux@lemmy.ml
 

After seeing someone else posting their struggles with getting Docker running on their system, I thought I might share my process for setting up new Docker nodes. I don't make any representations about my way being the right way, or the best way, but this way has been working for me. I have been playing around with a swarm, but if you aren't setting up a swarm you can just omit the swarm commands and some of the firewall allows (keep what you need open, obviously, like 22 for SSH if you're using it). Similarly, if you aren't connecting to a NAS, you can leave out the part about mounting external storage.

# new Docker Swarm node setup from fresh Debian Netinst

# as root, all nodes
apt install sudo
usermod -aG sudo [user]
logout

# as [user], all nodes
sudo apt update
sudo apt upgrade -y
sudo apt install fail2ban rkhunter ufw unattended-upgrades ca-certificates curl -y
sudo ufw allow 22 
sudo ufw allow 2377
sudo ufw allow 7946
sudo ufw allow 4789
sudo ufw enable
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y
sudo usermod -aG docker [user]

## Shared Storage Stuff, all nodes ##

nano ~/.smbcredentials
# paste the following:
#   username=[cluserUser]
#   password=[clusterPW]
#
# add mount point for shared storage
sudo nano /etc/fstab
# add the following to the bottom:
# /[NAS.IP.Address]/[ClusterStorageFolder]/ /home/[user]/share cifs credentials=/home/[user]/.smbcredentials 0 0

# on main node only
docker swarm init --advertise-address 
  #  copy the join command, we'll need it next

# on any additional nodes, paste the command copied above
docker swarm join [...all the rest of the command...]

# for each docker container, on any manager node
mkdir ~/share/[serviceName]  
cd ~/share/[serviceName]
  #  copy relevant compose.yml into the folder
  #  if necessary, also create any needed directories
docker compose up -d
docker compose down
docker stack deploy -c compose.yml
view more: next ›