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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhsRNe0kO336QiaRfh9/qfHeHeHnmt/9EjSP9mCdZDAtTPvC0hjZ8NwWXtwRvLNZs6Il6hgw+b7QjCsgyN0KosKbZYyXZUDygX81oaAnjumXh9uNEQ6bkq2lRwe/N3kHd/lVgdg5/3wR3z7mrqzwlUp8vUe1EU90vc/+7fkyJ4MTpkQvL8daX/4SDXDPOecngaTyHiKR8RNU5rL6hLLk3NoCFLyvUDQx7lsiyBm6rRYKSPG5zfT/sEaH2eW0dALO88xTwtdOpchqPEA5mSphaw5dDXR7TBVn8xf/mnuyBR2O/xHOP6XfsJyYjbuu9oNNGTJ4sTp6w3/gA6dOOBJ3ev thomas |
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
#!/usr/bin/bash | |
# | |
# A lsof replacement for SmartMachine's and a simple | |
# alternative to pfiles, fuser. For detailed | |
# information of a process use 'pfiles <pid>'. | |
# Copyright (c) 2013 Joyent Inc., All rights reserved. | |
usage() { | |
cat << EOF |
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
#pragma D option quiet | |
::rb_call0:function-entry { | |
/* copyinstr(arg0) = Object class | |
// copyinstr(arg1) = method | |
// copyinstr(arg2) = file | |
// arg3 = line | |
// arg4 ?*/ |
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
require 'sinatra' | |
require "sinatra/reloader" | |
PEER_DICT = Hash.new { |h,k| h[k] = {} } | |
class Hash | |
def bencode | |
[ | |
"d", |
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
# | |
# From: Manuel Wolfshant <[email protected]> | |
# | |
install | |
text | |
poweroff | |
url --url http://mirror.centos.org/centos/5/os/x86_64/ | |
lang en_US.UTF-8 | |
keyboard us | |
skipx |
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/sh | |
# | |
# Copyright 2007 Sun Microsystems, Inc. All rights reserved. | |
# Use is subject to license terms. | |
# | |
# This file is part of Quagga. | |
# | |
# Quagga is free software; you can redistribute it and/or modify it | |
# under the terms of the GNU General Public License as published by the | |
# Free Software Foundation; either version 2, or (at your option) any |
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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'tire' | |
require 'yajl/json_gem' | |
require 'optparse' | |
require 'optparse/time' | |
require 'time' |
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
install | |
text | |
reboot | |
url --url http://mirror.centos.org/centos/5/os/x86_64/ | |
lang en_US.UTF-8 | |
keyboard us | |
skipx | |
network --device eth0 --bootproto dhcp | |
rootpw password | |
firewall --disabled |
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
require "amqp" | |
AMQP_CONFIG = { | |
host: '<...>', | |
port: 5671, | |
username: '<...>', | |
password: '<...>', | |
ssl: true | |
} |
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
/var/log/nginx/access.log { | |
missingok | |
notifempty | |
delaycompress | |
sharedscripts | |
postrotate | |
test ! -f /var/run/nginx.pid || kill -USR1 `cat /var/run/nginx.pid` | |
endscript | |
} |
NewerOlder