[-] boydster@sh.itjust.works 3 points 11 hours ago* (last edited 11 hours ago)

Oh dang, I must have missed it. Is there a reader's digest version I can check out regarding the drama?

Edit: I think I found it - https://news.itsfoss.com/organic-maps-fork-comaps/

[-] boydster@sh.itjust.works 4 points 12 hours ago

Is there a compelling reason one might consider switching away from Organic Maps and move to CoMaps?

[-] boydster@sh.itjust.works 1 points 2 days ago

Ah ok thank you, I have the paid Proton so I had a feeling there were complications outside that space but wasn't sure

[-] boydster@sh.itjust.works 1 points 2 days ago

If you buy your own domain, you can connect it to an account like Proton or Tuta, making your personal email a little more portable. Last I checked, .nl domains were like $6 or $7 per year on Namecheap. And I'm pretty sure you can link both Proton and Tuta to a Thunderbird client if you really want to. You may need a paid account with the email provider if you want to link a custom domain, I can't recall offhand.

[-] boydster@sh.itjust.works 3 points 2 days ago

There's a near-endless supply of great mythology and legend to read and explore from all sorts of cultures dating back as far as the dawn of writing. I've had a lot of fun reading and comparing tales from various times and places, taking time to also note where in history the stories were being written down and what else was happening. Strong recommendation for anyone wanting a unique view on the history of societies and the stories they held (or still hold) dear.

[-] boydster@sh.itjust.works 14 points 4 days ago

It's nice to know it's a popular selection

[-] boydster@sh.itjust.works 21 points 6 days ago

The best way to tell precisely how spicy your rock is, is to taste it. That's just basic science, if you ask me.

28
submitted 1 month ago* (last edited 1 month ago) by boydster@sh.itjust.works to c/asklemmy@lemmy.world

Apologies if the photo quality is insufficient. In a particular bit of forest, I found an area with a large birch population that all seemed to be suffering from the same issue. Something is causing the leaves to first stripe green and yellow, then turn brown/black, and while there are new leaf buds forming, trees are seemingly losing the leaves faster than they can replace them. There are other areas with birch trees on the same forest that don't have this issue at all. In the affected area, some trees have only one or two leaves left with any green in them at all.

This is in New England, USA

[-] boydster@sh.itjust.works 131 points 2 months ago* (last edited 2 months ago)

Yes. He is now directly and mockingly violating the constitution and an explicit Supreme Court order. It is now a completely naked constitutional crisis for all the public to see.

Reasonable people have seen it happening since long before today, but today marks a shift from a more covert assault to an open one, and that is noteworthy.

Eta: I don't mean they were really covert before, either, to be clear. They dropped any remaining veil of plausible deniability today though. And then also let it slip on recording that the intent is to deprive US citizens of due process and ship "terrorists" (read: undesirables) to El Salvador, too. Today is a historic day, sadly.

[-] boydster@sh.itjust.works 163 points 5 months ago

Hell yeah, AOC. Get fucking loud.

[-] boydster@sh.itjust.works 217 points 5 months ago

Weird how we have to pay more money every single year, and insurance somehow provides us less and less for our greater and greater spend

17

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.

22

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.

...

172

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

[-] boydster@sh.itjust.works 281 points 1 year ago

Strange women lying in ponds distributing swords as a basis for a system of government.

[-] boydster@sh.itjust.works 209 points 1 year ago* (last edited 1 year ago)

Didn't George Floyd get murdered because he paid with a counterfeit? And assholes like this are proud of it.

27
submitted 1 year ago* (last edited 1 year 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 ›

boydster

joined 2 years ago