This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
nginx-proxy: | |
image: jwilder/nginx-proxy | |
ports: | |
- "80:80" | |
- "443:443" | |
volumes: | |
- /etc/nginx/certs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Name: BundleStars Promotion Steam Links | |
* Description: Retrieves markdown formmated steam links for each product in a BundleStars promotion | |
* Author: Derek <[email protected]> | |
* Last Update: 2016/09/08 | |
* License: MIT | |
*/ | |
var promotion = ''; // paste promotion slug here |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: | |
# Encoding videos for YouTube with FFMpeg | |
# https://www.virag.si/2015/06/encoding-videos-for-youtube-with-ffmpeg/ | |
ffmpeg -i <input file> -codec:v libx264 -crf 21 -bf 2 -flags +cgop -pix_fmt yuv420p -codec:a aac -strict -2 -b:a 384k -r:a 48000 -movflags faststart <output_name>.mp4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -z $1 ] || [ -z $2 ]; then | |
echo "Usage: concatdvd CONCAT_STRING OUTPUT" | |
echo "Example: concatdvd \"concat:video1.mpg|concat:video2.mpg\" out.mpg" | |
exit 1 | |
fi | |
ffmpeg -i $1 -c copy -f dvd $2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> | |
<servers> | |
<server> | |
<!-- Login information for maven.skylark95.com to deploy artifacts --> | |
<id>maven.skylark95.com</id> | |
<username>ENTER_USERNAME_HERE</username> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# ImgurAlbum.sh | |
# | |
# Bash script to download images for an Imgur album | |
# | |
if [ -z "$1" ]; then | |
echo "ImgurAlbum: missing Album ID" | |
echo "Usage: ImgurAlbum [Album ID]" | |
exit |