<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Zach Hunter&#039;s Busy Life</title>
	<atom:link href="http://www.zachhunter.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zachhunter.com</link>
	<description>Random Brain Drool</description>
	<lastBuildDate>Wed, 01 Sep 2010 18:47:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on JSON to a Dynamic HTML Table by Zach</title>
		<link>http://www.zachhunter.com/2010/04/json-objects-to-html-table/comment-page-1/#comment-296</link>
		<dc:creator>Zach</dc:creator>
		<pubDate>Wed, 01 Sep 2010 18:47:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=196#comment-296</guid>
		<description>It really depends on the applicaiton, but going from JSON to an array doesn&#039;t make sense to me.  I do agree that building a big table as a string could make the clients browser become unresponsive, I think a better solution is to write an empty table to then DOM and then add rows to the table as you loop over your source data.

Example:
[sourcecode language=&quot;language=&quot;js&quot;]
    $(&quot;some div&quot;).append(&quot;&lt; table id=&#039;dynamicTable&#039;&gt;&lt; /table&gt;&quot;);
     -- for each row in source data do
    $(&#039;#dynamicTable tr:last&#039;).after(&#039;&lt; tr&gt;&lt; td&gt;....&lt; /td&gt;&lt; /tr&gt;&#039;);
[/sourcecode]

** You could initially hide the table and show when load is complete.</description>
		<content:encoded><![CDATA[<p>It really depends on the applicaiton, but going from JSON to an array doesn&#8217;t make sense to me.  I do agree that building a big table as a string could make the clients browser become unresponsive, I think a better solution is to write an empty table to then DOM and then add rows to the table as you loop over your source data.</p>
<p>Example:</p>
<p>    $(&quot;some div&quot;).append(&quot;&lt; table id=&#8217;dynamicTable&#8217;&gt;&lt; /table&gt;&quot;);<br />
     &#8212; for each row in source data do<br />
    $(&#8216;#dynamicTable tr:last&#8217;).after(&#8216;&lt; tr&gt;&lt; td&gt;&#8230;.&lt; /td&gt;&lt; /tr&gt;&#8217;);</p>
<p>** You could initially hide the table and show when load is complete.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON to a Dynamic HTML Table by Steve</title>
		<link>http://www.zachhunter.com/2010/04/json-objects-to-html-table/comment-page-1/#comment-295</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 01 Sep 2010 09:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=196#comment-295</guid>
		<description>Just thinking, rather than building up strings why not create an array representing the table then use the join method. Apparantly its more efficient than concatenation. I will be testing this against a rather large data set and will post the results for all who are interested.</description>
		<content:encoded><![CDATA[<p>Just thinking, rather than building up strings why not create an array representing the table then use the join method. Apparantly its more efficient than concatenation. I will be testing this against a rather large data set and will post the results for all who are interested.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress 3.0 &#8211; A CMS Solution? by Deborah</title>
		<link>http://www.zachhunter.com/2010/07/wordpress-3-0-a-cms-solution/comment-page-1/#comment-291</link>
		<dc:creator>Deborah</dc:creator>
		<pubDate>Tue, 24 Aug 2010 16:46:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=338#comment-291</guid>
		<description>This may work however.  I just tested my https on a non-wordpress page and it doesn&#039;t work yet.  Wait until I get that resolved and retest the installation.</description>
		<content:encoded><![CDATA[<p>This may work however.  I just tested my https on a non-wordpress page and it doesn&#8217;t work yet.  Wait until I get that resolved and retest the installation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress 3.0 &#8211; A CMS Solution? by Deborah</title>
		<link>http://www.zachhunter.com/2010/07/wordpress-3-0-a-cms-solution/comment-page-1/#comment-290</link>
		<dc:creator>Deborah</dc:creator>
		<pubDate>Tue, 24 Aug 2010 16:38:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=338#comment-290</guid>
		<description>I have tried your plugin on 3.0.1 and get no response.  It does not break the site however which is a big plus in my book.  I have also done the custom field and meta-data to true.  Have you tried this on 3.0.1 yet?  Is there something I&#039;m missing?</description>
		<content:encoded><![CDATA[<p>I have tried your plugin on 3.0.1 and get no response.  It does not break the site however which is a big plus in my book.  I have also done the custom field and meta-data to true.  Have you tried this on 3.0.1 yet?  Is there something I&#8217;m missing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress 3.0 &#8211; A CMS Solution? by Zach</title>
		<link>http://www.zachhunter.com/2010/07/wordpress-3-0-a-cms-solution/comment-page-1/#comment-289</link>
		<dc:creator>Zach</dc:creator>
		<pubDate>Mon, 23 Aug 2010 20:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=338#comment-289</guid>
		<description>Cezar,

I just double checked and everything and the code above is working perfectly on my project site with the code above.  I have 1/10 pages with SSL enabled and all the links on the HTTPS page have their URLs rewritten.  When I click on one of the links to a non HTTPS page (e.g. Membership to Home), the code redirects me from HTTPS to HTTP without any errors/messages.  I have the code working live, I&#039;ll add it onto a clean dev box tonight and let you know if I have a similar error.  Are you using WordPress 3.x+ ?</description>
		<content:encoded><![CDATA[<p>Cezar,</p>
<p>I just double checked and everything and the code above is working perfectly on my project site with the code above.  I have 1/10 pages with SSL enabled and all the links on the HTTPS page have their URLs rewritten.  When I click on one of the links to a non HTTPS page (e.g. Membership to Home), the code redirects me from HTTPS to HTTP without any errors/messages.  I have the code working live, I&#8217;ll add it onto a clean dev box tonight and let you know if I have a similar error.  Are you using WordPress 3.x+ ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress 3.0 &#8211; A CMS Solution? by cezar</title>
		<link>http://www.zachhunter.com/2010/07/wordpress-3-0-a-cms-solution/comment-page-1/#comment-288</link>
		<dc:creator>cezar</dc:creator>
		<pubDate>Mon, 23 Aug 2010 11:21:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=338#comment-288</guid>
		<description>did that now it goes into a looping redirect.
&quot;The page isn&#039;t redirecting properly. Firefox has detected that the server is redirecting the request for this address in a way that will never complete.&quot;</description>
		<content:encoded><![CDATA[<p>did that now it goes into a looping redirect.<br />
&#8220;The page isn&#8217;t redirecting properly. Firefox has detected that the server is redirecting the request for this address in a way that will never complete.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JSON to a Dynamic HTML Table by Prabu</title>
		<link>http://www.zachhunter.com/2010/04/json-objects-to-html-table/comment-page-1/#comment-282</link>
		<dc:creator>Prabu</dc:creator>
		<pubDate>Tue, 10 Aug 2010 14:34:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=196#comment-282</guid>
		<description>Please can you provide sample html code with example json String.So it will be more helpfull for me...

Thanks in Advance..

Regards
Prabu.N</description>
		<content:encoded><![CDATA[<p>Please can you provide sample html code with example json String.So it will be more helpfull for me&#8230;</p>
<p>Thanks in Advance..</p>
<p>Regards<br />
Prabu.N</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress 3.0 &#8211; A CMS Solution? by Zach</title>
		<link>http://www.zachhunter.com/2010/07/wordpress-3-0-a-cms-solution/comment-page-1/#comment-280</link>
		<dc:creator>Zach</dc:creator>
		<pubDate>Tue, 03 Aug 2010 17:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=338#comment-280</guid>
		<description>Cezar,

The only additional thing you need to do is set &quot;force_ssl&quot; in the meta-data to true.

Zach</description>
		<content:encoded><![CDATA[<p>Cezar,</p>
<p>The only additional thing you need to do is set &#8220;force_ssl&#8221; in the meta-data to true.</p>
<p>Zach</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress 3.0 &#8211; A CMS Solution? by cezar</title>
		<link>http://www.zachhunter.com/2010/07/wordpress-3-0-a-cms-solution/comment-page-1/#comment-279</link>
		<dc:creator>cezar</dc:creator>
		<pubDate>Tue, 03 Aug 2010 16:09:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=338#comment-279</guid>
		<description>Hi Zach,

I tried your plugin. it seems to do the redirect part but for me the link then goes into a 404 error.

Do i need to change anything else?
C</description>
		<content:encoded><![CDATA[<p>Hi Zach,</p>
<p>I tried your plugin. it seems to do the redirect part but for me the link then goes into a 404 error.</p>
<p>Do i need to change anything else?<br />
C</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Use NPOI to populate an Excel template by Zach</title>
		<link>http://www.zachhunter.com/2010/05/npoi-excel-template/comment-page-1/#comment-275</link>
		<dc:creator>Zach</dc:creator>
		<pubDate>Tue, 27 Jul 2010 14:05:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.zachhunter.com/?p=252#comment-275</guid>
		<description>email me a copy of your sheet zachary dot hunter at gmail.com an I&#039;ll try debugging it.  I&#039;ve not had any problems opening/reading XLS data for awhile, so without more details I&#039;m not sure what it could be.  Just make sure your using the latest build, since there has been some important bug fixes...</description>
		<content:encoded><![CDATA[<p>email me a copy of your sheet zachary dot hunter at gmail.com an I&#8217;ll try debugging it.  I&#8217;ve not had any problems opening/reading XLS data for awhile, so without more details I&#8217;m not sure what it could be.  Just make sure your using the latest build, since there has been some important bug fixes&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
