boydster

joined 1 year ago
[–] [email protected] 0 points 3 hours ago* (last edited 3 hours ago)

Wait till you learn about Melkor! He's a Vala, or one of the Valar, which is a higher order than the Maiar, and was basically super-Sauron from the before times

[–] [email protected] 0 points 9 hours ago* (last edited 9 hours ago) (6 children)

Small nerd gripe. Maia is the singular form of Maiar. "I am a Maia," or "I am one of the Maiar" get you there

[–] [email protected] 7 points 1 day ago (1 children)

Wait long enough, and neither will pass the nationalist purity test. The leopards will turn inwards for face-eating sooner than some fasc-allies think, I suspect

[–] [email protected] 83 points 2 days ago

10/10 headline on this one, no notes

[–] [email protected] 7 points 1 week ago* (last edited 1 week 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

[–] [email protected] 6 points 1 week 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.

[–] [email protected] 10 points 1 week ago

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

[–] [email protected] 25 points 1 week ago* (last edited 1 week 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

[–] [email protected] 5 points 1 week 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

[–] [email protected] 4 points 1 week ago (1 children)

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

[–] [email protected] 30 points 1 week 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.

[–] [email protected] 36 points 1 week ago

To make sure the tigers don't start getting any ideas

 

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!"

27
submitted 8 months ago* (last edited 8 months ago) by [email protected] to c/[email protected]
 

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 ›