Skip to content

Instantly share code, notes, and snippets.

@FoxxMD
FoxxMD / .scrobbler.json
Created March 9, 2023 19:16 — forked from ericboehs/.scrobbler.json
Scrobble iTunes/Apple Music to Last.fm
{
"lastfm": {
"username": "ericboehs",
"password": "secret",
"api_key": "abc123",
"api_secret": "xyz890"
}
}
@FoxxMD
FoxxMD / mustache.md
Created June 4, 2021 17:31 — forked from Dammmien/mustache.md
Mustache cheatsheet

Basic tag

  Hello {{name}} !!

Comments

 {{! This is a comment, and it won't be rendered }}
@FoxxMD
FoxxMD / Plex nvdec enable.sh
Created April 3, 2019 15:57 — forked from Xaero252/Moved.md
Enable nvdec support for plex dockers on unraid
#!/bin/bash
# This should always return the name of the docker container running plex - assuming a single plex docker on the system.
con="$(docker ps --format "{{.Names}}" | grep -i plex)"
echo -n "<b>Applying hardware decode patch... </b>"
# Check to see if Plex Transcoder2 Exists first.
exists=$(docker exec -i "$con" stat "/usr/lib/plexmediaserver/Plex Transcoder2" >/dev/null 2>&1; echo $?)
@FoxxMD
FoxxMD / install-redis.sh
Created October 12, 2015 16:55 — forked from four43/install-redis.sh
Install Redis
#!/bin/bash
# from here: http://www.codingsteps.com/install-redis-2-6-on-amazon-ec2-linux-ami-or-centos/
# and here: https://raw.github.com/gist/257849/9f1e627e0b7dbe68882fa2b7bdb1b2b263522004/redis-server
###############################################
# To use:
# wget https://gist.githubusercontent.com/four43/e00d01ca084c5972f229/raw/install-redis.sh
# chmod 777 install-redis.sh
# ./install-redis.sh
###############################################
echo "*****************************************"