<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Noodlehaus</title>
	<atom:link href="http://noodlehaus.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://noodlehaus.wordpress.com</link>
	<description>PHP, MySQL, HTML, CSS, Javascript</description>
	<pubDate>Tue, 01 Apr 2008 08:06:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Using MySQL&#8217;s SQL_CALC_FOUND_ROWS to display paged data starting from the last page</title>
		<link>http://noodlehaus.wordpress.com/2008/04/01/using-mysqls-sql_calc_found_rows-to-display-paged-data-starting-from-the-last-page/</link>
		<comments>http://noodlehaus.wordpress.com/2008/04/01/using-mysqls-sql_calc_found_rows-to-display-paged-data-starting-from-the-last-page/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 08:03:26 +0000</pubDate>
		<dc:creator>noodlehaus</dc:creator>
		
		<category><![CDATA[MySQL]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[found_rows]]></category>

		<category><![CDATA[sql_calc_found_rows]]></category>

		<guid isPermaLink="false">http://noodlehaus.wordpress.com/?p=7</guid>
		<description><![CDATA[MySQL&#8217;s FOUND_ROWS() and SQL_CALC_FOUND_ROWS let&#8217;s you issue a query that uses the LIMIT clause and at the same time, get the total number of rows matched by your query if the LIMIT clause weren&#8217;t there. This means that if you want to display pages of data and also want to show to the user the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>MySQL&#8217;s <a href="http://dev.mysql.com/doc/refman/4.1/en/information-functions.html#function_found-rows">FOUND_ROWS() and SQL_CALC_FOUND_ROWS</a> let&#8217;s you issue a query that uses the LIMIT clause and at the same time, get the total number of rows matched by your query if the LIMIT clause weren&#8217;t there. This means that if you want to display pages of data and also want to show to the user the total number of pages you have, you don&#8217;t have to use two separate queries (first is for getting the total matching records, second is for fetching the records for the active page using a LIMIT clause).</p>
<p>Wanting to use this on my project (a messageboard), I was faced with the problem of <b>displaying the last page of data first</b> using this approach. Displaying the first page is trivial, but getting out the last page of data first requires some trickery. The main problem I had was I don&#8217;t know how many records I have in total so I can&#8217;t specify the correct offset in my LIMIT clause.</p>
<p>To better illustrate this, let&#8217;s create a simple example using the following MySQL table schema and sample data:</p>
<pre>
CREATE TABLE records (
  id int unsigned primary key auto_increment,
  content text
);

INSERT INTO records VALUES (1, 'Record 1'), (2, 'Record 2'), (3, 'Record 3'), (4, 'Record 4'), (5, 'Record 5'), (6, 'Record 6'), (7, 'Record 7'), (8, 'Record 8'), (9, 'Record 9'), (10, 'Record 10'),...(94, 'Record 94');</pre>
<p>We have 94 records, and let&#8217;s say we want to show 10 records per page, starting from the last page. We should have 10 pages total, with the last page containing only 4 records. We want the last page with 4 records to show up first.</p>
<p>Let&#8217;s use the following query to <b>fetch our last page of records using SQL_CALC_FOUND_ROWS</b>:</p>
<pre>
$res1 = mysql_query( "SELECT SQL_CALC_FOUND_ROWS * FROM records ORDER BY id DESC LIMIT 10" );</pre>
<p>Notice that even though we only want to show the 4 records on our last page, we still specified 10 in our LIMIT clause. This is because when issuing this query, we still don&#8217;t know the total number of records that match our query. We just assume for now that we have evenly distributed data. Remember that we have our last page results on <code>$res1</code>.</p>
<p>To get how many rows we have in total, we use the following code:</p>
<pre>
$res2 = mysql_query( "SELECT FOUND_ROWS() value" );
$temp = mysql_fetch_assoc( $res2 );
$total_records = $temp['value'];
mysql_free_result( $res2 );</pre>
<p>Now we know how many records we have in total. To find out how many pages we should have, and how many records we should be showing in the last page:</p>
<pre>
$total_pages = ceil( $total / 10 );
$last_page_records = ( $total % 10 );</pre>
<p>We now have our total page count (<code>$total_pages</code>) and we now know how many records we should be showing on our last page (<code>$last_page_records</code>). Now let&#8217;s get the records we need to display from <code>$res1</code>.</p>
<pre>
$data_array = array();
for ( $i = $last_page_records - 1; $i &gt;= 0; --$i ) {
  mysql_data_seek( $res1, $i );
  $data_array[] = mysql_fetch_assoc( $res1 );
}</pre>
<p>Since in our SELECT query earlier, we specified that data be sorted in reverse order (so we can get from the end of the matching records), we had to get our records in reverse order to get it back to normal sorting order.</p>
<p>A thing to note here is that we&#8217;re fetching data in reverse order. This means using <code>ORDER BY attribute DESC</code>. As of this writing, <a href="http://dev.mysql.com/doc/refman/5.0/en/create-index.html">MySQL only stores index values in ascending order</a>. This means you&#8217;ll be getting a <code>Using filesort</code> in your <code>EXPLAIN</code> results. To get around this, you can create <a href="http://www.igvita.com/2007/08/20/pseudo-reverse-indexes-in-mysql/">pseudo reverse indexes</a>, as suggested by <a href="http://www.igvita.com">Igvita.com</a>.</p>
<p>Suggestions, corrections, criticisms and findings are welcome.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noodlehaus.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noodlehaus.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noodlehaus.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noodlehaus.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noodlehaus.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noodlehaus.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noodlehaus.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noodlehaus.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noodlehaus.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noodlehaus.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noodlehaus.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noodlehaus.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noodlehaus.wordpress.com&blog=969562&post=7&subd=noodlehaus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noodlehaus.wordpress.com/2008/04/01/using-mysqls-sql_calc_found_rows-to-display-paged-data-starting-from-the-last-page/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using $_SESSION to Persist Form Input</title>
		<link>http://noodlehaus.wordpress.com/2007/05/24/using-_session-to-persist-form-input/</link>
		<comments>http://noodlehaus.wordpress.com/2007/05/24/using-_session-to-persist-form-input/#comments</comments>
		<pubDate>Thu, 24 May 2007 08:16:41 +0000</pubDate>
		<dc:creator>noodlehaus</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://noodlehaus.wordpress.com/2007/05/24/using-_session-to-persist-form-input/</guid>
		<description><![CDATA[In my previous projects, I&#8217;ve always used the query string for setting initial or previously submitted values to the forms. Something like:
http://some.domain.com/ourformpage.php?error=1&#38;somefield=bob
This is fine and works well, but doesn&#8217;t work so well if you want to return long lines of text or huge data. For this, I&#8217;ve decided to use the $_SESSION variable.
When the user [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In my previous projects, I&#8217;ve always used the query string for setting initial or previously submitted values to the forms. Something like:</p>
<p><code>http://some.domain.com/ourformpage.php?error=1&amp;somefield=bob</code></p>
<p>This is fine and works well, but doesn&#8217;t work so well if you want to return long lines of text or huge data. For this, I&#8217;ve decided to use the <code>$_SESSION</code> variable.</p>
<p>When the user submits the form, the form action or handler checks the data, and in cases of errors, the form values are stored in the <code>$_SESSION</code> variable which are then fetched by the form after the redirection.</p>
<p>This works fine, as long as you keep in mind that the values you store in <code>$_SESSION</code> are accessible from all your active connections. Meaning if you open the same form several times and work on all of them at the same time, then you<br />
might encounter overlapping values or previous values from one form showing up in another.</p>
<p>To address this issue, we create a token unique to that form instance which is included in the requests between the form and form handler. This token is then used to index an array in my <code>$_SESSION</code> var containing all the previous inputs for that form.</p>
<p>Can&#8217;t explain it too well but here&#8217;s a basic implementation. In our form page, we have:</p>
<p><code>&lt;?php<br />
$token = isset( $_GET['token'] ) ? $_GET['token'] : md5( time().&#8217;SOME_SECRET_KEY&#8217; ) ;<br />
$previous_input = isset( $_SESSION[$token] ) ? $_SESSION[$token] : array() ;<br />
?&gt;<br />
&lt;form method=&#8221;post&#8221; action=&#8221;myscript.handler.php&#8221;&gt;<br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;token&#8221; value=&#8221;&lt;?php echo htmlentities( $token ); ?&gt;&#8221; /&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;somefield&#8221; value=&#8221;&lt;?php echo isset( $previous_input['somefield'] ) ? htmlentities( $previous_input['somefield'] ) : &#8221; ; ?&gt;&#8221; /&gt;<br />
&lt;input type=&#8221;submit&#8221; value=&#8221;Submit&#8221; /&gt;<br />
&lt;/form&gt;</code></p>
<p>And in our handler script <code>myscript.handler.php</code>, we have something like:</p>
<p><code>// get our token and input data<br />
$token = isset( $_POST['token'] ) ? $_POST['token'] : md5( time().&#8217;SOME_SECRET_KEY&#8217; ) ;<br />
$somefield = isset( $_POST['somefield'] ) ? $_POST['somefield'] : &#8221; ;<br />
&#8230;<br />
// persist data using our unique token<br />
$arr = array();<br />
$arr['somefield'] = $somefield;<br />
$_SESSION[$token] = $arr;</code></p>
<p>Don&#8217;t forget to pass the token value to our form during redirection, so the form can fetch the previous values.</p>
<p><code>header( 'Location: ourformpage.php?token='.$token );</code></p>
<p>Note that the code shown is simplified for demo purposes. When doing this in your project, remember to filter all input and escape your output.</p>
<p>Another thing to note is in our code sample, we used <code>time()</code> for creating unique form tokens. This means our form values won&#8217;t overlap unless the user opens several forms within a second. Just improve on this for better resolution.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noodlehaus.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noodlehaus.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noodlehaus.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noodlehaus.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noodlehaus.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noodlehaus.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noodlehaus.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noodlehaus.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noodlehaus.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noodlehaus.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noodlehaus.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noodlehaus.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noodlehaus.wordpress.com&blog=969562&post=6&subd=noodlehaus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noodlehaus.wordpress.com/2007/05/24/using-_session-to-persist-form-input/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JSON and Browser Security on the YUI Blog</title>
		<link>http://noodlehaus.wordpress.com/2007/04/12/json-and-browser-security-on-the-yui-blog/</link>
		<comments>http://noodlehaus.wordpress.com/2007/04/12/json-and-browser-security-on-the-yui-blog/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 16:37:00 +0000</pubDate>
		<dc:creator>noodlehaus</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://noodlehaus.wordpress.com/2007/04/12/json-and-browser-security-on-the-yui-blog/</guid>
		<description><![CDATA[Douglas Crockford posts a set of guidelines on writing secure web applications using remote scripting and JSON on the YUI Blog.
 JSON is a data interchange format. It is used in the transmission of data between machines. Since it carries only data, it is security-neutral. The security of systems that use JSON is determined by [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Douglas Crockford posts a set of guidelines on writing secure web applications using <a href="http://en.wikipedia.org/wiki/Remote_Scripting">remote scripting</a> and <a href="http://json.org">JSON</a> on the <a href="http://www.yuiblog.com">YUI Blog</a>.</p>
<blockquote><p> JSON is a data interchange format. It is used in the transmission of data between machines. Since it carries only data, it is security-neutral. The security of systems that use JSON is determined by the quality of the design of those systems. JSON itself introduces no vulnerabilities.</p></blockquote>
<p><a href="http://yuiblog.com/blog/2007/04/10/json-and-browser-security/" title="JSON and Browser Security">JSON and Browser Security on the YUI Blog</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noodlehaus.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noodlehaus.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noodlehaus.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noodlehaus.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noodlehaus.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noodlehaus.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noodlehaus.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noodlehaus.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noodlehaus.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noodlehaus.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noodlehaus.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noodlehaus.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noodlehaus.wordpress.com&blog=969562&post=5&subd=noodlehaus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noodlehaus.wordpress.com/2007/04/12/json-and-browser-security-on-the-yui-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>We Should Always Try to Reinvent the Wheel</title>
		<link>http://noodlehaus.wordpress.com/2007/04/11/we-should-always-try-to-reinvent-the-wheel/</link>
		<comments>http://noodlehaus.wordpress.com/2007/04/11/we-should-always-try-to-reinvent-the-wheel/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 12:51:23 +0000</pubDate>
		<dc:creator>noodlehaus</dc:creator>
		
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://noodlehaus.wordpress.com/2007/04/11/we-should-always-try-to-reinvent-the-wheel/</guid>
		<description><![CDATA[All the things we currently use will eventually become obsolete. They should, and reinvention helps make sure of that. Reinvention allows the shedding of the unnecessary and retention of what is optimal. It gives way for improvement and sometimes leads to discovery of new and better ways.
This also applies to software development. Having hand-me-down APIs [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>All the things we currently use will eventually become obsolete. They should, and reinvention helps make sure of that. Reinvention allows the shedding of the unnecessary and retention of what is optimal. It gives way for improvement and sometimes leads to discovery of new and better ways.</p>
<p>This also applies to software development. Having hand-me-down APIs and open source solutions is good, but this should not stop us from creating things from scratch on our own. With doing things from the ground up, you do not just learn how to extend, but you also figure out how things work, where you can improve, and what you don&#8217;t need. In some cases, reinvention is much more convenient than trying to understand something that&#8217;s not of your own. Dictate, instead of trying to figure out, how things work.</p>
<p>I like reinventing the wheel. I think most developers do. We love solving problems, and we love challenging solutions.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noodlehaus.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noodlehaus.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noodlehaus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noodlehaus.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noodlehaus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noodlehaus.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noodlehaus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noodlehaus.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noodlehaus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noodlehaus.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noodlehaus.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noodlehaus.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noodlehaus.wordpress.com&blog=969562&post=4&subd=noodlehaus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noodlehaus.wordpress.com/2007/04/11/we-should-always-try-to-reinvent-the-wheel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nope, You Don&#8217;t Need to Work Abroad to Achieve Growth</title>
		<link>http://noodlehaus.wordpress.com/2007/04/11/nope-you-dont-need-to-work-abroad-to-achive-growth/</link>
		<comments>http://noodlehaus.wordpress.com/2007/04/11/nope-you-dont-need-to-work-abroad-to-achive-growth/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 16:12:35 +0000</pubDate>
		<dc:creator>noodlehaus</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://noodlehaus.wordpress.com/2007/04/11/nope-you-dont-need-to-work-abroad-to-achive-growth/</guid>
		<description><![CDATA[After reading &#8220;Growth means going abroad?&#8221; and Migs Paraz&#8217;s related post &#8220;Exodus&#8221;, I couldn&#8217;t help but ask myself similar questions. Was my move to Singapore worth it? Do the pay I&#8217;m currently getting, and the affiliation that I have justify leaving my home country, being away from my family and fiancee, and giving up a [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After reading <a href="http://www.lastleaf.org/2007/02/01/growth-means-going-abroad/">&#8220;Growth means going abroad?&#8221;</a> and Migs Paraz&#8217;s related post <a href="//paraz.com/83/exodus/" target="_blank" title="Exodus by Miguel Paraz">&#8220;Exodus&#8221;</a>, I couldn&#8217;t help but ask myself similar questions. Was my move to Singapore worth it? Do the pay I&#8217;m currently getting, and the affiliation that I have justify leaving my <a href="http://www.wowphilippines.com.ph/" target="_blank" title="WOW Philippines">home country</a>, being away from my family and fiancee, and giving up a <a href="http://www.tipidpc.com" target="_blank" title="TipidPC.com">community and company</a> I founded? Am I learning new things that I couldn&#8217;t possibly learn if I chose to stay in the Philippines? Is this really a step forward career-wise or just a big jump in salary?</p>
<p>I&#8217;m not really clear with my answers. I&#8217;m not really learning new things that I couldn&#8217;t learn on my own, I&#8217;ve always been keen on exploring new things related to my field. I&#8217;m working for a big name in the web/internet industry, but almost as a nobody. It doesn&#8217;t beat running your own company and steering things yourself, but the beef it adds to my resume is a pretty big plus. About the pay, I can&#8217;t complain about the pay.</p>
<p>So is it worth all the sacrifices made? I&#8217;ll have to say yes. The increase in pay allows me to sort of fast track things - help support my family, save up for properties, prepare for my wedding, etc. As for the step-down in the job title, I like to think of it as a small step back in preparation for a big leap forward. Save up now, then go back and fund yourself later. Getting in touch with family is no longer a problem. The world is <a href="http://www.37signals.com/svn/posts/80-get-off" target="_blank" title="Get Off by 37Signals">too connected</a> now, and we have the internet to thank for that. With regards to learning, I can keep learning new things on my own. I can keep growing professionally and skill-wise, with or without my current affiliation, in or outside my home country.</p>
<p>So for now, I&#8217;ll stay here, do what I can do, learn what I can learn, and earn as much as I can. I might just be trying to justify my greed, but It&#8217;s how I like to think of things. Sort of looking at the positive side of things to boost my morale.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/noodlehaus.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/noodlehaus.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/noodlehaus.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/noodlehaus.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/noodlehaus.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/noodlehaus.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/noodlehaus.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/noodlehaus.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/noodlehaus.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/noodlehaus.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/noodlehaus.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/noodlehaus.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=noodlehaus.wordpress.com&blog=969562&post=3&subd=noodlehaus&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://noodlehaus.wordpress.com/2007/04/11/nope-you-dont-need-to-work-abroad-to-achive-growth/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>