

They said this in the linked blog post:
A while ago, we discovered a way to scrape Spotify at scale.
Seems like reason enough to choose to scrape Spotify to me.


They said this in the linked blog post:
A while ago, we discovered a way to scrape Spotify at scale.
Seems like reason enough to choose to scrape Spotify to me.


I clicked the link to answer your question, it’s “High Resolution”. All the threads are centered on sharing images.
Yeah, seems like it should just be working…
You’ve probably already got this covered, but when you created your user monitors.xml config, did you have the dummy plug connected and disabled?
Maybe the config:
When you copy over your monitor config, are you correcting the ownership/permissions?
The little scriptlet I made to combat a previous nvidia/wayland multi-monitor headache boils down to:
sudo cp $HOME/.config/monitors.xml /var/lib/gdm/.config/
sudo chown gdm:gdm /var/lib/gdm/.config/monitors.xml
Maybe double check if GDM is ignoring wayland as well, I’ve definitely had that happen in the past too.
Maybe Linux just isn’t for you, and that’s okay. Go use Windows or Mac and enjoy your “just works” setup and lack of involuntary learning.


All the CDLC for RS2014 work by pretending to be the DLC for “Smashing Pumpkins - Cherub Rock”, because it was given away for free as a preorder. If you get any of the other delisted DLC, you can use Rocksmith Custom Song Toolkit to change the ID to one you own (free or paid, as long as you have a steam license for it) and it should work.


What I feel would be acceptable:
If you’re proud of your Framework laptop and want to brag about it, we’ll give you some swag for free that you can show off with when you’re out and about!
What this looked like to me:
If you’re attending a conference we’d be paid to attend, but can’t go to, will you show off your Framework laptop to attendees in an effort to convince them to buy one from us too, and we’ll send you some stickers?
The issue isn’t even what they’re asking for, but how their asking it.
When I last had an everyday carry USB stick (5+ years ago) I found I never actually used it for anything.
I had Ventoy and some practical ISOs, and PortableApps with a bunch of useful software (firefox, foobar2000, GIMP, notepad++…) for when I was using someone else’s Windows PC.
…think I stored like two word documents on it, ever.


The usual fix from the Jellyfin docs would be to check you file naming conventions, and add the TVDB or TMDB show ID to the folder so that it scrapes it correctly, or use the Identify option like @Rudee mentioned to select a better match from the UI after import.
Both TVDB and TMDB consider Pokémon Journeys to be Season 23 of the original Pokémon show, the OMDB seems to list it as a standalone show though, so you could import and match it against that metadata.
I have a similar scriptlet that I use to open YouTube URLs in mpv, using just and wl-clipboard… I just copy the URL and press my G1 key (it has a keybind of
just yt-pasteattached) which launches the yt-paste snippet below, reads the url from the clipboard, parses it and passes it to mpv.# Parse the clipboard for YouTube URLs and open them in mpv yt-paste: #!/usr/bin/env bash YOUTUBE_URL_REGEX="^https:\/\/(www\.youtube\.com\/watch\?v=|youtu\.be\/)[a-zA-Z0-9_-]{11}" YOUTUBE_PLAYLIST_URL_REGEX="^https:\/\/(www\.youtube\.com\/playlist\?list=)[a-zA-Z0-9_-]+" YOUTUBE_SHORTS_URL_REGEX="^https:\/\/(www\.youtube\.com\/shorts\/)[a-zA-Z0-9_-]{11}" # Youtube URL if [[ "$(wl-paste)" =~ $YOUTUBE_URL_REGEX ]]; then echo "Opening valid YouTube URL" >&2 notify-send --app-name="YT-Paste" --icon=mpv --transient "Opening YouTube URL" mpv "$(wl-paste)" # Youtube Playlist URL elif [[ "$(wl-paste)" =~ $YOUTUBE_PLAYLIST_URL_REGEX ]]; then echo "Opening valid YouTube Playlist URL" >&2 notify-send --app-name="YT-Paste" --icon=mpv --transient "Opening YouTube Playlist URL" mpv "$(wl-paste)" # Youtube Short URL elif [[ "$(wl-paste)" =~ $YOUTUBE_SHORTS_URL_REGEX ]]; then echo "Opening valid YouTube Shorts URL" >&2 notify-send --app-name="YT-Paste" --icon=mpv --transient "Opening YouTube Shorts URL" mpv "$(wl-paste)" # No Match else echo "Clipboard does not contain a valid YouTube URL" >&2 notify-send --app-name="YT-Paste" --icon=mpv --transient "Whoops!" "Clipboard does not contain a valid YouTube URL" exit 1 fi