User Functions // Addicted to Flickr

Example: Get User Info

Code

<?php
require_once 'path/to/class.flickr.php';

$flickr = &new flickr(API_KEY);
$flickr->enableDBCache(DB_HOSTDB_USERDB_PASSWORDDB_NAME);

$user $flickr->getUserInfo('55569174@N00');
if (
$flickr->isError()) {
    echo 
$flickr->getErrorMsg();
} else {
    echo 
'<h2>Example Output</h2>';
    echo 
'<h3><a href="' $user['profile_url'] . '">' $user['realname'] . '</a> (' $user['username'] . ')</h3>';
    echo 
'<h5>' $user['location'] . '</h5>';
    echo 
'<ul>';
    echo 
'<li>Pro Account: ' . (($user['ispro'] == 1) ? 'Yes' 'No, shame on them') . '</li>';
    echo 
'<li>Photos on flickr: <a href="' $user['photos_url'] . '">' $user['count'] . '</a></li>';
    echo 
'<li>Date of first photo taken: ' date('m/d/Y'$user['firstdatetaken']) . '</li>';
    echo 
'<li>Date of first photo uploaded: ' date('m/d/Y'$user['firstdate']) . '</li>';
    echo 
'</ul>';
    echo 
'<hr />';
}
?>

XML Response

<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
<person id="55569174@N00" nsid="55569174@N00" isadmin="0" ispro="1" iconserver="13" iconfarm="1">
	<username>jnunemaker</username>
	<realname>John Nunemaker</realname>
	<location>Mishawaka, United States</location>
	<photosurl>http://www.flickr.com/photos/johnnunemaker/</photosurl>
	<profileurl>http://www.flickr.com/people/johnnunemaker/</profileurl>
	<mobileurl>http://m.flickr.com/photostream.gne?id=272833</mobileurl>
	<photos>
		<firstdatetaken>2002-12-31 20:11:05</firstdatetaken>
		<firstdate>1107284404</firstdate>
		<count>4211</count>
	</photos>
</person>
</rsp>

Function Return

Array
(
    [id] => 55569174@N00
    [nsid] => 55569174@N00
    [isadmin] => 0
    [ispro] => 1
    [iconserver] => 13
    [username] => jnunemaker
    [realname] => John Nunemaker
    [location] => Mishawaka, United States
    [firstdatetaken] => 1041394265
    [firstdate] => 1107284404
    [count] => 4211
    [profile_url] => http://www.flickr.com/people/55569174@N00/
    [photos_url] => http://www.flickr.com/photos/55569174@N00/
)

Example Output

John Nunemaker (jnunemaker)

Mishawaka, United States

Back to Top

Example: Get User's Public Groups

Code

<?php
require_once 'path/to/class.flickr.php';

$flickr = &new flickr(API_KEY);
$flickr->enableDBCache(DB_HOSTDB_USERDB_PASSWORDDB_NAME);

$groups $flickr->getUsersPublicGroups('55569174@N00');
if (
$flickr->isError()) {
    echo 
$flickr->getErrorMsg();
} else {
    echo 
'<h3>List of Groups</h3>';
    echo 
'<ul>';
    foreach (
$groups as $group) {
        echo 
'<li>' $group['name'] . '</li>';
    }
    echo 
'</ul>';
}
?>

XML Response

<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
<groups>
	<group nsid="89776093@N00" name="Notre Dame" admin="1" eighteenplus="0" />
	<group nsid="15001246@N00" name="Ford Ranger" admin="0" eighteenplus="0" />
	<group nsid="87493517@N00" name="Rails Day 2006" admin="0" eighteenplus="0" />
	<group nsid="86046553@N00" name="Chipdom" admin="0" eighteenplus="0" />
	<group nsid="86366169@N00" name="geekLib{}" admin="0" eighteenplus="0" />
	<group nsid="38206255@N00" name="Twitter" admin="0" eighteenplus="0" />
</groups>
</rsp>

Function Return

Array
(
    [89776093@N00] => Array
        (
            [nsid] => 89776093@N00
            [name] => Notre Dame
            [admin] => 1
            [eighteenplus] => 0
        )

    [15001246@N00] => Array
        (
            [nsid] => 15001246@N00
            [name] => Ford Ranger
            [admin] => 0
            [eighteenplus] => 0
        )

    [87493517@N00] => Array
        (
            [nsid] => 87493517@N00
            [name] => Rails Day 2006
            [admin] => 0
            [eighteenplus] => 0
        )

    [86046553@N00] => Array
        (
            [nsid] => 86046553@N00
            [name] => Chipdom
            [admin] => 0
            [eighteenplus] => 0
        )

    [86366169@N00] => Array
        (
            [nsid] => 86366169@N00
            [name] => geekLib{}
            [admin] => 0
            [eighteenplus] => 0
        )

    [38206255@N00] => Array
        (
            [nsid] => 38206255@N00
            [name] => Twitter
            [admin] => 0
            [eighteenplus] => 0
        )

)

Example Output

List of Groups

Back to Top

Example: Get User's Public Photos

Code

<?php
require_once 'path/to/class.flickr.php';

$flickr = &new flickr(API_KEY);
$flickr->enableDBCache(DB_HOSTDB_USERDB_PASSWORDDB_NAME);

$result $flickr->getUsersPublicPhotos('55569174@N00');
if (
$flickr->isError()) {
    echo 
$flickr->getErrorMsg();
} else {
    echo 
'<h3>Result Users Photos</h3>';
    
$photos $result['photos'];
    foreach(
$photos as $photo) {
        echo 
'<img src="' $photo['s_url'] . '" alt="' $photo['title'] . '" />';
    }
    echo 
'<hr />';
}
?>

XML Response

<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
<photos page="1" pages="422" perpage="10" total="4211">
	<photo id="3043752509" owner="55569174@N00" secret="ac932c5fb3" server="3207" farm="4" title="John From the 70's and 80's" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1227132478" datetaken="2008-11-19 16:07:58" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
	<photo id="3036572712" owner="55569174@N00" secret="8a7ed73751" server="3050" farm="4" title="Minimalist Desk Setup" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1226879260" datetaken="2008-11-16 18:46:40" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
	<photo id="3035742758" owner="55569174@N00" secret="068cff2f8d" server="3208" farm="4" title="Hide and seek fail" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1226862210" datetaken="2008-11-16 14:02:00" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
	<photo id="3035741444" owner="55569174@N00" secret="9b23f7c859" server="3041" farm="4" title="Huge leaf" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1226862181" datetaken="2008-11-16 13:04:50" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
	<photo id="3034200521" owner="55569174@N00" secret="f9139a76c6" server="3205" farm="4" title="View from the sound board during worship team practice" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1226846705" datetaken="2008-11-16 08:45:05" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
	<photo id="3034195711" owner="55569174@N00" secret="5ecd2b0628" server="3222" farm="4" title="Hot cocoa and rasberry cheesecake" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1226846592" datetaken="2008-11-13 15:37:42" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
	<photo id="3035029966" owner="55569174@N00" secret="289eea4a89" server="3231" farm="4" title="Parking lots pano" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1226846518" datetaken="2008-11-16 08:41:58" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
	<photo id="3034190069" owner="55569174@N00" secret="abec9c1efd" server="3284" farm="4" title="Library pano" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1226846452" datetaken="2008-11-16 08:40:52" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
	<photo id="3035024826" owner="55569174@N00" secret="cde9b597fa" server="3048" farm="4" title="Stadium pano" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1226846385" datetaken="2008-11-16 08:39:45" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
	<photo id="3022548656" owner="55569174@N00" secret="eab09a38d6" server="3162" farm="4" title="Google App Engine Hack Day" ispublic="1" isfriend="0" isfamily="0" license="0" dateupload="1226419130" datetaken="2008-11-11 09:58:50" datetakengranularity="0" ownername="jnunemaker" iconserver="13" iconfarm="1" />
</photos>
</rsp>

Function Return

Array
(
    [page] => 1
    [prev_page] => 
    [next_page] => 2
    [pages] => 422
    [total] => 4211
    [photos] => Array
        (
            [3043752509] => Array
                (
                    [id] => 3043752509
                    [owner] => 55569174@N00
                    [secret] => ac932c5fb3
                    [server] => 3207
                    [farm] => 4
                    [title] => John From the 70's and 80's
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1227132478
                    [datetaken] => 1227139678
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3207/3043752509_ac932c5fb3.jpg
                    [s_url] => http://static.flickr.com/3207/3043752509_ac932c5fb3_s.jpg
                    [t_url] => http://static.flickr.com/3207/3043752509_ac932c5fb3_t.jpg
                    [m_url] => http://static.flickr.com/3207/3043752509_ac932c5fb3_m.jpg
                    [b_url] => http://static.flickr.com/3207/3043752509_ac932c5fb3_b.jpg
                    [o_url] => http://static.flickr.com/3207/3043752509_ac932c5fb3_o.jpg
                )

            [3036572712] => Array
                (
                    [id] => 3036572712
                    [owner] => 55569174@N00
                    [secret] => 8a7ed73751
                    [server] => 3050
                    [farm] => 4
                    [title] => Minimalist Desk Setup
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1226879260
                    [datetaken] => 1226890000
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3050/3036572712_8a7ed73751.jpg
                    [s_url] => http://static.flickr.com/3050/3036572712_8a7ed73751_s.jpg
                    [t_url] => http://static.flickr.com/3050/3036572712_8a7ed73751_t.jpg
                    [m_url] => http://static.flickr.com/3050/3036572712_8a7ed73751_m.jpg
                    [b_url] => http://static.flickr.com/3050/3036572712_8a7ed73751_b.jpg
                    [o_url] => http://static.flickr.com/3050/3036572712_8a7ed73751_o.jpg
                )

            [3035742758] => Array
                (
                    [id] => 3035742758
                    [owner] => 55569174@N00
                    [secret] => 068cff2f8d
                    [server] => 3208
                    [farm] => 4
                    [title] => Hide and seek fail
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1226862210
                    [datetaken] => 1226872920
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3208/3035742758_068cff2f8d.jpg
                    [s_url] => http://static.flickr.com/3208/3035742758_068cff2f8d_s.jpg
                    [t_url] => http://static.flickr.com/3208/3035742758_068cff2f8d_t.jpg
                    [m_url] => http://static.flickr.com/3208/3035742758_068cff2f8d_m.jpg
                    [b_url] => http://static.flickr.com/3208/3035742758_068cff2f8d_b.jpg
                    [o_url] => http://static.flickr.com/3208/3035742758_068cff2f8d_o.jpg
                )

            [3035741444] => Array
                (
                    [id] => 3035741444
                    [owner] => 55569174@N00
                    [secret] => 9b23f7c859
                    [server] => 3041
                    [farm] => 4
                    [title] => Huge leaf
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1226862181
                    [datetaken] => 1226869490
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3041/3035741444_9b23f7c859.jpg
                    [s_url] => http://static.flickr.com/3041/3035741444_9b23f7c859_s.jpg
                    [t_url] => http://static.flickr.com/3041/3035741444_9b23f7c859_t.jpg
                    [m_url] => http://static.flickr.com/3041/3035741444_9b23f7c859_m.jpg
                    [b_url] => http://static.flickr.com/3041/3035741444_9b23f7c859_b.jpg
                    [o_url] => http://static.flickr.com/3041/3035741444_9b23f7c859_o.jpg
                )

            [3034200521] => Array
                (
                    [id] => 3034200521
                    [owner] => 55569174@N00
                    [secret] => f9139a76c6
                    [server] => 3205
                    [farm] => 4
                    [title] => View from the sound board during worship team practice
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1226846705
                    [datetaken] => 1226853905
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3205/3034200521_f9139a76c6.jpg
                    [s_url] => http://static.flickr.com/3205/3034200521_f9139a76c6_s.jpg
                    [t_url] => http://static.flickr.com/3205/3034200521_f9139a76c6_t.jpg
                    [m_url] => http://static.flickr.com/3205/3034200521_f9139a76c6_m.jpg
                    [b_url] => http://static.flickr.com/3205/3034200521_f9139a76c6_b.jpg
                    [o_url] => http://static.flickr.com/3205/3034200521_f9139a76c6_o.jpg
                )

            [3034195711] => Array
                (
                    [id] => 3034195711
                    [owner] => 55569174@N00
                    [secret] => 5ecd2b0628
                    [server] => 3222
                    [farm] => 4
                    [title] => Hot cocoa and rasberry cheesecake
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1226846592
                    [datetaken] => 1226619462
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3222/3034195711_5ecd2b0628.jpg
                    [s_url] => http://static.flickr.com/3222/3034195711_5ecd2b0628_s.jpg
                    [t_url] => http://static.flickr.com/3222/3034195711_5ecd2b0628_t.jpg
                    [m_url] => http://static.flickr.com/3222/3034195711_5ecd2b0628_m.jpg
                    [b_url] => http://static.flickr.com/3222/3034195711_5ecd2b0628_b.jpg
                    [o_url] => http://static.flickr.com/3222/3034195711_5ecd2b0628_o.jpg
                )

            [3035029966] => Array
                (
                    [id] => 3035029966
                    [owner] => 55569174@N00
                    [secret] => 289eea4a89
                    [server] => 3231
                    [farm] => 4
                    [title] => Parking lots pano
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1226846518
                    [datetaken] => 1226853718
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3231/3035029966_289eea4a89.jpg
                    [s_url] => http://static.flickr.com/3231/3035029966_289eea4a89_s.jpg
                    [t_url] => http://static.flickr.com/3231/3035029966_289eea4a89_t.jpg
                    [m_url] => http://static.flickr.com/3231/3035029966_289eea4a89_m.jpg
                    [b_url] => http://static.flickr.com/3231/3035029966_289eea4a89_b.jpg
                    [o_url] => http://static.flickr.com/3231/3035029966_289eea4a89_o.jpg
                )

            [3034190069] => Array
                (
                    [id] => 3034190069
                    [owner] => 55569174@N00
                    [secret] => abec9c1efd
                    [server] => 3284
                    [farm] => 4
                    [title] => Library pano
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1226846452
                    [datetaken] => 1226853652
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3284/3034190069_abec9c1efd.jpg
                    [s_url] => http://static.flickr.com/3284/3034190069_abec9c1efd_s.jpg
                    [t_url] => http://static.flickr.com/3284/3034190069_abec9c1efd_t.jpg
                    [m_url] => http://static.flickr.com/3284/3034190069_abec9c1efd_m.jpg
                    [b_url] => http://static.flickr.com/3284/3034190069_abec9c1efd_b.jpg
                    [o_url] => http://static.flickr.com/3284/3034190069_abec9c1efd_o.jpg
                )

            [3035024826] => Array
                (
                    [id] => 3035024826
                    [owner] => 55569174@N00
                    [secret] => cde9b597fa
                    [server] => 3048
                    [farm] => 4
                    [title] => Stadium pano
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1226846385
                    [datetaken] => 1226853585
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3048/3035024826_cde9b597fa.jpg
                    [s_url] => http://static.flickr.com/3048/3035024826_cde9b597fa_s.jpg
                    [t_url] => http://static.flickr.com/3048/3035024826_cde9b597fa_t.jpg
                    [m_url] => http://static.flickr.com/3048/3035024826_cde9b597fa_m.jpg
                    [b_url] => http://static.flickr.com/3048/3035024826_cde9b597fa_b.jpg
                    [o_url] => http://static.flickr.com/3048/3035024826_cde9b597fa_o.jpg
                )

            [3022548656] => Array
                (
                    [id] => 3022548656
                    [owner] => 55569174@N00
                    [secret] => eab09a38d6
                    [server] => 3162
                    [farm] => 4
                    [title] => Google App Engine Hack Day
                    [ispublic] => 1
                    [isfriend] => 0
                    [isfamily] => 0
                    [license] => 0
                    [dateupload] => 1226419130
                    [datetaken] => 1226426330
                    [datetakengranularity] => 0
                    [ownername] => jnunemaker
                    [iconserver] => 13
                    [iconfarm] => 1
                    [url] => http://static.flickr.com/3162/3022548656_eab09a38d6.jpg
                    [s_url] => http://static.flickr.com/3162/3022548656_eab09a38d6_s.jpg
                    [t_url] => http://static.flickr.com/3162/3022548656_eab09a38d6_t.jpg
                    [m_url] => http://static.flickr.com/3162/3022548656_eab09a38d6_m.jpg
                    [b_url] => http://static.flickr.com/3162/3022548656_eab09a38d6_b.jpg
                    [o_url] => http://static.flickr.com/3162/3022548656_eab09a38d6_o.jpg
                )

        )

)

Example Output

John From the 70's and 80'sMinimalist Desk SetupHide and seek failHuge leafView from the sound board during worship team practiceHot cocoa and rasberry cheesecakeParking lots panoLibrary panoStadium panoGoogle App Engine Hack Day
Back to Top

Example: Get User's Photosets

Code

<?php
require_once 'path/to/class.flickr.php';

$flickr = &new flickr(API_KEY);
$flickr->enableDBCache(DB_HOSTDB_USERDB_PASSWORDDB_NAME);

$sets $flickr->getUsersPhotosets('55569174@N00');
if (
$flickr->isError()) {
    echo 
$flickr->getErrorMsg();
} else {
    echo 
'<h2>Example Output</h2>';
    if (
count($sets) > 0) {
        foreach(
$sets as $set) {
            echo 
'<div class="photoset">';
            echo 
'<a href="' $set['set_url'] . '"><img src="' $set['primary_url'] . '" alt="' $set['primary'] . '" /></a>';
            echo 
'<h3><a href="' $set['set_url'] . '">' $set['title'] . ' (' $set['photos'] . ' photos)</a></h3>';
            echo 
'<div>' $set['description'] . '</div>';
            echo 
'</div>';
        }
        echo 
'<div class="clear">&nbsp;</div>';
    }
}
?>

XML Response

<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="ok">
<photosets>
	<photoset id="72157607419686620" primary="2877069793" secret="c09f5c56c2" server="3080" farm="4" photos="10" videos="0">
		<title>ND vs. MSU</title>
		<description>September 20, 2008. Attended with my dad.</description>
	</photoset>
	<photoset id="72157607072616608" primary="2822097010" secret="63349f42fa" server="3117" farm="4" photos="11" videos="0">
		<title>How to make coffee</title>
		<description>&lt;a href=&quot;http://addictedtonew.com/archives/354/how-to-make-coffee/&quot;&gt;Full article is here&lt;/a&gt;.</description>
	</photoset>
	<photoset id="72157606879490650" primary="2785401493" secret="73a1a37b2c" server="3211" farm="4" photos="21" videos="0">
		<title>Midnight Ride 2008</title>
		<description />
	</photoset>
	<photoset id="72157606501719938" primary="2725932274" secret="2cc15fd0c9" server="3113" farm="4" photos="14" videos="0">
		<title>Google App Engine Hackathon</title>
		<description>July 31, 2008 in Chicago. Myself, Steve, Jon and Dan attended.</description>
	</photoset>
	<photoset id="72157605443893567" primary="2552865436" secret="b1ef9c0737" server="3167" farm="4" photos="17" videos="0">
		<title>RailsConf 2008</title>
		<description>In Portland, OR. </description>
	</photoset>
	<photoset id="72157604681068763" primary="2434025521" secret="43d9ddb5c0" server="3267" farm="4" photos="14" videos="0">
		<title>Earth Day at ND</title>
		<description />
	</photoset>
	<photoset id="72157604397561428" primary="2389991609" secret="b13b1a24c1" server="2262" farm="3" photos="4" videos="0">
		<title>Sally</title>
		<description>Pictures of my sweet 2006 Ford Mustang.</description>
	</photoset>
	<photoset id="72157604058823139" primary="2313334607" secret="5d1fdaf7fb" server="3205" farm="4" photos="24" videos="0">
		<title>ND vs. St. Johns Basketball</title>
		<description>Notre Dame won 68 - 55. It was the last home game of the season and completed two straight years of home wins in conference play.

Due to it being a televised game, I couldn't take pictures during game play. I did sneak a few at the very end though. :)</description>
	</photoset>
	<photoset id="72157603618516849" primary="2161035204" secret="054a03d729" server="2158" farm="3" photos="27" videos="0">
		<title>Rob's Bachelor Party and Wedding</title>
		<description>We went bowling and Rob rode a bull. Some great stories were told and re-told. Lots of fun.</description>
	</photoset>
	<photoset id="72157603613398326" primary="2160988090" secret="b03ec35771" server="2416" farm="3" photos="8" videos="0">
		<title>First Big Snow of 2008</title>
		<description>The new year rang in with a crap load of snow.</description>
	</photoset>
	<photoset id="72157603343820236" primary="2078734716" secret="234f9bc8b3" server="2410" farm="3" photos="10" videos="0">
		<title>Re-Arrangement of Office</title>
		<description>Flickerized for Erik so he doesn't have a heart attach monday morning. :)</description>
	</photoset>
	<photoset id="72157603235446119" primary="2044070138" secret="ca26d1d45e" server="2247" farm="3" photos="10" videos="0">
		<title>ND vs. Duke 2007</title>
		<description>November 18, 2007. Notre Dame won 28-7. </description>
	</photoset>
	<photoset id="72157603070812274" primary="1958736654" secret="d8ac14b59c" server="2173" farm="3" photos="50" videos="0">
		<title>ND vs. Air Force 2007</title>
		<description>Once again a loss putting us at 1-9 but we still had fun.</description>
	</photoset>
	<photoset id="72157603004220529" primary="1912986587" secret="3a3c8675cf" server="2006" farm="3" photos="32" videos="0">
		<title>RubyConf 2007</title>
		<description>In Charlotte, NC from Nov. 1 to Nov. 5, 2007.</description>
	</photoset>
	<photoset id="72157602594329582" primary="1681392175" secret="9cb3750413" server="2265" farm="3" photos="15" videos="0">
		<title>Bday Celebrations</title>
		<description>We got together to celebrate Emily, my sister, and my grandpa chupp's birthdays. Mom always makes a great meal that the birthday people get to choose. Emily chose thanksgiving-ish food. It was great. </description>
	</photoset>
	<photoset id="72157602569923352" primary="1664101801" secret="34798f3109" server="2303" farm="3" photos="80" videos="0">
		<title>ND vs. USC</title>
		<description>October 20, 2007. USC won big.</description>
	</photoset>
	<photoset id="72157602418295035" primary="1570459988" secret="a02df2846c" server="2345" farm="3" photos="21" videos="0">
		<title>ND vs. BC</title>
		<description>October 13, 2007. Final score BC 27 - ND 14.</description>
	</photoset>
	<photoset id="72157602272701950" primary="1490573241" secret="54dbe1ff63" server="1180" farm="2" photos="9" videos="0">
		<title>Working From The Library</title>
		<description> </description>
	</photoset>
	<photoset id="72157602279086907" primary="1490558219" secret="692b62a12b" server="1028" farm="2" photos="6" videos="0">
		<title>October SB.rb</title>
		<description>Ruby and pizza. Had some good conversation as well.</description>
	</photoset>
	<photoset id="72157602279043799" primary="1491396122" secret="918277387f" server="1107" farm="2" photos="6" videos="0">
		<title>Foggy Morning</title>
		<description>Photos taken walking into work early one morning. Thick fog made the walk seem mysterious.</description>
	</photoset>
	<photoset id="72157602192773550" primary="1455371147" secret="a3aeca6065" server="1152" farm="2" photos="31" videos="0">
		<title>Mishawaka Riverfront</title>
		<description>Steph and I took a walk on the riverfront tonight. They have done a lot of work and it actually is pretty nice.</description>
	</photoset>
	<photoset id="72157602195699665" primary="1453394433" secret="497724068f" server="1145" farm="2" photos="20" videos="0">
		<title>Admissions Live Chat</title>
		<description>We were on call during admission live chat just in case anything went wrong. The live chat application was built by Bill with a little help from me, in rails of course. </description>
	</photoset>
	<photoset id="72157602187588443" primary="1449728165" secret="82a17e85d8" server="1127" farm="2" photos="25" videos="0">
		<title>Office Shots</title>
		<description>We broke out the webgroup slr and snapped some lunch times shots. Making memories....</description>
	</photoset>
	<photoset id="72157602168825845" primary="1442679297" secret="669f6f5321" server="1405" farm="2" photos="28" videos="0">
		<title>ND vs. Michigan State 2007</title>
		<description />
	</photoset>
	<photoset id="72157601831280881" primary="1307484037" secret="38144cfdbc" server="1135" farm="2" photos="25" videos="0">
		<title>ND vs. GT 2007</title>
		<description>Notre Dame vs. Georgia Tech. September 1, 2007. The final score was 33-3 not in favor of the good guys.</description>
	</photoset>
	<photoset id="72157601795586315" primary="1289526555" secret="351d28a918" server="1340" farm="2" photos="12" videos="0">
		<title>ND.edu Launch</title>
		<description />
	</photoset>
	<photoset id="72157601570065777" primary="1182975156" secret="42150018bb" server="1070" farm="2" photos="36" videos="0">
		<title>Midnight Ride 2007</title>
		<description>Photos taken from the 2007 midnight ride. We rode about 8 or 9 hundred miles in all (1/3 in rain, 1/3 in sub 40 degree weather and 1/3 beautiful weather). I also have a couple videos (&lt;a href=&quot;http://www.viddler.com/jnunemaker/videos/16/&quot;&gt;crossing bridge&lt;/a&gt;, &lt;a href=&quot;http://www.viddler.com/jnunemaker/videos/17/&quot;&gt;looking down crossing bridge&lt;/a&gt;, amos snoring &lt;a href=&quot;http://www.viddler.com/jnunemaker/videos/13/&quot;&gt;1&lt;/a&gt;, &lt;a href=&quot;http://www.viddler.com/jnunemaker/videos/14/&quot;&gt;2&lt;/a&gt;, &lt;a href=&quot;http://www.viddler.com/jnunemaker/videos/15/&quot;&gt;3&lt;/a&gt;).</description>
	</photoset>
	<photoset id="72157601010595590" primary="900344639" secret="b3cbd5a159" server="1380" farm="2" photos="9" videos="0">
		<title>Steph and I's PhotoBooth Shots</title>
		<description>We dinked around with the PhotoBooth on my new MacBook Pro tonight. Enjoy!</description>
	</photoset>
	<photoset id="72157600877989429" primary="842719844" secret="e127861473" server="1111" farm="2" photos="20" videos="0">
		<title>Nicholas Birthday</title>
		<description>Photos from the day we went up to my parents to celebrate nicholas birthday this year (2007).
</description>
	</photoset>
	<photoset id="72157600686719825" primary="740925042" secret="cd9ea94d71" server="1053" farm="2" photos="26" videos="0">
		<title>July 4, 2007</title>
		<description>Steph and I went up to Brady and Cindy's for the 4th. </description>
	</photoset>
	<photoset id="72157600429890791" primary="577932624" secret="469178bb80" server="1194" farm="2" photos="62" videos="0">
		<title>Indianapolis Zoo 2007</title>
		<description>Photos from our trip to the indy zoo. It was a birthday request from Steph.</description>
	</photoset>
	<photoset id="72157600248353629" primary="510245352" secret="ffb952226d" server="221" farm="1" photos="58" videos="0">
		<title>RailsConf 2007</title>
		<description>Photos from RailsConf 2007 in Portland, OR. </description>
	</photoset>
	<photoset id="72157600152119318" primary="476284498" secret="ebe433155f" server="188" farm="1" photos="28" videos="0">
		<title>Midnight Ride</title>
		<description>Photos from the midnight ride in 2003.</description>
	</photoset>
	<photoset id="72157600152054958" primary="475923777" secret="fab4d9733f" server="204" farm="1" photos="10" videos="0">
		<title>Draft Day</title>
		<description>Photos from the 2007 NFL draft when Brady Quinn got picked 22nd by the Cleveland Browns. Steph and I watched it together. I lost heart after Miami screwed up pick 9 but Steph wouldn't let me change the channel. I owe her one.</description>
	</photoset>
	<photoset id="72157600152092511" primary="476250972" secret="ec64796196" server="204" farm="1" photos="59" videos="0">
		<title>Nicholas Birth</title>
		<description>Photos from the first visit to the hospital after nicholas was born.</description>
	</photoset>
	<photoset id="72157600151966455" primary="476251761" secret="d854a39cee" server="182" farm="1" photos="67" videos="0">
		<title>Spring Break 2003</title>
		<description>We went to Florida. It was right after Stephanie and I were engaged.</description>
	</photoset>
	<photoset id="72157600150788287" primary="476044716" secret="ecc33024cb" server="180" farm="1" photos="22" videos="0">
		<title>Z's Commission</title>
		<description>Photos taken from my college roommate's commission at Notre Dame in 2004.</description>
	</photoset>
	<photoset id="72157600150509434" primary="476046739" secret="2418838b78" server="178" farm="1" photos="52" videos="0">
		<title>Midnight Breakfast</title>
		<description>These were all taken from midnight breakfast of my senior year (2004). Midnight breakfast is a Bethel College tradition. It is always the day before dead day. Dead day is the day before finals. Basically, everyone dresses up really odd and the professors and administration server breakfast at midnight. Lots of fun each year.</description>
	</photoset>
	<photoset id="72157600134316423" primary="473714347" secret="08f196838b" server="188" farm="1" photos="20" videos="0">
		<title>Blue vs. Gold</title>
		<description>Photos taken before and during the blue gold game this year at Notre Dame</description>
	</photoset>
	<photoset id="72157600035528714" primary="439274359" secret="9985b0e27c" server="177" farm="1" photos="6" videos="0">
		<title>Zen Garden</title>
		<description>Photos of designs that people create in the zen sand garden I  have on my desk at work.</description>
	</photoset>
	<photoset id="72157600035811305" primary="439280327" secret="145b7e3078" server="181" farm="1" photos="9" videos="0">
		<title>Howard Schultz</title>
		<description>Photos from Howard Schultz acceptance of the Theodore Hesburgh Ethics in Business award.</description>
	</photoset>
	<photoset id="72157594583231926" primary="418224720" secret="8154d72fc6" server="185" farm="1" photos="7" videos="0">
		<title>Augustana/Goo Goo Dolls Concert</title>
		<description>March 10, 2007 at the Morris Civic in South Bend, IN.</description>
	</photoset>
	<photoset id="72157594580360478" primary="416430640" secret="9fe116ed90" server="178" farm="1" photos="36" videos="0">
		<title>Tommy Z Fight</title>
		<description>A charity fight at the century center in south bend, IN.</description>
	</photoset>
	<photoset id="72157594520391295" primary="379472767" secret="ca245fb724" server="127" farm="1" photos="11" videos="0">
		<title>ND vs. Villanova</title>
		<description>Photos from Steph and I's trip to the nd vs. villanova basketball game. ND won 66-63. Fun game.</description>
	</photoset>
	<photoset id="72157594451315214" primary="340565068" secret="215d61d21a" server="140" farm="1" photos="51" videos="0">
		<title>New Years 2007</title>
		<description>We hung out at our place. Lots of poker, euchre and joking around.</description>
	</photoset>
	<photoset id="72157594410521762" primary="316900468" secret="4783432478" server="121" farm="1" photos="27" videos="0">
		<title>ND vs. Alabama</title>
		<description>Notre Dame was clutch in the 99-85 win over #4 Alabama. These photos cover the game and the chaos at the end.</description>
	</photoset>
	<photoset id="72157594381931044" primary="300496141" secret="b857da996f" server="112" farm="1" photos="39" videos="0">
		<title>ND vs. Army</title>
		<description>Photos taken from the Notre Dame vs. Army game on November 18, 2006. ND won 41-9. Brady went with me to the game.</description>
	</photoset>
	<photoset id="72157594310050736" primary="259162658" secret="859e35fbc1" server="94" farm="1" photos="4" videos="0">
		<title>ND vs. Purdue</title>
		<description>ND won 35-21 against Purdue. The game was never close. ND dominated from the start.</description>
	</photoset>
	<photoset id="72157594299033646" primary="251488679" secret="9ab263b568" server="117" farm="1" photos="6" videos="0">
		<title>ND vs. MSU</title>
		<description>A horrible 3 quarters followed by one of the greatest 4th quarters I have ever watched. Matt also has photos posted &lt;a href=&quot;http://flickr.com/photos/mattklawitter/sets/72157594297181195/&quot;&gt;here&lt;/a&gt;.</description>
	</photoset>
	<photoset id="72157594288702981" primary="246041347" secret="8e6dff7d6d" server="84" farm="1" photos="11" videos="0">
		<title>ND vs. Michigan</title>
		<description>I'd rather not talk about the game but here are photos from the pre-game tailgate.</description>
	</photoset>
	<photoset id="72157594281869777" primary="241967680" secret="0ecde94dbf" server="95" farm="1" photos="14" videos="0">
		<title>ND vs. Penn State</title>
		<description>The game was played on Sep. 9, 2006. Notre Dame won convincingly 41-17.</description>
	</photoset>
	<photoset id="72157594269423279" primary="234517981" secret="67d06846e4" server="89" farm="1" photos="13" videos="0">
		<title>2006 Blueberry Festival</title>
		<description />
	</photoset>
	<photoset id="72157594253878757" primary="226468095" secret="19bc246a3e" server="93" farm="1" photos="6" videos="0">
		<title>RubyConfMI</title>
		<description>The are the few photos that I took at &lt;a href=&quot;http://rubyconfmi.org&quot;&gt;RubyConfMI 2006&lt;/a&gt; in Grand Rapids, MI. The conference was interesting and eating at the Grand Rapids Brewing Company afterwards was a lot of fun.</description>
	</photoset>
	<photoset id="72157594251613091" primary="224893995" secret="baf928e2aa" server="75" farm="1" photos="16" videos="0">
		<title>My New Niece</title>
		<description>Photos of my sister's new daughter Sadie Elizabeth. She weighed 7lbs. 14oz. and 20 inches long.</description>
	</photoset>
	<photoset id="72157594249188824" primary="223373329" secret="564815321c" server="61" farm="1" photos="38" videos="0">
		<title>Northern Indiana Center For History</title>
		<description>Photos taken while Steph and I roamed the Northern Indiana Center for History. Also, included in admission was a tour of the Oliver House which was flat out amazing. The stats for the mansion: 3 stories, 38 rooms, 14 fireplaces, 6 full baths and 3 half baths.</description>
	</photoset>
	<photoset id="72157594221786654" primary="205035499" secret="ee50b19a8a" server="91" farm="1" photos="28" videos="0">
		<title>ND Stadium: Behind the Scenes</title>
		<description>Photos from behind the scenes in the Notre Dame football stadium. We celebrated a great year for the Web Group with a tour and lunch at Legends.</description>
	</photoset>
	<photoset id="72157594216663823" primary="201415926" secret="bfa6d566f0" server="60" farm="1" photos="7" videos="0">
		<title>New Phones</title>
		<description>Photos of our new Motorola Razr V3 phones. I know it's geeky to have a photoset devoted to your phone.</description>
	</photoset>
	<photoset id="72157594199554904" primary="193264230" secret="48638b1d6d" server="66" farm="1" photos="220" videos="0">
		<title>Hawaii 2006</title>
		<description>Photos taken from our trip to Hawaii for our 2006 vacation. We stayed with Tony and Jill in Waikiki and ventured over to Maui for two days. &lt;a href=&quot;http://flickr.com/photos/tonyandjill/196567251/in/set-72057594142841911/&quot;&gt;You can view Jill's pictures here&lt;/a&gt;.</description>
	</photoset>
	<photoset id="72157594178264976" primary="175595390" secret="540ebe1b72" server="59" farm="1" photos="16" videos="0">
		<title>Fun With PhotoBooth</title>
		<description>This is what happens when Joe (my project manager) leaves for the week. I mess around with &lt;a href=&quot;http://en.wikipedia.org/wiki/Photo_Booth_(software)&quot;&gt;PhotoBooth &lt;/a&gt;on my new iMac. </description>
	</photoset>
	<photoset id="72157594156543108" primary="161035596" secret="ca8ff7223b" server="51" farm="1" photos="11" videos="0">
		<title>Jackson</title>
		<description>These photos were taken during a lunch time visit to the hospital with Steve. Jackson had the hickups which was pretty darn cute.</description>
	</photoset>
	<photoset id="72157594147381376" primary="154716261" secret="a5fc3857ef" server="58" farm="1" photos="7" videos="0">
		<title>May 27 Fishing</title>
		<description>It was a good day. In all we brought home 164 fish but we probably caught around 200.</description>
	</photoset>
	<photoset id="72057594115376299" primary="133953421" secret="7bed92a174" server="48" farm="1" photos="35" videos="0">
		<title>Blue vs. Gold Game</title>
		<description>Blue won 10-7 over gold. The game was ok, not too exciting but the day overall was really, really fun.</description>
	</photoset>
	<photoset id="72057594076662810" primary="108990831" secret="f5efe856fd" server="38" farm="1" photos="28" videos="0">
		<title>Mom and Dad's New House</title>
		<description>My mom and dad just purchased an old victorian style house in Coldwater, MI. These pictures are all from a tour that my mom gave Steph and I.</description>
	</photoset>
	<photoset id="72057594065579061" primary="100640105" secret="2de7d9d64c" server="33" farm="1" photos="14" videos="0">
		<title>Rails Studio Chicago 2006</title>
		<description>Photos taken from the Pragmatic Programmer Studio at Northern Illinois University February 16-18.aa</description>
	</photoset>
	<photoset id="72057594049553755" primary="87614685" secret="aec799c5da" server="38" farm="1" photos="7" videos="0">
		<title>2006 Niles Ice Festival</title>
		<description>Photos taken from the 2nd annual Hunter Ice and Ice Cream Festival in Niles, MI. Steph, Ethan, Caroline and I went together and enjoyed some un-deep fried apples at the Golden Nuggett afterwards.</description>
	</photoset>
	<photoset id="1690235" primary="78954681" secret="fbc7ffb3da" server="36" farm="1" photos="12" videos="0">
		<title>Chipotle and Oberweis</title>
		<description>This set has photos taken from our day trip to Chicago and surrounding areas on December 28, 2005. We visited with a friend from the area and ate at Chipotle and Oberweis. Good times.</description>
	</photoset>
	<photoset id="1662148" primary="77595951" secret="b0d82ea697" server="37" farm="1" photos="8" videos="0">
		<title>My Grandpa's Old New Testament</title>
		<description>This Bible was given to my grandpa by his parents at age 4 (1931). He gave it to me this Christmas (2005). It was 74 years old when I received it.</description>
	</photoset>
	<photoset id="1661900" primary="77602703" secret="73ebf21084" server="39" farm="1" photos="8" videos="0">
		<title>ND vs. Niagra</title>
		<description>These are photos taken from the Notre Dame vs. Niagra basketball game. ND won big. It was kind of sloppy but still a fun game to watch. Steph attended with me.</description>
	</photoset>
	<photoset id="1613950" primary="75215525" secret="c5b6675c89" server="6" farm="1" photos="16" videos="0">
		<title>Christmas 2005</title>
		<description>This set includes photos of all the various Christmas activities this year.</description>
	</photoset>
	<photoset id="1543022" primary="71770735" secret="090ec2c460" server="20" farm="1" photos="11" videos="0">
		<title>First Big Snowfall Winter '05</title>
		<description>These are all photos taken of the first big snow of the year in Mishawaka, IN.</description>
	</photoset>
	<photoset id="1513465" primary="70326385" secret="0ea67f77b0" server="35" farm="1" photos="7" videos="0">
		<title>Emily's Wedding</title>
		<description>These are photos from my sister Emily and new brother-in-law Brandon's wedding. The wedding took place December 3, 2005 in Sturgis, MI. A Couple were taken by me, a couple by my mom and one by my cousin Rita. My camera went dead after four pictures which sucked.</description>
	</photoset>
	<photoset id="1483618" primary="68809924" secret="bc691b41ce" server="6" farm="1" photos="22" videos="0">
		<title>The Carter House</title>
		<description>These are photos taken at the Carter House in Franklin, TN. The owners of this house witnessed one of the bloodiest battles in the Civil War. 10,000 soldiers died in 5 hours. Very sad.</description>
	</photoset>
	<photoset id="1427656" primary="66179780" secret="662c8afc2f" server="32" farm="1" photos="10" videos="0">
		<title>New Office Furniture</title>
		<description />
	</photoset>
	<photoset id="1404792" primary="65093063" secret="e52af1c0b5" server="32" farm="1" photos="33" videos="0">
		<title>ND vs. Syracuse 11-19-2005</title>
		<description>Most of these photos are from tailgaiting before the game. We had a blast and the Irish won 34-10 despite a rocky first quarter.
</description>
	</photoset>
	<photoset id="1352541" primary="62627565" secret="d2fc7ce198" server="29" farm="1" photos="27" videos="0">
		<title>ND vs. Navy 11-12-2005</title>
		<description>These are photos from the Notre Dame/Navy game. Brady went with me again. A few of the shots are from tailgaiting.</description>
	</photoset>
	<photoset id="1330029" primary="24829099" secret="cea9f802eb" server="21" farm="1" photos="33" videos="0">
		<title>Closeups</title>
		<description>I love closeups. Very rarely in life do we look at the world from an inch or two away. This set contains my attempts at this view.</description>
	</photoset>
	<photoset id="1316813" primary="60965372" secret="b386994c60" server="31" farm="1" photos="17" videos="0">
		<title>Notre Dame vs. Tennessee</title>
		<description>These are all photos I took before the Notre Dame - Tennessee game on November 5, 2005. I didn't take my camera to the game because I was afraid it would rain too much.</description>
	</photoset>
	<photoset id="1192740" primary="55047971" secret="63997d5d4a" server="25" farm="1" photos="36" videos="0">
		<title>ND vs. BYU October 22, 2005</title>
		<description>The final score was 49-23 ND on top. It was a lot of fun and a great game. Brady, Steph's dad, went with me to the game.</description>
	</photoset>
	<photoset id="592043" primary="24829029" secret="4dcb1b2253" server="21" farm="1" photos="44" videos="0">
		<title>Attempts at Art</title>
		<description>The photos in this set are attempts at art. I say attempts because I have no formal training in photography with the exception of one college class.</description>
	</photoset>
	<photoset id="1154868" primary="53264914" secret="163589f00f" server="26" farm="1" photos="26" videos="0">
		<title>Dan and Rachel's Wedding</title>
		<description>These photos were all taken and Dan and Rachel King's 2005 Wedding. I would have taken more photos, but my camera battery exhausted right before the garter was removed.</description>
	</photoset>
	<photoset id="968984" primary="44293185" secret="ea3a3b0291" server="25" farm="1" photos="58" videos="0">
		<title>ND vs. MSU Sep. 17, 2005</title>
		<description>This set is full of photos taken before, during and after the Notre Dame vs. Michigan State game on September 17, 2005. The Irish came back from a 21 point deficit to lose in OT 44-41. This was the first game I have ever attended.</description>
	</photoset>
	<photoset id="799917" primary="36184041" secret="eb7311840c" server="32" farm="1" photos="20" videos="0">
		<title>2005 Midnight Ride</title>
		<description>Pictures from the 19th Annual Midnight Ride for Juvenile Diabetes. We start in Grand Rapids, MI and ride all night to the Mackinac Bridge.  It was a lot of fun, but the photos didn't turn out to well because it was so dark.</description>
	</photoset>
	<photoset id="681595" primary="30468634" secret="241a23b527" server="21" farm="1" photos="19" videos="0">
		<title>Honda Homecoming 2005</title>
		<description>This set has a few photos from  this year's Honda Homecoming. Steph, Ethan, Caroline and I went to the event and were pretty impressed by the factory tour. Unfortunately no cameras are allowed in the factory so these are all outdoors.</description>
	</photoset>
	<photoset id="635250" primary="28121338" secret="50a52aaca3" server="23" farm="1" photos="64" videos="0">
		<title>Fort Wayne Zoo</title>
		<description>This set contains photos from Steph and I's trip to the Fort Wayne Children's Zoo.</description>
	</photoset>
	<photoset id="569118" primary="24829375" secret="e9f92fbf03" server="22" farm="1" photos="199" videos="0">
		<title>Hyannis Vacation 2005</title>
		<description>Photos from Tony, Jill, Steph, and I's vacation to cape cod. There are pictures in this set from Hyannis, Plymouth, Sandwich, Martha's Vineyard, Boston and many other cities.</description>
	</photoset>
	<photoset id="434581" primary="18394309" secret="94e3844a04" server="13" farm="1" photos="81" videos="0">
		<title>Honeymoon</title>
		<description>Pictures from Steph and I's July 2004 Honeymoon and Jill and Tony's Wedding on our honeymoon.</description>
	</photoset>
	<photoset id="715987" primary="32144355" secret="fc22c78de8" server="22" farm="1" photos="13" videos="0">
		<title>Family</title>
		<description>This set contains photos of my family.</description>
	</photoset>
	<photoset id="466956" primary="19936634" secret="cc26fd61ed" server="13" farm="1" photos="164" videos="0">
		<title>Our Pets</title>
		<description>Photos of our cats Charles (grey, black and white) and Bob (orange). There are also photos of our families pets in this set.</description>
	</photoset>
	<photoset id="492233" primary="21138518" secret="3763cc483f" server="16" farm="1" photos="28" videos="0">
		<title>Our House</title>
		<description>Photos of our house. This is our first home. We purchased it in June of 2004. </description>
	</photoset>
	<photoset id="428269" primary="18097570" secret="97d604624e" server="13" farm="1" photos="50" videos="0">
		<title>Notre Dame</title>
		<description>Photos from the University of Notre Dame aka my employer.</description>
	</photoset>
	<photoset id="592037" primary="26018807" secret="42caa0ef06" server="21" farm="1" photos="14" videos="0">
		<title>Miscellaneous</title>
		<description>These are miscellaneous photos that I don't take enouch of to have a category for each.a</description>
	</photoset>
	<photoset id="592034" primary="26020909" secret="f89bc475e9" server="23" farm="1" photos="7" videos="0">
		<title>Farm Shots</title>
		<description>This set has photos taken of my dad's farm equipment and such. His farm is located in Bronson, MI. You can learn more at &lt;a href=&quot;http://www.oakprairiefarms.com&quot;&gt;www.oakprairiefarms.com&lt;/a&gt;.</description>
	</photoset>
	<photoset id="482579" primary="20695118" secret="8f5b1bee1a" server="17" farm="1" photos="37" videos="0">
		<title>Indiana Motorcycle Expo</title>
		<description>Photos of Ethan, Steph and I's trip to Indianapolis for the 2005 Motorcycle Expo. There are some nice bikes in this set.</description>
	</photoset>
	<photoset id="479305" primary="20537225" secret="32d5e27c3d" server="15" farm="1" photos="34" videos="0">
		<title>Graduation 2004</title>
		<description>Photos from my graduation in May 2004 from Bethel College in Mishawaka, IN.</description>
	</photoset>
	<photoset id="463290" primary="19762170" secret="9998f15844" server="15" farm="1" photos="29" videos="0">
		<title>Toledo Zoo</title>
		<description>Photos of Steph and I's trip to the Toledo Zoo. Summer 2004. Steph loves zoos.</description>
	</photoset>
	<photoset id="463072" primary="19748164" secret="db35fa25bf" server="16" farm="1" photos="18" videos="0">
		<title>Potawatomi Zoo</title>
		<description>Photos of Steph and I's trip to the Potawatomi in South Bend, IN.</description>
	</photoset>
	<photoset id="430069" primary="18190368" secret="0952ce247c" server="13" farm="1" photos="15" videos="0">
		<title>Vehicles</title>
		<description>Photos of Steph and I's vehicles.</description>
	</photoset>
	<photoset id="430070" primary="32138787" secret="f19fa7d1d0" server="21" farm="1" photos="33" videos="0">
		<title>Motorcycles</title>
		<description>Photos of my friends, my relatives and my own motorcycles.</description>
	</photoset>
	<photoset id="430111" primary="18191537" secret="84fefef99c" server="12" farm="1" photos="23" videos="0">
		<title>Steph and I</title>
		<description>Photos of Steph and I.</description>
	</photoset>
	<photoset id="428266" primary="4111653" secret="a9f10280f9" server="4" farm="1" photos="16" videos="0">
		<title>Z's Wedding</title>
		<description>Photos from Eric and Alysa Zyrowski's July 2004 Wedding.</description>
	</photoset>
</photosets>
</rsp>

Function Return

Array
(
    [1] => Array
        (
            [id] => 72157607419686620
            [primary] => 2877069793
            [secret] => c09f5c56c2
            [server] => 3080
            [photos] => 10
            [primary_url] => http://static.flickr.com/3080/2877069793_c09f5c56c2_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157607419686620/
            [title] => ND vs. MSU
            [description] => September 20, 2008. Attended with my dad.
        )

    [2] => Array
        (
            [id] => 72157607072616608
            [primary] => 2822097010
            [secret] => 63349f42fa
            [server] => 3117
            [photos] => 11
            [primary_url] => http://static.flickr.com/3117/2822097010_63349f42fa_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157607072616608/
            [title] => How to make coffee
            [description] => Full article is here.
        )

    [3] => Array
        (
            [id] => 72157606879490650
            [primary] => 2785401493
            [secret] => 73a1a37b2c
            [server] => 3211
            [photos] => 21
            [primary_url] => http://static.flickr.com/3211/2785401493_73a1a37b2c_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157606879490650/
            [title] => Midnight Ride 2008
            [description] => 
        )

    [4] => Array
        (
            [id] => 72157606501719938
            [primary] => 2725932274
            [secret] => 2cc15fd0c9
            [server] => 3113
            [photos] => 14
            [primary_url] => http://static.flickr.com/3113/2725932274_2cc15fd0c9_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157606501719938/
            [title] => Google App Engine Hackathon
            [description] => July 31, 2008 in Chicago. Myself, Steve, Jon and Dan attended.
        )

    [5] => Array
        (
            [id] => 72157605443893567
            [primary] => 2552865436
            [secret] => b1ef9c0737
            [server] => 3167
            [photos] => 17
            [primary_url] => http://static.flickr.com/3167/2552865436_b1ef9c0737_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157605443893567/
            [title] => RailsConf 2008
            [description] => In Portland, OR. 
        )

    [6] => Array
        (
            [id] => 72157604681068763
            [primary] => 2434025521
            [secret] => 43d9ddb5c0
            [server] => 3267
            [photos] => 14
            [primary_url] => http://static.flickr.com/3267/2434025521_43d9ddb5c0_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157604681068763/
            [title] => Earth Day at ND
            [description] => 
        )

    [7] => Array
        (
            [id] => 72157604397561428
            [primary] => 2389991609
            [secret] => b13b1a24c1
            [server] => 2262
            [photos] => 4
            [primary_url] => http://static.flickr.com/2262/2389991609_b13b1a24c1_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157604397561428/
            [title] => Sally
            [description] => Pictures of my sweet 2006 Ford Mustang.
        )

    [8] => Array
        (
            [id] => 72157604058823139
            [primary] => 2313334607
            [secret] => 5d1fdaf7fb
            [server] => 3205
            [photos] => 24
            [primary_url] => http://static.flickr.com/3205/2313334607_5d1fdaf7fb_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157604058823139/
            [title] => ND vs. St. Johns Basketball
            [description] => Notre Dame won 68 - 55. It was the last home game of the season and completed two straight years of home wins in conference play.

Due to it being a televised game, I couldn't take pictures during game play. I did sneak a few at the very end though. :)
        )

    [9] => Array
        (
            [id] => 72157603618516849
            [primary] => 2161035204
            [secret] => 054a03d729
            [server] => 2158
            [photos] => 27
            [primary_url] => http://static.flickr.com/2158/2161035204_054a03d729_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157603618516849/
            [title] => Rob's Bachelor Party and Wedding
            [description] => We went bowling and Rob rode a bull. Some great stories were told and re-told. Lots of fun.
        )

    [10] => Array
        (
            [id] => 72157603613398326
            [primary] => 2160988090
            [secret] => b03ec35771
            [server] => 2416
            [photos] => 8
            [primary_url] => http://static.flickr.com/2416/2160988090_b03ec35771_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157603613398326/
            [title] => First Big Snow of 2008
            [description] => The new year rang in with a crap load of snow.
        )

    [11] => Array
        (
            [id] => 72157603343820236
            [primary] => 2078734716
            [secret] => 234f9bc8b3
            [server] => 2410
            [photos] => 10
            [primary_url] => http://static.flickr.com/2410/2078734716_234f9bc8b3_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157603343820236/
            [title] => Re-Arrangement of Office
            [description] => Flickerized for Erik so he doesn't have a heart attach monday morning. :)
        )

    [12] => Array
        (
            [id] => 72157603235446119
            [primary] => 2044070138
            [secret] => ca26d1d45e
            [server] => 2247
            [photos] => 10
            [primary_url] => http://static.flickr.com/2247/2044070138_ca26d1d45e_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157603235446119/
            [title] => ND vs. Duke 2007
            [description] => November 18, 2007. Notre Dame won 28-7. 
        )

    [13] => Array
        (
            [id] => 72157603070812274
            [primary] => 1958736654
            [secret] => d8ac14b59c
            [server] => 2173
            [photos] => 50
            [primary_url] => http://static.flickr.com/2173/1958736654_d8ac14b59c_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157603070812274/
            [title] => ND vs. Air Force 2007
            [description] => Once again a loss putting us at 1-9 but we still had fun.
        )

    [14] => Array
        (
            [id] => 72157603004220529
            [primary] => 1912986587
            [secret] => 3a3c8675cf
            [server] => 2006
            [photos] => 32
            [primary_url] => http://static.flickr.com/2006/1912986587_3a3c8675cf_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157603004220529/
            [title] => RubyConf 2007
            [description] => In Charlotte, NC from Nov. 1 to Nov. 5, 2007.
        )

    [15] => Array
        (
            [id] => 72157602594329582
            [primary] => 1681392175
            [secret] => 9cb3750413
            [server] => 2265
            [photos] => 15
            [primary_url] => http://static.flickr.com/2265/1681392175_9cb3750413_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602594329582/
            [title] => Bday Celebrations
            [description] => We got together to celebrate Emily, my sister, and my grandpa chupp's birthdays. Mom always makes a great meal that the birthday people get to choose. Emily chose thanksgiving-ish food. It was great. 
        )

    [16] => Array
        (
            [id] => 72157602569923352
            [primary] => 1664101801
            [secret] => 34798f3109
            [server] => 2303
            [photos] => 80
            [primary_url] => http://static.flickr.com/2303/1664101801_34798f3109_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602569923352/
            [title] => ND vs. USC
            [description] => October 20, 2007. USC won big.
        )

    [17] => Array
        (
            [id] => 72157602418295035
            [primary] => 1570459988
            [secret] => a02df2846c
            [server] => 2345
            [photos] => 21
            [primary_url] => http://static.flickr.com/2345/1570459988_a02df2846c_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602418295035/
            [title] => ND vs. BC
            [description] => October 13, 2007. Final score BC 27 - ND 14.
        )

    [18] => Array
        (
            [id] => 72157602272701950
            [primary] => 1490573241
            [secret] => 54dbe1ff63
            [server] => 1180
            [photos] => 9
            [primary_url] => http://static.flickr.com/1180/1490573241_54dbe1ff63_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602272701950/
            [title] => Working From The Library
            [description] =>  
        )

    [19] => Array
        (
            [id] => 72157602279086907
            [primary] => 1490558219
            [secret] => 692b62a12b
            [server] => 1028
            [photos] => 6
            [primary_url] => http://static.flickr.com/1028/1490558219_692b62a12b_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602279086907/
            [title] => October SB.rb
            [description] => Ruby and pizza. Had some good conversation as well.
        )

    [20] => Array
        (
            [id] => 72157602279043799
            [primary] => 1491396122
            [secret] => 918277387f
            [server] => 1107
            [photos] => 6
            [primary_url] => http://static.flickr.com/1107/1491396122_918277387f_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602279043799/
            [title] => Foggy Morning
            [description] => Photos taken walking into work early one morning. Thick fog made the walk seem mysterious.
        )

    [21] => Array
        (
            [id] => 72157602192773550
            [primary] => 1455371147
            [secret] => a3aeca6065
            [server] => 1152
            [photos] => 31
            [primary_url] => http://static.flickr.com/1152/1455371147_a3aeca6065_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602192773550/
            [title] => Mishawaka Riverfront
            [description] => Steph and I took a walk on the riverfront tonight. They have done a lot of work and it actually is pretty nice.
        )

    [22] => Array
        (
            [id] => 72157602195699665
            [primary] => 1453394433
            [secret] => 497724068f
            [server] => 1145
            [photos] => 20
            [primary_url] => http://static.flickr.com/1145/1453394433_497724068f_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602195699665/
            [title] => Admissions Live Chat
            [description] => We were on call during admission live chat just in case anything went wrong. The live chat application was built by Bill with a little help from me, in rails of course. 
        )

    [23] => Array
        (
            [id] => 72157602187588443
            [primary] => 1449728165
            [secret] => 82a17e85d8
            [server] => 1127
            [photos] => 25
            [primary_url] => http://static.flickr.com/1127/1449728165_82a17e85d8_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602187588443/
            [title] => Office Shots
            [description] => We broke out the webgroup slr and snapped some lunch times shots. Making memories....
        )

    [24] => Array
        (
            [id] => 72157602168825845
            [primary] => 1442679297
            [secret] => 669f6f5321
            [server] => 1405
            [photos] => 28
            [primary_url] => http://static.flickr.com/1405/1442679297_669f6f5321_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157602168825845/
            [title] => ND vs. Michigan State 2007
            [description] => 
        )

    [25] => Array
        (
            [id] => 72157601831280881
            [primary] => 1307484037
            [secret] => 38144cfdbc
            [server] => 1135
            [photos] => 25
            [primary_url] => http://static.flickr.com/1135/1307484037_38144cfdbc_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157601831280881/
            [title] => ND vs. GT 2007
            [description] => Notre Dame vs. Georgia Tech. September 1, 2007. The final score was 33-3 not in favor of the good guys.
        )

    [26] => Array
        (
            [id] => 72157601795586315
            [primary] => 1289526555
            [secret] => 351d28a918
            [server] => 1340
            [photos] => 12
            [primary_url] => http://static.flickr.com/1340/1289526555_351d28a918_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157601795586315/
            [title] => ND.edu Launch
            [description] => 
        )

    [27] => Array
        (
            [id] => 72157601570065777
            [primary] => 1182975156
            [secret] => 42150018bb
            [server] => 1070
            [photos] => 36
            [primary_url] => http://static.flickr.com/1070/1182975156_42150018bb_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157601570065777/
            [title] => Midnight Ride 2007
            [description] => Photos taken from the 2007 midnight ride. We rode about 8 or 9 hundred miles in all (1/3 in rain, 1/3 in sub 40 degree weather and 1/3 beautiful weather). I also have a couple videos (crossing bridge, looking down crossing bridge, amos snoring 1, 2, 3).
        )

    [28] => Array
        (
            [id] => 72157601010595590
            [primary] => 900344639
            [secret] => b3cbd5a159
            [server] => 1380
            [photos] => 9
            [primary_url] => http://static.flickr.com/1380/900344639_b3cbd5a159_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157601010595590/
            [title] => Steph and I's PhotoBooth Shots
            [description] => We dinked around with the PhotoBooth on my new MacBook Pro tonight. Enjoy!
        )

    [29] => Array
        (
            [id] => 72157600877989429
            [primary] => 842719844
            [secret] => e127861473
            [server] => 1111
            [photos] => 20
            [primary_url] => http://static.flickr.com/1111/842719844_e127861473_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600877989429/
            [title] => Nicholas Birthday
            [description] => Photos from the day we went up to my parents to celebrate nicholas birthday this year (2007).

        )

    [30] => Array
        (
            [id] => 72157600686719825
            [primary] => 740925042
            [secret] => cd9ea94d71
            [server] => 1053
            [photos] => 26
            [primary_url] => http://static.flickr.com/1053/740925042_cd9ea94d71_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600686719825/
            [title] => July 4, 2007
            [description] => Steph and I went up to Brady and Cindy's for the 4th. 
        )

    [31] => Array
        (
            [id] => 72157600429890791
            [primary] => 577932624
            [secret] => 469178bb80
            [server] => 1194
            [photos] => 62
            [primary_url] => http://static.flickr.com/1194/577932624_469178bb80_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600429890791/
            [title] => Indianapolis Zoo 2007
            [description] => Photos from our trip to the indy zoo. It was a birthday request from Steph.
        )

    [32] => Array
        (
            [id] => 72157600248353629
            [primary] => 510245352
            [secret] => ffb952226d
            [server] => 221
            [photos] => 58
            [primary_url] => http://static.flickr.com/221/510245352_ffb952226d_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600248353629/
            [title] => RailsConf 2007
            [description] => Photos from RailsConf 2007 in Portland, OR. 
        )

    [33] => Array
        (
            [id] => 72157600152119318
            [primary] => 476284498
            [secret] => ebe433155f
            [server] => 188
            [photos] => 28
            [primary_url] => http://static.flickr.com/188/476284498_ebe433155f_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600152119318/
            [title] => Midnight Ride
            [description] => Photos from the midnight ride in 2003.
        )

    [34] => Array
        (
            [id] => 72157600152054958
            [primary] => 475923777
            [secret] => fab4d9733f
            [server] => 204
            [photos] => 10
            [primary_url] => http://static.flickr.com/204/475923777_fab4d9733f_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600152054958/
            [title] => Draft Day
            [description] => Photos from the 2007 NFL draft when Brady Quinn got picked 22nd by the Cleveland Browns. Steph and I watched it together. I lost heart after Miami screwed up pick 9 but Steph wouldn't let me change the channel. I owe her one.
        )

    [35] => Array
        (
            [id] => 72157600152092511
            [primary] => 476250972
            [secret] => ec64796196
            [server] => 204
            [photos] => 59
            [primary_url] => http://static.flickr.com/204/476250972_ec64796196_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600152092511/
            [title] => Nicholas Birth
            [description] => Photos from the first visit to the hospital after nicholas was born.
        )

    [36] => Array
        (
            [id] => 72157600151966455
            [primary] => 476251761
            [secret] => d854a39cee
            [server] => 182
            [photos] => 67
            [primary_url] => http://static.flickr.com/182/476251761_d854a39cee_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600151966455/
            [title] => Spring Break 2003
            [description] => We went to Florida. It was right after Stephanie and I were engaged.
        )

    [37] => Array
        (
            [id] => 72157600150788287
            [primary] => 476044716
            [secret] => ecc33024cb
            [server] => 180
            [photos] => 22
            [primary_url] => http://static.flickr.com/180/476044716_ecc33024cb_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600150788287/
            [title] => Z's Commission
            [description] => Photos taken from my college roommate's commission at Notre Dame in 2004.
        )

    [38] => Array
        (
            [id] => 72157600150509434
            [primary] => 476046739
            [secret] => 2418838b78
            [server] => 178
            [photos] => 52
            [primary_url] => http://static.flickr.com/178/476046739_2418838b78_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600150509434/
            [title] => Midnight Breakfast
            [description] => These were all taken from midnight breakfast of my senior year (2004). Midnight breakfast is a Bethel College tradition. It is always the day before dead day. Dead day is the day before finals. Basically, everyone dresses up really odd and the professors and administration server breakfast at midnight. Lots of fun each year.
        )

    [39] => Array
        (
            [id] => 72157600134316423
            [primary] => 473714347
            [secret] => 08f196838b
            [server] => 188
            [photos] => 20
            [primary_url] => http://static.flickr.com/188/473714347_08f196838b_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600134316423/
            [title] => Blue vs. Gold
            [description] => Photos taken before and during the blue gold game this year at Notre Dame
        )

    [40] => Array
        (
            [id] => 72157600035528714
            [primary] => 439274359
            [secret] => 9985b0e27c
            [server] => 177
            [photos] => 6
            [primary_url] => http://static.flickr.com/177/439274359_9985b0e27c_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600035528714/
            [title] => Zen Garden
            [description] => Photos of designs that people create in the zen sand garden I  have on my desk at work.
        )

    [41] => Array
        (
            [id] => 72157600035811305
            [primary] => 439280327
            [secret] => 145b7e3078
            [server] => 181
            [photos] => 9
            [primary_url] => http://static.flickr.com/181/439280327_145b7e3078_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157600035811305/
            [title] => Howard Schultz
            [description] => Photos from Howard Schultz acceptance of the Theodore Hesburgh Ethics in Business award.
        )

    [42] => Array
        (
            [id] => 72157594583231926
            [primary] => 418224720
            [secret] => 8154d72fc6
            [server] => 185
            [photos] => 7
            [primary_url] => http://static.flickr.com/185/418224720_8154d72fc6_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594583231926/
            [title] => Augustana/Goo Goo Dolls Concert
            [description] => March 10, 2007 at the Morris Civic in South Bend, IN.
        )

    [43] => Array
        (
            [id] => 72157594580360478
            [primary] => 416430640
            [secret] => 9fe116ed90
            [server] => 178
            [photos] => 36
            [primary_url] => http://static.flickr.com/178/416430640_9fe116ed90_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594580360478/
            [title] => Tommy Z Fight
            [description] => A charity fight at the century center in south bend, IN.
        )

    [44] => Array
        (
            [id] => 72157594520391295
            [primary] => 379472767
            [secret] => ca245fb724
            [server] => 127
            [photos] => 11
            [primary_url] => http://static.flickr.com/127/379472767_ca245fb724_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594520391295/
            [title] => ND vs. Villanova
            [description] => Photos from Steph and I's trip to the nd vs. villanova basketball game. ND won 66-63. Fun game.
        )

    [45] => Array
        (
            [id] => 72157594451315214
            [primary] => 340565068
            [secret] => 215d61d21a
            [server] => 140
            [photos] => 51
            [primary_url] => http://static.flickr.com/140/340565068_215d61d21a_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594451315214/
            [title] => New Years 2007
            [description] => We hung out at our place. Lots of poker, euchre and joking around.
        )

    [46] => Array
        (
            [id] => 72157594410521762
            [primary] => 316900468
            [secret] => 4783432478
            [server] => 121
            [photos] => 27
            [primary_url] => http://static.flickr.com/121/316900468_4783432478_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594410521762/
            [title] => ND vs. Alabama
            [description] => Notre Dame was clutch in the 99-85 win over #4 Alabama. These photos cover the game and the chaos at the end.
        )

    [47] => Array
        (
            [id] => 72157594381931044
            [primary] => 300496141
            [secret] => b857da996f
            [server] => 112
            [photos] => 39
            [primary_url] => http://static.flickr.com/112/300496141_b857da996f_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594381931044/
            [title] => ND vs. Army
            [description] => Photos taken from the Notre Dame vs. Army game on November 18, 2006. ND won 41-9. Brady went with me to the game.
        )

    [48] => Array
        (
            [id] => 72157594310050736
            [primary] => 259162658
            [secret] => 859e35fbc1
            [server] => 94
            [photos] => 4
            [primary_url] => http://static.flickr.com/94/259162658_859e35fbc1_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594310050736/
            [title] => ND vs. Purdue
            [description] => ND won 35-21 against Purdue. The game was never close. ND dominated from the start.
        )

    [49] => Array
        (
            [id] => 72157594299033646
            [primary] => 251488679
            [secret] => 9ab263b568
            [server] => 117
            [photos] => 6
            [primary_url] => http://static.flickr.com/117/251488679_9ab263b568_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594299033646/
            [title] => ND vs. MSU
            [description] => A horrible 3 quarters followed by one of the greatest 4th quarters I have ever watched. Matt also has photos posted here.
        )

    [50] => Array
        (
            [id] => 72157594288702981
            [primary] => 246041347
            [secret] => 8e6dff7d6d
            [server] => 84
            [photos] => 11
            [primary_url] => http://static.flickr.com/84/246041347_8e6dff7d6d_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594288702981/
            [title] => ND vs. Michigan
            [description] => I'd rather not talk about the game but here are photos from the pre-game tailgate.
        )

    [51] => Array
        (
            [id] => 72157594281869777
            [primary] => 241967680
            [secret] => 0ecde94dbf
            [server] => 95
            [photos] => 14
            [primary_url] => http://static.flickr.com/95/241967680_0ecde94dbf_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594281869777/
            [title] => ND vs. Penn State
            [description] => The game was played on Sep. 9, 2006. Notre Dame won convincingly 41-17.
        )

    [52] => Array
        (
            [id] => 72157594269423279
            [primary] => 234517981
            [secret] => 67d06846e4
            [server] => 89
            [photos] => 13
            [primary_url] => http://static.flickr.com/89/234517981_67d06846e4_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594269423279/
            [title] => 2006 Blueberry Festival
            [description] => 
        )

    [53] => Array
        (
            [id] => 72157594253878757
            [primary] => 226468095
            [secret] => 19bc246a3e
            [server] => 93
            [photos] => 6
            [primary_url] => http://static.flickr.com/93/226468095_19bc246a3e_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594253878757/
            [title] => RubyConfMI
            [description] => The are the few photos that I took at RubyConfMI 2006 in Grand Rapids, MI. The conference was interesting and eating at the Grand Rapids Brewing Company afterwards was a lot of fun.
        )

    [54] => Array
        (
            [id] => 72157594251613091
            [primary] => 224893995
            [secret] => baf928e2aa
            [server] => 75
            [photos] => 16
            [primary_url] => http://static.flickr.com/75/224893995_baf928e2aa_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594251613091/
            [title] => My New Niece
            [description] => Photos of my sister's new daughter Sadie Elizabeth. She weighed 7lbs. 14oz. and 20 inches long.
        )

    [55] => Array
        (
            [id] => 72157594249188824
            [primary] => 223373329
            [secret] => 564815321c
            [server] => 61
            [photos] => 38
            [primary_url] => http://static.flickr.com/61/223373329_564815321c_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594249188824/
            [title] => Northern Indiana Center For History
            [description] => Photos taken while Steph and I roamed the Northern Indiana Center for History. Also, included in admission was a tour of the Oliver House which was flat out amazing. The stats for the mansion: 3 stories, 38 rooms, 14 fireplaces, 6 full baths and 3 half baths.
        )

    [56] => Array
        (
            [id] => 72157594221786654
            [primary] => 205035499
            [secret] => ee50b19a8a
            [server] => 91
            [photos] => 28
            [primary_url] => http://static.flickr.com/91/205035499_ee50b19a8a_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594221786654/
            [title] => ND Stadium: Behind the Scenes
            [description] => Photos from behind the scenes in the Notre Dame football stadium. We celebrated a great year for the Web Group with a tour and lunch at Legends.
        )

    [57] => Array
        (
            [id] => 72157594216663823
            [primary] => 201415926
            [secret] => bfa6d566f0
            [server] => 60
            [photos] => 7
            [primary_url] => http://static.flickr.com/60/201415926_bfa6d566f0_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594216663823/
            [title] => New Phones
            [description] => Photos of our new Motorola Razr V3 phones. I know it's geeky to have a photoset devoted to your phone.
        )

    [58] => Array
        (
            [id] => 72157594199554904
            [primary] => 193264230
            [secret] => 48638b1d6d
            [server] => 66
            [photos] => 220
            [primary_url] => http://static.flickr.com/66/193264230_48638b1d6d_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594199554904/
            [title] => Hawaii 2006
            [description] => Photos taken from our trip to Hawaii for our 2006 vacation. We stayed with Tony and Jill in Waikiki and ventured over to Maui for two days. You can view Jill's pictures here.
        )

    [59] => Array
        (
            [id] => 72157594178264976
            [primary] => 175595390
            [secret] => 540ebe1b72
            [server] => 59
            [photos] => 16
            [primary_url] => http://static.flickr.com/59/175595390_540ebe1b72_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594178264976/
            [title] => Fun With PhotoBooth
            [description] => This is what happens when Joe (my project manager) leaves for the week. I mess around with PhotoBooth on my new iMac. 
        )

    [60] => Array
        (
            [id] => 72157594156543108
            [primary] => 161035596
            [secret] => ca8ff7223b
            [server] => 51
            [photos] => 11
            [primary_url] => http://static.flickr.com/51/161035596_ca8ff7223b_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594156543108/
            [title] => Jackson
            [description] => These photos were taken during a lunch time visit to the hospital with Steve. Jackson had the hickups which was pretty darn cute.
        )

    [61] => Array
        (
            [id] => 72157594147381376
            [primary] => 154716261
            [secret] => a5fc3857ef
            [server] => 58
            [photos] => 7
            [primary_url] => http://static.flickr.com/58/154716261_a5fc3857ef_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72157594147381376/
            [title] => May 27 Fishing
            [description] => It was a good day. In all we brought home 164 fish but we probably caught around 200.
        )

    [62] => Array
        (
            [id] => 72057594115376299
            [primary] => 133953421
            [secret] => 7bed92a174
            [server] => 48
            [photos] => 35
            [primary_url] => http://static.flickr.com/48/133953421_7bed92a174_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72057594115376299/
            [title] => Blue vs. Gold Game
            [description] => Blue won 10-7 over gold. The game was ok, not too exciting but the day overall was really, really fun.
        )

    [63] => Array
        (
            [id] => 72057594076662810
            [primary] => 108990831
            [secret] => f5efe856fd
            [server] => 38
            [photos] => 28
            [primary_url] => http://static.flickr.com/38/108990831_f5efe856fd_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72057594076662810/
            [title] => Mom and Dad's New House
            [description] => My mom and dad just purchased an old victorian style house in Coldwater, MI. These pictures are all from a tour that my mom gave Steph and I.
        )

    [64] => Array
        (
            [id] => 72057594065579061
            [primary] => 100640105
            [secret] => 2de7d9d64c
            [server] => 33
            [photos] => 14
            [primary_url] => http://static.flickr.com/33/100640105_2de7d9d64c_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72057594065579061/
            [title] => Rails Studio Chicago 2006
            [description] => Photos taken from the Pragmatic Programmer Studio at Northern Illinois University February 16-18.aa
        )

    [65] => Array
        (
            [id] => 72057594049553755
            [primary] => 87614685
            [secret] => aec799c5da
            [server] => 38
            [photos] => 7
            [primary_url] => http://static.flickr.com/38/87614685_aec799c5da_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/72057594049553755/
            [title] => 2006 Niles Ice Festival
            [description] => Photos taken from the 2nd annual Hunter Ice and Ice Cream Festival in Niles, MI. Steph, Ethan, Caroline and I went together and enjoyed some un-deep fried apples at the Golden Nuggett afterwards.
        )

    [66] => Array
        (
            [id] => 1690235
            [primary] => 78954681
            [secret] => fbc7ffb3da
            [server] => 36
            [photos] => 12
            [primary_url] => http://static.flickr.com/36/78954681_fbc7ffb3da_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1690235/
            [title] => Chipotle and Oberweis
            [description] => This set has photos taken from our day trip to Chicago and surrounding areas on December 28, 2005. We visited with a friend from the area and ate at Chipotle and Oberweis. Good times.
        )

    [67] => Array
        (
            [id] => 1662148
            [primary] => 77595951
            [secret] => b0d82ea697
            [server] => 37
            [photos] => 8
            [primary_url] => http://static.flickr.com/37/77595951_b0d82ea697_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1662148/
            [title] => My Grandpa's Old New Testament
            [description] => This Bible was given to my grandpa by his parents at age 4 (1931). He gave it to me this Christmas (2005). It was 74 years old when I received it.
        )

    [68] => Array
        (
            [id] => 1661900
            [primary] => 77602703
            [secret] => 73ebf21084
            [server] => 39
            [photos] => 8
            [primary_url] => http://static.flickr.com/39/77602703_73ebf21084_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1661900/
            [title] => ND vs. Niagra
            [description] => These are photos taken from the Notre Dame vs. Niagra basketball game. ND won big. It was kind of sloppy but still a fun game to watch. Steph attended with me.
        )

    [69] => Array
        (
            [id] => 1613950
            [primary] => 75215525
            [secret] => c5b6675c89
            [server] => 6
            [photos] => 16
            [primary_url] => http://static.flickr.com/6/75215525_c5b6675c89_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1613950/
            [title] => Christmas 2005
            [description] => This set includes photos of all the various Christmas activities this year.
        )

    [70] => Array
        (
            [id] => 1543022
            [primary] => 71770735
            [secret] => 090ec2c460
            [server] => 20
            [photos] => 11
            [primary_url] => http://static.flickr.com/20/71770735_090ec2c460_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1543022/
            [title] => First Big Snowfall Winter '05
            [description] => These are all photos taken of the first big snow of the year in Mishawaka, IN.
        )

    [71] => Array
        (
            [id] => 1513465
            [primary] => 70326385
            [secret] => 0ea67f77b0
            [server] => 35
            [photos] => 7
            [primary_url] => http://static.flickr.com/35/70326385_0ea67f77b0_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1513465/
            [title] => Emily's Wedding
            [description] => These are photos from my sister Emily and new brother-in-law Brandon's wedding. The wedding took place December 3, 2005 in Sturgis, MI. A Couple were taken by me, a couple by my mom and one by my cousin Rita. My camera went dead after four pictures which sucked.
        )

    [72] => Array
        (
            [id] => 1483618
            [primary] => 68809924
            [secret] => bc691b41ce
            [server] => 6
            [photos] => 22
            [primary_url] => http://static.flickr.com/6/68809924_bc691b41ce_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1483618/
            [title] => The Carter House
            [description] => These are photos taken at the Carter House in Franklin, TN. The owners of this house witnessed one of the bloodiest battles in the Civil War. 10,000 soldiers died in 5 hours. Very sad.
        )

    [73] => Array
        (
            [id] => 1427656
            [primary] => 66179780
            [secret] => 662c8afc2f
            [server] => 32
            [photos] => 10
            [primary_url] => http://static.flickr.com/32/66179780_662c8afc2f_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1427656/
            [title] => New Office Furniture
            [description] => 
        )

    [74] => Array
        (
            [id] => 1404792
            [primary] => 65093063
            [secret] => e52af1c0b5
            [server] => 32
            [photos] => 33
            [primary_url] => http://static.flickr.com/32/65093063_e52af1c0b5_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1404792/
            [title] => ND vs. Syracuse 11-19-2005
            [description] => Most of these photos are from tailgaiting before the game. We had a blast and the Irish won 34-10 despite a rocky first quarter.

        )

    [75] => Array
        (
            [id] => 1352541
            [primary] => 62627565
            [secret] => d2fc7ce198
            [server] => 29
            [photos] => 27
            [primary_url] => http://static.flickr.com/29/62627565_d2fc7ce198_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1352541/
            [title] => ND vs. Navy 11-12-2005
            [description] => These are photos from the Notre Dame/Navy game. Brady went with me again. A few of the shots are from tailgaiting.
        )

    [76] => Array
        (
            [id] => 1330029
            [primary] => 24829099
            [secret] => cea9f802eb
            [server] => 21
            [photos] => 33
            [primary_url] => http://static.flickr.com/21/24829099_cea9f802eb_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1330029/
            [title] => Closeups
            [description] => I love closeups. Very rarely in life do we look at the world from an inch or two away. This set contains my attempts at this view.
        )

    [77] => Array
        (
            [id] => 1316813
            [primary] => 60965372
            [secret] => b386994c60
            [server] => 31
            [photos] => 17
            [primary_url] => http://static.flickr.com/31/60965372_b386994c60_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1316813/
            [title] => Notre Dame vs. Tennessee
            [description] => These are all photos I took before the Notre Dame - Tennessee game on November 5, 2005. I didn't take my camera to the game because I was afraid it would rain too much.
        )

    [78] => Array
        (
            [id] => 1192740
            [primary] => 55047971
            [secret] => 63997d5d4a
            [server] => 25
            [photos] => 36
            [primary_url] => http://static.flickr.com/25/55047971_63997d5d4a_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1192740/
            [title] => ND vs. BYU October 22, 2005
            [description] => The final score was 49-23 ND on top. It was a lot of fun and a great game. Brady, Steph's dad, went with me to the game.
        )

    [79] => Array
        (
            [id] => 592043
            [primary] => 24829029
            [secret] => 4dcb1b2253
            [server] => 21
            [photos] => 44
            [primary_url] => http://static.flickr.com/21/24829029_4dcb1b2253_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/592043/
            [title] => Attempts at Art
            [description] => The photos in this set are attempts at art. I say attempts because I have no formal training in photography with the exception of one college class.
        )

    [80] => Array
        (
            [id] => 1154868
            [primary] => 53264914
            [secret] => 163589f00f
            [server] => 26
            [photos] => 26
            [primary_url] => http://static.flickr.com/26/53264914_163589f00f_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/1154868/
            [title] => Dan and Rachel's Wedding
            [description] => These photos were all taken and Dan and Rachel King's 2005 Wedding. I would have taken more photos, but my camera battery exhausted right before the garter was removed.
        )

    [81] => Array
        (
            [id] => 968984
            [primary] => 44293185
            [secret] => ea3a3b0291
            [server] => 25
            [photos] => 58
            [primary_url] => http://static.flickr.com/25/44293185_ea3a3b0291_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/968984/
            [title] => ND vs. MSU Sep. 17, 2005
            [description] => This set is full of photos taken before, during and after the Notre Dame vs. Michigan State game on September 17, 2005. The Irish came back from a 21 point deficit to lose in OT 44-41. This was the first game I have ever attended.
        )

    [82] => Array
        (
            [id] => 799917
            [primary] => 36184041
            [secret] => eb7311840c
            [server] => 32
            [photos] => 20
            [primary_url] => http://static.flickr.com/32/36184041_eb7311840c_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/799917/
            [title] => 2005 Midnight Ride
            [description] => Pictures from the 19th Annual Midnight Ride for Juvenile Diabetes. We start in Grand Rapids, MI and ride all night to the Mackinac Bridge.  It was a lot of fun, but the photos didn't turn out to well because it was so dark.
        )

    [83] => Array
        (
            [id] => 681595
            [primary] => 30468634
            [secret] => 241a23b527
            [server] => 21
            [photos] => 19
            [primary_url] => http://static.flickr.com/21/30468634_241a23b527_s.jpg
            [set_url] => http://www.flickr.com/photos/55569174@N00/sets/681595/
            [title] => Honda Homecoming 2005
            [description] => This set has a few photos from  this year's Honda Homecoming. Steph, Ethan, Caroline and I went to the event and were pretty impressed by the