<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Scott Krieder Blog</title>
	<atom:link href="http://blog.scottkrieder.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.scottkrieder.com</link>
	<description>Told you geeks would be cool one day.</description>
	<lastBuildDate>Fri, 09 Jul 2010 02:40:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Chicago Art Institute</title>
		<link>http://blog.scottkrieder.com/?p=40</link>
		<comments>http://blog.scottkrieder.com/?p=40#comments</comments>
		<pubDate>Fri, 09 Jul 2010 02:40:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=40</guid>
		<description><![CDATA[Today I made it out to the Chicago Art Institute.  And thanks to the Chicago Public Library, admission was free!]]></description>
			<content:encoded><![CDATA[<p>Today I made it out to the Chicago Art Institute.  And thanks to the Chicago Public Library, admission was free!<a href="http://blog.scottkrieder.com/wp-content/uploads/2010/07/artinst.jpg"><img class="aligncenter size-full wp-image-41" title="ChicagoArtInstitute" src="http://blog.scottkrieder.com/wp-content/uploads/2010/07/artinst.jpg" alt="The Chicago Art Institute" width="604" height="453" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=40</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site Ideas</title>
		<link>http://blog.scottkrieder.com/?p=38</link>
		<comments>http://blog.scottkrieder.com/?p=38#comments</comments>
		<pubDate>Thu, 20 May 2010 16:26:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=38</guid>
		<description><![CDATA[I got to spend some development time with T.J. Houston this past week. We have several excellent ideas that we are really excited about. Stay tuned for: tekfish.net remembermywarranty.com]]></description>
			<content:encoded><![CDATA[<p>I got to spend some development time with T.J. Houston this past week.  We have several excellent ideas that we are really excited about.</p>
<p>Stay tuned for:</p>
<p>tekfish.net<br />
remembermywarranty.com</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=38</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending spam e-mail using a simple PHP method.</title>
		<link>http://blog.scottkrieder.com/?p=28</link>
		<comments>http://blog.scottkrieder.com/?p=28#comments</comments>
		<pubDate>Sat, 24 Apr 2010 14:31:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=28</guid>
		<description><![CDATA[A quick post on how to send spam e-mail using a PHP method.  Also, don&#8217;t use this form as a normal contact form as it has no security built in. NOTE:  First in some cases the client will receive an e-mail that looks spoofed.  In this case you can make an e-mail look like it [...]]]></description>
			<content:encoded><![CDATA[<p>A quick post on how to send spam e-mail using a PHP method.  Also, don&#8217;t use this form as a normal contact form as it has no security built in.</p>
<p>NOTE:  First in some cases the client will receive an e-mail that looks spoofed.  In this case you can make an e-mail look like it has been sent from someone other than you.  Second, in some cases the client will receive an e-mail from your server.  In either case DO NOT USE THIS MALICIOUSLY because&#8230;.it&#8217;s very easy to be caught.  If someone were to examine the details of the e-mail in either case it would show your server and you would be traceable.</p>
<p>&lt;code&gt;</p>
<p>&lt;!&#8212; sampleSpamForm.php</p>
<p>Note:  All of this code should be placed on a single page.  If you look below you will see that the form will post to itself, after the post if the email field is set then it will send the email.  If not then it will display the form.</p>
<p>&#8212;&gt;</p>
<p>&lt;?php<br />
if (isset($_REQUEST['email']))<br />
//if &#8220;email&#8221; is filled out, send email<br />
{<br />
//send email<br />
$to = &#8220;email to send to&#8221;;<br />
$from = &#8220;email you want the email to appear to be sent from&#8221;;<br />
$name = $_REQUEST['name'] ;<br />
$email = $_REQUEST['email'] ;<br />
$subject = $_REQUEST['subject'] ;<br />
$message = $_REQUEST['message'] ;<br />
$headers = &#8220;From: $from&#8221;;<br />
$body = &#8220;$message $name&#8221;;<br />
mail($to,$subject,$body,$headers);<br />
echo &#8220;Thank you $name for using the spam form.&#8221;;<br />
}<br />
else<br />
//if &#8220;email&#8221; is not filled out, display the form<br />
{<br />
echo &#8220;&lt;form method=&#8217;post&#8217; action=&#8217;spam.php&#8217;&gt;<br />
Name: &lt;input name=&#8217;name&#8217; type=&#8217;text&#8217;&gt;<br />
&lt;br&gt;<br />
Email: &lt;input name=&#8217;email&#8217; type=&#8217;text&#8217;&gt;<br />
&lt;br&gt;<br />
Subject: &lt;input name=&#8217;subject&#8217; type=&#8217;text&#8217;&gt;<br />
&lt;br&gt;<br />
Message:<br />
&lt;br&gt;<br />
&lt;textarea name=&#8217;message&#8217; rows=&#8217;15&#8242; cols=&#8217;40&#8242;&gt; &lt;/textarea&gt;<br />
&lt;br&gt;<br />
&lt;input type=&#8217;submit&#8217; /&gt;<br />
&lt;/form&gt;&#8221;;<br />
}<br />
?&gt;</p>
<p>&lt;/code&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=28</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPhone App &#8211; Creighton Calendar RSS feed</title>
		<link>http://blog.scottkrieder.com/?p=24</link>
		<comments>http://blog.scottkrieder.com/?p=24#comments</comments>
		<pubDate>Fri, 23 Apr 2010 14:39:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=24</guid>
		<description><![CDATA[Finally finished my Creighton Calendar RSS feed iPhone Application.]]></description>
			<content:encoded><![CDATA[<p>Finally finished my Creighton Calendar RSS feed iPhone Application.</p>
<div id="attachment_25" class="wp-caption aligncenter" style="width: 402px"><a href="http://blog.scottkrieder.com/wp-content/uploads/2010/04/Picture-41.png"><img class="size-full wp-image-25" title="Creighton Calendar iPhone Application" src="http://blog.scottkrieder.com/wp-content/uploads/2010/04/Picture-41.png" alt="Creighton Calendar iPhone Application" width="392" height="731" /></a><p class="wp-caption-text">Creighton Calendar iPhone Application</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=24</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Security Conference &#8211; Myrtle Beach, SC</title>
		<link>http://blog.scottkrieder.com/?p=20</link>
		<comments>http://blog.scottkrieder.com/?p=20#comments</comments>
		<pubDate>Thu, 15 Apr 2010 13:57:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=20</guid>
		<description><![CDATA[After four airports and three different planes, I&#8217;ve finally made it to Myrtle Beach. Two paper presentations tomorrow, so enjoying presentations today, and go time tomorrow at 8am.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.scottkrieder.com/wp-content/uploads/2010/04/Picture-1.png"><img class="aligncenter size-full wp-image-21" title="Computer Security Conference" src="http://blog.scottkrieder.com/wp-content/uploads/2010/04/Picture-1.png" alt="Computer Security Conference" width="637" height="107" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">After four airports and three different planes, I&#8217;ve finally made it to Myrtle Beach.</p>
<p>Two paper presentations tomorrow, so enjoying presentations today, and go time tomorrow at 8am.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CCSC</title>
		<link>http://blog.scottkrieder.com/?p=17</link>
		<comments>http://blog.scottkrieder.com/?p=17#comments</comments>
		<pubDate>Sun, 11 Apr 2010 18:48:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=17</guid>
		<description><![CDATA[The Constortium for Computer Science in Colleges just held a conference at Park University, Parkville, MO. I competed in the Web Design Contest, the poster contest, and the student programming contest.  So essenttially every contest they held, I competed in. Saturday at the luncheon I was awarded grand prize champion for the Web Design Contest.  [...]]]></description>
			<content:encoded><![CDATA[<p>The Constortium for Computer Science in Colleges just held a conference at Park University, Parkville, MO.</p>
<p>I competed in the Web Design Contest, the poster contest, and the student programming contest.  So essenttially every contest they held, I competed in.</p>
<p>Saturday at the luncheon I was awarded grand prize champion for the Web Design Contest.  Overall it was an exciting weekend and I learned a lot.</p>
<div id="attachment_18" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.scottkrieder.com/wp-content/uploads/2010/04/Picture-4.png"><img class="size-medium wp-image-18" title="Park University Underground Tunnel System" src="http://blog.scottkrieder.com/wp-content/uploads/2010/04/Picture-4-300x167.png" alt="Park University Underground Tunnel System" width="300" height="167" /></a><p class="wp-caption-text">Taken from: http://www.park.edu/pcu/history.shtml</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Loyola University</title>
		<link>http://blog.scottkrieder.com/?p=12</link>
		<comments>http://blog.scottkrieder.com/?p=12#comments</comments>
		<pubDate>Tue, 16 Feb 2010 01:40:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=12</guid>
		<description><![CDATA[After months of being asked what my plans are for next year, I can finally provide answer to that question.  I have recently been accepted to Loyola University Chicago and will starting my Masters in Computer Science May 24th.]]></description>
			<content:encoded><![CDATA[<p>After months of being asked what my plans are for next year, I can finally provide answer to that question.  I have recently been accepted to <a href="http://luc.edu">Loyola University Chicago</a> and will starting my Masters in Computer Science May 24th.</p>
<p style="text-align: center;"><a href="http://blog.scottkrieder.com/wp-content/uploads/2010/02/Picture-3.png"><img class="aligncenter size-full wp-image-15" title="Loyola Logo" src="http://blog.scottkrieder.com/wp-content/uploads/2010/02/Picture-3.png" alt="Loyola Logo - Preparing People to lead extrondinary lives" width="217" height="159" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Omaha Half &#8211; Marathon</title>
		<link>http://blog.scottkrieder.com/?p=10</link>
		<comments>http://blog.scottkrieder.com/?p=10#comments</comments>
		<pubDate>Tue, 29 Sep 2009 01:06:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=10</guid>
		<description><![CDATA[So I&#8217;m really making myself sound like quite the runner lately since all of my posts have to do with running.  I ran in the Omaha Half Marathon this past sunday and I&#8217;m still sore.  My final chip time was 2:14:19 which for the lack of traning I had that&#8217;s not too bad. My dad [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m really making myself sound like quite the runner lately since all of my posts have to do with running.  I ran in the Omaha Half Marathon this past sunday and I&#8217;m still sore.  My final chip time was 2:14:19 which for the lack of traning I had that&#8217;s not too bad.</p>
<p>My dad came into town to watch me run.  Overall it was a great weekend.  He has a couple pictures of me in my running garb and maybe I will post those later on if I get them off his camera.</p>
<p>-Scott</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=10</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Corporate Cup 10k</title>
		<link>http://blog.scottkrieder.com/?p=6</link>
		<comments>http://blog.scottkrieder.com/?p=6#comments</comments>
		<pubDate>Mon, 21 Sep 2009 02:55:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[10k]]></category>
		<category><![CDATA[5k]]></category>
		<category><![CDATA[Corporate Cup]]></category>
		<category><![CDATA[nebraska]]></category>
		<category><![CDATA[omaha]]></category>
		<category><![CDATA[run]]></category>
		<category><![CDATA[running]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=6</guid>
		<description><![CDATA[I ran a 10k today, the Omaha Corporate Cup.  I ran for the Union Pacific team.  We had awesome shirts that said &#8220;Never Race A Train.&#8221;  It was a pretty easy out and back 6.2 miles.  This coming Sunday is the Omaha Full Marathon.  I&#8217;ve never ran a full marathon and it will be interesting [...]]]></description>
			<content:encoded><![CDATA[<p>I ran a 10k today, the Omaha Corporate Cup.  I ran for the Union Pacific team.  We had awesome shirts that said &#8220;Never Race A Train.&#8221;  It was a pretty easy out and back 6.2 miles.  This coming Sunday is the Omaha Full Marathon.  I&#8217;ve never ran a full marathon and it will be interesting to see how it goes.  I had a training schedule but I didn&#8217;t stick to it nearly as much as I should have.<img class="aligncenter" title="Corporate Cup" src="http://www.omahacorporatecup.org/runner_crowd%5B1%5D.jpg" alt="" width="227" height="179" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=6</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Week 3 and a 1/2</title>
		<link>http://blog.scottkrieder.com/?p=3</link>
		<comments>http://blog.scottkrieder.com/?p=3#comments</comments>
		<pubDate>Thu, 17 Sep 2009 02:44:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.scottkrieder.com/?p=3</guid>
		<description><![CDATA[Technically this is our fourth week of school.  I guess this is where things get serious. Classes are going alright, the irony is History 101 is my hardest class.  I knew it wasn&#8217;t going to be fun which is why I pushed taking general history off until my Senior year. All of my Computer Science [...]]]></description>
			<content:encoded><![CDATA[<p>Technically this is our fourth week of school.  I guess this is where things get serious.</p>
<p>Classes are going alright, the irony is History 101 is my hardest class.  I knew it wasn&#8217;t going to be fun which is why I pushed taking general history off until my Senior year.</p>
<p>All of my Computer Science classes are going well, for the most part.  Computer Organization is off to a rough start but I have high hopes for that one.  My Journalism class is a lot of fun, Interactive Design, however I&#8217;m awful with CS4 so I&#8217;m having some issues getting off the ground in that one.  We have to create a 20 second flash ad, which is a loooooonnnnngggg time, I have a good idea I&#8217;m just having some issues implementing it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.scottkrieder.com/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
