<?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/"
		xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Terry Butler &#187; Tools</title>
	<atom:link href="http://www.terrybutler.co.uk/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.terrybutler.co.uk</link>
	<description>Personal Homepage of Terry Butler</description>
	<lastBuildDate>Mon, 30 Jan 2012 21:26:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<copyright>Copyright © Terry Butler 2011 </copyright>
	<managingEditor>me@terrybutler.co.uk (Terry Butler)</managingEditor>
	<webMaster>me@terrybutler.co.uk (Terry Butler)</webMaster>
	<ttl>1440</ttl>
	<image>
		<url>http://www.terrybutler.co.uk/wp-content/plugins/podpress/images/logo_144.png</url>
		<title>Terry Butler</title>
		<link>http://www.terrybutler.co.uk</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>MOD Monday is your weekly fix for classic Amiga tracker music!</itunes:summary>
	<itunes:keywords>MOD, S3M, IT, Amiga, Chip, Chiptune, 8-Bit, Demoscene</itunes:keywords>
	<itunes:category text="Music" />
	<itunes:author>Terry Butler</itunes:author>
	<itunes:owner>
		<itunes:name>Terry Butler</itunes:name>
		<itunes:email>me@terrybutler.co.uk</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>clean</itunes:explicit>
	<itunes:image href="http://www.terrybutler.co.uk/wp-content/plugins/podpress/images/logo_300.png" />
		<item>
		<title>Darken Javascript Bookmarklet Update</title>
		<link>http://www.terrybutler.co.uk/2010/07/21/darken-javascript-bookmarklet-update/</link>
		<comments>http://www.terrybutler.co.uk/2010/07/21/darken-javascript-bookmarklet-update/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 23:13:37 +0000</pubDate>
		<dc:creator>Terry</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.terrybutler.co.uk/2010/07/21/darken-update/</guid>
		<description><![CDATA[This is just a simple modification of the Javascript bookmarklet called &#8220;Darken&#8221; by Gina Trapani. No idea if it had already been updated or not, but here&#8217;s the list of what I changed for anybody interested: Running the bookmarklet multiple times toggles the darken effect on and off! Saves refreshing the page Changed the colour [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a simple modification of the Javascript bookmarklet called &#8220;Darken&#8221; by Gina Trapani. No idea if it had already been updated or not, but here&#8217;s the list of what I changed for anybody interested:
<ul>
<li>Running the bookmarklet multiple times toggles the darken effect on and off! Saves refreshing the page</li>
<li>Changed the colour scheme to green text</li>
<li>Added hover effect for links</li>
<li>Changed link colour and added underline to differentiate links</li>
<li>Changed link visited colour</li>
<li>Only uses the appendChild method as that&#8217;s all the Browsers I use support (Opera, IE9, Firefox, Chrome)</li>
</ul>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">javascript<span style="color: #339933;">:</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span><span style="color: #003366; font-weight: bold;">var</span> newSS<span style="color: #339933;">,</span> styles <span style="color: #339933;">=</span> <span style="color: #3366CC;">'* { background-color: black ! important; color: green !important; }a:link, a:link * { color: green !important; text-style: underline; }a:visited, a:visited * { color: #7f0000 !important; }a:hover, a:hover * { color: red !important; }'</span><span style="color: #339933;">;</span>var elemHead <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementsByTagName</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;head&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>var elemCSS <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;darkenCSS&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>if <span style="color: #009900;">&#40;</span>elemCSS<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>elemHead.<span style="color: #660066;">removeChild</span><span style="color: #009900;">&#40;</span>elemCSS<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #000066; font-weight: bold;">else</span><span style="color: #009900;">&#123;</span>newSS <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'link'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>newSS.<span style="color: #660066;">rel</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'stylesheet'</span><span style="color: #339933;">;</span>newSS.<span style="color: #660066;">href</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">'data:text/css,'</span> <span style="color: #339933;">+</span> escape<span style="color: #009900;">&#40;</span>styles<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>newSS.<span style="color: #660066;">id</span> <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;darkenCSS&quot;</span><span style="color: #339933;">;</span>elemHead.<span style="color: #660066;">appendChild</span><span style="color: #009900;">&#40;</span>newSS<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.terrybutler.co.uk/2010/07/21/darken-javascript-bookmarklet-update/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Heroes of Might and Magic III Map (H3M) File Compressor / Decompressor Tool Released!</title>
		<link>http://www.terrybutler.co.uk/2010/03/13/new-heroes-of-might-and-magic-iii-map-h3m-file-compressor-decompressor-tool-released/</link>
		<comments>http://www.terrybutler.co.uk/2010/03/13/new-heroes-of-might-and-magic-iii-map-h3m-file-compressor-decompressor-tool-released/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 19:29:31 +0000</pubDate>
		<dc:creator>Terry</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Heroes of Might and Magic]]></category>

		<guid isPermaLink="false">http://www.terrybutler.co.uk/2010/03/13/new-heroes-of-might-and-magic-iii-map-h3m-file-compressor-decompressor-tool-released/</guid>
		<description><![CDATA[This new utility allows for Heroes of Might and Magic II Map (H3M) files to be compressed and decompressed for power users. Please see this page for more details and a download link.]]></description>
			<content:encoded><![CDATA[<p align="left">This new utility allows for Heroes of Might and Magic II Map (H3M) files to be compressed and decompressed for power users.</p>
<p>Please see <a href="http://www.terrybutler.co.uk/tools/h3m-compressor-decompressor/">this page</a> for more details and a download link.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.terrybutler.co.uk/2010/03/13/new-heroes-of-might-and-magic-iii-map-h3m-file-compressor-decompressor-tool-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

