I run the midwest.social instance. I’m also active on lemmy.ml. @seahorse@lemmy.ml

  • 4 Posts
  • 4 Comments
Joined 3Y ago
cake
Cake day: Aug 04, 2021

help-circle
rss

Upvotes and comments taking a long time to sync between instances
I've noticed that whenever I post from my instance (midwest.social) to lemmy.ml that the upvotes don't match that of what's on lemmy.ml and the comments don't show up for a while. ![](https://midwest.social/pictrs/image/d77cefbc-ce4a-40fb-b3e7-b87ef4929162.png) ![](https://midwest.social/pictrs/image/8904cc8a-a370-4250-994c-09a503651c5a.png)
fedilink

Question about Signal
My friend and I were discussing cell phone security and he said that if someone backdoored your phone that they could read all your signal messages. Is this true? I would think that the only way to view signal messages is to literally open up the app and view them.
fedilink




My first useful bash script ever that updates Lemmy's docker-compose.yml
Constructive feedback is appreciated. ``` #!/bin/bash FILE=docker-compose.yml if [ -f "$FILE" ]; then rm $FILE wget https://raw.githubusercontent.com/LemmyNet/lemmy/main/docker/prod/docker-compose.yml else echo "$FILE does not exist. Creating $FILE now..." wget https://raw.githubusercontent.com/LemmyNet/lemmy/main/docker/prod/docker-compose.yml fi ```
fedilink