This file contains 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
#sudo wget http://nginx.org/download/nginx-1.9.12.tar.gz | |
#sudo tar -xvzf nginx-1.9.12.tar.gz | |
#cd nginx-1.9.12 | |
#sudo apt-get install -y build-essential libpcre3 libpcre3-dev zlib1g-dev | |
#sudo ./configure --with-stream && sudo make && sudo make install | |
# /usr/local/nginx/conf/nginx.conf - NGINX configuration file | |
worker_processes 1; |
This file contains 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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: sftp | |
--- | |
kind: Service | |
apiVersion: v1 | |
metadata: |
This file contains 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
#temp ftp server | |
#pip install pyftpdlib | |
#taken pretty much verbatim from https://pypi.python.org/pypi/pyftpdlib/ | |
# when I get I change I'll update it with docopt so that you can inject in params | |
from pyftpdlib.authorizers import DummyAuthorizer | |
from pyftpdlib.handlers import FTPHandler | |
from pyftpdlib.servers import FTPServer | |
authorizer = DummyAuthorizer() | |
authorizer.add_user("user", "12345", "/home/nobody", perm="elradfmw") |
This file contains 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
'original version by Tarsem Singh of STTM | |
Attribute VB_Name = "Module1" | |
Private Function convertedChar(AscID) As String | |
'Debug.Print Chr(AscID) & "=" & AscID | |
Select Case AscID | |
Case 32: convertedChar = " " | |
Case 48: convertedChar = "0" | |
Case 49: convertedChar = "1" | |
Case 50: convertedChar = "2" |
This file contains 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 | |
PROCCOUNT=`ps -Afl | wc -l` | |
PROCCOUNT=`expr $PROCCOUNT - 5` | |
GROUPZ=`groups` | |
if [[ $GROUPZ == *irc* ]]; then | |
ENDSESSION=`cat /etc/security/limits.conf | grep "@irc" | grep maxlogins | awk {'print $4'}` | |
PRIVLAGED="IRC Account" | |
else |
This file contains 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 | |
#####log stuff with info and error convenience methods | |
readonly log='/var/log/my_log_file.log' | |
if [ ! -f "$log" ];then #attempt to create log file | |
touch $log | |
if [ ! -f "$log_file" ];then #log file still not there (permissions?) | |
echo "Could not create a log file at ${log}" | |
exit 1 | |
fi |
This file contains 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
echo "Getting container/machine IP address..." | |
ip_address=`curl -s icanhazip.com` | |
if [ -z "$ip_address" ];then #if icanhasip failed | |
ip_address=`curl -s ifconfig.me` | |
if [ -z "$ip_address" ];then #if still can't get ipaddress | |
echo "Cannot get IP address, borked :-(" | |
exit 1 # terminate and indicate error | |
fi | |
else | |
echo "Got IP address of $ip_address" |
This file contains 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
<!-- | |
//#1569 deltatre.com demo | |
[email protected] | |
--> | |
<html> | |
<body> | |
<h1>#1569 deltatre.com player interaction demo</h1> |
This file contains 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 | |
# | |
# chkconfig: 35 99 99 | |
# description: Node.js init.d script /home/nodejs/sample/app.js | |
# see http://labs.telasocial.com/nodejs-forever-daemon/ and https://gist.github.com/nariyu/1211413 | |
# jujhars13 2013-10-15 | |
# | |
. /etc/rc.d/init.d/functions | |
USER="root" |
This file contains 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
(function(d, conf) { | |
var b = d.createElement('script'); | |
b.setAttribute('async', true); | |
b.src = '//embed.buto.tv/js/' + conf.object_id; | |
if (b.addEventListener) { //for IE<9 | |
b.addEventListener("load", function() { | |
if (window.buto) | |
buto.addPlayer(conf); | |
}, false); | |
} else if (b.readyState) { |