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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>thisStream</title> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Palanquin+Dark:wght@600&display=swap'); | |
.text | |
{ | |
font-size: 32px; |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>ShouterOuter</title> | |
<script> | |
'use strict'; | |
const cfg = { | |
channel: 'CHANNEL', | |
login: { |
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
<!doctype html> | |
<html> | |
<head> | |
<script> | |
/******************************************************************************************************************\ | |
* * | |
* Titlebot for Streamer Song List v1.0 * | |
* by RealityRipple * | |
* * | |
******************************************************************************************************************** |
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
<!doctype html> | |
<html> | |
<head> | |
<script> | |
/******************************************************************************************************************\ | |
* * | |
* Titlebot for StreamElements v1.0 * | |
* by RealityRipple * | |
* * | |
******************************************************************************************************************** |
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
<!doctype html> | |
<html> | |
<head> | |
<script> | |
/* RealityRipple's Homemade Songlist (Version 1.3) */ | |
var userID = 'CHANNEL_NAME'; | |
/* Twitch channel */ | |
var oauthR = 'OAUTH_REFRESH'; |
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
<!doctype html> | |
<html> | |
<head> | |
<script> | |
var userID = 'your_account'; /* streamelements account ID */ | |
var userName = 'your_channel'; /* broadcaster name (to negate requester matching your name) - use '' to show your own name */ | |
var index = 1; /* queue index, starting from 1 for the next song and counting up */ | |
var fadePad = 32; /* left and right margin */ | |
var scrollRate = 20; /* lower is faster */ | |
var interval = 2; /* update time in seconds */ |
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
<!doctype html> | |
<html> | |
<head> | |
<script> | |
var userID = 'your_channel'; /* twitch channel, lowercase */ | |
var index = 1; /* queue index, starting from 1 for the next song and counting up */ | |
var fadePad = 32; /* left and right margin */ | |
var scrollRate = 20; /* lower is faster */ | |
var interval = 2; /* update time in seconds */ | |
var fadeTime = 0.5; /* fade speed in seconds */ |
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
<?php | |
$GLOBALS['brand'] = 'Generic Brand'; | |
$GLOBALS['url'] = 'http://time.generic.site'; | |
$GLOBALS['cert'] = './ts/'; | |
$GLOBALS['temp'] = '/tmp/'; | |
/* | |
Requirements | |
============ | |
PHP |
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 "${PATH-}" ]; then | |
export PATH="/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin" | |
fi | |
if ! { [[ "$PATH" == *":/bin:"* ]] || [[ "$PATH" == "/bin:"* ]] || [[ "$PATH" == *":/bin" ]]; }; then | |
PATH="$PATH:/bin" | |
fi | |
if ! { [[ "$PATH" == *":/usr/bin:"* ]] || [[ "$PATH" == "/usr/bin:"* ]] || [[ "$PATH" == *":/usr/bin" ]]; }; then | |
PATH="$PATH:/usr/bin" |
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/sh | |
for d in */; do | |
cd $d | |
git reset --hard &>/dev/null | |
git clean -xdf &>/dev/null | |
git fetch | |
UPSTREAM=${1:-'@{u}'} | |
LOCAL=$(git rev-parse @) | |
REMOTE=$(git rev-parse "$UPSTREAM") | |
if [ "$LOCAL" = "$REMOTE" ]; then |
NewerOlder