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 | |
# Install geoiplookup | |
# Remove the reference to the IP address 69.162.124.237 to play. | |
grep `date '+%Y-%m-%d'` production.log | grep Started | grep -v 69.162.124.237 | awk '{print $10, $12}' | while read path ip | |
do | |
echo `echo $path | sed 's/"//g'` $ip `geoiplookup $ip | awk -F: '{print $NF}'` `nslookup $ip | awk '/arpa/ {print $NF}'` | |
done | sort -u |
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/local/bin/bash | |
zipOutput=/tmp/$$.tmp | |
die() | |
{ | |
echo $* 1>&2 | |
exit 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
mkdir ~/local | |
cd /tmp | |
git clone https://github.com/vim/vim | |
cd vim | |
./configure --prefix=$HOME/local --enable-terminal=yes && make install | |
oldPATH="$PATH" | |
PATH=$HOME/local/bin:$PATH | |
type vim |
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 | |
VLCTMP=/tmp/vlc.out | |
QUIET=false | |
log_vlc() { | |
echo $(date +%s) "$@" >> ~/.vlc | |
} | |
run_vlc() { |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdbool.h> | |
char *monthnames[] = { | |
(char*)0, "January", "February", "March", "April", "May", "June", | |
"July", "August", "September", "October", "November", "December" | |
}; | |
int days_in_month[] = { -1, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; |
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 | |
# When I was 11, this bit of code appeared in a book on BASIC that had. | |
# This is just for nostalgia. | |
str="$1" | |
typeset -i start=0 len=${#str} | |
while true | |
do for s in `seq 1 $len` | |
do clear |