<?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>Holy Shmoly! &#187; Development</title>
	<atom:link href="http://ocaoimh.ie/category/Development/feed/" rel="self" type="application/rss+xml" />
	<link>http://ocaoimh.ie</link>
	<description>Look what I found today!</description>
	<lastBuildDate>Fri, 25 May 2012 17:12:43 +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>Cannot load mysql extension. Please check your PHP configuration.</title>
		<link>http://ocaoimh.ie/2007/01/03/cannot-load-mysql-extension-please-check-your-php-configuration/</link>
		<comments>http://ocaoimh.ie/2007/01/03/cannot-load-mysql-extension-please-check-your-php-configuration/#comments</comments>
		<pubDate>Wed, 03 Jan 2007 14:37:21 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[irishblogs]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://ocaoimh.ie/2007/01/03/cannot-load-mysql-extension-please-check-your-php-configuration/</guid>
		<description><![CDATA[A friend recently had a problem configuring a new server. He installed PHP, Apache, MySQL and phpMyAdmin but when he launched it he got the following error: phpMyAdmin – Error Cannot load mysql extension. Please check your PHP configuration. If you&#8217;ve installed all of the above more than once you&#8217;ll know what is more than [...]]]></description>
			<content:encoded><![CDATA[<p>A friend recently had a problem configuring a new server. He installed PHP, Apache, MySQL and phpMyAdmin but when he launched it he got the following error:</p>
<blockquote><p>phpMyAdmin – Error<br />
Cannot load mysql extension. Please check your PHP configuration.</p></blockquote>
<p>If you&#8217;ve installed all of the above more than once you&#8217;ll know what is more than likely wrong. The MySQL PHP module isn&#8217;t loaded. First of all, you must find your php.ini. It could be anywhere but if you create a small php file with the <code>phpinfo();</code> command it will tell you where it is. Common places include /etc/apache/, /etc/php4/apache2/php.ini, /etc/php5/apache2/php.ini or even /usr/local/lib/php.ini</p>
<p>Edit your server&#8217;s php.ini and look for the following line. Remove the &#8216;;&#8217; from the start of the line and restart Apache. Things should work fine now!</p>
<blockquote><p>;extension=mysql.so</p></blockquote>
<p>should become</p>
<blockquote><p>extension=mysql.so</p></blockquote>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89492982" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2002/07/26/mysql-optimization-b/" rel="bookmark" title="Permanent Link: MySQL Optimization by Jeremy Z &#8230;">MySQL Optimization by Jeremy Z &#8230;</a></li><li> <a href="http://ocaoimh.ie/2004/02/11/obscure-firefox-references-and-features/" rel="bookmark" title="Permanent Link: Obscure Firefox References and Features">Obscure Firefox References and Features</a></li><li> <a href="http://ocaoimh.ie/2004/08/24/searching-with-php-and-mysql/" rel="bookmark" title="Permanent Link: Searching with PHP and MySQL">Searching with PHP and MySQL</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2007/01/03/cannot-load-mysql-extension-please-check-your-php-configuration/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>InnoDB: Starting shutdown&#8230;</title>
		<link>http://ocaoimh.ie/2006/03/07/innodb-starting-shutdown/</link>
		<comments>http://ocaoimh.ie/2006/03/07/innodb-starting-shutdown/#comments</comments>
		<pubDate>Tue, 07 Mar 2006 13:45:37 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/xeer/2006/03/07/innodb-starting-shutdown/</guid>
		<description><![CDATA[Calling all MySQL admins! When you&#8217;re working with InnoDB tables you may have noticed that MySQL takes an extraordinary amount of time to shutdown. Don&#8217;t panic! It&#8217;s normal. InnoDB has extensive logs that it must run through and if your server is at all busy these logs can be quite big. After you&#8217;ve started the [...]]]></description>
			<content:encoded><![CDATA[<p>Calling all MySQL admins! When you&#8217;re working with InnoDB tables you may have noticed that MySQL takes an extraordinary amount of time to shutdown. Don&#8217;t panic! It&#8217;s normal.<br />
InnoDB has extensive logs that it must run through and if your server is at all busy these <a href="http://dev.mysql.com/doc/refman/5.0/en/innodb-configuration.html">logs</a> can be quite big.<br />
After you&#8217;ve started the equivalent of &#8220;<code>/etc/init.d/mysql stop</code>&#8221; it may not return for quite a while. Simply open another terminal and examine the system log. On a Debian or Ubuntu box, look at /var/log/daemon.log and you&#8217;ll see the &#8220;InnoDB: Starting shutdown&#8230;&#8221; message.<br />
Now, go off and make a cup of tea because this could take a while. On a fairly large and busy  database it might be half an hour or more!<br />
Please, please, please don&#8217;t be tempted to <code>killall -9 mysqld</code> because bad things will happen! Even if your boss is looking over your shoulder, and you&#8217;ve promised that the company webserver will be online in 2 minutes, don&#8217;t do it.<br />
However, cases where it is ok to kill the database with a &#8220;kill -9&#8243;:
<ul>
<li> International terrorists are planning on robbing the World Bank and you&#8217;re the only secret agent who can bring down the database which will stop them.</li>
<li> Lassie will be run over by the evil farmer who plagued the local village with his monster cows unless you can corrupt his database in time.</li>
<li> Or finally, you like hard work and restoring from backups!</li>
</ul>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89492712" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2005/07/12/starting-a-business-in-ireland/" rel="bookmark" title="Permanent Link: Starting a Business in Ireland">Starting a Business in Ireland</a></li><li> <a href="http://ocaoimh.ie/2003/11/20/maxdb-again/" rel="bookmark" title="Permanent Link: MaxDB, again?">MaxDB, again?</a></li><li> <a href="http://ocaoimh.ie/2010/09/28/im-starting-to-get-into-the-campaign-i/" rel="bookmark" title="Permanent Link: I&#8217;m starting to get into the Campaign i&#8230;">I&#8217;m starting to get into the Campaign i&#8230;</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2006/03/07/innodb-starting-shutdown/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP Optimization and Security tips and rant</title>
		<link>http://ocaoimh.ie/2006/01/25/php-optimization-and-security-tips-and-rant/</link>
		<comments>http://ocaoimh.ie/2006/01/25/php-optimization-and-security-tips-and-rant/#comments</comments>
		<pubDate>Wed, 25 Jan 2006 09:42:22 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[irishblogs]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/xeer/2006/01/25/php-optimization-and-security-tips-and-rant/</guid>
		<description><![CDATA[Andrew van der Stock&#8217;s criticism of PHP&#8217;s security model. What security? Global request arrays go some way to making applications safer but there are obscure functions and settings which can trip up developers. (via) PHP Optimization Tricks from Ilia Alshanetsky has one gem I didn&#8217;t know about &#8211; the ctype extension. It&#8217;s somewhat limited but [...]]]></description>
			<content:encoded><![CDATA[<p>Andrew van der Stock&#8217;s <a href="http://www.greebo.net/?p=320">criticism</a> of PHP&#8217;s security model. What security? Global request arrays go some way to making applications safer but there are obscure functions and settings which can trip up developers. (<a href="http://www.phpdeveloper.org/news/4715">via</a>)<br />
<a href="http://ilia.ws/archives/12-PHP-Optimization-Tricks.html">PHP Optimization Tricks</a> from Ilia Alshanetsky has one gem I didn&#8217;t know about &#8211; the <a href="http://ie.php.net/ctype">ctype</a> extension. It&#8217;s somewhat limited but would be faster and less resouce intensive than a regular expression to do simple checks.</p>
<p>While I&#8217;m blogging development stuff, here&#8217;s <a href="http://phplens.com/phpeverywhere/?q=node/view/224">mention</a> of a <a href="http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm">vector drawing library</a> in Javascript!<br />
Yes, newer browsers have SVG support but this will work in older browsers and newer. Cute.</p>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89492691" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2002/07/26/mysql-optimization-b/" rel="bookmark" title="Permanent Link: MySQL Optimization by Jeremy Z &#8230;">MySQL Optimization by Jeremy Z &#8230;</a></li><li> <a href="http://ocaoimh.ie/2005/06/18/seo-for-the-newbies/" rel="bookmark" title="Permanent Link: SEO for the newbies">SEO for the newbies</a></li><li> <a href="http://ocaoimh.ie/2002/12/04/system-optimization/" rel="bookmark" title="Permanent Link: System Optimization Guide for  &#8230;">System Optimization Guide for  &#8230;</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2006/01/25/php-optimization-and-security-tips-and-rant/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2 for the developers</title>
		<link>http://ocaoimh.ie/2006/01/17/2-for-the-developers/</link>
		<comments>http://ocaoimh.ie/2006/01/17/2-for-the-developers/#comments</comments>
		<pubDate>Tue, 17 Jan 2006 08:47:23 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[irishblogs]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular-expression]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/xeer/2006/01/17/2-for-the-developers/</guid>
		<description><![CDATA[2 links for the developers around here: Quick Lookup is an online dictionary of PHP,MySQL, Javascript and CSS commands and keywords. As of this moment, &#8220;55% ish of MySQL is done, JS is NOT finished yet&#8221; but it&#8217;s still useful if you haven&#8217;t got the PHP manual handy. Regular Expression Checker &#8211; regexes are an [...]]]></description>
			<content:encoded><![CDATA[<p>2 links for the developers around here:
<ul>
<li> <a href="http://ql.aonic.net/">Quick Lookup</a> is an online dictionary of PHP,MySQL, Javascript and CSS commands and keywords. As of this moment, &#8220;55% ish of MySQL is done, JS is NOT finished yet&#8221; but it&#8217;s still useful if you haven&#8217;t got the PHP manual handy.</li>
<li> <a href="http://www.rexv.org/">Regular Expression Checker</a> &#8211; regexes are an arcane science. Everyone needs all the help they can get when working with them! (<a href="http://weblogs.asp.net/pleloup/archive/2006/01/16/435588.aspx">via</a>)</li>
</ul>
<p><b>Later..</b> Here&#8217;s another <a href="http://redredmusic.com/brendon/rejax/">AJAX powered regular expression checker</a> via <a href="http://photomatt.net/">Matt</a>.</p>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89492683" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2002/03/26/php-developers-netwo/" rel="bookmark" title="Permanent Link: PHP Developers Netword is a ne &#8230;">PHP Developers Netword is a ne &#8230;</a></li><li> <a href="http://ocaoimh.ie/2003/01/13/slashdot-science-p/" rel="bookmark" title="Permanent Link: Slashdot &#124; Science Project Qua &#8230;">Slashdot &#124; Science Project Qua &#8230;</a></li><li> <a href="http://ocaoimh.ie/2009/11/03/wp-super-cache-developer-documentation/" rel="bookmark" title="Permanent Link: WP Super Cache Developer Documentation">WP Super Cache Developer Documentation</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2006/01/17/2-for-the-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Injection Attacks by Example</title>
		<link>http://ocaoimh.ie/2005/10/11/sql-injection-attacks-by-example/</link>
		<comments>http://ocaoimh.ie/2005/10/11/sql-injection-attacks-by-example/#comments</comments>
		<pubDate>Tue, 11 Oct 2005 09:16:04 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/xeer/2005/10/11/sql-injection-attacks-by-example/</guid>
		<description><![CDATA[Ever wondered how some of your favourite apps get hacked and broken into? This page lists lots of examples of database &#8220;injections&#8221;. Like an injection you get off your doctor these bits of code inject database code into your application. The code can do anything &#8211; delete all your data, grab your passwords, or anything. [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how some of your favourite apps get hacked and broken into? This page lists <a href="http://www.unixwiz.net/techtips/sql-injection.html">lots of examples</a> of database &#8220;injections&#8221;.<br />
Like an injection you get off your doctor these bits of code inject database code into your application. The code can do anything &#8211; delete all your data, grab your passwords, or anything.</p>
<p>And if it happens to you, a nice doctor isn&#8217;t going to give you a lollipop.</p>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89492620" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2002/03/19/foregone-conclusion/" rel="bookmark" title="Permanent Link: FOREGONE CONCLUSION: The Japan &#8230;">FOREGONE CONCLUSION: The Japan &#8230;</a></li><li> <a href="http://ocaoimh.ie/2002/06/21/just-back-from-the-d/" rel="bookmark" title="Permanent Link: Just back from the dentist. &#039;s &#8230;">Just back from the dentist. &#039;s &#8230;</a></li><li> <a href="http://ocaoimh.ie/2003/04/08/teeth-teeth-teeth/" rel="bookmark" title="Permanent Link: Teeth, teeth, teeth..">Teeth, teeth, teeth..</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2005/10/11/sql-injection-attacks-by-example/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Behaviour : Using CSS selectors to apply Javascript behaviours</title>
		<link>http://ocaoimh.ie/2005/06/27/behaviour-using-css-selectors-to-apply-javascript-behaviours/</link>
		<comments>http://ocaoimh.ie/2005/06/27/behaviour-using-css-selectors-to-apply-javascript-behaviours/#comments</comments>
		<pubDate>Mon, 27 Jun 2005 16:05:33 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/xeer/2005/06/27/behaviour-using-css-selectors-to-apply-javascript-behaviours/</guid>
		<description><![CDATA[Lurvely! This is a very neat method for removing Javascript from html pages! Embed it in the CSS! (sort of!) He has a couple of examples on his page, and it looks easy enough in principle. The devil&#8217;s in the details don&#8217;t you know but it looks like it&#8217;s worth trying! He&#8217;s a busy beaver [...]]]></description>
			<content:encoded><![CDATA[<p>Lurvely! This is a very neat <a href="http://www.ripcord.co.nz/behaviour/">method</a> for removing Javascript from html pages! Embed it in the CSS! (sort of!)<br />
He has a couple of examples on his page, and it looks easy enough in principle. The devil&#8217;s in the details don&#8217;t you know but it looks like it&#8217;s worth trying!<br />
He&#8217;s a busy beaver too.. he has an <a href="http://ripcord.co.nz/biscuit/forum/?controller=forum&amp;action=index">MVC framework</a> and <a href="http://ripcord.co.nz/biscuit/tutorial.html">tutorial</a> that steps you through an example.</p>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89492262" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2004/11/05/building-rich-dhtml-user-interfaces-revisited/" rel="bookmark" title="Permanent Link: Building Rich DHTML User Interfaces Revisited">Building Rich DHTML User Interfaces Revisited</a></li><li> <a href="http://ocaoimh.ie/2004/10/13/javascript-rpc-xmlhttprequest/" rel="bookmark" title="Permanent Link: Javascript RPC &#8211; XMLHttpRequest">Javascript RPC &#8211; XMLHttpRequest</a></li><li> <a href="http://ocaoimh.ie/2004/02/19/css-drop-down-menus-redux/" rel="bookmark" title="Permanent Link: CSS Drop Down Menus, redux">CSS Drop Down Menus, redux</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2005/06/27/behaviour-using-css-selectors-to-apply-javascript-behaviours/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Use Design Patterns</title>
		<link>http://ocaoimh.ie/2005/05/24/how-to-use-design-patterns/</link>
		<comments>http://ocaoimh.ie/2005/05/24/how-to-use-design-patterns/#comments</comments>
		<pubDate>Tue, 24 May 2005 15:48:24 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[Asides]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[design-patterns]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/xeer/2005/05/24/how-to-use-design-patterns/</guid>
		<description><![CDATA[How to Use Design Patterns Among developers, design patterns are a popular way to think about design, but what is the proper way to think about design patterns? In this interview, Erich Gamma, co-author of the landmark book, Design Patterns, talks with Bill Venners about the right way to think about and use design patterns. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.artima.com/lejava/articles/gammadp.html">How to Use Design Patterns</a></p>
<blockquote><p>Among developers, design patterns are a popular way to think about design, but what is the proper way to think about design patterns? In this interview, Erich Gamma, co-author of the landmark book, Design Patterns, talks with Bill Venners about the right way to think about and use design patterns. </p></blockquote>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89492160" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2006/07/24/five-common-php-design-patterns/" rel="bookmark" title="Permanent Link: Five common PHP design patterns">Five common PHP design patterns</a></li><li> <a href="http://ocaoimh.ie/2003/05/19/introduction-to-design-patterns-using-php/" rel="bookmark" title="Permanent Link: Introduction to Design Patterns Using PHP">Introduction to Design Patterns Using PHP</a></li><li> <a href="http://ocaoimh.ie/2003/01/11/a-survey-of-common-d/" rel="bookmark" title="Permanent Link: A Survey of Common Design Patt &#8230;">A Survey of Common Design Patt &#8230;</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2005/05/24/how-to-use-design-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joel on Software &#8211; Making Wrong Code Look Wrong</title>
		<link>http://ocaoimh.ie/2005/05/23/joel-on-software-making-wrong-code-look-wrong/</link>
		<comments>http://ocaoimh.ie/2005/05/23/joel-on-software-making-wrong-code-look-wrong/#comments</comments>
		<pubDate>Mon, 23 May 2005 16:15:17 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/xeer/2005/05/23/joel-on-software-making-wrong-code-look-wrong/</guid>
		<description><![CDATA[Making Wrong Code Look Wrong &#8211; I was away for 2 weeks, catching up on email only now! Related Posts Joel on Software &#8211; The Law of &#8230; Joel on Software &#8211; Lord Palmer &#8230; Joel on Software &#8211; New Server &#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.joelonsoftware.com/articles/Wrong.html">Making Wrong Code Look Wrong</a> &#8211; I was away for 2 weeks, catching up on email only now!</p>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89492157" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2002/11/12/joel-on-software-t/" rel="bookmark" title="Permanent Link: Joel on Software &#8211; The Law of  &#8230;">Joel on Software &#8211; The Law of  &#8230;</a></li><li> <a href="http://ocaoimh.ie/2002/12/12/joel-on-software-l/" rel="bookmark" title="Permanent Link: Joel on Software &#8211; Lord Palmer &#8230;">Joel on Software &#8211; Lord Palmer &#8230;</a></li><li> <a href="http://ocaoimh.ie/2003/02/05/joel-on-software-n/" rel="bookmark" title="Permanent Link: Joel on Software &#8211; New Server  &#8230;">Joel on Software &#8211; New Server  &#8230;</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2005/05/23/joel-on-software-making-wrong-code-look-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignore details early on</title>
		<link>http://ocaoimh.ie/2005/04/15/ignore-details-early-on/</link>
		<comments>http://ocaoimh.ie/2005/04/15/ignore-details-early-on/#comments</comments>
		<pubDate>Fri, 15 Apr 2005 13:37:05 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[37signals]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/xeer/2005/04/15/ignore-details-early-on/</guid>
		<description><![CDATA[Oh, this is so true! We’re crazy about the details. We love the details. The space between objects. The perfect type leading. The perfect color. The perfect words. 4 lines of code instead of 7. The perfect flow. 90% vs 89%. 760px vs 750px. $39/month vs. $49/month. Success and satisfaction is in the details. However, [...]]]></description>
			<content:encoded><![CDATA[<p>Oh, <a href="http://37signals.com/svn/archives2/2005/04/getting_real_ig.php">this</a> is so true!</p>
<blockquote><p>We’re crazy about the details. We love the details. The space between objects. The perfect type leading. The perfect color. The perfect words. 4 lines of code instead of 7. The perfect flow. 90% vs 89%. 760px vs 750px. $39/month vs. $49/month. Success and satisfaction is in the details.</p>
<p>However, success isn’t the only thing you’ll find in the details. You’ll also find fixation, stagnation, disagreement, meetings, and delays. These poison projects. These are the things that kill morale (and if morale is low, your chance of success is even lower). You want to avoid these at all costs. If you procrastinate, procrastinate the details.</p></blockquote>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89492056" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2003/09/01/microsoft-interview/" rel="bookmark" title="Permanent Link: Microsoft Interview..">Microsoft Interview..</a></li><li> <a href="http://ocaoimh.ie/2005/05/24/how-to-become-an-early-riser/" rel="bookmark" title="Permanent Link: How to Become an Early Riser">How to Become an Early Riser</a></li><li> <a href="http://ocaoimh.ie/2008/10/30/more-blog-details-from-google-reader/" rel="bookmark" title="Permanent Link: More blog details from Google Reader">More blog details from Google Reader</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2005/04/15/ignore-details-early-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing the Developer</title>
		<link>http://ocaoimh.ie/2005/03/15/testing-the-developer/</link>
		<comments>http://ocaoimh.ie/2005/03/15/testing-the-developer/#comments</comments>
		<pubDate>Tue, 15 Mar 2005 14:30:55 +0000</pubDate>
		<dc:creator>Donncha O Caoimh</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://blogs.linux.ie/xeer/2005/03/15/testing-the-developer/</guid>
		<description><![CDATA[Usability testing can be daunting and goes overlooked in the rush to get things out the door, but it&#8217;s important, if somewhat hard on the egos of developers when their super-duper ideas are torn down and trodden on! See the great comic too! hehe. Related Posts SCO &#8211; modem configuration PHP News Sites BF3: Grand [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ok-cancel.com/article/2005/03/testing-the-developer.html">Usability testing</a> can be daunting and goes overlooked in the rush to get things out the door, but it&#8217;s important, if somewhat hard on the egos of developers when their super-duper ideas are torn down and trodden on!<br />
See the great <a href="http://www.ok-cancel.com/strips/OKCancel20050311.gif">comic</a> too! hehe.</p>
 <img src="http://ocaoimh.ie/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=89491943" width="1" height="1" style="display: none;" />
<p><strong>Related Posts</strong><ul><li> <a href="http://ocaoimh.ie/2003/05/01/sco-modem-configuration/" rel="bookmark" title="Permanent Link: SCO &#8211; modem configuration">SCO &#8211; modem configuration</a></li><li> <a href="http://ocaoimh.ie/2003/02/27/php-news-sites/" rel="bookmark" title="Permanent Link: PHP News Sites">PHP News Sites</a></li><li> <a href="http://ocaoimh.ie/2011/10/07/bf3-grand-bazaar-and-operation-firestorm-footage/" rel="bookmark" title="Permanent Link: BF3: Grand Bazaar and Operation Firestorm Footage">BF3: Grand Bazaar and Operation Firestorm Footage</a></li></ul></p>]]></content:encoded>
			<wfw:commentRss>http://ocaoimh.ie/2005/03/15/testing-the-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

