#!/usr/local/bin/perl -w

use CGI;
$q = new CGI;

$title = "Biographical Info";
$date = "040/22/2004";
$pageTitle = "bio";

require("../header.pl");


#page contents start here-----------------------------

print <<END;

    
<h3>Briefly...</h3>
<img src="../graphics/uofclogo.gif" align="right" width="84" height="63" border="0" alt="U of C" />
<p class="main">I live in Chicago, IL, USA, where I currently attend the University of Chicago. I'm concentrating in Mathematics and hope to graduate in June of 2004. I was born in St. Louis, MO, but lived most of my life in Jackson, MO. <a href="./more.cgi">read more</a></p>

<!-- <hr /> -->

<p class="main">Here is my <a href="./contact.cgi">contact information</a>.</p>
  
<p class="main">Here is a rough copy of my <a href="./resume2.html" target="new">resume.</a></p>

<!-- <p class="main">I'm a <a href="./math15300.cgi">VIGRE Course Assistant</a> for Math 15300 (Calculus III).</p> -->
      
<!-- <hr /> -->

<img src="../graphics/mike03-02.jpg" width="300" height="240" border="0" alt="Michael B. Williams" align="right" vspace="3" />
      
<p class="main">This photo was taken in spring, 2002.&nbsp; Not very accurate, but it makes me look a lot scarier than I really am...
<br /><br />
New!!!  Finally, a link to the road trip photos from Summer 2003!!!  Lots of cool stuff <a href="http://home.uchicago.edu/~gediraim/RoadTrip/">here</a>.  Be sure to check out the <a href="http://home.uchicago.edu/~gediraim/RoadTrip/panoramics/index.html"> panoramics</a>.

<br /><br />
Check out my page about <a href="http://people.cs.uchicago.edu/~mbw/astro18200/dimensions.html">Extra Dimensions in Cosmology</a>.
<br /><br />
Look at my <a href="../crypto.cgi">cryptography</a> page, which I worked as part of the <a href="http://www.math.uchicago.edu/drp/">Directed Reading Program</a>.  I hope to finish soon, since the program ended a while back.
<br /><br />
<a href="./photos.cgi">Here</a> are some more photos of myself and things in my life.
<br /><br />
<a href="./dad.cgi">My dad</a> is famous!  Well, not really...
<br /><br />
<!--
I have recently realized that I need a <a href="../interests/lotr.cgi">page</a> about just how awesome The Lord of the Rings is.
<br /><br />
Coming soon: a <a href="./art.cgi">gallery</a> of my girlfriend's Photoshop artwork.
<br /><br /> -->
I finally made a page about <a href="../interests/g3.cgi">G3</a>, with some photos from the show.
<br /><br />
<a href="./skydiving.cgi">Read</a> about my skydiving experience.  Recently updated with tragic news.
<br /><br />
My <a href="./bookmarks.html">bookmarks</a>, mainly for my own reference. 
<br /><br />
<a href="./drmario.cgi">Here</a> are some interesting Dr. Mario puzzles I've been wasting my time with.
<br /><br />

<a href="#" onClick="Window=window.open('../graphics/mustardman.jpg','MyWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=540,height=540,left=20,top=20'); return false;">
This</a> this cracks me up for some reason.<br /><br />


Great news: <br />

<a href="http://www.wxplotter.com/ft_nq.php?im">
<img src="http://www.wxplotter.com/images/ft/nq.php?val=1777" alt="I am nerdier than 92% of all people. Are you nerdier? Click here to find out!"> </a>

<br /><br />


<!-- Here is a <a href="./sitemap.cgi">site map</a>.    -->
More later, whenever I get around to it...
<br /><br />
   
Oh yeah, for those who haven't, I don't know what you're waiting for.  Go now and download <a href="http://www.mozilla.org/products/firefox/" title="Get Firefox - Web Browsing Redefined"> the best web browswer in the world</a>!  Do it now!!<br />
 <a href="http://www.mozilla.org/products/firefox/"
title="Get Firefox - Web Browsing Redefined"><img
src="http://www.mozilla.org/products/firefox/buttons/getfirefox_large3.png"
width="178" height="60" border="0" alt="Get Firefox"></a>


</p>
   
END

#page contents end here-------------------------------

require("../footer.pl");


