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 [ "$#" -ne 1 ]; then | |
echo "No filename specified." >&2 | |
exit 1 | |
fi | |
FILENAME=$1 | |
MIMETYPE=$(file -b --mime-type "$FILENAME") | |
DATA=$(cat "$FILENAME" | base64) |
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
function Cache(config) { | |
config = config || {}; | |
config.trim = config.trim || 600; | |
config.ttl = config.ttl || 3600; | |
var data = {}; | |
var self = this; | |
var now = function() { | |
return new Date().getTime() / 1000; |
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
/* | |
1st | |
2nd | |
3rd | |
4th | |
11th | |
12th | |
21st | |
22nd | |
121st |
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
require 'date' | |
class Cache | |
Entry = Struct.new(:expiry, :value) | |
def initialize(opts={}) | |
@data = Hash.new | |
@opts = opts | |
end |
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
#!/usr/bin/env ruby | |
# Ubuntu: apt-get install libtagc0-dev | |
# gem install taglib-ruby | |
require 'taglib' | |
require 'fileutils' | |
#------------------------------------------------ | |
# Configuration |
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 | |
SERVICE_URL=http://icanhazip.com/ | |
if hash wget 2>/dev/null; then | |
wget -qO- $SERVICE_URL | |
elif hash curl 2>/dev/null; then | |
curl $SERVICE_URL | |
else | |
>&2 echo Need wget or curl. |
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 | |
cd $HOME | |
echo Updating system | |
sudo apt-get update -y | |
sudo apt-get upgrade -y | |
sudo apt-get install -y curl |
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 | |
DIR=$(dirname $(readlink -f $0)) | |
find $DIR -maxdepth 2 -mindepth 2 -name .git -type d | while read REPO; do | |
REPO=${REPO//.git/} | |
echo $REPO | |
pushd $REPO >/dev/null | |
git status -s |
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 | |
# Example usage: ./each_repo.sh 'git pull' | |
if [ $# -ne 1 ]; then | |
2>&1 echo "No command specified." | |
exit 1 | |
fi | |
DIR=$(pwd) # $(dirname $(readlink -f $0)) |
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
# nginx | |
description "nginx http daemon" | |
author "George Shammas <[email protected]>" | |
start on (filesystem and net-device-up IFACE=lo) | |
stop on runlevel [!2345] | |
env DAEMON=/opt/nginx/sbin/nginx | |
env PID=/opt/nginx/logs/nginx.pid |