- ruby
ruby 2.1.0p0 (2013-12-25 revision 44422) [x86_64-linux]
- bundler
1.5.1
- rails
4.0.2
- sprockets
2.10.1
- sprockets-rails
2.0.1
- bower
1.2.8
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
input metauml; | |
beginfig(0); | |
% class | |
Class.Object("Object") | |
("+name : string") | |
(); | |
Class.Animal("Animal") | |
() |
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
digraph HelloOswald { | |
fontname = "Bitstream Vera Sans" | |
fontsize = 8 | |
node [ | |
fontname = "Bitstream Vera Sans" | |
fontsize = 8 | |
shape = "record" | |
] |
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 | |
: ;((__=$?));: '^';((___=${#_}));: '^^';((____=${#_}));: '^_^';((_____=${#_}));: '(^^)';((______=${#_}));: '(^_^)';((_______=${#_}));: '(^_^;)';((________=${#_}));: '(*^_^*)';((_________=${#_}));: '$(^._.^)$';((___________=${#_}));: '(^_^)(^_^)';((____________=${#_}));: '(*^_^*)>(^_^)';((_______________=${#_}));: '(*^_^*)(*^_^*)';((________________=${#_}));: '\(^^)(^@^)(^^)/';((_________________=${#_}));: '(*^_^*)/~(._.;)$';((__________________=${#_}));: '$(*^_^*)$^$(^.^)$';((___________________=${#_}));: '/^(*^_^*)-(*^_^*)^\';((_____________________=${#_}));$(. {{{^._.^}}} &> _);____________________=$(< _);______________________=${____________________:$__-$________:$___}${____________________:$__-$_______:$___}${____________________:$__-$_____________________:$___}${____________________:$__-$_____:$___};_______________________=$($______________________ -${____________________:$__-$________:$___} "\\$__$________________$_____\\$__$________________$___\\$__$__________________$______");_____________ |
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 | |
if [ $# -lt 1 ]; then | |
echo "Usage: `basename $0` 'text' ['text']" >&2 | |
exit 2 | |
fi | |
STUMPISH=/usr/local/bin/stumpish | |
if [ ${#2} -lt 1 ]; then |
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 | |
if [ $# -lt 1 ]; then | |
echo "Usage: `basename $0` 'text'" >&2 | |
exit 2 | |
fi | |
STUMPISH=/usr/local/bin/stumpish | |
LEN=${#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
#!/bin/sh | |
if [ $# -lt 1 ]; then | |
echo "Usage: `basename $0` command" >&2 | |
exit 2 | |
fi | |
su -c "exec env DISPLAY='$DISPLAY' XAUTHORITY='$XAUTHORITY' '$SHELL' -c '$*'" |
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
;; decode | |
(defun http-char (c1 c2 &optional (default #\space)) | |
(let ((code (parse-integer | |
(coerce (list c1 c2) 'string) | |
:radix 16 | |
:junk-allowed t))) | |
(if code | |
(code-char code) | |
default))) |
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
#!/sbin/runscript | |
# Distributed under the terms of the GNU General Public License v2 | |
depend() { | |
need net | |
need redis | |
# need ngircd | |
need localmount | |
} |
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 | |
ROOT="/var/srv/hubot" | |
VENV="/usr/local/virtualenvs/hubot" | |
# virtualenv | |
source $VENV/bin/activate | |
# env | |
while read -r LINE; do |