<?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 Chris Bewick</title>
	<atom:link href="http://chrisbewick.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrisbewick.com/blog</link>
	<description>My contribution to the world wide web</description>
	<pubDate>Sat, 04 Feb 2012 13:27:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Backbone.js - Time for Something New by Chris Bewick</title>
		<link>http://chrisbewick.com/blog/inspiration/backbonejs-time-for-something-new/comment-page-1/#comment-10923</link>
		<dc:creator>Chris Bewick</dc:creator>
		<pubDate>Wed, 21 Dec 2011 10:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=592#comment-10923</guid>
		<description>Hey Jörn,

I definitely got the impression working with backbone that it was overkill for an app that's this simple. It took me considerably longer to build than it would have done to do the same thing in jQuery (which I have done many times before). But considering that it's a new and unfamiliar framework this was not surprising.

I am hoping that as I add more functionality to the demo app I will begin to appreciate the benefits of backbone and will be able to develop faster with it than without it... we shall see.

If not I can always start again and have a play with knockout!

Thanks for your tips around folder structure. I will look into it.

Merry Xmas!</description>
		<content:encoded><![CDATA[<p>Hey Jörn,</p>
<p>I definitely got the impression working with backbone that it was overkill for an app that&#8217;s this simple. It took me considerably longer to build than it would have done to do the same thing in jQuery (which I have done many times before). But considering that it&#8217;s a new and unfamiliar framework this was not surprising.</p>
<p>I am hoping that as I add more functionality to the demo app I will begin to appreciate the benefits of backbone and will be able to develop faster with it than without it&#8230; we shall see.</p>
<p>If not I can always start again and have a play with knockout!</p>
<p>Thanks for your tips around folder structure. I will look into it.</p>
<p>Merry Xmas!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Backbone.js - Time for Something New by Jörn Zaefferer</title>
		<link>http://chrisbewick.com/blog/inspiration/backbonejs-time-for-something-new/comment-page-1/#comment-10922</link>
		<dc:creator>Jörn Zaefferer</dc:creator>
		<pubDate>Wed, 21 Dec 2011 10:25:33 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=592#comment-10922</guid>
		<description>As an exercise, try rebuilding the same without most of the dependencies, keeping only jQuery and Bootstrap.There shouldn't be much of a difference in application code size.

Before you continue to extend it, move some files around. Structuring by extension is not useful, group by feature instead. Move dependencies into a vendor folder, helpers into a lib folder, feature specific files into an appropiate folder. Not much there yet, but once it starts growing, that'll help a lot with navigation. Templates, JS and CSS files should share a folder when they're related.</description>
		<content:encoded><![CDATA[<p>As an exercise, try rebuilding the same without most of the dependencies, keeping only jQuery and Bootstrap.There shouldn&#8217;t be much of a difference in application code size.</p>
<p>Before you continue to extend it, move some files around. Structuring by extension is not useful, group by feature instead. Move dependencies into a vendor folder, helpers into a lib folder, feature specific files into an appropiate folder. Not much there yet, but once it starts growing, that&#8217;ll help a lot with navigation. Templates, JS and CSS files should share a folder when they&#8217;re related.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generating double borders with CSS by Chris Bewick</title>
		<link>http://chrisbewick.com/blog/css/generating-double-borders-with-css/comment-page-1/#comment-10583</link>
		<dc:creator>Chris Bewick</dc:creator>
		<pubDate>Fri, 09 Dec 2011 11:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=192#comment-10583</guid>
		<description>Hey Ryan,

Thanks for your input. I have been meaning to update the post and mention that kind of technique for a while now. It is definitely a useful technique for some situations.

C</description>
		<content:encoded><![CDATA[<p>Hey Ryan,</p>
<p>Thanks for your input. I have been meaning to update the post and mention that kind of technique for a while now. It is definitely a useful technique for some situations.</p>
<p>C</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generating double borders with CSS by Ryan</title>
		<link>http://chrisbewick.com/blog/css/generating-double-borders-with-css/comment-page-1/#comment-10582</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Fri, 09 Dec 2011 10:57:07 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=192#comment-10582</guid>
		<description>Disregard that, I forgot about the z-index issue when you use :after and absolute positioning. So you won't be able to select text or click links.</description>
		<content:encoded><![CDATA[<p>Disregard that, I forgot about the z-index issue when you use :after and absolute positioning. So you won&#8217;t be able to select text or click links.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Generating double borders with CSS by Ryan</title>
		<link>http://chrisbewick.com/blog/css/generating-double-borders-with-css/comment-page-1/#comment-10581</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Fri, 09 Dec 2011 10:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=192#comment-10581</guid>
		<description>You can use the :after pseudo element to get it to work in IE8+ 

#myDiv2 {
	position: relative;
	background:#fff;
	padding:8px;
	border:3px solid #222;
}

#myDiv2:after {
	content: " ";
	display: block;
	position: absolute;
	top: -6px;
	left: -6px;
	bottom: -6px;
	right: -6px;
	border:3px solid #666;
}</description>
		<content:encoded><![CDATA[<p>You can use the :after pseudo element to get it to work in IE8+ </p>
<p>#myDiv2 {<br />
	position: relative;<br />
	background:#fff;<br />
	padding:8px;<br />
	border:3px solid #222;<br />
}</p>
<p>#myDiv2:after {<br />
	content: &#8221; &#8220;;<br />
	display: block;<br />
	position: absolute;<br />
	top: -6px;<br />
	left: -6px;<br />
	bottom: -6px;<br />
	right: -6px;<br />
	border:3px solid #666;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Node.js – Server-side JavaScript by Pete Duncanson</title>
		<link>http://chrisbewick.com/blog/inspiration/nodejs-server-side-javascript/comment-page-1/#comment-8298</link>
		<dc:creator>Pete Duncanson</dc:creator>
		<pubDate>Tue, 24 May 2011 13:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=561#comment-8298</guid>
		<description>I had the pleasure of attending the Nottingham course. Was a good day and got me up to speed on Node.js

Beers afterwards are a must of course :)</description>
		<content:encoded><![CDATA[<p>I had the pleasure of attending the Nottingham course. Was a good day and got me up to speed on Node.js</p>
<p>Beers afterwards are a must of course <img src='http://chrisbewick.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on If I could dribbble by Chris Bewick</title>
		<link>http://chrisbewick.com/blog/inspiration/if-i-could-dribbble/comment-page-1/#comment-4772</link>
		<dc:creator>Chris Bewick</dc:creator>
		<pubDate>Wed, 02 Jun 2010 16:34:11 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=413#comment-4772</guid>
		<description>Now on dribbble!

http://dribbble.com/players/Stompfrog</description>
		<content:encoded><![CDATA[<p>Now on dribbble!</p>
<p><a href="http://dribbble.com/players/Stompfrog" rel="nofollow">http://dribbble.com/players/Stompfrog</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on If I could dribbble by Chris Bewick</title>
		<link>http://chrisbewick.com/blog/inspiration/if-i-could-dribbble/comment-page-1/#comment-4740</link>
		<dc:creator>Chris Bewick</dc:creator>
		<pubDate>Thu, 27 May 2010 18:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=413#comment-4740</guid>
		<description>Thanks for the invite Andrew, I might just do that. 

C</description>
		<content:encoded><![CDATA[<p>Thanks for the invite Andrew, I might just do that. </p>
<p>C</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on If I could dribbble by Andrew</title>
		<link>http://chrisbewick.com/blog/inspiration/if-i-could-dribbble/comment-page-1/#comment-4739</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Thu, 27 May 2010 18:18:07 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=413#comment-4739</guid>
		<description>Chris,

Dribbble is elitist :)  Come join us at http://www.conceptfeedback.com - similar concept, open to the public and there are cool kids there too!

Andrew</description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>Dribbble is elitist <img src='http://chrisbewick.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Come join us at <a href="http://www.conceptfeedback.com" rel="nofollow">http://www.conceptfeedback.com</a> - similar concept, open to the public and there are cool kids there too!</p>
<p>Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Full Frontal 2009 - Back to Brighton by Goodnight 2009</title>
		<link>http://chrisbewick.com/blog/events/full-frontal-2009-back-to-brighton/comment-page-1/#comment-3470</link>
		<dc:creator>Goodnight 2009</dc:creator>
		<pubDate>Sun, 03 Jan 2010 11:27:53 +0000</pubDate>
		<guid isPermaLink="false">http://chrisbewick.com/blog/?p=371#comment-3470</guid>
		<description>[...] Full Frontal - our very own JavaScript conference, the idea stemming from a conversation during "snow day" in Feb 2009, where Julie and I sat in a pub and I complained that there should be a JavaScript conference. Come November we ran our own conference at the local indie cinema Duke of Yorks to my great pleasure it was a massive success. Pictures, my review, others: #1, #2, #3, #4, #5 [...]</description>
		<content:encoded><![CDATA[<p>[...] Full Frontal - our very own JavaScript conference, the idea stemming from a conversation during &#8220;snow day&#8221; in Feb 2009, where Julie and I sat in a pub and I complained that there should be a JavaScript conference. Come November we ran our own conference at the local indie cinema Duke of Yorks to my great pleasure it was a massive success. Pictures, my review, others: #1, #2, #3, #4, #5 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

