<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>nickholdren.com</title>
	<link>http://nickholdren.com</link>
	<description></description>
	<lastBuildDate>Tue, 27 Jul 2010 14:09:17 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.1" -->

	<item>
		<title>Writing Arrays to CSV or Other Delimited Files</title>
		<description><![CDATA[Often, in the past when I wanted to write data to a file I would load up and array, iterate over it, and then insert tab and new line breaks so that I could create a CSV. Well, those days are long gone now that PHP5 has included this awesome and useful function fputcsv(). It [...]]]></description>
		<link>http://nickholdren.com/2010/07/26/writing-arrays-to-csv-or-other-delimited-files/</link>
			</item>
	<item>
		<title>A Faster Array Search in php</title>
		<description><![CDATA[Php does a very good job at creating predefined methods that are optimized by default. However, sometimes with a little extra effort on our parts we can optimize a procedure even more. On the table today: the in_array() method. It is a very useful array allowing the user to search an array for a given [...]]]></description>
		<link>http://nickholdren.com/2010/07/26/a-faster-array-search-in-php/</link>
			</item>
	<item>
		<title>Parsing a CSV File in PHP</title>
		<description><![CDATA[Ok so it is one of the most common data files in the world: the CSV (Comma Separated Values). So here is all you need in PHP to extract the data from the file. The data is exploded into an array ($data) and can be accessed via the array index. It is simple and very [...]]]></description>
		<link>http://nickholdren.com/2010/05/04/parsing-a-csv-file-in-php/</link>
			</item>
	<item>
		<title>Resetting an Array Index in PHP</title>
		<description><![CDATA[After filtering an array indices are removed from the array resulting in errors while trying to loop over the index. Therefore, one needs to reset then index so that it follows a logical order (1,2,3..) instead of (1,3,6,7&#8230;). Luckily, PHP doesn&#8217;t have a defined method to do this, but it does have another method that [...]]]></description>
		<link>http://nickholdren.com/2010/04/16/resetting-an-array-index-in-php/</link>
			</item>
	<item>
		<title>Using the array_filter function within a class</title>
		<description><![CDATA[When using the array_filter method in PHP I attempted to make my callback function a private method within my class. Upon trying to execute my script I recieved an error telling my that I had not defined a proper call back method. After searching for several minutes I came across this snippet of code and I hope it works for you as well.]]></description>
		<link>http://nickholdren.com/2010/04/15/using-the-array_filter-function-within-a-class/</link>
			</item>
	<item>
		<title>Downfalls of the Agile Development Cycle</title>
		<description><![CDATA[The Agile development methodology is supposed to be one of the great new advances in software development. Traditional waterfall techniques provide slower production time and are more restricted to what the initial design plans are. Agile was supposed to allow for quick turn around and delivered results within weeks rather than later. Here I would [...]]]></description>
		<link>http://nickholdren.com/2010/04/15/downfalls-of-the-agile-development-cycle/</link>
			</item>
	<item>
		<title>Simple Search Engine PHP/MySQL</title>
		<description><![CDATA[Having a search engine on your site can be a great thing. Many times users prefer searching rather than browsing in order to find something on your site. Google does offer site search that will index your site, but I like many other people prefer to keep things in-house so to speak. Therefore, I created [...]]]></description>
		<link>http://nickholdren.com/2010/04/08/simple-search-engine-phpmysql/</link>
			</item>
	<item>
		<title>Simple Search Relevance in mySQL</title>
		<description><![CDATA[Many times when one wants to build their own search engine, he or she wishes to sort the results by relevancy. MySQL provides some useful syntax to make this possible. Below is a short code snippet to a simple relevance calculation and order by it. ORDER BY ( ( CASE WHEN column_name LIKE 'criteria' THEN [...]]]></description>
		<link>http://nickholdren.com/2010/04/08/simple-search-relevance-in-mysql/</link>
			</item>
	<item>
		<title>Creating a Home Recording Studio</title>
		<description><![CDATA[Everyone wants to be a rock star, party like one, and of course make money while doing it. The truth is a lot of us will never be able to afford to buy the studio time that will get us there. In recent years though the pains of recording an album have become less due [...]]]></description>
		<link>http://nickholdren.com/2010/04/01/creating-a-home-recording-studio/</link>
			</item>
	<item>
		<title>Handling mySQL Results From AMFPHP in AS3</title>
		<description><![CDATA[This tutorial covers how to handle complex data types that are returned from AMFPHP while using AS3.]]></description>
		<link>http://nickholdren.com/2010/02/22/handling-mysql-results-from-amfphp-in-as3/</link>
			</item>
</channel>
</rss>
