<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>It's a luscious mix of words and tricks</title>
	<atom:link href="http://rednwhite.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rednwhite.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 22 Jan 2009 04:39:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rednwhite.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>It's a luscious mix of words and tricks</title>
		<link>http://rednwhite.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rednwhite.wordpress.com/osd.xml" title="It&#039;s a luscious mix of words and tricks" />
	<atom:link rel='hub' href='http://rednwhite.wordpress.com/?pushpress=hub'/>
		<item>
		<title>change</title>
		<link>http://rednwhite.wordpress.com/2009/01/21/change/</link>
		<comments>http://rednwhite.wordpress.com/2009/01/21/change/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 04:39:47 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://rednwhite.wordpress.com/?p=92</guid>
		<description><![CDATA[import java.util.Scanner; /** * Figures out the change required to make the amount input by the user. * * @author Self * @version January 21, 2009 */ public class ComputeChange { public static void main (String [] args) { double change; Scanner scan = new Scanner(System.in); System.out.print ("Enter the amount of change needed: "); change [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=92&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code>import java.util.Scanner;<br />
/**<br />
 * Figures out the change required to make the amount input by the user.<br />
 *<br />
 * @author Self<br />
 * @version January 21, 2009<br />
 */<br />
public class ComputeChange<br />
{<br />
   public static void main (String [] args)<br />
   {<br />
       double change;</p>
<p>       Scanner scan = new Scanner(System.in);</p>
<p>       System.out.print ("Enter the amount of change needed: ");<br />
       change = scan.nextDouble();</p>
<p>       double tens = change / 10;<br />
       double fives = (change % 10) / 5;<br />
       double ones = (fives % 5) / 1;<br />
       double quarters = (ones % 1) / .25;<br />
       double dimes = (quarters % 4) / .10;<br />
       double nickels = (dimes % 10) / .05;<br />
       double pennies = (nickels % 20) / .01;</p>
<p>       System.out.println(tens + " ten dollar bills");<br />
       System.out.println(fives + " five dollar bills");<br />
       System.out.println(ones + " one dollar bills");<br />
       System.out.println(quarters + " quarters");<br />
       System.out.println(dimes + " dimes");<br />
       System.out.println(nickels + " nickels");<br />
       System.out.println(pennies + " pennies");<br />
    }<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=92&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2009/01/21/change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>
	</item>
		<item>
		<title>wut</title>
		<link>http://rednwhite.wordpress.com/2009/01/21/wut/</link>
		<comments>http://rednwhite.wordpress.com/2009/01/21/wut/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 03:41:42 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://rednwhite.wordpress.com/?p=90</guid>
		<description><![CDATA[import java.util.Scanner; /** * Calculates the sum, difference, and product of two floating point numbers. * * @author Self * @version January 21, 2009 */ public class Calculator { public static void main (String[] args) { int num1; int num2; Scanner scan = new Scanner(System.in); System.out.print ("Enter the first number: "); num1 = scan.nextDouble(); System.out.print [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=90&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><code>import java.util.Scanner;<br />
/**<br />
 * Calculates the sum, difference, and product of two floating point numbers.<br />
 *<br />
 * @author Self<br />
 * @version January 21, 2009<br />
 */<br />
public class Calculator<br />
{<br />
    public static void main (String[] args)<br />
    {<br />
        int num1;<br />
        int num2;</p>
<p>        Scanner scan  = new Scanner(System.in);        </p>
<p>        System.out.print ("Enter the first number: ");<br />
        num1 = scan.nextDouble();</p>
<p>        System.out.print ("Enter the second number: ");<br />
        num2 = scan.nextDouble();</p>
<p>        int sum = num1 + num2;<br />
        int difference = num1 - num2;<br />
        int product = num1 * num2;</p>
<p>        System.out.println("Sum: " + num1 + " + " + num2 + " = " + sum);<br />
        System.out.println("Difference: " + num1 + " - " + num2 + " = " + difference);<br />
        System.out.println("Product: " + num1 + " * " + num2 + " = " + product);</p>
<p>    }<br />
}<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=90&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2009/01/21/wut/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>
	</item>
		<item>
		<title>Major Change</title>
		<link>http://rednwhite.wordpress.com/2008/03/19/major-change/</link>
		<comments>http://rednwhite.wordpress.com/2008/03/19/major-change/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 20:43:35 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://rednwhite.rotahall.org/?p=80</guid>
		<description><![CDATA[I don&#8217;t want to be an engineer. All roads seemed to eventually be leading to something like managing a plastics manufacturing plant. I don&#8217;t want to be a manager of a plastics plant. And I&#8217;m really not at all pretty certain this is what I want to do, but I&#8217;m double majoring in political science [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=87&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t want to be an engineer.</p>
<p>All roads seemed to eventually be leading to something like managing a plastics manufacturing plant. I don&#8217;t want to be a manager of a plastics plant.</p>
<p>And I&#8217;m <span style="text-decoration:line-through;">really not at all</span> pretty certain this is what I want to do, but<!-- Traffic Statistics --> <!-- End Traffic Statistics --> I&#8217;m double majoring in political<!-- Traffic Statistics --> <!-- End Traffic Statistics --> science and psychology now.</p>
<p>I&#8217;m also doing remarkably mediocre in most of my classes, woo not caring.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rednwhite.wordpress.com/87/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rednwhite.wordpress.com/87/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=87&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2008/03/19/major-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://rednwhite.wordpress.com/2008/03/12/79/</link>
		<comments>http://rednwhite.wordpress.com/2008/03/12/79/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 17:14:41 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://rednwhite.rotahall.org/?p=79</guid>
		<description><![CDATA[http://rednwhite.rotahall.org/?p=75 http://www.legacy.com/StarNewsOnline/Obituaries.asp?Page=LifeStory&#38;PersonId=101336622 This happened a couple of months ago but I couldn&#8217;t bring myself to connect what I had said in that post and what happened last January until now. Live every second like its your last.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=86&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://rednwhite.rotahall.org/?p=75">http://rednwhite.rotahall.org/?p=75</a></p>
<p><a href="http://www.legacy.com/StarNewsOnline/Obituaries.asp?Page=LifeStory&amp;PersonId=101336622">http://www.legacy.com/StarNewsOnline/Obituaries.asp?Page=LifeStory&amp;PersonId=101336622</a></p>
<p>This happened a couple of months ago but I couldn&#8217;t bring myself to connect what I had said in that post and what happened last January until now.</p>
<p>Live every second like its your last.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rednwhite.wordpress.com/86/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rednwhite.wordpress.com/86/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=86&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2008/03/12/79/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>
	</item>
		<item>
		<title>Birfday</title>
		<link>http://rednwhite.wordpress.com/2008/02/21/birfday/</link>
		<comments>http://rednwhite.wordpress.com/2008/02/21/birfday/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 17:01:36 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rednwhite.rotahall.org/?p=78</guid>
		<description><![CDATA[I can finally buy cigarettes and porn!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=85&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I can finally buy cigarettes and porn!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rednwhite.wordpress.com/85/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rednwhite.wordpress.com/85/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=85&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2008/02/21/birfday/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>
	</item>
		<item>
		<title>Wierd Dream</title>
		<link>http://rednwhite.wordpress.com/2008/02/08/wierd-dream/</link>
		<comments>http://rednwhite.wordpress.com/2008/02/08/wierd-dream/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 14:34:49 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[Random Ramblings]]></category>

		<guid isPermaLink="false">http://rednwhite.rotahall.org/?p=77</guid>
		<description><![CDATA[I had a really strange dream last night.  My friend was driving a van, just me and her.  I was in the very back row.  She ran a red light at a bridge, and we rapidly descended towards the water below.  Right before we hit, I took a very deep breath and woke up, literally [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=84&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I had a really strange dream last night.  My friend was driving a van, just me and her.  I was in the very back row.  She ran a red light at a bridge, and we rapidly descended towards the water below.  Right before we hit, I took a very deep breath and woke up, literally seconds before my alarm went off.  Nifty.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rednwhite.wordpress.com/84/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rednwhite.wordpress.com/84/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=84&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2008/02/08/wierd-dream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>
	</item>
		<item>
		<title>Hide and Seek</title>
		<link>http://rednwhite.wordpress.com/2007/09/27/hide-and-seek/</link>
		<comments>http://rednwhite.wordpress.com/2007/09/27/hide-and-seek/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 18:59:08 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rednwhite.rotahall.org/?p=75</guid>
		<description><![CDATA[I just listened to Imogen Heap&#8217;s Hide and Seek, and for some reason it instantly brought up something memorable my eighth grade social studies teacher had told our class. He had said that statistics had shown that by the time we all reached the age of 25, one of us would be dead. Of course [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=83&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just listened to <a href="http://lyricwiki.org/Imogen_Heap:Hide_And_Seek"> Imogen Heap&#8217;s Hide and Seek</a>, and for some reason it instantly brought up something memorable my eighth grade social studies teacher had told our class.  He had said that statistics had shown that by the time we all reached the age of 25, one of us would be dead.  Of course we just blew that off as random trivia, but we couldn&#8217;t have been more naive and short-sighted of how little time we really have.  Patience is a virtue, but it can be easy to slip into the delusion that things will change for the better, even though we know deep down that things won&#8217;t change.  Extend every second you have to the fullest.</p>
<p><img src="http://photos-c.ak.facebook.com/photos-ak-sctm/v126/58/100/1395420073/n1395420073_30022510_5968.jpg" height="382" width="464" /></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rednwhite.wordpress.com/83/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rednwhite.wordpress.com/83/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=83&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2007/09/27/hide-and-seek/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>

		<media:content url="http://photos-c.ak.facebook.com/photos-ak-sctm/v126/58/100/1395420073/n1395420073_30022510_5968.jpg" medium="image" />
	</item>
		<item>
		<title>Heh.</title>
		<link>http://rednwhite.wordpress.com/2007/09/26/heh/</link>
		<comments>http://rednwhite.wordpress.com/2007/09/26/heh/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 12:54:46 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://rednwhite.rotahall.org/?p=74</guid>
		<description><![CDATA[My life. As of right now, I work two jobs.  I do trivial office work for two hours between classes Monday through Friday, then I work 4 nights a week as a waiter.  I&#8217;m going to class for the most part, aside for Chemistry, which is at 9 am.  I would go, but the professor [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=82&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My life.</p>
<p>As of right now, I work two jobs.  I do trivial office work for two hours between classes Monday through Friday, then I work 4 nights a week as a waiter.  I&#8217;m going to class for the most part, aside for Chemistry, which is at 9 am.  I would go, but the professor offers no perspective on what it is we&#8217;re learning, meaning all we do is copy down the powerpoint notes he presents.  Said notes are also provided online, so there truly is no reason to go to class.  English is going decently enough. I managed to keep up with the journals we were supposed to do, but as for the one paper we worked on, I pretty much put it off to the last minute, and I&#8217;m not sure how that&#8217;s going to turn out.</p>
<p>My engineering class is interesting enough.  I have to design a fludic powered monorail as our design project, so that should be pretty fun.  I fucked up on the first couple of grades, but after those I actually put effort into what I was doing and things are looking better now.</p>
<p>Then psychology.  Without studying whatsoever I pulled off a 72, which is below the average of 77, but I&#8217;ll take it. Since it&#8217;s an intro class, it&#8217;s pretty much the same material I covered in high school, so although it may be fuzzy, at least I retained enough of the knowledge to pull off a 72.</p>
<p>Pre-Calculus has just been a review of what I did in high school so far, and I got an 87 on the first exam, again without studying.  I don&#8217;t think pre-cal is going to be that difficult.</p>
<p>Overall,  things aren&#8217;t going too bad.  I&#8217;m caught up with all of my work right now, but I have a feeling that I&#8217;m going to get immensely stressed out in the future.  I wasn&#8217;t studying during my free time which is why I decided that I might as well be making money during said time so I picked up that second job.  The good thing about working on campus is if you ever need time off, you can just tell them you&#8217;re working on a paper or something of that nature and they&#8217;ll let you go for the day.</p>
<p>I don&#8217;t think a career in engineering is going to lead to a happy lifestyle.</p>
<p>I&#8217;m hoping I&#8217;ll have an epiphany soon, and something will enter my life that <em>will</em> lead to a prosperous and enjoyable lifestyle, but I&#8217;ve yet to see anything.  Dunno.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rednwhite.wordpress.com/82/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rednwhite.wordpress.com/82/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=82&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2007/09/26/heh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>
	</item>
		<item>
		<title>Holy Eclipse Batman!</title>
		<link>http://rednwhite.wordpress.com/2007/08/28/holy-eclipse-batman/</link>
		<comments>http://rednwhite.wordpress.com/2007/08/28/holy-eclipse-batman/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 02:29:36 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rednwhite.rotahall.org/?p=73</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=81&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://upload.wikimedia.org/wikipedia/en/0/0b/Lunar-eclipse-2004.jpg"><img src="http://upload.wikimedia.org/wikipedia/en/thumb/0/0b/Lunar-eclipse-2004.jpg/400px-Lunar-eclipse-2004.jpg" alt="Kool~" height="600" width="400" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rednwhite.wordpress.com/81/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rednwhite.wordpress.com/81/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=81&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2007/08/28/holy-eclipse-batman/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/en/thumb/0/0b/Lunar-eclipse-2004.jpg/400px-Lunar-eclipse-2004.jpg" medium="image">
			<media:title type="html">Kool~</media:title>
		</media:content>
	</item>
		<item>
		<title>Off to Collegeland</title>
		<link>http://rednwhite.wordpress.com/2007/08/11/off-to-collegeland/</link>
		<comments>http://rednwhite.wordpress.com/2007/08/11/off-to-collegeland/#comments</comments>
		<pubDate>Sat, 11 Aug 2007 18:22:17 +0000</pubDate>
		<dc:creator>rednwhite</dc:creator>
				<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://rednwhite.rotahall.org/?p=72</guid>
		<description><![CDATA[Since it&#8217;s what I&#8217;ve been telling myself I was going to major in for essentially my entire life, I&#8217;m going to major in Engineering. Which means I&#8217;ll be going to school here at UNCW going through their Pre-Engineering program, which essentially means that for my first two years I&#8217;ll take all the basic classes that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=80&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Since it&#8217;s what I&#8217;ve been telling myself I was going to major in for essentially my entire life, I&#8217;m going to major in Engineering.</p>
<p>Which means I&#8217;ll be going to school here at UNCW going through their <a href="http://www.uncw.edu/preeng/">Pre-Engineering program</a>, which essentially means that for my first two years I&#8217;ll take all the basic classes that everyone takes right here in town, and then transfer to <a href="http://www.engr.ncsu.edu/">NC State&#8217;s College of Engineering</a> for my second two years.  We&#8217;ll see where I stand after that.</p>
<p>Mein Schedule:</p>
<blockquote>
<p class="MsoNormal">General Chemistry I</p>
<p class="rightaligntext">Intro To Engineering</p>
<p class="rightaligntext">Freshman Composition I</p>
<p class="rightaligntext">Precalculus</p>
<p class="rightaligntext">General Psychology</p>
</blockquote>
<p>Taking Psychology only because it was one of the few classes still available and I really didn&#8217;t want to take Anthropology.</p>
<p><a href="http://i2.photobucket.com/albums/y41/rednwhite/schedit.png" target="_blank">Also, here is what time I&#8217;ll be taking what class through the week. </a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rednwhite.wordpress.com/80/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rednwhite.wordpress.com/80/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rednwhite.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rednwhite.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rednwhite.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rednwhite.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rednwhite.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rednwhite.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rednwhite.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rednwhite.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rednwhite.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rednwhite.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rednwhite.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rednwhite.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rednwhite.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rednwhite.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rednwhite.wordpress.com&amp;blog=333982&amp;post=80&amp;subd=rednwhite&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rednwhite.wordpress.com/2007/08/11/off-to-collegeland/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/eeb6fc6f2c710498997d364aa7df5a7d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rednwhite</media:title>
		</media:content>
	</item>
	</channel>
</rss>
