<?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>43nine</title>
	<atom:link href="http://43nine.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://43nine.com</link>
	<description>Web Design</description>
	<lastBuildDate>Sat, 12 May 2012 19:32:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>5 Free .PSD UI Elements for your Design!</title>
		<link>http://43nine.com/2012/5-free-psd-ui-elements-for-your-design/</link>
		<comments>http://43nine.com/2012/5-free-psd-ui-elements-for-your-design/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 01:04:09 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://43nine.com/?p=215</guid>
		<description><![CDATA[I&#8217;ve taken the liberty of compiling a nice list of some free UI elements that you can use in your designs. &#160; Chutzpah UI Design Kit Mimi Glyphs Icons Blaubarry Free UI Elements Bella UI Mac Lion UI PSD]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve taken the liberty of compiling a nice list of some free UI elements that you can use in your designs.</p>
<p>&nbsp;</p>
<h1 id="screenshot-title">Chutzpah UI Design Kit</h1>
<p><a href="http://drbl.in/KDT"><img class="alignnone" title="Free UI" src="http://dribbble.com/system/users/2645/screenshots/98897/shot_1294917999.jpg?1309877100" alt="" width="400" height="300" /></a></p>
<h2>Mimi Glyphs Icons</h2>
<p><a title="PSD Mimi Glyphs Icons" href="http://drbl.in/bLEW"><img class="alignnone" title="Free PSD UI" src="http://dribbble.com/system/users/29114/screenshots/242264/mimi_glyphs_dribbble.png?1313965112" alt="" width="400" height="300" /></a></p>
<h2>Blaubarry Free UI Elements</h2>
<p><a href="http://drbl.in/bxzF"><img class="alignnone" title="UI" src="http://dribbble.com/system/users/24025/screenshots/204131/blaubarry_shot2.png?1309969177" alt="" width="400" height="300" /></a></p>
<h2>Bella UI</h2>
<p><a title="Free PSD" href="http://drbl.in/cnHl"><img class="alignnone" title="Bella Free UI PSD" src="http://dribbble.com/system/users/71041/screenshots/318095/dribbble.png?1322264724" alt="" width="400" height="300" /></a></p>
<h2>Mac Lion UI PSD</h2>
<p><a href="http://drbl.in/bInh"><img class="alignnone" title="Mac Lion UI PSD Free" src="http://dribbble.com/system/users/487/screenshots/233227/lion-ui-kit-preview.png?1313029936" alt="" width="400" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://43nine.com/2012/5-free-psd-ui-elements-for-your-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When coding on your own&#8230;</title>
		<link>http://43nine.com/2012/when-coding-on-your-own/</link>
		<comments>http://43nine.com/2012/when-coding-on-your-own/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 23:01:11 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://43nine.com/?p=202</guid>
		<description><![CDATA[When I first started developing software, I know one of my biggest resources was the internet. The web is riddled with an amazing bank of knowledge and helpful tools that can help lessen the learning curve for programming languages. From popular development forums such as SitePoint or DigitalPoint (which is now useless), Pixel2Life, etc to [...]]]></description>
			<content:encoded><![CDATA[<p>When I first started developing software, I know one of my biggest resources was the internet. The web is riddled with an amazing bank of knowledge and helpful tools that can help lessen the learning curve for programming languages. From popular development forums such as SitePoint or DigitalPoint (which is now useless), Pixel2Life, etc to the online manuals published by the foundation in charge of handing and improving the respective programming language. There is, however, a few serious caveats to consider when dealing with internet resources (I&#8217;m starting to sound like my professors when they talk about Wikipedia!) but it&#8217;s important to not build bad habits, as they&#8217;re extremely difficult to break.</p>
<h1>1. Verifiability</h1>
<p>I can&#8217;t begin to tell you the amount of times that I&#8217;ve gone on Stack Exchange and grabbed a snippet of code, implemented it into my program, and set it loose only to find out that it didn&#8217;t do what I wanted it to! Getting lost in logic is incredibly easy, especially when you&#8217;ve got a dozen multidimensional arrays with obscure naming conventions and poor syntax. Which brings me to my second point&#8230;</p>
<h1>2. Consistency</h1>
<p>You&#8217;d be amazed at how many self-proclaimed coding gods out there! People will tell you (under the confidentiality of some clever moniker) that their code is superior, faster, and better written. You&#8217;ve got to learn a solid set of standards for yourself. It doesn&#8217;t matter if their code works, if you can&#8217;t read it, it does you no good. Imagine if they had 1 line of 1,000 characters of code. At first glance you&#8217;d think you need to run it through eval() only to find out they never spaced anything. Good luck finding the unexpected ; through that mess. Run it through a beautifier (again, beware of inconsistent results or broken code). Learn a set of standards, use documentation, and do it all the same. Every single time. I&#8217;m still working at becoming better at this practice.</p>
<h1>3. Efficiency</h1>
<p>Again, with the code jockeys that know everything about C decompilers and fancy shell scripts that can bring a server to its knees with the press of a key&#8230; they tell stories. They also tell stories about how well their code works. From getting in internet arguments about the difference in single quotes versus double quotes in PHP and the processing power associated with both of them. Okay, I admit it. I&#8217;ve participated in these arguments. But it shouldn&#8217;t be a contest at all! Learn to benchmark your code and you&#8217;ll save yourself a lot of time! Benchmarking takes seconds to implement and can save you HOURS of processing power on even a low trafficked website. You think the engineers at Facebook/Google/etc aren&#8217;t benchmarking every single line of code they push over to publishing? Of course.</p>
<p>That&#8217;s all for now&#8230; but I&#8217;ll add a few more later. Just remember, trust your judgement. If you&#8217;re relying on a snippet that&#8217;s 3 lines long that&#8217;s supposed to safely handle credit card processing, there&#8217;s something wrong. Or you&#8217;re damn good. Likely the former.</p>
<h1></h1>
]]></content:encoded>
			<wfw:commentRss>http://43nine.com/2012/when-coding-on-your-own/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting started in designing WordPress Themes</title>
		<link>http://43nine.com/2011/getting-started-in-designing-wordpress-themes/</link>
		<comments>http://43nine.com/2011/getting-started-in-designing-wordpress-themes/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 17:25:39 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://43nine.com/?p=182</guid>
		<description><![CDATA[Creating a theme for a CMS can be quite a daunting task. Forget reading through all of the documentation and trying to piece together something that isn&#8217;t semantic, just to have to fix it later. A starting point is something that many people need, and we&#8217;ve got the perfect one. ToolBox from Automattic  A semantic, [...]]]></description>
			<content:encoded><![CDATA[<p>Creating a theme for a CMS can be quite a daunting task. Forget reading through all of the documentation and trying to piece together something that isn&#8217;t semantic, just to have to fix it later. A starting point is something that many people need, and we&#8217;ve got the perfect one.</p>
<p><a href="http://wordpress.org/extend/themes/toolbox">ToolBox from Automattic </a></p>
<blockquote><p>A semantic, HTML5, canvas for CSS artists and an ultra-minimal set of super-clean templates for your own WordPress theme development.</p></blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://43nine.com/2011/getting-started-in-designing-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does design make startups successful?</title>
		<link>http://43nine.com/2011/does-design-make-startups-successful/</link>
		<comments>http://43nine.com/2011/does-design-make-startups-successful/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 14:21:57 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://43nine.com/?p=175</guid>
		<description><![CDATA[An interesting article on whether or not a web interface and its design practices bear any impact on the success of that particular startup. Personally, I agree that a well thought out design is critical to success. On a very rudimentary level, if you place a call to action in some obscure place , it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>An interesting article on whether or not a web interface and its design practices bear any impact on the success of that particular startup.</p>
<p>Personally, I agree that a well thought out design is critical to success. On a very rudimentary level, if you place a call to action in some obscure place , it&#8217;s not going to work well. If it&#8217;s above the centerfold, centrically placed where the user is bound to see it while following a natural flow of vision, it&#8217;s going to work much nicer. This can be exemplified all the way down to the microcopy, colors, and other pixel perfect details. If a design invokes happiness, I&#8217;m willing to bet conversions would be significantly better.</p>
<p>Here&#8217;s the original article: <a href="http://www.netmagazine.com/news/does-design-make-startups-successful-111666">http://www.netmagazine.com/news/does-design-make-startups-successful-111666</a></p>
]]></content:encoded>
			<wfw:commentRss>http://43nine.com/2011/does-design-make-startups-successful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://43nine.com/2011/hello-world/</link>
		<comments>http://43nine.com/2011/hello-world/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 14:22:20 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Journal]]></category>

		<guid isPermaLink="false">http://43nine.com/?p=1</guid>
		<description><![CDATA[Hey everyone, I plan on using this journal as a means of sharing industry news and keeping up on the latest developments. I&#8217;ll share everything from very technical pieces to simple tips and tricks for utilizing WordPress and other CMS&#8217;. Enjoy.]]></description>
			<content:encoded><![CDATA[<p>Hey everyone,</p>
<p>I plan on using this journal as a means of sharing industry news and keeping up on the latest developments. I&#8217;ll share everything from very technical pieces to simple tips and tricks for utilizing WordPress and other CMS&#8217;. Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://43nine.com/2011/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

