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 | |
# /etc/init.d/selenium-grid | |
# centos-compatible selenium-grid startup script. | |
# Eugene Zakharchenko <z.evgeniy[at]gmail.com> | |
### BEGIN INIT INFO | |
# Provides: selenium-grid | |
# Required-Start: $remote_fs $syslog $network | |
# Required-Stop: $remote_fs $syslog $network | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 |
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 off | |
rem For git merging of branches into the branch you specify, for my covenience and possibly yours | |
rem created 2012-09-06 by [email protected] | |
rem ********* | |
rem will get the current branch name, checkout the branch you specify and merge | |
rem the original branch into the specified branch, and check | |
rem ********* | |
rem get the current branch name #http://stackoverflow.com/questions/6245570/get-current-branch-name |
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
rem Watch.bat - trying to emulate linux watch command on windows | |
rem inspired by http://stackoverflow.com/questions/6765554/is-there-a-windows-command-line-equivalent-to-linux-watch-command amd http://superuser.com/questions/191063/what-is-the-windows-analog-of-the-linux-watch-command | |
@echo off | |
title Watch %1 %2 %3 %4 %5 | |
:loop | |
cls | |
%1 %2 %3 %4 %5 | |
echo. | |
timeout /t 2 | |
goto loop |
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
rem 2013-01-04 [email protected] | |
rem will run git commit and add yoru message and then append it with some random text from whatthecommit.bat | |
rem you'll need CURL in your path | |
for /f "tokens=* delims= " %%a in ('curl -s http://whatthecommit.com/index.txt') do ( | |
git commit --verbose -a -m "%1 %%a" | |
) |
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
# Ubuntu upstart file at /etc/init/yourservice.conf | |
pre-start script | |
mkdir -p /var/log/yourcompany/ | |
end script | |
respawn | |
respawn limit 15 5 | |
start on runlevel [2345] |
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
{ | |
"resources": [ | |
"error::error", | |
"auth::login", | |
"auth::logout", | |
"index::index", | |
"video::index" | |
], | |
"acl": { | |
"guest": [ |
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) { |
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
<!-- | |
//#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
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" |
OlderNewer