

Yeah, even if the monetization is okay not some gacha bullshit the game will still make you play it everyday with some dailies bullshit. Really hoping they move past that type of shit.
Yeah, even if the monetization is okay not some gacha bullshit the game will still make you play it everyday with some dailies bullshit. Really hoping they move past that type of shit.
Like fuck the third image is clearly not the same person, people are so fucking dumb jesus christ
I think is just because of the nation, Katara and Soka water tribe = blue, Zuko fire = red and Aaang air = yellow(air nation use yellow robes)
don’t even remember that it happened
Harris said that yesterday…
If is just authoritarianism why they didn’t use this word? Why use Stalin/Communism? They both wanted to punch left.
Say that to Bernie and Harris, they are the ones associating Trump with communism.
I’m a liberal. I know the power that democracy bestows: vote.
Fighting fascism? Vote hard.
Fighting genocide? Vote harder.
Fighting cancer? You guessed it, just vote.
Vote solves everything, vote is beautiful.
Oversimplification is to say communism is bad because it causes starvation LUL.
Freetube
Edit: In my experience Piped or Invidious gets rate limited often and stop loading videos for a while and I need to change instances. Freetube doesn’t have that problem, the only times videos stop working is when youtube changes something, when that happens I use Freetube to grab the video link and run a script to download with yt-dl and watch on the mpv player.
#!/usr/bin/env bash
# Directory for downloaded videos:
DL_DIR="$HOME/Downloads/yt"
mkdir -p $DL_DIR
# Video player:
#PLAYER="xdg-open"
PLAYER="/usr/bin/mpv"
#PLAYER="/usr/bin/smplayer"
# Downloader and options:
YTDL="/bin/yt-dlp"
YTDL_OPTS=(--no-playlist -S "res:1080" -N 5 --add-chapters)
YTDL_DIR_OPTS=(-P "$DL_DIR")
set -e
CMD() {
printf "[CMD]: "
printf "\"%s\" " "$@"
printf "\n"
"$@"
}
# Get URL from clipboard if run without argument:
if [ -z "$1" ]; then
URL="$(xclip -o -sel c)"
# CMD qdbus org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory
else
URL="$1"
fi
# Get video filename
printf "[URL]: %s\n" "$URL"
FILENAME=$("$YTDL" --get-filename "${YTDL_DIR_OPTS[@]}" "$URL")
printf "[FILE]: %s\n" "$FILENAME"
# Download video
CMD "$YTDL" "${YTDL_OPTS[@]}" "${YTDL_DIR_OPTS[@]}" "$URL"
# Play video
CMD "$PLAYER" "$FILENAME" >/dev/null 2>&1
I also configured a cronjob to clean the directory everyday.
Apolitical people are really funny.