Tuesday, December 28, 2010

Working out with Lily

I start off working out like an animal and end up cuddling my angel baby so she will stop being grumpy and just take a nap.

Sunday, December 19, 2010

Lily is now rolling over. When she's in the mood for it.


Lily's second roll over. Caught on video for all to see.

Thursday, November 18, 2010

Thursday, November 11, 2010

Lily is so much fun I can't even stand it!

Lily out for a walk.

Well I think winter is really here. I like it, but I always forget how dang cold it gets in Utah!

Wednesday, October 27, 2010

Lily has seriously slept all day for the first time ever. But that probably means she's going to be up all night long now. Dang her cuteness!

Just dropped Blake off at the MTC.

Elder Redfearn @ the MTC

I just dropped Blake off at the MTC. It was short and sweet but I have to admit that I'm actually a little envious if him. Work hard Elder!

Saturday, September 25, 2010

Lily & Val

Here's our little Lily Nicole Redfearn with mommy, taking a little nap with her bow in her hair, around 3AM this morning.

Lily & Brady

Here's our little Lily Nicole Redfearn with daddy, taking a little nap with her bow in her hair, around 3AM this morning.

It's official ladies and gentlemen! Lily Nicole Redfearn, 9 lbs, 1 oz., 20.5". Val did an amazing job and Lily is beautiful! Pics 2 come.

Wednesday, September 22, 2010

Windows Phone 7

Got to play with a Windows Phone 7 last night at a Microsoft meeting. It looks REALLY good!

Sunday, July 18, 2010

Graduation Announcement

We've finally graduated from Brigham Young University this year! If you'd like a physical copy of this mailed to you, let us know.

Wednesday, May 19, 2010

Diploma

I finally get to see what my diploma looks like! It won't arrive for another week, but at least I know it's real. Yay!

Monday, March 01, 2010

Perl Administration

I'm not sure if this works, so let me know:

#!/usr/bin/perl -w

# Brady Redfearn, IT-344, Security Scan
# Code courtesy of Googling the Internet

# include mailer program
use Mail::Mailer;

# Variables
@array = (`ls -l`);
# email default string:
sub sendEmail{
# email fields
($to, $from, $subject, $body) = @_;$mailer = new Mail::Mailer->new();$mailer -> open({From => $from,To => $to,Subject => $subject,});print $mailer $body;$mailer -> close() or die "Couldn't send the message $!\n";}

# loop
foreach(@array){
$file = $_;
# Parses through the string and the portions within the parameters are saved
if($file =~ /(.)(...)(...)(...)\s+\S+\s+(\S+)\s+(\S+)\s+\S+\s+\S+\s+\S+\s+(\S+)/){
$group = $3;
$anyone = $4;
$group_per = $5;
$owner_name = $6;
$file = $7;
$user = $ENV{"USER"};

# File has been found
if(($group =~ m/(x|r|w)/)&&$anyone =~ m/(x|r|w)/){
$output = "A security issue has been detected:
File $file owned by $owner_name has $group permissions available to the group $group_per and has $anyone world permissions\n";
sendEmail("$user\@localhost","security\@localhost","Security problems detected",$output);
} # if ends

# another file
elsif($group =~ m/(x|r|w)/){
$output = "A security issue has been detected:
File $file owned by $owner_name has $group permissions available to the group $group_per and has $anyone world permissions\n";
sendEmail("$user\@localhost","security\@localhost","Security problems detected",$output);
} # else-if ends

# another file
elsif($anyone =~ m/(x|r|w)/){
$output = "A security issue has been detected:
File $file owned by $owner_name has $group permissions available to the group $group_per and has $anyone world permissions\n";
sendEmail("$user\@localhost","security\@localhost","Security problems detected",$output);
} # else-if ends

} # if statement
} # foreach loop