<?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>nickromney.com &#187; Computer</title>
	<atom:link href="http://www.nickromney.com/category/computer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nickromney.com</link>
	<description>Nick Romney's ramblings on technology, books and other stuff.</description>
	<lastBuildDate>Wed, 22 Jul 2009 14:51:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=6349</generator>
		<item>
		<title>WAMP setup on Win XP Pro</title>
		<link>http://www.nickromney.com/2005/02/26/wamp-setup-on-win-xp-pro/</link>
		<comments>http://www.nickromney.com/2005/02/26/wamp-setup-on-win-xp-pro/#comments</comments>
		<pubDate>Sat, 26 Feb 2005 10:50:42 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">//?p=</guid>
		<description><![CDATA[My web hosting package is LAMP (Linux, Apache, MySql, PHP4), but my laptop runs Windows XP. Here is how I got a WAMP (Windows, Apache, MySql, PHP) environment for development at home. <a href="http://www.nickromney.com/2005/02/26/wamp-setup-on-win-xp-pro/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My web hosting package is LAMP (Linux, Apache, MySql, PHP4), but my laptop runs Windows XP. Here is how I got a WAMP (Windows, Apache, MySql, PHP) environment for development at home.</p>
<p><span id="more-17"></span></p>
<p>Update: since I first wrote this, PHP5 has gone stable, so there are some useful instructions at <a href="http://www.webmasterworld.com/forum88/5212.htm">Webmasterworld</a>. My web hosting account still runs on PHP4, so the instructions below are still valid for replicating an environment like that:</p>
<p>To get a WAMP (Windows, Apache, MySql, PHP) environment working under Windows XP, this is what I did:</p>
<p>The instructions on <a href="www.gizmobytes.com/serverguide.php">gizmobytes</a> were good &#8211; here are my additions:</p>
<p>Get  <a href="http://apache.mirrors.versehost.com/httpd/binaries/win32/apache_2.0.53-win32-x86-no_ssl.msi">Apache 2.0.53</a></p>
<p>Change install directory to <em>C:\Apache2</em></p>
<p>Open a browser window. Type
<pre>http://localhost</pre>
<p> &#8211; and you should get the Apache Installation Test Page</p>
<p>Get <a href="http://www.php.net/get/php-4.3.10-Win32.zip/from/a/mirror">PHP 4.3.10</a></p>
<p>Unzip to <em>C:\PHP</em></p>
<p>Edit the <em>C:\Apache2\Apache2\conf\httpd.conf</em> file to support the php sapi file; display index.php for directories; </p>
<p>Run &#8220;Apache | Restart&#8221;</p>
<p>Create a text file &#8211; save as <em>C:\Apache2\Apache2\htdocs\phpinfo.php</em>, which should contain the following:</p>
<pre>
< ?
phpinfo();
?>
</pre>
<p>This will show that PHP is working with apache.</p>
<p>Download mySql from <a href="http://dev.mysql.com/get/Downloads/MySQL-4.1/mysql-essential-4.1.10-win32.msi/from/pick">mysql.com</a></p>
<p>Unzip and install to <em>C:\mysql</em></p>
<p>Save the enclosed file to C:\windows\my.ini</p>
<pre>
#This File was made using the WinMySQLAdmin 1.4 Tool
#21/12/2003 00:16:23

#Uncomment or Add only the keys that you know how works.
#Read the MySQL Manual for instructions

[mysqld]
basedir=C:/mysql
#bind-address=127.0.0.1
datadir=C:/mysql/data
#language=C:/mysql/share/your language directory
#slow query log#=
#tmpdir#=
#port=3306
#set-variable=key_buffer=16M
[WinMySQLadmin]
Server=C:/mysql/bin/mysqld-nt.exe
user=nick
password=newpass
</pre>
<p>Get PHPMyAdmin from <a href="http://prdownloads.sourceforge.net/phpmyadmin/phpMyAdmin-2.6.1-pl2.zip?download">sourceforge</a></p>
<p>Unzip it to <em>C:\Apache2\Apache2\htdocs\phpMyAdmin</em></p>
<p>Save the enclosed file to <em>C:\Apache2\Apache2\htdocs\phpMyAdmin\config.inc.php</em></p>
<p>From a browser, type:
<pre>http://localhost/phpMyAdmin</pre>
<p>You should see something like
<pre>MySQL 4.1.10-nt running on localhost as nick@localhost</pre>
<p>Save the following to <em>C:\Apache2\Apache2\htdocs\mysql\sqlconnect.php</em></p>
<p>In the browser, type:
<pre>http://localhost/mysql/sqlconnect.php</pre>
<p> &#8211; you should see a list of users in the browser window: i.e.&#8221;nick&#8221;, &#8220;root&#8221;.</p>
<p>Once this is all working, that should give you enough of a guide to add your own users etc. (suggest through phpmyadmin), and edit the scripts. Helpful apache and php fora (forums?) on <a href="http://www.webmasterworld.com">webmasterworld</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2005/02/26/wamp-setup-on-win-xp-pro/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox extensions</title>
		<link>http://www.nickromney.com/2005/02/24/firefox-extensions/</link>
		<comments>http://www.nickromney.com/2005/02/24/firefox-extensions/#comments</comments>
		<pubDate>Thu, 24 Feb 2005 13:07:46 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://www.nickromney.com/2005/02/24/firefox-extensions/</guid>
		<description><![CDATA[I&#8217;ve been using Mozilla&#8217;s Firefox browser for over a year now, and it&#8217;s my main browser. One of the key reasons is its extensibility, and here are the extensions I use (generated by the Listzilla extension): Enabled Extensions: (33) Adblock &#8230; <a href="http://www.nickromney.com/2005/02/24/firefox-extensions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Mozilla&#8217;s <a href="http://www.getfirefox.com">Firefox</a> browser for over a year now, and it&#8217;s my main browser. One of the key reasons is its extensibility, and here are the extensions I use (generated by the Listzilla extension):</p>
<p><span id="more-62"></span></p>
<p>Enabled Extensions: (33)</p>
<p>Adblock 0.5.2.039<br />
Alt-Text for Links 0.1.1<br />
AutoMarks 0.1<br />
Bible Toolbar 1.5.4<br />
Bookmarks Synchronizer 1.0.1<br />
ColorZilla 0.6.5<br />
ConQuery 1.5.2<br />
Copy Plain Text 0.2.1<br />
Disable Targets For Downloads 0.8<br />
downTHEMall! 0.9.4<br />
EditCSS 0.2.3<br />
Enigmail 0.89.5 for Thunderbird<br />
Ext2Abc 0.2.1<br />
fireFTP 0.87<br />
FoxyTunes 1.1<br />
Hotmail Tabs 0.9<br />
ieview 0.83<br />
Image Zoom 0.1.7<br />
ListZilla 0.5.1<br />
Mouse Gestures 1.0<br />
OpenBook 1.2.0<br />
Paste and Go 0.4.1<br />
Plain Text Links 0.2<br />
Resize Search Box 0.0.4<br />
ScrapBook 0.13.7<br />
Show Image 0.3<br />
Slashy 1.2.0<br />
TargetAlert 0.7.3<br />
Teleflip 0.1.1<br />
View Cookies 1.2<br />
Web Color Names 1.0.12<br />
Web Developer 0.8<br />
Word Count 0.1.1</p>
<p>Disabled Extensions: (2)<br />
ForecastFox 0.5.8<br />
Locale Switcher 0.3</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2005/02/24/firefox-extensions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mid-rank Nerd</title>
		<link>http://www.nickromney.com/2005/01/21/mid-rank-nerd/</link>
		<comments>http://www.nickromney.com/2005/01/21/mid-rank-nerd/#comments</comments>
		<pubDate>Sat, 22 Jan 2005 02:56:24 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.nickromney.com/2005/01/21/mid-rank-nerd/</guid>
		<description><![CDATA[Followed the link on Heal Your Church Website to take the Nerd Quiz. And here&#8217;s the result:]]></description>
			<content:encoded><![CDATA[<p>Followed the link on <a href="http://www.healyourchurchwebsite.com/archives/001415.php">Heal Your Church Website</a> to take the <a href="http://www.wxplotter.com/ft_nq.php">Nerd Quiz</a>. And here&#8217;s the result:</p>
<p><a href="http://www.wxplotter.com/ft_nq.php?im"><br />
<img src="http://www.wxplotter.com/images/ft/nq.php?val=5726" alt="I am nerdier than 75% of all people. Are you nerdier? Click here to find out!"> </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2005/01/21/mid-rank-nerd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Romney is a fraud</title>
		<link>http://www.nickromney.com/2004/10/06/fraud/</link>
		<comments>http://www.nickromney.com/2004/10/06/fraud/#comments</comments>
		<pubDate>Thu, 07 Oct 2004 04:26:04 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.nickromney.com/2004/10/06/fraud/</guid>
		<description><![CDATA[When updating this website caused me to re-install, I checked to see the Google rank of &#8220;Nick Romney&#8221;. I&#8217;m pleased to say that this site came up first. So, with my ego suitably stroked, I decided to do a little &#8230; <a href="http://www.nickromney.com/2004/10/06/fraud/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When updating this website caused me to re-install, I checked to see the Google rank of &#8220;Nick Romney&#8221;. I&#8217;m pleased to say that this site came up first. So, with my ego suitably stroked, I decided to do a little more <a href="http://www.microcontentnews.com/resources/glossary/egosurfing.htm">ego-surfing</a> to see where I ranked. I was vaguely aware of the <a href="http://www.emailyourgovernor.com/ma-governor.html">Massachusetts Governor Mitt Romney</a>, having seen a news report on him years ago, and the name stuck. However, in this election year, it seems as if every man and his dog has a blog, even one by the name of <a href="http://romneyisafraud.blogspot.com/">Romney is a fraud</a>. I haven&#8217;t read it extensively, but would like to confirm that I am 100% pure Nick Romney!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2004/10/06/fraud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quicktime to AVI</title>
		<link>http://www.nickromney.com/2004/03/19/quicktime-to-avi/</link>
		<comments>http://www.nickromney.com/2004/03/19/quicktime-to-avi/#comments</comments>
		<pubDate>Fri, 19 Mar 2004 05:18:14 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">//?p=</guid>
		<description><![CDATA[My Kodak digital camera captures up to 2 minutes of video, with sound. However, a 2-minute clip is 30 mb in Quicktime&#8217;s .mov format. In order to edit it (either for timing or file size), I could have bought QuickTime &#8230; <a href="http://www.nickromney.com/2004/03/19/quicktime-to-avi/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My Kodak digital camera captures up to 2 minutes of video, with sound. However, a 2-minute clip is 30 mb in Quicktime&#8217;s .mov format. In order to edit it (either for timing or file size), I could have bought QuickTime Pro, or do what I did, which was to find some free resources on the web.</p>
<p>The instructions on <a href="http://nickyguides.digital-digest.com/mov2avi.htm">Digital-digest.com</a> were excellent, and I now have a 5 mb .avi file. Lovely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2004/03/19/quicktime-to-avi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bookmarklets</title>
		<link>http://www.nickromney.com/2004/03/19/bookmarklets/</link>
		<comments>http://www.nickromney.com/2004/03/19/bookmarklets/#comments</comments>
		<pubDate>Thu, 18 Mar 2004 23:38:23 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Web standards]]></category>

		<guid isPermaLink="false">//?p=</guid>
		<description><![CDATA[Read Eric Meyer&#8217;s roundup on SXSW 2004, and find that I too am a person mentioned in his SXSQ04i Wrap-Up: in that I hadn&#8217;t come across bookmarklets / favelets. Am pleased to say that I&#8217;ve now added in a few &#8230; <a href="http://www.nickromney.com/2004/03/19/bookmarklets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Read Eric Meyer&#8217;s roundup on SXSW 2004, and find that I too am a person mentioned in his <a href="http://www.meyerweb.com/eric/thoughts/200403.html#d18">SXSQ04i Wrap-Up</a>: in that I hadn&#8217;t come across bookmarklets / favelets. Am pleased to say that I&#8217;ve now added in a few of <a href="http://www.squarefree.com/bookmarklets/">Squarefree&#8217;s bookmarklets</a> and <a href="http://tantek.com/favelets/">Tantek&#8217;s favelets</a>, and they&#8217;re becoming very useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2004/03/19/bookmarklets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bloggar posting tool</title>
		<link>http://www.nickromney.com/2004/03/06/bloggar-posting-tool/</link>
		<comments>http://www.nickromney.com/2004/03/06/bloggar-posting-tool/#comments</comments>
		<pubDate>Sat, 06 Mar 2004 14:31:38 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Content Management Systems]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">//?p=</guid>
		<description><![CDATA[Am just now testing out all the other features of blogging through WordPress and am trialling w.bloggar, which seems to work quite nicely for offline content generation, although doesn&#8217;t auto-generate the &#8220;Post Slug&#8221; for WordPress&#8217;s Permalinks, so I won&#8217;t be &#8230; <a href="http://www.nickromney.com/2004/03/06/bloggar-posting-tool/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Am just now testing out all the other features of blogging through <a href="http://wordpress.org">WordPress</a>  and am trialling <a href="http://www.wbloggar.com">w.bloggar</a>, which seems to work quite nicely for offline content generation, although doesn&#8217;t auto-generate the &#8220;Post Slug&#8221; for WordPress&#8217;s Permalinks, so I won&#8217;t be using it exclusively. However, I can conceive of using it quite intensively if away on holiday / away from an internet connection for an extended period. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2004/03/06/bloggar-posting-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colour-blindness and the web designer</title>
		<link>http://www.nickromney.com/2004/03/05/colour-blindness-and-the-web-designer/</link>
		<comments>http://www.nickromney.com/2004/03/05/colour-blindness-and-the-web-designer/#comments</comments>
		<pubDate>Fri, 05 Mar 2004 11:26:04 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">//?p=</guid>
		<description><![CDATA[As I&#8217;ve been looking up more and more on accessibility (section 508 guidelines etc.) for some site redesigns, I&#8217;ve become increasingly aware of some of the other issues around it, and finally read up on some dedicated sites about the &#8230; <a href="http://www.nickromney.com/2004/03/05/colour-blindness-and-the-web-designer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve been looking up more and more on accessibility (section 508 guidelines etc.) for some site redesigns, I&#8217;ve become increasingly aware of some of the other issues around it, and finally read up on some dedicated sites about the different types of colour-blindness.</p>
<p>I think I&#8217;m deuteranomalous &#8211; i.e. the rods in my eye don&#8217;t perceive green as they should. The intensity of light is still the same, but the waves are off-centre. It&#8217;s not that I can&#8217;t see green light (am not dichromatic), just that I perceive it differently.</p>
<p>A test: <a href="http://webexhibits.org/causesofcolor/2.html">Webexhibits</a> &#8211; hover over &#8220;Protan&#8221; and &#8220;Deutan&#8221; (to the right of the dot pattern) and see what happens. For me there&#8217;s no change (only a slight change on the bud of the flower, but none in the dots). </p>
<p>Web designer&#8217;s palette: <a href="http://www.visibone.com/colorblind">Visibone palette</a> and <a href="http://more.btexact.com/people/rigdence/colours/ColChoice.htm">colour choice</a></p>
<p>Great explanation of colourblindness, and opinion on design: <a href="http://www.firelily.com/opinions/color.html">Firelily</a></p>
<p><a href="http://colorvisiontesting.com/online%20test.htm">Ishihara-type dot tests</a> (I failed!):  </p>
<p>Update 10 March: <a href="http://www.themaninblue">The man in blue</a> now offers <a href="http://www.themaninblue.com/experiment/Technicolor/">the Technicolor web designer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2004/03/05/colour-blindness-and-the-web-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to write unmaintainable code</title>
		<link>http://www.nickromney.com/2004/03/05/how-to-write-unmaintainable-code/</link>
		<comments>http://www.nickromney.com/2004/03/05/how-to-write-unmaintainable-code/#comments</comments>
		<pubDate>Fri, 05 Mar 2004 00:15:36 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">//?p=</guid>
		<description><![CDATA[How to write unmaintainable code Amusing, and very in-depth. There&#8217;s a great deal about good coding practices written here, just in the inverse.]]></description>
			<content:encoded><![CDATA[<p><a href="http://mindprod.com/unmain.html">How to write unmaintainable code</a></p>
<p>Amusing, and very in-depth. There&#8217;s a great deal about good coding practices written here, just in the inverse.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2004/03/05/how-to-write-unmaintainable-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Goodle Good News</title>
		<link>http://www.nickromney.com/2004/03/04/goodle-good-news/</link>
		<comments>http://www.nickromney.com/2004/03/04/goodle-good-news/#comments</comments>
		<pubDate>Thu, 04 Mar 2004 22:32:54 +0000</pubDate>
		<dc:creator>nickromney</dc:creator>
				<category><![CDATA[Humour]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">//?p=</guid>
		<description><![CDATA[Goodle Good News Entertaining spoof of Google. Cheered me up when I read it!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hallmundur.com/goodle/goodle.htm">Goodle Good News</a></p>
<p>Entertaining spoof of Google. Cheered me up when I read it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nickromney.com/2004/03/04/goodle-good-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
