<?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 on: Making Your Code as Beautiful as the Design Itself</title>
	<atom:link href="http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/feed/" rel="self" type="application/rss+xml" />
	<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/</link>
	<description>The Blog For Freelancers And Web-Workers</description>
	<lastBuildDate>Mon, 13 Feb 2012 09:25:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Antone Masincup</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-77289</link>
		<dc:creator>Antone Masincup</dc:creator>
		<pubDate>Tue, 24 Jan 2012 12:12:06 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-77289</guid>
		<description>Someone necessarily lend a hand to make severely articles I&#039;d state. That is the very first time I frequented your web page and up to now? I amazed with the research you made to create this particular submit extraordinary. Magnificent task!</description>
		<content:encoded><![CDATA[<p>Someone necessarily lend a hand to make severely articles I&#8217;d state. That is the very first time I frequented your web page and up to now? I amazed with the research you made to create this particular submit extraordinary. Magnificent task!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Calvin Murrill</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-65337</link>
		<dc:creator>Calvin Murrill</dc:creator>
		<pubDate>Thu, 19 May 2011 15:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-65337</guid>
		<description>Hey are using Wordpress for your site platform? I&#039;m new to the blog world but I&#039;m trying to get started and create my own. Do you need any coding knowledge to make your own blog? Any help would be really appreciated!</description>
		<content:encoded><![CDATA[<p>Hey are using WordPress for your site platform? I&#8217;m new to the blog world but I&#8217;m trying to get started and create my own. Do you need any coding knowledge to make your own blog? Any help would be really appreciated!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cheap printing</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-57652</link>
		<dc:creator>cheap printing</dc:creator>
		<pubDate>Mon, 27 Dec 2010 11:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-57652</guid>
		<description>it is widely accepted that clean code is good for everyone, for developers and for those who need to edit the site and indeed for the SE&#039;s.</description>
		<content:encoded><![CDATA[<p>it is widely accepted that clean code is good for everyone, for developers and for those who need to edit the site and indeed for the SE&#8217;s.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Search Freelance Projects &#187; Blog Archive &#187; Making the Most Out of Unconferences</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-56142</link>
		<dc:creator>Search Freelance Projects &#187; Blog Archive &#187; Making the Most Out of Unconferences</dc:creator>
		<pubDate>Tue, 07 Dec 2010 05:54:17 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-56142</guid>
		<description>[...] Making Your Code as Beautiful as the Design Itself [...]</description>
		<content:encoded><![CDATA[<p>[...] Making Your Code as Beautiful as the Design Itself [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-50973</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Sun, 12 Sep 2010 14:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-50973</guid>
		<description>We use multi-line for CSS most of the time for legibility, but for a high traffic site where every KB counts, minifying is definitely worth doing.</description>
		<content:encoded><![CDATA[<p>We use multi-line for CSS most of the time for legibility, but for a high traffic site where every KB counts, minifying is definitely worth doing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: richard</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-40284</link>
		<dc:creator>richard</dc:creator>
		<pubDate>Mon, 15 Mar 2010 00:12:01 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-40284</guid>
		<description>I personally hate CSS code all in one line. Sure it saves on space but it&#039;s so much clearer to have one indented line per CSS attribute, I also label sections of my CSS with labels corresponding to the HTML layout:

/*sidebar-start*/

#name {
     attribute:1;
     attribute:2;
     attribute:3 4;
}

/*sidebar-end*/

/*footer-start*/

...etc

Another tip I always use after several headaches involving unclosed divs, is I label every closing div with what it&#039;s closing as a comment, for example:


...
&lt;!--/div name--&gt;</description>
		<content:encoded><![CDATA[<p>I personally hate CSS code all in one line. Sure it saves on space but it&#8217;s so much clearer to have one indented line per CSS attribute, I also label sections of my CSS with labels corresponding to the HTML layout:</p>
<p>/*sidebar-start*/</p>
<p>#name {<br />
     attribute:1;<br />
     attribute:2;<br />
     attribute:3 4;<br />
}</p>
<p>/*sidebar-end*/</p>
<p>/*footer-start*/</p>
<p>&#8230;etc</p>
<p>Another tip I always use after several headaches involving unclosed divs, is I label every closing div with what it&#8217;s closing as a comment, for example:</p>
<p>&#8230;<br />
<!--/div name--></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Belinda</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-40073</link>
		<dc:creator>Belinda</dc:creator>
		<pubDate>Thu, 11 Mar 2010 04:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-40073</guid>
		<description>I&#039;m not sure why I do this, but I tend to have multi line css for the majority of elements, but single line for things like link properties. I guess it&#039;s just a habit... Weird!</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure why I do this, but I tend to have multi line css for the majority of elements, but single line for things like link properties. I guess it&#8217;s just a habit&#8230; Weird!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Around the WordPress Community: CSS3 Tips and Techniques &#124; WordCast - BBlogging news, Blogging podcasts, WordPress podcasts, WordPress plugins, WordPress themes, WordPress news</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-40011</link>
		<dc:creator>Around the WordPress Community: CSS3 Tips and Techniques &#124; WordCast - BBlogging news, Blogging podcasts, WordPress podcasts, WordPress plugins, WordPress themes, WordPress news</dc:creator>
		<pubDate>Wed, 10 Mar 2010 12:21:33 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-40011</guid>
		<description>[...] Making Your Code as Beautiful as the Design Itself &#8211; FreelanceFolder &#8211; Amber Weinberg reminds us that code needs to be as beautiful as the web design you produce and gives us the reasons why. Just in case you forgot or needed a gentle reminding that code matters. [...]</description>
		<content:encoded><![CDATA[<p>[...] Making Your Code as Beautiful as the Design Itself &#8211; FreelanceFolder &#8211; Amber Weinberg reminds us that code needs to be as beautiful as the web design you produce and gives us the reasons why. Just in case you forgot or needed a gentle reminding that code matters. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jorde Vorstenbosch</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-39951</link>
		<dc:creator>Jorde Vorstenbosch</dc:creator>
		<pubDate>Tue, 09 Mar 2010 13:57:12 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-39951</guid>
		<description>I’m not saying ignore it completely, and for big teams you need some coding practices that everyone can adhere to in case someone else needs to take on your work. I’ve had that experience at first hand and know what a pain it is to take on work from someone else when everyone is doing their own thing. I’m not trying to be ignorant, and I’m not sure I was, I’m just saying I would prefer to spend my time on other things, that make users lives easier. I’d rather have a website or app that people found useful, than a website or app that was awesome code wise but nobody found useful.

@Chris, I guess I read your message the wrong way then. Because I agree with you on that, it&#039;s the user&#039;s experience with the application that actually counts. Not how you programmed it. Of course the way you programmed it does account for 90% on responsiveness, stability etc.

I would also love to spend time to make everything look and work as good as possible, however time = money, and money isn&#039;t something you can endlessly spend, especially when it&#039;s not your own money and the supplier (client) does not agree with you.

So yes the focus should be on the user experience.

@Lucideer thanks for you input, it&#039;s just something I don&#039;t like using because my blocks of code normally range between 25-150 lines, with exceptions both ways. (leaving comments out of it btw). And I must admit I throw in one-liners myself here and there because the readability and editbility (new word?) goes up when using them where possible, especially if you got a switch-case block with cases being particularly small. 

switch{
.....case(condition){ statements; }
.....case(condition){ statements; }
.....case(condition){ statements; }
}

makes the block of code easier to read of course. Because you can easily compare them.

On a side-note: Working with someone else&#039;s code is a pain in the *rse T-T (Which I unfortunately have to do way too much, bad written programs freak me out so much, I always end up rewriting most because it&#039;s slow, not practical and often just plain wrong for the situation)

Kudos for you clearing a few things up Chris.</description>
		<content:encoded><![CDATA[<p>I’m not saying ignore it completely, and for big teams you need some coding practices that everyone can adhere to in case someone else needs to take on your work. I’ve had that experience at first hand and know what a pain it is to take on work from someone else when everyone is doing their own thing. I’m not trying to be ignorant, and I’m not sure I was, I’m just saying I would prefer to spend my time on other things, that make users lives easier. I’d rather have a website or app that people found useful, than a website or app that was awesome code wise but nobody found useful.</p>
<p>@Chris, I guess I read your message the wrong way then. Because I agree with you on that, it&#8217;s the user&#8217;s experience with the application that actually counts. Not how you programmed it. Of course the way you programmed it does account for 90% on responsiveness, stability etc.</p>
<p>I would also love to spend time to make everything look and work as good as possible, however time = money, and money isn&#8217;t something you can endlessly spend, especially when it&#8217;s not your own money and the supplier (client) does not agree with you.</p>
<p>So yes the focus should be on the user experience.</p>
<p>@Lucideer thanks for you input, it&#8217;s just something I don&#8217;t like using because my blocks of code normally range between 25-150 lines, with exceptions both ways. (leaving comments out of it btw). And I must admit I throw in one-liners myself here and there because the readability and editbility (new word?) goes up when using them where possible, especially if you got a switch-case block with cases being particularly small. </p>
<p>switch{<br />
&#8230;..case(condition){ statements; }<br />
&#8230;..case(condition){ statements; }<br />
&#8230;..case(condition){ statements; }<br />
}</p>
<p>makes the block of code easier to read of course. Because you can easily compare them.</p>
<p>On a side-note: Working with someone else&#8217;s code is a pain in the *rse T-T (Which I unfortunately have to do way too much, bad written programs freak me out so much, I always end up rewriting most because it&#8217;s slow, not practical and often just plain wrong for the situation)</p>
<p>Kudos for you clearing a few things up Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Mahon</title>
		<link>http://freelancefolder.com/making-your-code-as-beautiful-as-the-design-itself/comment-page-2/#comment-39949</link>
		<dc:creator>Chris Mahon</dc:creator>
		<pubDate>Tue, 09 Mar 2010 13:39:37 +0000</pubDate>
		<guid isPermaLink="false">http://freelancefolder.com/?p=7748#comment-39949</guid>
		<description>@jorde I&#039;m not saying ignore it completely, and for big teams you need some coding practices that everyone can adhere to in case someone else needs to take on your work. I&#039;ve had that experience at first hand and know what a pain it is to take on work from someone else when everyone is doing their own thing. I&#039;m not trying to be ignorant, and I&#039;m not sure I was, I&#039;m just saying I would prefer to spend my time on other things, that make users lives easier. I&#039;d rather have a website or app that people found useful, than a website or app that was awesome code wise but nobody found useful.

@amber We should be spending time on the tiny design elements because that does have an impact on the experience for every person who comes to your website whether they notice it or not (could be subliminal recognition).  How you write your CSS or HTML in my opinion will not impact on the success or failure of a website though. I think if it meets the needs of the user, then how it is built becomes a bit of a mute point. I guess it depends on your target audience, but I&#039;d rather not spend time on how my CSS or HTML looks. I&#039;m not saying I don&#039;t have my own system, because I do, but I don&#039;t set myself extremely tight do&#039;s and dont&#039;s because I know I&#039;ll break them when I&#039;m pushed for time.</description>
		<content:encoded><![CDATA[<p>@jorde I&#8217;m not saying ignore it completely, and for big teams you need some coding practices that everyone can adhere to in case someone else needs to take on your work. I&#8217;ve had that experience at first hand and know what a pain it is to take on work from someone else when everyone is doing their own thing. I&#8217;m not trying to be ignorant, and I&#8217;m not sure I was, I&#8217;m just saying I would prefer to spend my time on other things, that make users lives easier. I&#8217;d rather have a website or app that people found useful, than a website or app that was awesome code wise but nobody found useful.</p>
<p>@amber We should be spending time on the tiny design elements because that does have an impact on the experience for every person who comes to your website whether they notice it or not (could be subliminal recognition).  How you write your CSS or HTML in my opinion will not impact on the success or failure of a website though. I think if it meets the needs of the user, then how it is built becomes a bit of a mute point. I guess it depends on your target audience, but I&#8217;d rather not spend time on how my CSS or HTML looks. I&#8217;m not saying I don&#8217;t have my own system, because I do, but I don&#8217;t set myself extremely tight do&#8217;s and dont&#8217;s because I know I&#8217;ll break them when I&#8217;m pushed for time.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

