<?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 frontendbook</title>
	<atom:link href="http://frontendbook.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://frontendbook.com</link>
	<description>UX, Mobile, Web and Product Development</description>
	<lastBuildDate>Sat, 17 Dec 2011 10:07: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 Redirect www to non-www on nginx by mattias</title>
		<link>http://frontendbook.com/redirect-www-to-non-www-on-nginx#comment-31344</link>
		<dc:creator>mattias</dc:creator>
		<pubDate>Sat, 17 Dec 2011 10:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=516#comment-31344</guid>
		<description>Updated article with updated info from the Nginx team about common pitfalls in nginx configs.</description>
		<content:encoded><![CDATA[<p>Updated article with updated info from the Nginx team about common pitfalls in nginx configs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Form Validation as Smarty Plugins by coders</title>
		<link>http://frontendbook.com/jquery-form-validation-as-smarty-plugins#comment-31005</link>
		<dc:creator>coders</dc:creator>
		<pubDate>Tue, 13 Dec 2011 05:11:10 +0000</pubDate>
		<guid isPermaLink="false">http://hising.dreamhosters.com/?p=51#comment-31005</guid>
		<description>Thanks for sharing. check out my site http://codershelpdesk.com/tag/jquery-form-validation/</description>
		<content:encoded><![CDATA[<p>Thanks for sharing. check out my site <a href="http://codershelpdesk.com/tag/jquery-form-validation/" rel="nofollow">http://codershelpdesk.com/tag/jquery-form-validation/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redirect www to non-www on nginx by Johan Bergström</title>
		<link>http://frontendbook.com/redirect-www-to-non-www-on-nginx#comment-29219</link>
		<dc:creator>Johan Bergström</dc:creator>
		<pubDate>Sun, 20 Nov 2011 08:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=516#comment-29219</guid>
		<description>Well, it is a regex match and should be avoided if possible. It will most likely go un-noticed in your graphs. Bad practices are still bad practice :)</description>
		<content:encoded><![CDATA[<p>Well, it is a regex match and should be avoided if possible. It will most likely go un-noticed in your graphs. Bad practices are still bad practice <img src='http://frontendbook.com/wp3/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redirect www to non-www on nginx by mattias</title>
		<link>http://frontendbook.com/redirect-www-to-non-www-on-nginx#comment-26714</link>
		<dc:creator>mattias</dc:creator>
		<pubDate>Sun, 23 Oct 2011 20:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=516#comment-26714</guid>
		<description>OK, thanks, will look into it. Is the $host lookup very expensive compared to having an extra server set in the config?</description>
		<content:encoded><![CDATA[<p>OK, thanks, will look into it. Is the $host lookup very expensive compared to having an extra server set in the config?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get started on HTML5 by Shubham</title>
		<link>http://frontendbook.com/how-to-get-started-on-html5#comment-26636</link>
		<dc:creator>Shubham</dc:creator>
		<pubDate>Sun, 23 Oct 2011 09:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=485#comment-26636</guid>
		<description>That&#039;s a very good guide to start on with html5. Well I have been in love with Dive into html5 chapters. well html5 rocks was new to me.. thanks :)</description>
		<content:encoded><![CDATA[<p>That&#8217;s a very good guide to start on with html5. Well I have been in love with Dive into html5 chapters. well html5 rocks was new to me.. thanks <img src='http://frontendbook.com/wp3/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Redirect www to non-www on nginx by Johan Bergström</title>
		<link>http://frontendbook.com/redirect-www-to-non-www-on-nginx#comment-25160</link>
		<dc:creator>Johan Bergström</dc:creator>
		<pubDate>Thu, 13 Oct 2011 18:17:38 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=516#comment-25160</guid>
		<description>You generally want to avoid this approach since it makes nginx evaluate $host on every request. Set up a different server scope in style with:
&lt;code&gt;
server {
  listen :80;
  server_name www.domain.com

  rewrite ^(.*)$  http://domain.com$1 permanent;
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>You generally want to avoid this approach since it makes nginx evaluate $host on every request. Set up a different server scope in style with:<br />
<code><br />
server {<br />
  listen :80;<br />
  server_name <a href="http://www.domain.com" rel="nofollow">http://www.domain.com</a></p>
<p>  rewrite ^(.*)$  <a href="http://domain.com$1" rel="nofollow">http://domain.com$1</a> permanent;<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Action is the Killer App by Madelyn Griffith-Haynie, MCC, SCAC</title>
		<link>http://frontendbook.com/action-is-the-killer-app#comment-19243</link>
		<dc:creator>Madelyn Griffith-Haynie, MCC, SCAC</dc:creator>
		<pubDate>Mon, 01 Aug 2011 21:54:27 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=524#comment-19243</guid>
		<description>As a coaching pioneer and co-founder of the ADD Coaching field (and NOT an IT anything for several decades now) -- and even though I understand WHY the fit is there -- it is still incredible to see the degree of overlap between the two fields whenever I run across a great post like this one.

Some &quot;IT geeks,&quot; like you (and like I was) are excellent self-observers and have figured out what&#039;s going on, so we have &quot;instinctively&quot; developed work-arounds.  Some of us even have life together enough (or NEED a break badly enough!) to take the time to share our techniques, along with the writing talent to make it engaging.  Others utilize hyperfocus (whether they realize it or not) to stay on the get-the-job-done treadmill, but non-work life suffers for it.  THEN there are those who are brilliant coders, etc, with amazing ideas that stay in the realm of ideas alone.  They bounce from project to project or job to job, clue-free about why they are struggling. Few make the link between ONGOING ACTION in BABY STEPs to actuation of GOALs  -- that you illuminate so well here.  REALLY good job!

Check out my blogsite to see how you&#039;d feel about an article swap or two (CONTENT, not web-tech - *my* current struggle ::groan::).  In any case, I would love your permission to repost this - with an inbound link, &lt;i&gt;but of course!&lt;/i&gt;

And last, &lt;i&gt;but certainly NOT least&lt;/i&gt;, - your site design is unusually ADD-friendly for a techie - were you aware of that?
xx,
mgh (Madelyn Griffith-Haynie, blogging at ADDandSoMuchMore and ADDerWorld - dot com!)</description>
		<content:encoded><![CDATA[<p>As a coaching pioneer and co-founder of the ADD Coaching field (and NOT an IT anything for several decades now) &#8212; and even though I understand WHY the fit is there &#8212; it is still incredible to see the degree of overlap between the two fields whenever I run across a great post like this one.</p>
<p>Some &#8220;IT geeks,&#8221; like you (and like I was) are excellent self-observers and have figured out what&#8217;s going on, so we have &#8220;instinctively&#8221; developed work-arounds.  Some of us even have life together enough (or NEED a break badly enough!) to take the time to share our techniques, along with the writing talent to make it engaging.  Others utilize hyperfocus (whether they realize it or not) to stay on the get-the-job-done treadmill, but non-work life suffers for it.  THEN there are those who are brilliant coders, etc, with amazing ideas that stay in the realm of ideas alone.  They bounce from project to project or job to job, clue-free about why they are struggling. Few make the link between ONGOING ACTION in BABY STEPs to actuation of GOALs  &#8212; that you illuminate so well here.  REALLY good job!</p>
<p>Check out my blogsite to see how you&#8217;d feel about an article swap or two (CONTENT, not web-tech &#8211; *my* current struggle ::groan::).  In any case, I would love your permission to repost this &#8211; with an inbound link, <i>but of course!</i></p>
<p>And last, <i>but certainly NOT least</i>, &#8211; your site design is unusually ADD-friendly for a techie &#8211; were you aware of that?<br />
xx,<br />
mgh (Madelyn Griffith-Haynie, blogging at ADDandSoMuchMore and ADDerWorld &#8211; dot com!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on If Developers Were To Try a Real Job &#8211; Carpenter by Niklas</title>
		<link>http://frontendbook.com/if-developers-were-to-try-a-real-job-carpenter#comment-14459</link>
		<dc:creator>Niklas</dc:creator>
		<pubDate>Thu, 09 Jun 2011 19:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=535#comment-14459</guid>
		<description>very funny post, and probably the most spot on description of the average developer I have read in a long time :-) 

Of course, at the other end of the spectrum you have the head of sales who wants the wall yesterday, regardless of quality and capacity, and no concern in the world can change that fact, even that wet old cardboard will do ... until the implications of reality become clear, and then.. &quot;why didn&#039;t anyone tell me?&quot; 

Perhaps the best part is that you only know who was right when looking back at it from a safe distance :-)</description>
		<content:encoded><![CDATA[<p>very funny post, and probably the most spot on description of the average developer I have read in a long time <img src='http://frontendbook.com/wp3/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>Of course, at the other end of the spectrum you have the head of sales who wants the wall yesterday, regardless of quality and capacity, and no concern in the world can change that fact, even that wet old cardboard will do &#8230; until the implications of reality become clear, and then.. &#8220;why didn&#8217;t anyone tell me?&#8221; </p>
<p>Perhaps the best part is that you only know who was right when looking back at it from a safe distance <img src='http://frontendbook.com/wp3/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Action is the Killer App by Dennis Hettema</title>
		<link>http://frontendbook.com/action-is-the-killer-app#comment-13740</link>
		<dc:creator>Dennis Hettema</dc:creator>
		<pubDate>Thu, 26 May 2011 04:50:58 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=524#comment-13740</guid>
		<description>Amen dude, couldn&#039;t have said it any better.</description>
		<content:encoded><![CDATA[<p>Amen dude, couldn&#8217;t have said it any better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on TextMate and Transmit 4 Settings by Scale</title>
		<link>http://frontendbook.com/textmate-and-transmit-4-settings#comment-13485</link>
		<dc:creator>Scale</dc:creator>
		<pubDate>Wed, 18 May 2011 16:25:26 +0000</pubDate>
		<guid isPermaLink="false">http://frontendbook.com/?p=449#comment-13485</guid>
		<description>Would love to have the key command back for &quot;Edit in external editor&quot; as well.</description>
		<content:encoded><![CDATA[<p>Would love to have the key command back for &#8220;Edit in external editor&#8221; as well.</p>
]]></content:encoded>
	</item>
</channel>
</rss>


