Saturday, August 4, 2007

Daughtry!

Amy, Candi, Chris and I went to the Chris Daughtry concert held in Jackson, TN at the Carl Perkins Civic Center on Thursday, August 2nd.

Chris Daughtry

The concert sold out drawing a crowd of 3,200 excited fans. As expected, Daughtry rocked it out. We had a blast!

Click Daughtry on our photo album to see more cool pictures of the concert.

Sunday, May 20, 2007

PHP Calendar

I recently decided to update the Important events section of my website. I knew I wanted a full 12-month calendar view for the current year and I also didn't want to spend much time working on this project. So I chose the path of least resistance and found a great open source freeware calendar called PHP Calendar. PHP Calendar Class Version 1.4 was written by David Wilkinson in 2001. It is very lightweight (one PHP file) and flexible. This made it a breeze to integrate into my website;

Here is an image of the Important events layout before any changes were made:

Here is PHP code (this example is also on the PHP Calendar website) to generate a month view for the current month (May 2007 at the time of this post):

    <?

      // Get current month calendar view
      include('calendar.php');
      $c = new Calendar;
      echo $c->getCurrentMonthView();

    ?>


This code produces the resulting HTML:

One nice feature of this calendar is the ability to set a link for a given day in the month. I used this feature to connect my personal events to the calendar. Here is an example of setting a link on the full year calendar for January 1, 2007:

    <?
      include('calendar.php');

      class MyCalendar extends Calendar
      {
        function getDateLink($day, $month, $year)
        {
          // link January 1 of the current year
          $link = "";
          if ($day == 1 && $month == 1)
            $link = "myLink.php";
          return $link;

        }
      }

      $c = new MyCalendar;
      echo $c->getCurrentYearView();

    ?>


Here is the HTML output of the above code:


This is the final version of my Important events website section:

Tuesday, May 15, 2007

MTSU Graduation

I graduated from Middle Tennessee State University on May 5, 2007 with a Bachelor of Science degree in Computer Science with a Professional Computer Science emphasis and a minor in Mathematics. Go to the photo album to view some pictures from graduation. :-)




Some of my crowning achievements at MTSU include:
  • Being president of Upsilon Pi Epsilon
  • Being treasurer of the Association for Computing Machinery
  • Being a member of the Golden Key international honour society
  • Earning a 3.9 GPA in my major
  • Earning a 3.5 GPA in overall studies
  • Graduating with the designation of Cum Laude (3.500 <= GPA <= 3.749)

My success would not have been possible without the understanding, sacrifice, and encouragement of my primary support group: My beautiful wife Amy and my parents, Lee and Janise Edmiston. Thank you for making my success possible!

Monday, February 26, 2007

Robots! ... Project 2 video

Here is video of our project 2:
Proj2-Team3.mov

Tuesday, February 13, 2007

Wedding Shot

Here is a shot from our wedding album.
Copyright © Hill Photography

Check out Hill Photography

Friday, February 9, 2007

Robots!

Here are some shots from our first robotics team project. Our team is comprised of Chase Young, Bryan Wortman, and me.



team3-1 small

team3-3 small


Also here is a video clip of our performance. For a little back story, we had to create these robots using lego mindstorm parts and some other special equipment (Handyboard, web cam, etc). In this project, they are manually controlled with nintendo-style joysticks. The tricky part is the driver can't have eyes on the robot. He/she must "see what the robot sees" and steer while watching a video feed on a computer screen.

So here is the video:
Team3.mov


 

blogger templates | Make Money Online