Skip to content

Instantly share code, notes, and snippets.

@willstare
willstare / solusFlixxoInstall.sh
Last active September 26, 2018 01:40
Install Flixxo on Solus
#!/bin/bash
# This script will install the latest flixxo app from their website. It will then create
# a working flixxo.desktop file after installation is complete.
# Warning: This script does not verify/validate what it downloads from Flixxo's site. USE AT YOUR OWN RISK
# Check back at https://gist.github.com/willstare/346f3442f86b62a01922110efa2a8375 for updates.
echo "This script must be run with sudo/root!"
# Delete /tmp/flixxo if it exists
rm -R /tmp/flixxo
@willstare
willstare / podcastPlaylistGen.py
Last active June 30, 2018 00:00
podcastPlaylistGen.py
"""
Create a Plex Playlist with the podcasts that were added today, sorted by oldest first.
If today's playlist exists, we will delete it and create it again to add potential new podcasts.
"""
import operator
import time
from plexapi.server import PlexServer
import requests
import datetime