<?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>TheSpicyChicken</title>
	<atom:link href="http://thespicychicken.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thespicychicken.com</link>
	<description>n'th generation research</description>
	<lastBuildDate>Wed, 17 Feb 2010 07:12:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>R Tip: Fitting Sigmoidal Data</title>
		<link>http://thespicychicken.com/2010/02/17/r-tip-fitting-sigmoidal-data/</link>
		<comments>http://thespicychicken.com/2010/02/17/r-tip-fitting-sigmoidal-data/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 07:12:54 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[sigmoid]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/?p=175</guid>
		<description><![CDATA[Using R to fit a sigmoid function to experimental data.]]></description>
			<content:encoded><![CDATA[<p>
  Sigmoid functions are our friends and sometimes you have data which you would like to fit with a sigmoid function. We can use R to find such a fit.  First let us look at a sigmoid function.
</p>
<div class="code">
  y = 1 / (1 + exp( -a*x + b) )
</div>
<p>
  Now let&#8217;s say you are given a vector x and y, say:
</p>
<div class="code">
  x = c(0.00,0.02,0.04,0.06,0.08,0.10,0.12,0.14,0.16,0.18,0.20,0.24,0.26,<br/><br />
0.28,0.30,0.34,0.40,0.42,0.48,0.54,0.56,0.64,1.00)<br/><br />
  y = c(0.409742,0.319277,0.530120,0.377778,0.357143,0.608696,0.315789,<br/><br />
0.692308,0.642857,0.636364,0.750000,0.000000,0.833333,1.000000,<br/><br />
0.000000,1.000000,1.000000,1.000000,1.000000,1.000000,1.000000,<br/><br />
1.000000,1.000000)
</div>
<p>
  In this case the y values here represent probabilities and one thing you’ll notice is that we have probs of 1 and 0. Both of which are bad. So we apply a little “laplace smoothing” to them:
</p>
<div class="code">
  y[y==0] = 0.001<br/><br />
  y[y==1] = 0.999
</div>
<p>
Now let&#8217;s look at what the data looks like.
</p>
<div class="code">
plot(x, y)
</div>
<p><a href="http://thespicychicken.com/wp-content/uploads/2010/02/RTip_Sigmoid_Fig1.png"><img src="http://thespicychicken.com/wp-content/uploads/2010/02/RTip_Sigmoid_Fig1-300x279.png" alt="" title="RTip_Sigmoid_Fig1" width="300" height="279" class="alignnone size-medium wp-image-186" /></a></p>
<p>
Well, it may be sigmoidal, maybe not. For now let’s assume we think it is. Which we do for the most part.
</p>
<p>
Okay, now let’s solve for a line in our sigmoid function:
</p>
<div class="code">
y = 1 / (1 + exp( a*x + b) )<br/><br />
1 + exp( a*x + b) = 1/ y<br/><br />
a*x + b = log ( (1/ y) &#8211; 1 )<br/>
</div>
<p>
Now the left hand side of the equation is a line and the right hand side is some logarithm of the y data. We can plot x versus this right hand side:
</p>
<div class="code">
new_y = log( 1 / y &#8211; 1 )<br/><br />
plot(x, new_y)
</div>
<p><a href="http://thespicychicken.com/wp-content/uploads/2010/02/RTip_Sigmoid_Fig2.png"><img src="http://thespicychicken.com/wp-content/uploads/2010/02/RTip_Sigmoid_Fig2-300x272.png" alt="" title="RTip_Sigmoid_Fig2" width="300" height="272" class="alignnone size-medium wp-image-187" /></a></p>
<p>
Looks pretty interesting and hopefully at this point it also looks kinda linear, which it kinda does.
</p>
<p>
Now let’s fit it with a line:
</p>
<div class="code">
lm.res <- lm( new_y ~ x )<br/><br />
lm.res
</div>
<p>Which produces this output:</p>
<div class="code">
Coefficients:<br/><br />
(Intercept)            x<br/><br />
1.122      -11.647<br/>
</div>
<p>We can also test the significance of the fit with an ANOVA.</p>
<div class="code">
anova(lm.res)
</div>
<p>Which produces this output:</p>
<div class="code">
Analysis of Variance Table<br/><br />
Response: new_y<br/><br />
Df Sum Sq Mean Sq F value    Pr(>F)<br/><br />
x          1 172.80 172.802  14.641 0.0009834 ***<br/>
</div>
<p>
And we can plot the resulting fit in linear space:
</p>
<p><a href="http://thespicychicken.com/wp-content/uploads/2010/02/RTip_Sigmoid_Fig3.png"><img src="http://thespicychicken.com/wp-content/uploads/2010/02/RTip_Sigmoid_Fig3-300x276.png" alt="" title="RTip_Sigmoid_Fig3" width="300" height="276" class="alignnone size-medium wp-image-188" /></a></p>
<p>
Now let’s see how our fit looks back in normal space using our formula with our derived a and b values.
</p>
<div class="code">
a = -11.647<br/><br />
b = 1.122<br/><br />
plot(x, y)<br/><br />
sim_x = (1:101-1)/100<br/><br />
points(sim_x, 1/(1+exp(a*sim_x+b)), type=&#8221;l&#8221;)<br/>
</div>
<p><a href="http://thespicychicken.com/wp-content/uploads/2010/02/RTip_Sigmoid_Fig4.png"><img src="http://thespicychicken.com/wp-content/uploads/2010/02/RTip_Sigmoid_Fig4-300x271.png" alt="" title="RTip_Sigmoid_Fig4" width="300" height="271" class="alignnone size-medium wp-image-189" /></a></p>
<p>
Voila! We have fit a sigmoid function to our data.</p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2010/02/17/r-tip-fitting-sigmoidal-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard Super FAIL</title>
		<link>http://thespicychicken.com/2009/08/29/snow-leopard-super-fail/</link>
		<comments>http://thespicychicken.com/2009/08/29/snow-leopard-super-fail/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 17:52:55 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[snow leopard]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/2009/08/29/snow-leopard-super-fail/</guid>
		<description><![CDATA[Just got snow leopard in the mail and was so excited to install.  Then got on Twitter to see what my friends were up to:
http://twitter.com/caddymob
I think I&#8217;m waiting now.
UPDATE:
Jason posted details describing his troubles and how he worked around it here:
http://corneveaux.com/blog/installing-snow-leopard-a-big-fail-and-a-work-around
]]></description>
			<content:encoded><![CDATA[<p>Just got snow leopard in the mail and was so excited to install.  Then got on Twitter to see what my friends were up to:</p>
<p><a title="Snow Leopard FAIL" href="http://twitter.com/caddymob">http://twitter.com/caddymob</a></p>
<p>I think I&#8217;m waiting now.</p>
<p>UPDATE:<br />
Jason posted details describing his troubles and how he worked around it here:<br />
<a href="http://corneveaux.com/blog/installing-snow-leopard-a-big-fail-and-a-work-around">http://corneveaux.com/blog/installing-snow-leopard-a-big-fail-and-a-work-around</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2009/08/29/snow-leopard-super-fail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Earmarks and the house that approves them&#8230;</title>
		<link>http://thespicychicken.com/2009/08/23/earmarks-and-the-house-that-approves-them/</link>
		<comments>http://thespicychicken.com/2009/08/23/earmarks-and-the-house-that-approves-them/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 20:12:17 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/?p=143</guid>
		<description><![CDATA[Just found a new data set that I couldn&#8217;t help running some stats on.  OpenSecrets.org published this table which lists all of the members of the house, the number of earmarks they requested, and the total dollar amounts.
The columns of the data are:

Representative Name
State
Number of Earmarks
Total Cost
Solo Earmarks
Solo Cost

The solo columns are for earmarks where [...]]]></description>
			<content:encoded><![CDATA[<p>Just found a new data set that I couldn&#8217;t help running some stats on.  OpenSecrets.org published <a href="http://www.opensecrets.org/bigpicture/earmarks.php?cycle=2008">this table</a> which lists all of the members of the house, the number of earmarks they requested, and the total dollar amounts.</p>
<p>The columns of the data are:</p>
<ul>
<li>Representative Name</li>
<li>State</li>
<li>Number of Earmarks</li>
<li>Total Cost</li>
<li>Solo Earmarks</li>
<li>Solo Cost</li>
</ul>
<p>The solo columns are for earmarks where that representative was the only representative who requested the earmark.</p>
<p><strong>Republicans vs. Democrats</strong></p>
<p>The first obvious division is to split the data on party lines and see if their behavior is any different.</p>
<table border="0">
<tbody>
<tr>
<th>Column</th>
<th>Mean Democrats</th>
<th>Mean Republicans</th>
<th>P-value</th>
<th>Histogram</th>
</tr>
<tr>
<td>Total Earmarks</td>
<td>26.8</td>
<td>22.3</td>
<td><strong>3.26E-4</strong></td>
<td><a href="http://thespicychicken.com/wp-content/uploads/2009/08/TotalEarmarksHist.png"><img class="alignnone" src="http://thespicychicken.com/wp-content/uploads/2009/08/TotalEarmarksHist.png" alt="" width="100" height="100" /></a></td>
</tr>
<tr>
<td>Total Cost</td>
<td>$37,402,953</td>
<td>$30,683,681</td>
<td><strong>0.02873</strong></td>
<td><a href="http://thespicychicken.com/wp-content/uploads/2009/08/TotalEarmarksCostHist.png"><img style="border: 0px initial initial;" src="http://thespicychicken.com/wp-content/uploads/2009/08/TotalEarmarksCostHist.png" alt="" width="100" height="100" /></a></td>
</tr>
<tr>
<td>Solo Earmarks</td>
<td>10.3</td>
<td>9.2</td>
<td>0.0925</td>
<td><a href="http://thespicychicken.com/wp-content/uploads/2009/08/SoloEarmarksHist.png"><img style="border: 0px initial initial;" src="http://thespicychicken.com/wp-content/uploads/2009/08/SoloEarmarksHist.png" alt="" width="100" height="100" /></a></td>
</tr>
<tr>
<td>Solo Cost</td>
<td>$7,606,210</td>
<td>$7,746,574</td>
<td>0.7782</td>
<td><a href="http://thespicychicken.com/wp-content/uploads/2009/08/SoloEarmarksCostHist.png"><img style="border: 0px initial initial;" src="http://thespicychicken.com/wp-content/uploads/2009/08/SoloEarmarksCostHist.png" alt="" width="100" height="100" /></a></td>
</tr>
</tbody>
</table>
<p>Red: Republicans, Blue: Democrats.  Significant p-values are in bold.</p>
<p><strong>Table 1.</strong> The above table shows that the average number of earmarks that are approved is significantly higher for democrats than for republicans and also that democrats get significantly more money for their earmarks than republicans do.  Please note that when I say &#8220;significantly&#8221; I mean it in a statistical sense.  The p-values (or the probability that the difference between democrats and republicans is purely by chance) for the first two rows of the table are signifiant ( less than 0.05).  You can interpret this as having a less than 5% chance of this occurring completely by chance.  However, when looking at solo earmarks there is not a significant difference in the number of earmarks granted or their cost.</p>
<p><strong>For the Statisticians:</strong> To calculate the p-value I used the wilcoxon rank sum test as the distributions are not normally distributed.</p>
<p>However, I feel obligated to point out that because the house has a majority of democrats (237 to 163) it may be easier for democrats to get their earmarks passed, thus there are more for democrats.  For comparison, data from when the GOP has control of the house is required.</p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2009/08/23/earmarks-and-the-house-that-approves-them/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Science Jobs&#8230; and the people that are looking for them.</title>
		<link>http://thespicychicken.com/2009/07/29/science-jobs-and-the-people-that-are-looking-for-them/</link>
		<comments>http://thespicychicken.com/2009/07/29/science-jobs-and-the-people-that-are-looking-for-them/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 16:47:16 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Science]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/?p=140</guid>
		<description><![CDATA[A few friends of mine have started a new Science Jobs blog were they muse about what it&#8217;s like to look for and work in science related jobs in this economic climate.  Check it out at SearchScienceJobs.com
]]></description>
			<content:encoded><![CDATA[<p>A few friends of mine have started a new Science Jobs blog were they muse about what it&#8217;s like to look for and work in science related jobs in this economic climate.  Check it out at <a href="http://searchsciencejobs.com">SearchScienceJobs.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2009/07/29/science-jobs-and-the-people-that-are-looking-for-them/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Science of Hearing &#8211; We need you!</title>
		<link>http://thespicychicken.com/2009/05/26/the-science-of-hearing-we-need-you/</link>
		<comments>http://thespicychicken.com/2009/05/26/the-science-of-hearing-we-need-you/#comments</comments>
		<pubDate>Tue, 26 May 2009 18:42:00 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Science]]></category>
		<category><![CDATA[hearing]]></category>
		<category><![CDATA[mosquito]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/?p=135</guid>
		<description><![CDATA[A friend of mine, and neuroscience graduate student at Case Western Reserve University are conducting a study into the genetic basis of hearing the following sound:
http://tinyurl.com/2wjoxy
NPR recently did a story that teenagers have been using the above sound as a ring tone to evade the prying eyes ears of adults.
So we started a little investigation [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine, and neuroscience graduate student at Case Western Reserve University are conducting a study into the genetic basis of hearing the following sound:</p>
<p><a href="http://tinyurl.com/2wjoxy">http://tinyurl.com/2wjoxy</a></p>
<p>NPR recently did a story that teenagers have been using the above sound as a ring tone to evade the prying <span style="text-decoration: line-through;">eyes</span> ears of adults.</p>
<p>So we started a little investigation of our own, and we need your help!  Just click on that sound file, play it, and respond in the comments with your age, gender, and if you can hear it or not.</p>
<p>SCIENCE!</p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2009/05/26/the-science-of-hearing-we-need-you/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
<enclosure url="http://tinyurl.com/2wjoxy" length="160625" type="audio/mpeg" />
		</item>
		<item>
		<title>Star Trek, the obsessed ramblings of a fan-girl.</title>
		<link>http://thespicychicken.com/2009/05/09/star-trek-the-obsessed-ramblings-of-a-fan-girl/</link>
		<comments>http://thespicychicken.com/2009/05/09/star-trek-the-obsessed-ramblings-of-a-fan-girl/#comments</comments>
		<pubDate>Sat, 09 May 2009 23:36:28 +0000</pubDate>
		<dc:creator>Savitri</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Savitri]]></category>
		<category><![CDATA[Star Trek]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/?p=133</guid>
		<description><![CDATA[(SPOILER ALERT, don&#8217;t read if you haven&#8217;t seen the new movie)
My Trekkie heart has melted! I am in love and I won’t deny it.  I am ready to stand up on the roof tops and proclaim my love for the series that, up until last night, I believed was forever destined for re-run nostalgia.  Too [...]]]></description>
			<content:encoded><![CDATA[<p>(SPOILER ALERT, don&#8217;t read if you haven&#8217;t seen the new movie)</p>
<p>My Trekkie heart has melted! I am in love and I won’t deny it.  I am ready to stand up on the roof tops and proclaim my love for the series that, up until last night, I believed was forever destined for re-run nostalgia.  Too much?</p>
<p>Too bad!  I am thrilled with the new movie.  I am head over heals for the young, sexy, talented new cast and am delighted that the writers tackled the new/old story line with a splash of nostalgia and a heap of creativity.</p>
<p>It’s a whole new game now, we can again visualize a Star Trek story line that isn’t confined to the plot devices that were relevant 10, 20, 30, or even 40 years ago.  I love that I don’t have to worry about how what happened in this story might affect my beloved Picard (le sigh Jean Luc).  I don’t have to worry about plot lines that no longer make sense (with the major exception of Spock Prime living out his life in a parallel universe as opposed to the universe we all know and love).  In all honesty, this is a huge relief.</p>
<p>Besides, this new cast brought the “sex” back to the series.  Never had I thought to think of what a restrained yet sensual kiss from a Vulcan might be like.  Thank you Zachary Quinto for making it abundantly clear that T’Pol was not the only sexy Vulcan in existence.   I am doing my best not to sound like an obsessed fan-girl, but I don’t think I am succeeding.  Forgive me men if you do not share my good opinion in the lusciousness of the Spock-Uhura kiss.</p>
<p>More to that point, as a woman, I always had a hard time relating to Kirk.  In TOS he was the John Wayne of the Federation.  No rules, lots of sex, and your mans-man!  But after Chris Pine’s performance, I feel like I understand Kirk better.  All of the above still holds true, but it just makes sense now.  Don’t bash me for not “getting it” sooner, I am just a little late to arrive on the Captain Kirk bandwagon.   Oh, I almost forgot to mention, the young Kirk is super sexy too.</p>
<p>I know that I am a minority in the Trek Universe (being young and female), so perhaps my male counter-parts won’t share the same passion that I do for this new/old series.  I know there are things to complain about when a favorite story attempts to expand in a new direction (don’t get me started on the Harry Potter movie franchise), but I think that this deserves an “A” for effort!  Keep ‘em comin’ boys.</p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2009/05/09/star-trek-the-obsessed-ramblings-of-a-fan-girl/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ruby Resources</title>
		<link>http://thespicychicken.com/2009/04/17/ruby-resources/</link>
		<comments>http://thespicychicken.com/2009/04/17/ruby-resources/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 04:47:15 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/?p=128</guid>
		<description><![CDATA[In the Biomedical Informatics department here at Stanford we do a lot of coding and scripting.  Since our emphasis is on usefulness and implementation speed we rely heavily on high level programming languages.
The &#8220;old-school&#8221; informaticists have relied on Perl (yes, Perl) to develop these scripts.  But in the modern ages where languages like Python and [...]]]></description>
			<content:encoded><![CDATA[<p>In the Biomedical Informatics department here at Stanford we do a lot of coding and scripting.  Since our emphasis is on usefulness and implementation speed we rely heavily on high level programming languages.</p>
<p>The &#8220;old-school&#8221; informaticists have relied on Perl (yes, Perl) to develop these scripts.  But in the modern ages where languages like Python and Ruby are available to us, we don&#8217;t need to be knee deep in archaic idioms and clunky syntax.  I have been relying on Python for years now.  My implementation speed has increased substationally, I have less headaches, and life is generally better.</p>
<p>It turns out, however, that many of my colleagues and peers have a great appreciation for Ruby, which seems to be gaining a lot of traction lately.  As a self-named agile software developer I feel it would hypocratic if I didn&#8217;t pick up Ruby.  Afterall I need to have as many tools in my box as possible and learning Ruby will only make me a better informaticist.</p>
<p>My first impressions for Ruby have been very positive.  It is a truly object oriented language in ways that Python falls short.  Also I just love the dual implementation of most of the methods for when you want to modify the instance or you would rather return it.  For example, say we have a list:</p>
<div class="code">
list = [2,1,3]<br />
newlist = list.sort<br />
list.sort!
</div>
<p>The method call with the exclamation point at the end mutates the instance &#8216;list&#8217; while without it, it will return a new list.  This is one of my biggest griefs with Python.  It causes code that should only take one like, take three. (Not to mention just trying to remember which way the method works)</p>
<p>Python</p>
<div class="code">
a = [2,3,1,5]<br />
a.sort()<br />
a.reverse()
</div>
<p>Ruby</p>
<div class="code">
a = [2,3,1,5].sort.reverse
</div>
<p>You just can&#8217;t argue with that.  Also I found this great <a href="http://www.techotopia.com/index.php/Ruby_Essentials">resource for Ruby</a>.  If you are an experienced programmer (especially if you are familiar with high level languages) this page basically teaches you everything you need to know about Ruby to get started.</p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2009/04/17/ruby-resources/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LaughTrack, my latest plot to take over the world</title>
		<link>http://thespicychicken.com/2009/04/05/laughtrack-my-latest-plot-to-take-over-the-world/</link>
		<comments>http://thespicychicken.com/2009/04/05/laughtrack-my-latest-plot-to-take-over-the-world/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 17:02:52 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/?p=123</guid>
		<description><![CDATA[As you all may or may not know, I am plotting to take over the world.  While up until now I have had about as much success as a cheese sandwich, I think this latest attempt is sure to succeed.
You see, what better way to take over the world than to make all peoples [...]]]></description>
			<content:encoded><![CDATA[<p>As you all may or may not know, I am plotting to take over the world.  While up until now I have had about as much success as a cheese sandwich, I think this latest attempt is sure to succeed.</p>
<p>You see, what better way to take over the world than to make all peoples feel self-important and over-confident.  My latest iPhone toy, LaughTrack, allows you to carry around a studio audience in your pocket.  All your jokes will be laughted at. All your snide comments, joyfully giggled at. All your great accomplishments will be cheered and applauded. This makes you and everyone else feel like a star and as such you want others (namely me) to do your bidding.  This will make all of you hand over enormous amounts of control over your lives to me.  With this new control I will spread LaughTrack even deeper into all societies and &#8230;. I think you see where this is going.</p>
<p>You may think that it is foolish for me to divulge this fiendish plot to the very people from which I will extract their freedom, but I know it&#8217;s okay, because I&#8217;m getting loads of applause and cheering from the audience.</p>
<p>Check out more on <a href="http://mophilia.com/LaughTrack">LaughTrack</a> or <a href="http://itunes.com/apps/LaughTrack">buy it from iTunes</a> ($0.99).</p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2009/04/05/laughtrack-my-latest-plot-to-take-over-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone OS 3.0 &#8211; Copy &amp; Paste is Buggy</title>
		<link>http://thespicychicken.com/2009/03/17/iphone-os-30-copy-paste-is-buggy/</link>
		<comments>http://thespicychicken.com/2009/03/17/iphone-os-30-copy-paste-is-buggy/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 04:45:18 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[copy&paste]]></category>
		<category><![CDATA[iphone3.0]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/?p=119</guid>
		<description><![CDATA[As an iPhone developer I have been able to the play around with the new 3.0 firmware. Overall I have to say that I am very pleased.  I think my favorite new feature so far is the search.  It pretty much looks and behaves just like QuickGold, if you have a jailbroken phone [...]]]></description>
			<content:encoded><![CDATA[<p>As an iPhone developer I have been able to the play around with the new 3.0 firmware. Overall I have to say that I am very pleased.  I think my favorite new feature so far is the search.  It pretty much looks and behaves just like QuickGold, if you have a jailbroken phone and have used that before.  Very handy.</p>
<p>What I have found most dissapointing is the interface for Copy and Paste.  I loaded up the CNN front page and tried to copy a few phrases.  It didn&#8217;t go so well.  It keeps trying to copy the entire text.  Then it displays little crop buttons, but don&#8217;t even think of trying to use them.  If you drag toward the edge of the screen (like when you&#8217;d want to scroll down) they switch modes and become completely unusable.</p>
<p>Perhaps with some more time I would be able to figure out how to use it nicely, but this is way outside of &#8220;it just works&#8221; right now.  Hopefully the Apple designers will be improving this feature before 3.0 is released to the public.  Otherwise there are going to be a lot of very frustrated people out there.</p>
<p>Oh, and not having to enter my username/password every time I need to log into a website. Priceless.</p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2009/03/17/iphone-os-30-copy-paste-is-buggy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Trick your friends&#8230;</title>
		<link>http://thespicychicken.com/2009/03/14/trick-your-friends/</link>
		<comments>http://thespicychicken.com/2009/03/14/trick-your-friends/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 01:52:58 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[guppy]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://thespicychicken.com/2009/03/14/trick-your-friends/</guid>
		<description><![CDATA[Are your friends Gullible?  Trick them with Guppy a free iPhone app.
I don&#8217;t want to give too much away, but it&#8217;s loads of fun and it&#8217;s free.  Download it now and have some fun with your friends!
Free Download here.
-Spicy
]]></description>
			<content:encoded><![CDATA[<p>Are your friends Gullible?  Trick them with <a href="http://mophilia.com">Guppy</a> a free iPhone app.</p>
<p>I don&#8217;t want to give too much away, but it&#8217;s loads of fun and it&#8217;s free.  Download it now and have some fun with your friends!</p>
<p><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=305450679&#038;mt=8">Free Download here.</a></p>
<p>-Spicy</p>
]]></content:encoded>
			<wfw:commentRss>http://thespicychicken.com/2009/03/14/trick-your-friends/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
