I hereby claim:
- I am thedonkdonk on github.
- I am thedonkdonk (https://keybase.io/thedonkdonk) on keybase.
- I have a public key whose fingerprint is 0554 1069 345F E09C FC0D C4CA BD74 E5DA E35F 7503
To claim this, I am signing this object:
# Generated by iptables-save v1.4.7 on Wed Nov 5 21:23:26 2014 | |
*filter | |
:INPUT ACCEPT [0:0] | |
:FORWARD ACCEPT [0:0] | |
:OUTPUT ACCEPT [0:0] | |
-A INPUT -s 72.3.128.84/32 -m comment --comment "Rackspace Support" -j ACCEPT | |
-A INPUT -s 69.20.0.1/32 -m comment --comment "Rackspace Support" -j ACCEPT | |
-A INPUT -s 69.20.3.135/32 -m comment --comment "Rackspace Support" -j ACCEPT | |
-A INPUT -s 120.136.34.22/32 -m comment --comment "Rackspace Support" -j ACCEPT | |
-A INPUT -s 212.100.225.49/32 -m comment --comment "Rackspace Support" -j ACCEPT |
for i in $(seq 1 253); do x=$(arping -c 3 10.200.61.$i | awk '{ if ($0 ~ "^Unicast reply") { print $4" "$5 } }' | sort -u); [ "$x" ] && echo $x || echo 10.200.61.$i FREE; done > freeips.txt |
class 'winjdk' { | |
case $architecture { | |
'x64': { | |
package { 'Java SE Development Kit 7 Update 67 (64-bit)': | |
ensure => '1.7.0.670', | |
source => 'C:\Installers\jdk-7u67-windows-x64.exe', | |
name => 'Java SE Development Kit 7 Update 67 (64-bit)', | |
install_options => { | |
'REBOOT' => '0', | |
'WEB_ANALYTICS=' => '0', |
I hereby claim:
To claim this, I am signing this object:
for i in $(seq 1 253); do x=$(arping -c 3 192.668.1.$i | awk '{ if ($0 ~ "^Unicast reply") { print $4" "$5 } }' | sort -u); [ "$x" ] && echo $x || echo 192.168.1.$i FREE; done |
#!/bin/sh | |
#--------------------------------- | |
# nodesupervisor Start/Stop Script | |
#--------------------------------- | |
#--------------------------------- | |
# chkconfig: 2345 99 99 | |
# description: NodeJS Supervisor | |
# -------------------------------- |
#!/bin/bash | |
# chkconfig: 234 20 80 | |
# description: Tomcat Server basic start/shutdown script | |
# processname: tomcat | |
# Pulled from http://www.rackspace.com/knowledge_center/article/centos-tomcat-6 | |
# Extra edits by James Glenn <[email protected]> | |
# See http://blog.ablackhat.net/2013/10/27/install-tomcat-on-centos/ | |
# This usually works for JAVA_HOME | |
JAVA_HOME=/usr/java/latest | |
export JAVA_HOME |
#!/usr/bin/python | |
class ANSI: | |
""" | |
Not all of these colors work for every shell. | |
""" | |
esc = "\x1b" | |
blackf = esc + "[30m" | |
redf = esc + "[31m" |
OUTF=rem-duplicates.sh; echo "#!/bin/bash" > $OUTF; find "$@" -type f -printf "%s\n" | sort -n | uniq -d | xargs -I@@ -n1 find "$@" -type f -size @@c -exec md5sum {} \; | sort --key=1,32 | uniq -w 32 -d --all-repeated=separate | sed -r 's/^[0-9a-f]*( )*//;s/([^a-zA-Z0-9./_-])/\\\1/g;s/(.+)/#rm \1/' >> $OUTF; chmod a+x $OUTF; ls -l $OUTF |
set smartindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab |