<?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 Impressive Webs</title>
	<atom:link href="http://www.impressivewebs.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.impressivewebs.com</link>
	<description>Web Design Articles &#38; Tutorials. To make the web impressive.</description>
	<lastBuildDate>Tue, 21 Feb 2012 19:36:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Book Giveaway: The Book of Ruby by Yakov</title>
		<link>http://www.impressivewebs.com/book-giveaway-ruby/#comment-19028</link>
		<dc:creator>Yakov</dc:creator>
		<pubDate>Tue, 21 Feb 2012 19:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=5515#comment-19028</guid>
		<description>https://twitter.com/#!/DefensForce/status/172041802096971777

Choose us :)</description>
		<content:encoded><![CDATA[<p><a href="https://twitter.com/#!/DefensForce/status/172041802096971777" rel="nofollow">https://twitter.com/#!/DefensForce/status/172041802096971777</a></p>
<p>Choose us :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bold and Italic in HTML5 by Nik</title>
		<link>http://www.impressivewebs.com/bold-italic-html5/#comment-19021</link>
		<dc:creator>Nik</dc:creator>
		<pubDate>Tue, 21 Feb 2012 13:59:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=2862#comment-19021</guid>
		<description>&lt;b&gt;Great stuff&lt;/b&gt;, search engines and searchers are always going to like &lt;strong&gt;content that has hierarchy built in&lt;/strong&gt;. It amazes me how obsessed people become about &lt;em&gt;how it may affect ranking.&lt;/em&gt; Google is latching onto the fact people are more interested in rank and ways of improving rank. Content and its quality will rule soon... &lt;i&gt;thank god!&lt;/i&gt; 
Done!</description>
		<content:encoded><![CDATA[<p><b>Great stuff</b>, search engines and searchers are always going to like <strong>content that has hierarchy built in</strong>. It amazes me how obsessed people become about <em>how it may affect ranking.</em> Google is latching onto the fact people are more interested in rank and ways of improving rank. Content and its quality will rule soon&#8230; <i>thank god!</i><br />
Done!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Callback Functions in JavaScript by Jeremy Hill</title>
		<link>http://www.impressivewebs.com/callback-functions-javascript/#comment-19007</link>
		<dc:creator>Jeremy Hill</dc:creator>
		<pubDate>Mon, 20 Feb 2012 23:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=5540#comment-19007</guid>
		<description>I think another good example would be how to run a callback that receives arguments and has &#039;this&#039; set to something other than the global object.  i.e.: 

&lt;pre&gt;
&lt;code&gt;
function mySandwich(param1, param2, callback) {
	alert(&#039;Started eating my sandwich.\n\nIt has: &#039; + param1 + &#039;, &#039; + param2);
	var sandwich = {toppings: [param1, param2]},
		madeCorrectly = (typeof(param1) === &quot;string&quot; &amp;&amp; typeof(param2) === &quot;string&quot;) ? true : false;
	if (callback &amp;&amp; typeof(callback) === &quot;function&quot;) {  
        callback.apply(sandwich, [madeCorrectly]);  
	}  
}  
  
mySandwich(&#039;ham&#039;, &#039;cheese&#039;, function(correct) {
	if(correct) {
		alert(&quot;Finished eating my &quot; + this.toppings[0] + &quot; and &quot; + this.toppings[1] + &quot; sandwich.&quot;);
	} else {
		alert(&quot;Gross!  Why would I eat a &quot; + this.toppings[0] + &quot; and &quot; + this.toppings[1] + &quot; sandwich?&quot;);
	}
});
&lt;/code&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I think another good example would be how to run a callback that receives arguments and has &#8216;this&#8217; set to something other than the global object.  i.e.: </p>
<pre>
<code>
function mySandwich(param1, param2, callback) {
	alert('Started eating my sandwich.\n\nIt has: ' + param1 + ', ' + param2);
	var sandwich = {toppings: [param1, param2]},
		madeCorrectly = (typeof(param1) === "string" &amp;&amp; typeof(param2) === "string") ? true : false;
	if (callback &amp;&amp; typeof(callback) === "function") {
        callback.apply(sandwich, [madeCorrectly]);
	}
}  

mySandwich('ham', 'cheese', function(correct) {
	if(correct) {
		alert("Finished eating my " + this.toppings[0] + " and " + this.toppings[1] + " sandwich.");
	} else {
		alert("Gross!  Why would I eat a " + this.toppings[0] + " and " + this.toppings[1] + " sandwich?");
	}
});
</code>
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Slide-Down Mega Drop-Down Menus with Ajax and jQuery by Shadid</title>
		<link>http://www.impressivewebs.com/mega-menus-ajax-jquery/#comment-19004</link>
		<dc:creator>Shadid</dc:creator>
		<pubDate>Mon, 20 Feb 2012 15:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=2785#comment-19004</guid>
		<description>You need to edit &quot;general.js&quot;. There, you can modify the main settings and specify the directory where your menu files are. In your case : change it to wp-content/themes/{themename}. Hope it will be  helpful.</description>
		<content:encoded><![CDATA[<p>You need to edit &#8220;general.js&#8221;. There, you can modify the main settings and specify the directory where your menu files are. In your case : change it to wp-content/themes/{themename}. Hope it will be  helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Slide-Down Mega Drop-Down Menus with Ajax and jQuery by Shadid</title>
		<link>http://www.impressivewebs.com/mega-menus-ajax-jquery/#comment-19003</link>
		<dc:creator>Shadid</dc:creator>
		<pubDate>Mon, 20 Feb 2012 15:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=2785#comment-19003</guid>
		<description>Many thanks</description>
		<content:encoded><![CDATA[<p>Many thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Book Giveaway: The Book of Ruby by Dehiv</title>
		<link>http://www.impressivewebs.com/book-giveaway-ruby/#comment-19002</link>
		<dc:creator>Dehiv</dc:creator>
		<pubDate>Mon, 20 Feb 2012 12:18:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=5515#comment-19002</guid>
		<description>Here it is:
https://twitter.com/#!/dehiv/status/171568644990566400</description>
		<content:encoded><![CDATA[<p>Here it is:<br />
<a href="https://twitter.com/#!/dehiv/status/171568644990566400" rel="nofollow">https://twitter.com/#!/dehiv/status/171568644990566400</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Book Giveaway: The Book of Ruby by HeriNXI</title>
		<link>http://www.impressivewebs.com/book-giveaway-ruby/#comment-18996</link>
		<dc:creator>HeriNXI</dc:creator>
		<pubDate>Mon, 20 Feb 2012 05:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=5515#comment-18996</guid>
		<description>i&#039;m learning ruby right now and win this book would be great :)
https://twitter.com/#!/herinxi/status/171463390580060160</description>
		<content:encoded><![CDATA[<p>i&#8217;m learning ruby right now and win this book would be great :)<br />
<a href="https://twitter.com/#!/herinxi/status/171463390580060160" rel="nofollow">https://twitter.com/#!/herinxi/status/171463390580060160</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Book Giveaway: The Book of Ruby by cyrus</title>
		<link>http://www.impressivewebs.com/book-giveaway-ruby/#comment-18986</link>
		<dc:creator>cyrus</dc:creator>
		<pubDate>Sun, 19 Feb 2012 18:18:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=5515#comment-18986</guid>
		<description>https://twitter.com/#!/huncyrus

Neeeeeed moar!</description>
		<content:encoded><![CDATA[<p><a href="https://twitter.com/#!/huncyrus" rel="nofollow">https://twitter.com/#!/huncyrus</a></p>
<p>Neeeeeed moar!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Importance of Website Performance (Sources) by Régie publicitaire</title>
		<link>http://www.impressivewebs.com/importance-of-website-performance-sources/#comment-18985</link>
		<dc:creator>Régie publicitaire</dc:creator>
		<pubDate>Sun, 19 Feb 2012 13:37:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=5016#comment-18985</guid>
		<description>thank you for this Article

Very good website !</description>
		<content:encoded><![CDATA[<p>thank you for this Article</p>
<p>Very good website !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Every Time You Make a Good Business Decision, a Puppy Gets Cloned by Louis Lazaris</title>
		<link>http://www.impressivewebs.com/business-decision-puppy-cloned/#comment-18984</link>
		<dc:creator>Louis Lazaris</dc:creator>
		<pubDate>Sun, 19 Feb 2012 10:11:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=5574#comment-18984</guid>
		<description>I can&#039;t argue with that! :) Totally agree that this was a rant. But even though I didn&#039;t read the *entire* Tantek interview, I believe I read enough to understand his point about why they were choosing to consider support for &quot;-webkit-&quot;.

Besides, I didn&#039;t hide anything -- I openly admitted that I hadn&#039;t read the whole thing. So is there anything I misstated, or misrepresented?

You said:

&quot;Keep writing and leave religion out of it.&quot;

That&#039;s exactly why the word &quot;evangelism&quot; should not be used in a web design or business context. :)</description>
		<content:encoded><![CDATA[<p>I can&#8217;t argue with that! :) Totally agree that this was a rant. But even though I didn&#8217;t read the *entire* Tantek interview, I believe I read enough to understand his point about why they were choosing to consider support for &#8220;-webkit-&#8221;.</p>
<p>Besides, I didn&#8217;t hide anything &#8212; I openly admitted that I hadn&#8217;t read the whole thing. So is there anything I misstated, or misrepresented?</p>
<p>You said:</p>
<p>&#8220;Keep writing and leave religion out of it.&#8221;</p>
<p>That&#8217;s exactly why the word &#8220;evangelism&#8221; should not be used in a web design or business context. :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
