<?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>College, Anxiety, Stress and Technology</title>
	<atom:link href="http://annath32.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://annath32.wordpress.com</link>
	<description>CAST - And everything that goes with it.</description>
	<lastBuildDate>Sat, 24 Apr 2010 00:59:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='annath32.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>College, Anxiety, Stress and Technology</title>
		<link>http://annath32.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://annath32.wordpress.com/osd.xml" title="College, Anxiety, Stress and Technology" />
	<atom:link rel='hub' href='http://annath32.wordpress.com/?pushpress=hub'/>
		<item>
		<title>&lt;3 Lambdas</title>
		<link>http://annath32.wordpress.com/2010/04/23/3-lambdas/</link>
		<comments>http://annath32.wordpress.com/2010/04/23/3-lambdas/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 00:59:31 +0000</pubDate>
		<dc:creator>annath32</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://annath32.wordpress.com/?p=19</guid>
		<description><![CDATA[I absolutely love lambda expressions in C#. I finally got around to trying to write a good derivation function, and produced this piece: /// &#60;summary&#62; /// Derives f(x) /// &#60;/summary&#62; /// &#60;param name="f"&#62;The function f(x) to be derived&#60;/param&#62; /// &#60;returns&#62;The derivative df/dx as a function&#60;/returns&#62; public static Func&#60;double, double&#62; fprime(Func&#60;double, double&#62; f) { return x [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=annath32.wordpress.com&amp;blog=13089934&amp;post=19&amp;subd=annath32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I absolutely love lambda expressions in C#. I finally got around to trying to write a good derivation function, and produced this piece:</p>
<pre>
/// &lt;summary&gt;
/// Derives f(x)
/// &lt;/summary&gt;
/// &lt;param name="f"&gt;The function f(x) to be derived&lt;/param&gt;
/// &lt;returns&gt;The derivative df/dx as a function&lt;/returns&gt;
public static Func&lt;double, double&gt; fprime(Func&lt;double, double&gt; f)
{
	return x =&gt;
	{
		double h = 1;
		double tempf = 0;
		double guessf = 0;
		do
		{
			tempf = guessf;
			guessf = (f(x + h) - f(x)) / h;
			h = h / 10;
		} while (Math.Abs((guessf - tempf) / guessf) &gt; 0.001);

		return guessf;
	};
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/annath32.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/annath32.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/annath32.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/annath32.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/annath32.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/annath32.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/annath32.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/annath32.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/annath32.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/annath32.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/annath32.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/annath32.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/annath32.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/annath32.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=annath32.wordpress.com&amp;blog=13089934&amp;post=19&amp;subd=annath32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://annath32.wordpress.com/2010/04/23/3-lambdas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5716942e04bb5909d196e6d6a444a89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">annath32</media:title>
		</media:content>
	</item>
		<item>
		<title>The Illusion</title>
		<link>http://annath32.wordpress.com/2010/04/18/the-illusion/</link>
		<comments>http://annath32.wordpress.com/2010/04/18/the-illusion/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 05:07:04 +0000</pubDate>
		<dc:creator>annath32</dc:creator>
				<category><![CDATA[Anxiety]]></category>
		<category><![CDATA[Stress]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://annath32.wordpress.com/?p=16</guid>
		<description><![CDATA[It occurs to me that all fears and stresses come from illusions created by our own minds. It comes in wildly varying extremes, from the man who perceives everyone to be plotting against him, to the student who hides from his own life because he sees himself as overstepping social bounds with every word out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=annath32.wordpress.com&amp;blog=13089934&amp;post=16&amp;subd=annath32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It occurs to me that all fears and stresses come from illusions created by our own minds. It comes in wildly varying extremes, from the man who perceives everyone to be plotting against him, to the student who hides from his own life because he sees himself as overstepping social bounds with every word out of his mouth. It&#8217;s all perception&#8230; and it&#8217;s all crippling. The question is, if you know it&#8217;s an illusion and still can&#8217;t break free, what should you do?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/annath32.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/annath32.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/annath32.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/annath32.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/annath32.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/annath32.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/annath32.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/annath32.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/annath32.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/annath32.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/annath32.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/annath32.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/annath32.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/annath32.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=annath32.wordpress.com&amp;blog=13089934&amp;post=16&amp;subd=annath32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://annath32.wordpress.com/2010/04/18/the-illusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5716942e04bb5909d196e6d6a444a89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">annath32</media:title>
		</media:content>
	</item>
		<item>
		<title>Why hello there.</title>
		<link>http://annath32.wordpress.com/2010/04/12/why-hello-there/</link>
		<comments>http://annath32.wordpress.com/2010/04/12/why-hello-there/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 03:53:46 +0000</pubDate>
		<dc:creator>annath32</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://annath32.wordpress.com/?p=3</guid>
		<description><![CDATA[So, I am writing to this blog for the hell of it. I don&#8217;t know how much I plan on disclosing or what the hell I even plan on talking about, but whatever. I have to be up in six-ish hours and I can&#8217;t sleep.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=annath32.wordpress.com&amp;blog=13089934&amp;post=3&amp;subd=annath32&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I am writing to this blog for the hell of it. I don&#8217;t know how much I plan on disclosing or what the hell I even plan on talking about, but whatever. I have to be up in six-ish hours and I can&#8217;t sleep.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/annath32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/annath32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/annath32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/annath32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/annath32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/annath32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/annath32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/annath32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/annath32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/annath32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/annath32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/annath32.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/annath32.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/annath32.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=annath32.wordpress.com&amp;blog=13089934&amp;post=3&amp;subd=annath32&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://annath32.wordpress.com/2010/04/12/why-hello-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e5716942e04bb5909d196e6d6a444a89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">annath32</media:title>
		</media:content>
	</item>
	</channel>
</rss>
