<?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 Eric Lightbody	</title>
	<atom:link href="https://ericlightbody.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://ericlightbody.com</link>
	<description>eric lightbody</description>
	<lastBuildDate>Fri, 19 Apr 2024 15:06:23 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>
		Comment on Adding multiple sidebars (and other elements) to your wordpress theme by João		</title>
		<link>https://ericlightbody.com/2009/04/30/adding-multiple-sidebars-and-other-elements-to-your-wordpress-theme/#comment-63</link>

		<dc:creator><![CDATA[João]]></dc:creator>
		<pubDate>Sun, 12 Jun 2016 17:00:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericlightbody.com/?p=158#comment-63</guid>

					<description><![CDATA[Hi Eric

Thanks for mentioning the Delicious Cached++ plugin. I have recently refactored, and it now allows multiple widgets in a native (and more natural way). The &quot;Delicious Cached++&quot; widget appears only once, and you can add it multiple times (with independent settings - e.g., show bookmarks from different tags in each widget).

Let me know if you have more curiosity on how to allow multiple widgets in a WordPress plugin!]]></description>
			<content:encoded><![CDATA[<p>Hi Eric</p>
<p>Thanks for mentioning the Delicious Cached++ plugin. I have recently refactored, and it now allows multiple widgets in a native (and more natural way). The &#8220;Delicious Cached++&#8221; widget appears only once, and you can add it multiple times (with independent settings &#8211; e.g., show bookmarks from different tags in each widget).</p>
<p>Let me know if you have more curiosity on how to allow multiple widgets in a WordPress plugin!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Proper JSON encoding with PHP by elightbo		</title>
		<link>https://ericlightbody.com/2015/09/23/proper-json-encoding-with-php/#comment-155</link>

		<dc:creator><![CDATA[elightbo]]></dc:creator>
		<pubDate>Fri, 02 Oct 2015 13:54:50 +0000</pubDate>
		<guid isPermaLink="false">http://ericlightbody.com/?p=529#comment-155</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://ericlightbody.com/2015/09/23/proper-json-encoding-with-php/#comment-154&quot;&gt;David Lundgren&lt;/a&gt;.

I had no idea that parse_ini_file() behaved like that. Will have to keep that in mind.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://ericlightbody.com/2015/09/23/proper-json-encoding-with-php/#comment-154">David Lundgren</a>.</p>
<p>I had no idea that parse_ini_file() behaved like that. Will have to keep that in mind.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Proper JSON encoding with PHP by David Lundgren		</title>
		<link>https://ericlightbody.com/2015/09/23/proper-json-encoding-with-php/#comment-154</link>

		<dc:creator><![CDATA[David Lundgren]]></dc:creator>
		<pubDate>Fri, 02 Oct 2015 12:55:10 +0000</pubDate>
		<guid isPermaLink="false">http://ericlightbody.com/?p=529#comment-154</guid>

					<description><![CDATA[I always wondered why those api&#039;s would occasionally return null instead of the data, and I never had enough time to figure it out. I&#039;m glad you found it, and hopefully I&#039;ll remember this for future JSON adventures.

One other function that needs this treatment is parse_ini_file(). When it can&#039;t parse the file it issues warnings. I found it beneficial to call error_get_last() when it returns false, at least then you can throw more meaningful exceptions.]]></description>
			<content:encoded><![CDATA[<p>I always wondered why those api&#8217;s would occasionally return null instead of the data, and I never had enough time to figure it out. I&#8217;m glad you found it, and hopefully I&#8217;ll remember this for future JSON adventures.</p>
<p>One other function that needs this treatment is parse_ini_file(). When it can&#8217;t parse the file it issues warnings. I found it beneficial to call error_get_last() when it returns false, at least then you can throw more meaningful exceptions.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Proper JSON encoding with PHP by elightbo		</title>
		<link>https://ericlightbody.com/2015/09/23/proper-json-encoding-with-php/#comment-153</link>

		<dc:creator><![CDATA[elightbo]]></dc:creator>
		<pubDate>Fri, 25 Sep 2015 13:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://ericlightbody.com/?p=529#comment-153</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://ericlightbody.com/2015/09/23/proper-json-encoding-with-php/#comment-152&quot;&gt;Chris Smith&lt;/a&gt;.

One other thing I noticed in the &lt;a href=&quot;http://php.net/manual/en/function.json-encode.php#115733&quot; rel=&quot;nofollow ugc&quot;&gt;comments of json_encode&lt;/a&gt;, but have yet to verify is that:

&lt;blockquote site=&quot;http://php.net/manual/en/function.json-encode.php#115733&quot;&gt;
Although this is not documented on the version log here, non-UTF8 handling behaviour has changed in 5.5, in a way that can make debugging difficult.

Passing a non UTF-8 string to json_encode() will make the function return false in PHP 5.5, while it will only nullify this string (and only this one) in previous versions.
&lt;/blockquote&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://ericlightbody.com/2015/09/23/proper-json-encoding-with-php/#comment-152">Chris Smith</a>.</p>
<p>One other thing I noticed in the <a href="http://php.net/manual/en/function.json-encode.php#115733" rel="nofollow ugc">comments of json_encode</a>, but have yet to verify is that:</p>
<blockquote site="http://php.net/manual/en/function.json-encode.php#115733"><p>
Although this is not documented on the version log here, non-UTF8 handling behaviour has changed in 5.5, in a way that can make debugging difficult.</p>
<p>Passing a non UTF-8 string to json_encode() will make the function return false in PHP 5.5, while it will only nullify this string (and only this one) in previous versions.
</p></blockquote>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Proper JSON encoding with PHP by Chris Smith		</title>
		<link>https://ericlightbody.com/2015/09/23/proper-json-encoding-with-php/#comment-152</link>

		<dc:creator><![CDATA[Chris Smith]]></dc:creator>
		<pubDate>Fri, 25 Sep 2015 13:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://ericlightbody.com/?p=529#comment-152</guid>

					<description><![CDATA[This is interesting and I never knew about json_last_error_msg().  It is interesting because json_encode() claims to show false on error.  I wonder what would happen if you set the option JSON_PARTIAL_OUTPUT_ON_ERROR if anything would come back.]]></description>
			<content:encoded><![CDATA[<p>This is interesting and I never knew about json_last_error_msg().  It is interesting because json_encode() claims to show false on error.  I wonder what would happen if you set the option JSON_PARTIAL_OUTPUT_ON_ERROR if anything would come back.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Textmate to vim &#8211; Part one by MaerF0x0		</title>
		<link>https://ericlightbody.com/2011/05/24/switching-from-textmate-to-vim/#comment-151</link>

		<dc:creator><![CDATA[MaerF0x0]]></dc:creator>
		<pubDate>Tue, 23 Oct 2012 04:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericlightbody.com/?p=456#comment-151</guid>

					<description><![CDATA[Check out my vim setup 

https://github.com/MaerF0x0/VimSetup]]></description>
			<content:encoded><![CDATA[<p>Check out my vim setup </p>
<p><a href="https://github.com/MaerF0x0/VimSetup" rel="nofollow ugc">https://github.com/MaerF0x0/VimSetup</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Adding multiple sidebars (and other elements) to your wordpress theme by Prasad Padwal		</title>
		<link>https://ericlightbody.com/2009/04/30/adding-multiple-sidebars-and-other-elements-to-your-wordpress-theme/#comment-62</link>

		<dc:creator><![CDATA[Prasad Padwal]]></dc:creator>
		<pubDate>Mon, 03 Sep 2012 07:19:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericlightbody.com/?p=158#comment-62</guid>

					<description><![CDATA[You Can also try this http://www.wordpressguide.in/want-different-sidebar-for-different-category.html

it is easy and simple !]]></description>
			<content:encoded><![CDATA[<p>You Can also try this <a href="http://www.wordpressguide.in/want-different-sidebar-for-different-category.html" rel="nofollow ugc">http://www.wordpressguide.in/want-different-sidebar-for-different-category.html</a></p>
<p>it is easy and simple !</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on TweetiePie for WordPress by Jim		</title>
		<link>https://ericlightbody.com/2009/07/19/tweetiepie-for-wordpress/#comment-86</link>

		<dc:creator><![CDATA[Jim]]></dc:creator>
		<pubDate>Thu, 03 Nov 2011 05:31:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericlightbody.com/?p=216#comment-86</guid>

					<description><![CDATA[I&#039;ve had frustrations with other twitter plug-ins. Will try this one out. Thanks, Eric. Hope this will work on my blog nicely.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had frustrations with other twitter plug-ins. Will try this one out. Thanks, Eric. Hope this will work on my blog nicely.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Using NextGEN gallery to bring an image gallery to your WordPress blog by 4nton		</title>
		<link>https://ericlightbody.com/2010/03/29/using-nextgen-gallery-to-bring-an-image-gallery-to-your-wordpress-blog/#comment-133</link>

		<dc:creator><![CDATA[4nton]]></dc:creator>
		<pubDate>Wed, 12 Oct 2011 19:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericlightbody.com/?p=350#comment-133</guid>

					<description><![CDATA[Hello,
what I am trying to do is instead of putting the shortcode [nggallery id=1] in my blog post content I would like it to copy it in a custome field so that I can place it anywhere in my theme. but it doesn&#039;t work that way. any ideas?]]></description>
			<content:encoded><![CDATA[<p>Hello,<br />
what I am trying to do is instead of putting the shortcode [nggallery id=1] in my blog post content I would like it to copy it in a custome field so that I can place it anywhere in my theme. but it doesn&#8217;t work that way. any ideas?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Using NextGEN gallery to bring an image gallery to your WordPress blog by Wood Railing		</title>
		<link>https://ericlightbody.com/2010/03/29/using-nextgen-gallery-to-bring-an-image-gallery-to-your-wordpress-blog/#comment-132</link>

		<dc:creator><![CDATA[Wood Railing]]></dc:creator>
		<pubDate>Sun, 25 Sep 2011 04:19:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.ericlightbody.com/?p=350#comment-132</guid>

					<description><![CDATA[I just learned how to add a next gen gallery to a category archive page, like this one about my custom deck balusters http://awoodrailing.com/deck-balusters/

Here is the link to the help thread on wordpress forum:
http://wordpress.org/support/topic/nextgen-gallery-in-template?replies=12]]></description>
			<content:encoded><![CDATA[<p>I just learned how to add a next gen gallery to a category archive page, like this one about my custom deck balusters <a href="http://awoodrailing.com/deck-balusters/" rel="nofollow ugc">http://awoodrailing.com/deck-balusters/</a></p>
<p>Here is the link to the help thread on wordpress forum:<br />
<a href="http://wordpress.org/support/topic/nextgen-gallery-in-template?replies=12" rel="nofollow ugc">http://wordpress.org/support/topic/nextgen-gallery-in-template?replies=12</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
