Hello {{name}} !!
{{! This is a comment, and it won't be rendered }}
Unraid => Apps => search for rclone
and install the one with Waseh's Repository
in it
create password file output => https://hostingcanada.org/htpasswd-generator/
From unraid terminal:
echo "htpasswdOutput" > /boot/config/plugins/rclone/.htpasswd
// based on https://stackoverflow.com/a/49462738/1469797 | |
// What It Do? | |
// | |
// Will delete all messages in a channel AFTER the message id specified | |
// | |
// Specify username/descriminator to only delete by user, | |
// or leave empty to delete all messages | |
// How To Use |
#!/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 $?) |
https://github.com/karan/Projects | |
https://github.com/tastejs/awesome-app-ideas | |
https://github.com/prakhar1989/awesome-courses | |
https://github.com/danistefanovic/build-your-own-x | |
https://github.com/joereynolds/what-to-code |
, , | |
/ \/ \ | |
(/ //_ \_ | |
.-._ \|| . \ | |
\ '-._ _,:__.-"/---\_ \ | |
______/___ '. .--------------------'~-'--.)__( , )\ \ | |
`'--.___ _\ / | Here ,' \)|\ `\| | |
/_.-' _\ \ _:,_ Be Dragons " || ( | |
.'__ _.' \'-/,`-~` |/ | |
'. ___.> /=,| Abandon hope all ye who enter | |
//requires https://github.com/gaearon/redux-thunk | |
//https://www.reddit.com/r/reactjs/comments/3vw7xq/reduxflux_animation_confusion/cxrpjbx | |
export default { | |
offset: 0, | |
interval: 0, | |
started: false, | |
paused: false, | |
start(offset, onTick) { | |
this.reset(); |
<?php | |
abstract class Base { | |
public function getPublicVars() { | |
return call_user_func('get_object_vars', $this); | |
} | |
} |
#!/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 "*****************************************" |
var express = require("express"); | |
var bodyParser = require("body-parser"); | |
var httpProxy = require('http-proxy'); | |
var url = require('url'); | |
var sessions = require("client-sessions"); | |
// configure session cookie | |
// sessions encrypts the cookie so even though the client has physical access | |
// the information it holds is not revealed (client's access token) |