<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for The Q</title>
	<atom:link href="http://www.mc2design.com/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mc2design.com/blog</link>
	<description>Web development and marketing from the squares at MC² Design Group</description>
	<pubDate>Fri, 09 May 2008 20:16:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on Magento is looking for examples of good ecommerce sites by Luke Visinoni</title>
		<link>http://www.mc2design.com/blog/magento-is-looking-for-examples-of-good-ecommerce-sites#comment-24838</link>
		<dc:creator>Luke Visinoni</dc:creator>
		<pubDate>Thu, 17 Apr 2008 23:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/magento-is-looking-for-examples-of-good-ecommerce-sites#comment-24838</guid>
		<description>Sort of a strange thing to ask... why horses?</description>
		<content:encoded><![CDATA[<p>Sort of a strange thing to ask&#8230; why horses?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento is looking for examples of good ecommerce sites by Andy</title>
		<link>http://www.mc2design.com/blog/magento-is-looking-for-examples-of-good-ecommerce-sites#comment-23971</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 07 Apr 2008 10:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/magento-is-looking-for-examples-of-good-ecommerce-sites#comment-23971</guid>
		<description>Nice to see version 1.0 out now has anyone seen a horse related website been made with magento?</description>
		<content:encoded><![CDATA[<p>Nice to see version 1.0 out now has anyone seen a horse related website been made with magento?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP CSV Utilities v0.2 released - now able to detect the format of a csv file by Luke Visinoni</title>
		<link>http://www.mc2design.com/blog/php-csv-utilities-v02-has-been-released#comment-23636</link>
		<dc:creator>Luke Visinoni</dc:creator>
		<pubDate>Thu, 03 Apr 2008 11:32:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/php-csv-utilities-v02-has-been-released#comment-23636</guid>
		<description>Thanks franck, I'll make note to add this type of functionality in the next version. I was thinking of doing something more along the lines of 

$reader = new Csv_Reader();
$reader-&gt;hasHeader(true);
$array = $reader-&gt;toArray(); // this will now use the header as keys

The reason being that I would like for the Csv_Sniffer class to be able to tell Csv_Reader that the file has a header. So something like this:

$sniffer = new Csv_Sniffer('./data/orders.csv'); // reads first 20 lines and attempts to deduce format
$reader = new Csv_Reader('./data/orders.csv', $sniffer-&gt;sniff());
$reader-&gt;hasHeader($sniffer-&gt;hasHeader());

I'm still playing around with the interface though. </description>
		<content:encoded><![CDATA[<p>Thanks franck, I&#8217;ll make note to add this type of functionality in the next version. I was thinking of doing something more along the lines of </p>
<p>$reader = new Csv_Reader();<br />
$reader->hasHeader(true);<br />
$array = $reader->toArray(); // this will now use the header as keys</p>
<p>The reason being that I would like for the Csv_Sniffer class to be able to tell Csv_Reader that the file has a header. So something like this:</p>
<p>$sniffer = new Csv_Sniffer(&#8217;./data/orders.csv&#8217;); // reads first 20 lines and attempts to deduce format<br />
$reader = new Csv_Reader(&#8217;./data/orders.csv&#8217;, $sniffer->sniff());<br />
$reader->hasHeader($sniffer->hasHeader());</p>
<p>I&#8217;m still playing around with the interface though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP CSV Utilities v0.2 released - now able to detect the format of a csv file by franck bret</title>
		<link>http://www.mc2design.com/blog/php-csv-utilities-v02-has-been-released#comment-23580</link>
		<dc:creator>franck bret</dc:creator>
		<pubDate>Wed, 02 Apr 2008 20:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/php-csv-utilities-v02-has-been-released#comment-23580</guid>
		<description>I've tried the library, works great !

Here is a proposal function for the Reader Class, make an array with header row as keys.

    public function toHeadedArray(){
    	
        $return = array();
    	$content = $this-&#62;toArray();
        $header=$this-&#62;getRow();

        //assign strings indice from header
        foreach ($content as $row =&#62; $value) {
        	$return[]=array_combine($header,$content[$row]);
        }
        
       	//remove first row, the one with header label
        array_shift($return);

        // be kinds, please rewind
        $this-&#62;rewind();
        return $return;
 
    }</description>
		<content:encoded><![CDATA[<p>I&#8217;ve tried the library, works great !</p>
<p>Here is a proposal function for the Reader Class, make an array with header row as keys.</p>
<p>    public function toHeadedArray(){</p>
<p>        $return = array();<br />
    	$content = $this-&gt;toArray();<br />
        $header=$this-&gt;getRow();</p>
<p>        //assign strings indice from header<br />
        foreach ($content as $row =&gt; $value) {<br />
        	$return[]=array_combine($header,$content[$row]);<br />
        }</p>
<p>       	//remove first row, the one with header label<br />
        array_shift($return);</p>
<p>        // be kinds, please rewind<br />
        $this-&gt;rewind();<br />
        return $return;</p>
<p>    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP CSV Utilities v0.2 released - now able to detect the format of a csv file by Luke Visinoni</title>
		<link>http://www.mc2design.com/blog/php-csv-utilities-v02-has-been-released#comment-22421</link>
		<dc:creator>Luke Visinoni</dc:creator>
		<pubDate>Fri, 21 Mar 2008 23:41:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/php-csv-utilities-v02-has-been-released#comment-22421</guid>
		<description>I am putting together another post about this library and its development cycle. I'd like to make it sort of a conversational post, so if you don't mind, pop on in that post as well and let me know what you think (It should be posted some time this weekend).</description>
		<content:encoded><![CDATA[<p>I am putting together another post about this library and its development cycle. I&#8217;d like to make it sort of a conversational post, so if you don&#8217;t mind, pop on in that post as well and let me know what you think (It should be posted some time this weekend).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework version 1.5 officially released by Luke Visinoni</title>
		<link>http://www.mc2design.com/blog/zend-framework-version-15-officially-released#comment-22401</link>
		<dc:creator>Luke Visinoni</dc:creator>
		<pubDate>Fri, 21 Mar 2008 20:16:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/zend-framework-version-15-officially-released#comment-22401</guid>
		<description>I'm going to have to get back to you on the features for layout and forms. I have only just begun playing around with them. Give me a week or so and I'll give you an update. This is another reason I love this framework... folks like you :)</description>
		<content:encoded><![CDATA[<p>I&#8217;m going to have to get back to you on the features for layout and forms. I have only just begun playing around with them. Give me a week or so and I&#8217;ll give you an update. This is another reason I love this framework&#8230; folks like you <img src='http://www.mc2design.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework version 1.5 officially released by Wil Sinclair</title>
		<link>http://www.mc2design.com/blog/zend-framework-version-15-officially-released#comment-22399</link>
		<dc:creator>Wil Sinclair</dc:creator>
		<pubDate>Fri, 21 Mar 2008 19:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/zend-framework-version-15-officially-released#comment-22399</guid>
		<description>What would you like to see in layouts and forms to bring us up to 100%?
Your comments about Cake are interesting. Certainly Cake is a great project, but we see things a bit differently on several points. One is that we believe the first hour of your experience with a framework is important, but it is not representative of the long-term relationship you're likely to have with your framework of choice. Of course the two aren't mutually exclusive, so we're working on our first-hour experience as well. But we made the decision not to prioritize it in the evolution of the framework. This was a difficult decision indeed, since Rails and other frameworks have set very high expectations for the first hour.

I'm happy to hear you like the features we've added (and how we added them). :)

,Wil</description>
		<content:encoded><![CDATA[<p>What would you like to see in layouts and forms to bring us up to 100%?<br />
Your comments about Cake are interesting. Certainly Cake is a great project, but we see things a bit differently on several points. One is that we believe the first hour of your experience with a framework is important, but it is not representative of the long-term relationship you&#8217;re likely to have with your framework of choice. Of course the two aren&#8217;t mutually exclusive, so we&#8217;re working on our first-hour experience as well. But we made the decision not to prioritize it in the evolution of the framework. This was a difficult decision indeed, since Rails and other frameworks have set very high expectations for the first hour.</p>
<p>I&#8217;m happy to hear you like the features we&#8217;ve added (and how we added them). <img src='http://www.mc2design.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
,Wil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP CSV Utilities v0.2 released - now able to detect the format of a csv file by matthijs</title>
		<link>http://www.mc2design.com/blog/php-csv-utilities-v02-has-been-released#comment-22169</link>
		<dc:creator>matthijs</dc:creator>
		<pubDate>Wed, 19 Mar 2008 11:04:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/php-csv-utilities-v02-has-been-released#comment-22169</guid>
		<description>Great work Luke. I'll take a look and try the code.</description>
		<content:encoded><![CDATA[<p>Great work Luke. I&#8217;ll take a look and try the code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP CSV Utilities - a PHP library similar to python&#8217;s standard CSV module by PHP CSV Utilities v0.2 has been released - The Q</title>
		<link>http://www.mc2design.com/blog/php-csv-utilities-a-php-library-similar-to-pythons-standard-csv-module#comment-21787</link>
		<dc:creator>PHP CSV Utilities v0.2 has been released - The Q</dc:creator>
		<pubDate>Sun, 16 Mar 2008 07:30:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/php-csv-utilities-a-php-library-similar-to-pythons-standard-csv-module#comment-21787</guid>
		<description>[...] have just wrapped up version 0.2 of our csv library. It includes several new features. The most exciting of which is the new Csv_Sniffer [...]</description>
		<content:encoded><![CDATA[<p>[...] have just wrapped up version 0.2 of our csv library. It includes several new features. The most exciting of which is the new Csv_Sniffer [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Back to the Future - Miva Merchant Conference 2008 by MC2 Development Team Attends MIVA Conference 2008 - The Q</title>
		<link>http://www.mc2design.com/blog/back-future-miva-conference-2008#comment-21092</link>
		<dc:creator>MC2 Development Team Attends MIVA Conference 2008 - The Q</dc:creator>
		<pubDate>Mon, 10 Mar 2008 18:55:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mc2design.com/blog/back-future-miva-conference-2008#comment-21092</guid>
		<description>[...] MC2 Design’s development team attended the MIVA Merchant 2008 Conference in San Diego, California, held at the Marina Village Conference Centers on Feb 28,29 and March 1st. MIVA Merchant announced exciting new features for the product and for future with its release of version 5.5 which releases in Beta March 2rd and is slated for streamed release as an upgrade to 5.0, early to mid April 2008. MC2 came away from the event very encouraged about the vision and future for the MIVA company and their shopping cart solution as an enterprise level application. The management team of MIVA Merchant provided a very hands on experience, letting merchants, developers, and designers know that they are here to stay and be the enterprise level solution we all want it to be. For additional information on this conference see Luke’s Article [...]</description>
		<content:encoded><![CDATA[<p>[...] MC2 Design’s development team attended the MIVA Merchant 2008 Conference in San Diego, California, held at the Marina Village Conference Centers on Feb 28,29 and March 1st. MIVA Merchant announced exciting new features for the product and for future with its release of version 5.5 which releases in Beta March 2rd and is slated for streamed release as an upgrade to 5.0, early to mid April 2008. MC2 came away from the event very encouraged about the vision and future for the MIVA company and their shopping cart solution as an enterprise level application. The management team of MIVA Merchant provided a very hands on experience, letting merchants, developers, and designers know that they are here to stay and be the enterprise level solution we all want it to be. For additional information on this conference see Luke’s Article [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
