Welcome to Austin Godber’s Homepage

Welcome

Welcome to my website. My name is Austin Godber. I have a bachelors in Physics from Arizona State University. I currently work for Dr. Partha Dasgupta in the Distributed Operating Systems Group at Arizona State University.

News

11-25-2003 Webpage Redesign

I have finally released a redesign of my webpage. I have made several attempts to date. I have tried two PHP based template systems to avoid complexity, but still was unsatisfied. Hopefully this XHTML based design will be clean and flexible enough to please me.

Code Example

#!/usr/bin/perl
 
use strict;
use warnings;
use LWP::Simple;
my $url    = 'http://192.168.100.1/showModemRf';
 
my $html = get($url) or die "Couldn't get RF page";
$html =~ m{Tx Power \n([\d.]+)} || die;
my $tx_power = $1;
$html =~ m{Rx Power \n([-\d.]+)} || die;
my $rx_power = $1;
$html =~ m{Downstream SNR \n([\d.]+)} || die;
my $snr = $1;
print "TX Power is $tx_power dBmV\n";
print "RX Power is $rx_power dBmV\n";
print "Downstream SNR is $snr dB\n";

Command Line Example

[root@monk sbin]# nmap -sT -sV -O -p 22,42,80 10.6.6.3
 
Starting nmap 3.48 ( http://www.insecure.org/nmap/ ) at 2003-11-25 12:05 MST
Interesting ports on waldon (10.6.6.3):
PORT   STATE  SERVICE    VERSION
22/tcp open   ssh        OpenSSH 3.6.1p2 (protocol 2.0)
42/tcp closed nameserver
80/tcp open   http       Apache httpd 1.3.29 ((Debian GNU/Linux) PHP/4.3.3)
Device type: general purpose
Running: Linux 2.4.X|2.5.X
OS details: Linux Kernel 2.4.0 - 2.5.20
Uptime 1.234 days (since Mon Nov 24 06:28:26 2003)
 
Nmap run completed -- 1 IP address (1 host up) scanned in 9.856 seconds
	
Google
WWW Uberhip.com