<?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:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>eInternals</title>
	<atom:link href="http://www.einternals.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.einternals.com/blog</link>
	<description>Blog of eInternals.com</description>
	<lastBuildDate>Mon, 14 May 2012 05:13:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to check if an object is empty?</title>
		<link>http://www.einternals.com/blog/web-development/how-to-check-if-an-object-is-empty</link>
		<comments>http://www.einternals.com/blog/web-development/how-to-check-if-an-object-is-empty#comments</comments>
		<pubDate>Mon, 14 May 2012 05:07:57 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[How To?]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Snippet]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=132</guid>
		<description><![CDATA[You have a variable of type object in JavaScript. You want to check if it is empty. If the variable is null you can check it like but this will not check if the object is empty. Use this function &#8230; <a href="http://www.einternals.com/blog/web-development/how-to-check-if-an-object-is-empty">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You have a variable of type object in JavaScript. You want to check if it is empty. If the variable is null you can check it like </p>
<pre class="brush: jscript; title: ; notranslate">
if(variableName == null )
{
    //do something.....
}
</pre>
<p>but this will not check if the object is empty.</p>
<p>Use this function to check if the object is empty.</p>
<pre class="brush: jscript; title: ; notranslate">
function isObjectEmpty(object)
{
  var isEmpty = true;
  for(keys in object)
  {
     isEmpty = false;
     break; // exiting since we found that the object is not empty
  }
  return isEmpty;
}
</pre>
<p>How to use the function</p>
<pre class="brush: jscript; title: ; notranslate">

var myObject = {}; // Object is empty
var isEmpty  = isObjectEmpty(myObject); // will return true;

// populating the object
myObject = {&quot;name&quot;:&quot;John Smith&quot;,&quot;Address&quot;:&quot;Kochi, Kerala&quot;}; 

// check if the object is empty
isEmpty  = isObjectEmpty(myObject); // will return false;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-development/how-to-check-if-an-object-is-empty/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Truncate string and append dots using Javascript</title>
		<link>http://www.einternals.com/blog/web-development/javascript-web-development/truncate-string-and-append-dots-using-javascript</link>
		<comments>http://www.einternals.com/blog/web-development/javascript-web-development/truncate-string-and-append-dots-using-javascript#comments</comments>
		<pubDate>Tue, 17 Apr 2012 15:16:37 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Snippet]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=113</guid>
		<description><![CDATA[How to truncate a string and append 3 dots in JavaScript. Call like this The above function call returns this string &#160; A minified version of the above function is given here A über minified version (with the price of readability) is &#8230; <a href="http://www.einternals.com/blog/web-development/javascript-web-development/truncate-string-and-append-dots-using-javascript">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>How to truncate a string and append 3 dots in JavaScript.</p>
<pre class="brush: jscript; title: ; notranslate">
function add3Dots(string, limit)
{
  var dots = &quot;...&quot;;
  if(string.length &gt; limit)
  {
    // you can also use substr instead of substring
    string = string.substring(0,limit) + dots;
  }

    return string;
}
</pre>
<p>Call like this</p>
<pre class="brush: jscript; title: ; notranslate">
add3Dots(&quot;Hello World&quot;,9);
</pre>
<p>The above function call returns this string</p>
<pre class="brush: plain; title: ; notranslate">Hello Wor...</pre>
<p>&nbsp;</p>
<p>A minified version of the above function is given here</p>
<pre class="brush: jscript; title: ; notranslate">
function add3Dots(string, limit)
{
   return string = string.length &gt; limit ? string.substring(0,limit) + &quot;...&quot;: string;
}
</pre>
<p>A über minified version (with the price of readability) is given here</p>
<pre class="brush: jscript; title: ; notranslate">

function aD(s,l){return s=s.length&gt;l?s.substring(0,l)+&quot;...&quot;:s;}
</pre>
<p>In this case you need to call like this&#8230;</p>
<pre class="brush: jscript; title: ; notranslate">

aD(&quot;Hello World&quot;,9);
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-development/javascript-web-development/truncate-string-and-append-dots-using-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Object copying in jQuery</title>
		<link>http://www.einternals.com/blog/web-development/object-copying-in-jquery</link>
		<comments>http://www.einternals.com/blog/web-development/object-copying-in-jquery#comments</comments>
		<pubDate>Sun, 15 Apr 2012 19:20:09 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=98</guid>
		<description><![CDATA[Shallow copy Deep copy What is shallow copy and deep copy? If you need to copy(clone) object a  to object b  in Javascript using jQuery, do like this. This is a sample program The output in firebug console will look &#8230; <a href="http://www.einternals.com/blog/web-development/object-copying-in-jquery">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Shallow copy</p>
<pre class="brush: jscript; title: ; notranslate">var newObject = jQuery.extend({}, oldObject);</pre>
<p>Deep copy</p>
<pre class="brush: jscript; title: ; notranslate">var newObject = jQuery.extend(true, {}, oldObject);</pre>
<p><a title="Shallow copy and Deep copy" href="http://en.wikipedia.org/wiki/Object_copy" target="_blank">What is shallow copy and deep copy?</a></p>
<p>If you need to copy(clone) object <em>a </em> to object <em>b </em> in Javascript using jQuery, do like this.</p>
<pre class="brush: jscript; title: ; notranslate">
// old object
var a = {&quot;name&quot;:&quot;John Smith&quot;, &quot;age&quot;:&quot;30&quot;};

// new object, we need to copy the contents of object a to object b
var b =  jQuery.extend(true, {}, a);
</pre>
<p>This is a sample program</p>
<pre class="brush: jscript; title: ; notranslate">
// old object
var a = {&quot;name&quot;:&quot;John Smith&quot;, &quot;age&quot;:&quot;30&quot;};

console.log(&quot;Printing the contents of object a in Firebug console&quot;);
console.log(a);

// new object, we need to copy the contents of object a to object b
var b =  jQuery.extend(true, {}, a);

console.log(&quot;Printing the contents of object a in Firebug console&quot;);
console.log(b);

// Now we are editing the contents of object a
a.name = &quot;Mary Smith&quot;;
a.age = &quot;31&quot;

// Print the object again
console.log(&quot;Printing the contents of object a in Firebug console&quot;);
console.log(a);
console.log(&quot;Printing the contents of object b in Firebug console&quot;);
console.log(b);

// Note that even though we changed the contents of object a, the contents of object b is not changed.
</pre>
<p>The output in firebug console will look like this.</p>
<pre class="brush: jscript; title: ; notranslate">Printing the contents of object a in Firebug console
Object { name=&quot;John Smith&quot;, age=&quot;30&quot;}
Printing the contents of object a in Firebug console
Object { name=&quot;John Smith&quot;, age=&quot;30&quot;}
Printing the contents of object a in Firebug console
Object { name=&quot;Mary Smith&quot;, age=&quot;31&quot;}
Printing the contents of object b in Firebug console
Object { name=&quot;John Smith&quot;, age=&quot;30&quot;}
Note that even though we changed the contents of object a, the contents of object b is not changed.
</pre>
<p>Hope this information is useful to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-development/object-copying-in-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 &#8211; Access root from a movie clip</title>
		<link>http://www.einternals.com/blog/web-development/actionscript/as3-access-root-from-a-movie-clip</link>
		<comments>http://www.einternals.com/blog/web-development/actionscript/as3-access-root-from-a-movie-clip#comments</comments>
		<pubDate>Fri, 15 Jul 2011 08:57:33 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=87</guid>
		<description><![CDATA[Use like this to access root from a movie clip For example suppose you have a text box in root with instance name txtAddress in your root. If you need to set the text of txtAddress from a movie clip &#8230; <a href="http://www.einternals.com/blog/web-development/actionscript/as3-access-root-from-a-movie-clip">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Use like this to access <em>root</em>  from a movie clip</p>
<pre class="brush: jscript; title: ; notranslate">MovieClip(root).someThing;</pre>
<p>For example suppose you have a text box in root with instance name txtAddress in your root. If you need to set the text of txtAddress from a movie clip the code should be like</p>
<pre class="brush: jscript; title: ; notranslate">MovieClip(root).txtAddress.text = &quot;Some text here.&quot;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-development/actionscript/as3-access-root-from-a-movie-clip/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ActionScript : Find code execution time</title>
		<link>http://www.einternals.com/blog/web-development/actionscript-find-code-execution-time</link>
		<comments>http://www.einternals.com/blog/web-development/actionscript-find-code-execution-time#comments</comments>
		<pubDate>Thu, 13 Jan 2011 10:21:58 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash/Flex]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=83</guid>
		<description><![CDATA[Using the script below you can find how much time it took to execute your ActionScript code Check PHP version here Check Javascript version here]]></description>
			<content:encoded><![CDATA[<p>Using the script below you can find how much time it took to execute your ActionScript code</p>
<pre class="brush: jscript; title: ; notranslate">
var startTime:Date = new Date();

// execute your code here

var endTime:Date = new Date();
trace(&quot;Time take to execute the code &quot;+String(endTime.getTime()-startTime.getTime())+&quot; milliseconds&quot;);
</pre>
<p>Check PHP version <a href="http://www.einternals.com/blog/web-development/php/php-find-script-execution-time" target="_blank">here</a></p>
<p>Check Javascript version <a href="http://www.einternals.com/blog/web-development/javascript-find-script-execution-time-2" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-development/actionscript-find-code-execution-time/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBScript : Find script execution time</title>
		<link>http://www.einternals.com/blog/web-development/vbscript/vbscript-find-script-execution-time</link>
		<comments>http://www.einternals.com/blog/web-development/vbscript/vbscript-find-script-execution-time#comments</comments>
		<pubDate>Thu, 13 Jan 2011 09:55:41 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[VBScript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=79</guid>
		<description><![CDATA[Using the script below you can find how much time it took to execute your VBScript code. You can try this example Check PHP version here]]></description>
			<content:encoded><![CDATA[<p>Using the script below you can find how much time it took to execute your VBScript code.</p>
<pre class="brush: vb; title: ; notranslate">
Dim startTime
startTime = Now

'execute your code here

endTime = Now
MsgBox(&quot;Time taken to execute code : &quot; &amp; DateDiff(&quot;s&quot;,startTime,endTime)&amp;&quot; seconds&quot;)
</pre>
<p>You can try this example</p>
<pre class="brush: vb; title: ; notranslate">
Dim startTime
startTime = Now

'execute your code here
MsgBox(&quot;Wait for sometime&quot;)

endTime = Now
MsgBox(&quot;Time taken to execute code : &quot; &amp; DateDiff(&quot;s&quot;,startTime,endTime)&amp;&quot; seconds&quot;)
</pre>
<p>Check PHP version <a href="http://www.einternals.com/blog/web-development/php/php-find-script-execution-time" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-development/vbscript/vbscript-find-script-execution-time/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript : Find script execution time</title>
		<link>http://www.einternals.com/blog/web-development/javascript-find-script-execution-time-2</link>
		<comments>http://www.einternals.com/blog/web-development/javascript-find-script-execution-time-2#comments</comments>
		<pubDate>Wed, 12 Jan 2011 06:01:03 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=73</guid>
		<description><![CDATA[Using the script below you can find how much time it took to execute your javascript code. You can try this example sleep function taken from http://www.devcheater.com/#JavaScript sleep by loop. Usage of this sleep function is not recommended, shown only &#8230; <a href="http://www.einternals.com/blog/web-development/javascript-find-script-execution-time-2">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Using the script below you can find how much time it took to execute your javascript code.</p>
<pre class="brush: jscript; title: ; notranslate">
var startDate = new Date();

// execute your tasks here

var endDate = new Date();

var timeTaken = endDate.getTime() - startDate.getTime();

alert('Time take to execute the script is '+timeTaken+' milliseconds');
</pre>
<p>You can try this example</p>
<pre class="brush: jscript; title: ; notranslate">

// USE OF THIS FUNCTION IS NOT RECOMMENDED, CONSUMES LOT OF SYSTEM RESOURCES
function sleep(milliSeconds){
	var startTime = new Date().getTime(); // get the current time
	while (new Date().getTime() &lt; startTime + milliSeconds); // hog cpu
}

var startDate = new Date();

// execute your tasks here
sleep(300); // parameter is milliseconds

var endDate = new Date();
var timeTaken = endDate.getTime() - startDate.getTime();

alert('Time take to execute the script is '+timeTaken+' milliseconds');
</pre>
<p><em>sleep </em>function taken from <a href="http://www.devcheater.com/#JavaScript sleep by loop" target="_blank">http://www.devcheater.com/#JavaScript sleep by loop</a>. Usage of this sleep function is not recommended, shown only for demo purpose.</p>
<p>Check PHP version <a href="http://www.einternals.com/blog/web-development/php/php-find-script-execution-time" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-development/javascript-find-script-execution-time-2/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Chrome : Find all installed plugins</title>
		<link>http://www.einternals.com/blog/web-browsers/chrome-find-all-installed-plugins</link>
		<comments>http://www.einternals.com/blog/web-browsers/chrome-find-all-installed-plugins#comments</comments>
		<pubDate>Tue, 11 Jan 2011 11:40:57 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=64</guid>
		<description><![CDATA[Type about:plugins in Google Chrome address bar and hit Enter to view all installed plugins. From this screen you can Enable or Disable a plugin.]]></description>
			<content:encoded><![CDATA[<pre class="brush: php; title: ; notranslate">
about:plugins
</pre>
<p>Type about:plugins in Google Chrome address bar and hit Enter to view all installed plugins.</p>
<p>From this screen you can Enable or Disable a plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-browsers/chrome-find-all-installed-plugins/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP : Find script execution time</title>
		<link>http://www.einternals.com/blog/web-development/php/php-find-script-execution-time</link>
		<comments>http://www.einternals.com/blog/web-development/php/php-find-script-execution-time#comments</comments>
		<pubDate>Tue, 11 Jan 2011 11:00:29 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=59</guid>
		<description><![CDATA[If you are a PHP developer chances are many that you need to find how much time it took to execute a piece of code. Using the script below you can find how much time it took to execute your &#8230; <a href="http://www.einternals.com/blog/web-development/php/php-find-script-execution-time">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are a PHP developer chances are many that you need to find how much time it took to execute a piece of code. Using the script below you can find how much time it took to execute your php code.</p>
<pre class="brush: php; title: ; notranslate">

$time_start = microtime(true);

// execute your tasks here

$time_end = microtime(true);
$time = $time_end - $time_start;

echo &quot;Code executed in $time seconds\n&quot;;
</pre>
<p>You can try these examples</p>
<pre class="brush: php; title: ; notranslate">

$time_start = microtime(true);

// execute your tasks here
phpinfo();

$time_end = microtime(true);
$time = $time_end - $time_start;

echo &quot;Code executed in $time seconds\n&quot;;
</pre>
<p>Another example</p>
<pre class="brush: php; title: ; notranslate">

$time_start = microtime(true);

// execute your tasks here
sleep(1); // wait for 1 second

$time_end = microtime(true);
$time = $time_end - $time_start;

echo &quot;Code executed in $time seconds\n&quot;;
</pre>
<p>ASP and C# version of the code can be found <a href="http://neworder.box.sk/showthread.php/40932-PHP-Find-script-execution-time" target="_blank">here</a></p>
<p>Check Javascript version <a href="http://www.einternals.com/blog/web-development/javascript-find-script-execution-time-2" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-development/php/php-find-script-execution-time/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress : How to change blog title to image or logo?</title>
		<link>http://www.einternals.com/blog/web-development/php/wordpress-how-to-change-blog-title-to-image-or-logo</link>
		<comments>http://www.einternals.com/blog/web-development/php/wordpress-how-to-change-blog-title-to-image-or-logo#comments</comments>
		<pubDate>Fri, 07 Jan 2011 06:48:20 +0000</pubDate>
		<dc:creator>kiranvj</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.einternals.com/blog/?p=45</guid>
		<description><![CDATA[After you install wordpress by default the blog title appears in the header . Using the below method you can change the blog title or name to you company logo or to a custom image. Login to admin console of &#8230; <a href="http://www.einternals.com/blog/web-development/php/wordpress-how-to-change-blog-title-to-image-or-logo">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After you install wordpress by default the blog title appears in the header . Using the below method you can change the blog title or name to you company logo or to a custom image.</p>
<p>Login to admin console of your website.</p>
<ol>
<li> Goto Appearance-&gt;Editor</li>
<li>Click to edit <strong>Header (header.php) </strong>from the right side of page.</li>
<li>Navigate to code which looks like this
<pre class="brush: php; title: ; notranslate">
&lt;span&gt;

&lt;a href=&quot;&lt;?php echo home_url( '/' ); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?&gt;&quot; rel=&quot;home&quot;&gt;&lt;?php bloginfo( 'name' ); ?&gt;&lt;/a&gt;

&lt;/span&gt;
</pre>
</li>
<li>First lets comment the blog title<br />
Comment like this, or you can remove this line. </p>
<pre class="brush: php; title: ; notranslate">
&lt;?php //bloginfo( 'name' ); ?&gt;
</pre>
</li>
<li>Next we need to add logo or image</li>
<li>Insert image like this
<pre class="brush: plain; title: ; notranslate">
&lt;img src=&quot;http://einternals.com/images/einternals-logo.gif&quot; width=&quot;260&quot; height=&quot;48&quot; /&gt;
</pre>
</li>
<li>So the full code will look like
<pre class="brush: php; title: ; notranslate">
&lt;span&gt;

&lt;a href=&quot;&lt;?php echo home_url( '/' ); ?&gt;&quot; title=&quot;&lt;?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?&gt;&quot; rel=&quot;home&quot;&gt;&lt;img src=&quot;http://einternals.com/images/einternals-logo.gif&quot; width=&quot;260&quot; height=&quot;48&quot; /&gt;&lt;?php //bloginfo( 'name' ); ?&gt;&lt;/a&gt;

&lt;/span&gt;
</pre>
</li>
</ol>
<p>Now the image or company logo you added will be displayed in the blog header.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.einternals.com/blog/web-development/php/wordpress-how-to-change-blog-title-to-image-or-logo/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

