<?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>Not the famous actor</title>
	<atom:link href="http://alanrickman.me.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://alanrickman.me.uk</link>
	<description>Alan Rickmans place on the web.....</description>
	<lastBuildDate>Wed, 14 Mar 2012 18: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>How to md5 Checksum in Linux</title>
		<link>http://alanrickman.me.uk/2012/03/md5-checksum-linux/</link>
		<comments>http://alanrickman.me.uk/2012/03/md5-checksum-linux/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 17:42:07 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[checksum]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[md5sum]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/?p=333</guid>
		<description><![CDATA[When copying files between servers its often useful to check the file hasn&#8217;t become corrupt once it&#8217;s reached its destination. You can use the md5sum tool to do just that. In a nutshell you run the md5 check on the source and destination server to validate the files haven&#8217;t changed or become corrupted in transit [...]]]></description>
			<content:encoded><![CDATA[<p>When copying files between servers its often useful to check the file hasn&#8217;t become corrupt once it&#8217;s reached its destination. You can use the <strong>md5sum</strong> tool to do just that. </p>
<p>In a nutshell you run the md5 check on the source and destination server to validate the files haven&#8217;t changed or become corrupted in transit by comparing the output from md5sum.</p>
<p>There are a couple of ways you can use it.</p>
<ol>
<li>Generate md5sum for a file or files:
<pre class="brush: bash; gutter: true">md5sum test</pre>
<p>This will return something like this:</p>
<pre class="brush: bash; gutter: true">d41d8cd98f00b204e9800998ecf8427e  test</pre>
<p>Then by comparing the resulting output from the same md5 checksum on the source server you will know if the files are identical.
</li>
<li>Create a file containing a list of previously created sums and use md5sum to validate that the sums match. E.g.
<p>sums.txt:</p>
<pre class="brush: bash; gutter: true">d41d8cd98f00b204e9800998ecf8427e  test
0d599f0ec05c3bda8c3b8a68c32a1b47  test2</pre>
<p>Execute md5sum passing in the file for checking:</p>
<pre class="brush: bash; gutter: true">md5sum -c sums.txt</pre>
<p>md5sum returns OK for all sums that match:</p>
<pre class="brush: bash; gutter: true">test: OK
test2: OK</pre>
</li>
</ol>
<p>And it&#8217;s as simple as that. This can also be useful where you know you have multiple versions of files. Using the md5sum you can validate which version is where. This simple tool has saved my bacon a number of times on web servers and CDNs where files have been cached.</p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2012/03/md5-checksum-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FRS Issues</title>
		<link>http://alanrickman.me.uk/2012/03/frs-issues/</link>
		<comments>http://alanrickman.me.uk/2012/03/frs-issues/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 23:30:55 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Domain Controllers]]></category>
		<category><![CDATA[FRS]]></category>
		<category><![CDATA[SYSVOL]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/?p=320</guid>
		<description><![CDATA[A few days ago whilst working on some group policy objects I stumbled across some strange behaviour on the client PCs. After running gpupdate several of the client PCs returned an error: Windows cannot access the file gpt.ini for GPO CN={9937F003-8D5C-49E6-A36C-EE944E1A7962},CN=Policies,CN=System,DC=***,DC=***,DC=co,DC=uk. The file must be present at the location ; The GUID in the error [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago whilst working on some group policy objects I stumbled across some strange behaviour on the client PCs. After running gpupdate several of the client PCs returned an error:</p>
<p><em>Windows cannot access the file gpt.ini for GPO CN={9937F003-8D5C-49E6-A36C-EE944E1A7962},CN=Policies,CN=System,DC=***,DC=***,DC=co,DC=uk. The file must be present at the location <;\\FQDN\sysvol\FQDN\Policies\{9937F003-8D5C-49E6-A36C-EE944E1A7962}\gpt.ini>;</em></p>
<p>The GUID in the error matched that of the GPO I had just created. As I started to investigate further I noticed that rsop.msc also returned errors:</p>
<p><em>“RSoP data invalid. Likely causes are, data is corrupt, data has been deleted or data has never been created.&#8221;</em></p>
<p>After checking the SYSVOL shares on each domain controller in the domain it was apparent that the policies files didn&#8217;t exist on all of the domain controllers. We had recently suffered a power cut and the DCs had not been shutdown cleanly. It dawned on me that no changes to GPO or other files contained with the SYSVOL share had been replicated since the power cut.</p>
<p>The event logs on the domain controllers contained several File Replication Service errors:</p>
<p><em>The File Replication Service has detected that the replica set &#8220;DOMAIN SYSTEM VOLUME (SYSVOL SHARE)&#8221; is in JRNL_WRAP_ERROR.</em></p>
<p>Should FRS encounter journal wrap errors on a domain controller replication will cease to work until the error condition has been reset. (Since Windows 2000 SP3 these errors are no longer cleared automatically.) To reset the error a Non-Authoratitive restore of the data is required. This can be achieved by enabling journal wrap automatic restore through a registry change. As detailed below:</p>
<p><strong>Note! As this is a non authoritative restore you could potentially lose data contained within SYSVOL. The SYSVOL will be rebuilt with data from other DCs in the domain.</strong></p>
<p>1. Stop FRS.<br />
2. Start Registry Editor &#8211; regedit<br />
3. Locate the following key in the registry:<br />
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NtFrs\Parameters<br />
4. Add the following registry value:<br />
Value name: Enable Journal Wrap Automatic Restore<br />
Data type: REG_DWORD<br />
Radix: Hexadecimal<br />
Value data: 1 (Default 0)<br />
5. Quit regedit<br />
6. Restart FRS.</p>
<p>After making the above changes and restarting FRS keep an eye on the event log and SYSVOL. After some time you&#8217;ll notice new entries in the event viewer as restoration of the SYSVOL begins to take place. And you&#8217;ll notice over time that SYSVOL once again becomes synchronised across all the DCs in the domain.</p>
<p>Of course the alternative would be a restore of the DC but that would remain a reboot into DSRM and a lot more downtime!</p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2012/03/frs-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>70-640</title>
		<link>http://alanrickman.me.uk/2012/03/70-640/</link>
		<comments>http://alanrickman.me.uk/2012/03/70-640/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 21:30:35 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[70-640]]></category>
		<category><![CDATA[Exams]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/?p=325</guid>
		<description><![CDATA[So I&#8217;ve pretty much completely neglected the website this year. For the last few weeks and months I&#8217;ve been solely concentrating on studying for Microsoft 70-640 Active Directory exam. I finally stumped up the courage to take the exam on Friday and passed!! There was a huge sigh of relief when the message that I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve pretty much completely neglected the website this year. For the last few weeks and months I&#8217;ve been solely concentrating on studying for Microsoft 70-640 Active Directory exam.</p>
<p>I finally stumped up the courage to take the exam on Friday and passed!! There was a huge sigh of relief when the message that I&#8217;d passed popped up at the end of the exam!! I really wasn&#8217;t looking forward to it. I&#8217;d worked out it was the first test of any kind I&#8217;d taken since leaving university some 9 years ago!</p>
<p>So with that out of the way I intend to post here a little more often. Although that said I intend to start studying for the next exam (70-642) pretty soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2012/03/70-640/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All the hard weeks of studying&#8230;</title>
		<link>http://alanrickman.me.uk/2012/03/all-the-hard-weeks-of-studying/</link>
		<comments>http://alanrickman.me.uk/2012/03/all-the-hard-weeks-of-studying/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 18:53:26 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/2012/03/all-the-hard-weeks-of-studying/</guid>
		<description><![CDATA[All the hard weeks of studying have paid off. Microsoft #70 640 exam passed today #activedirectory]]></description>
			<content:encoded><![CDATA[<p>All the hard weeks of studying have paid off. Microsoft #<a href="http://search.twitter.com/search?q=%2370" class="aktt_hashtag">70</a> 640 exam passed today #<a href="http://search.twitter.com/search?q=%23activedirectory" class="aktt_hashtag">activedirectory</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2012/03/all-the-hard-weeks-of-studying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>See a real time tweet map of w&#8230;</title>
		<link>http://alanrickman.me.uk/2012/02/see-a-real-time-tweet-map-of-w/</link>
		<comments>http://alanrickman.me.uk/2012/02/see-a-real-time-tweet-map-of-w/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 10:06:18 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/2012/02/see-a-real-time-tweet-map-of-w/</guid>
		<description><![CDATA[See a real time tweet map of where it&#8217;s snowing here: http://t.co/H0hu3EHB #uksnow]]></description>
			<content:encoded><![CDATA[<p>See a real time tweet map of where it&#8217;s snowing here: <a href="http://t.co/H0hu3EHB" rel="nofollow">http://t.co/H0hu3EHB</a> #<a href="http://search.twitter.com/search?q=%23uksnow" class="aktt_hashtag">uksnow</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2012/02/see-a-real-time-tweet-map-of-w/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote shutdown on CentOS</title>
		<link>http://alanrickman.me.uk/2012/01/remote-shutdown-centos/</link>
		<comments>http://alanrickman.me.uk/2012/01/remote-shutdown-centos/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 10:17:43 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Centos]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/?p=307</guid>
		<description><![CDATA[Here&#8217;s a simple shell script to remotely shutdown linux servers on your network. What you&#8217;ll need: A server to run the script from Something to execute the script &#8211; In my case the UPS activates the script when a power outage is detected. But, this could also be a cronjob or something similar SSH access [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a simple shell script to remotely shutdown linux servers on your network.</p>
<p>What you&#8217;ll need:</p>
<ol>
<li>A server to run the script from</li>
<li>Something to execute the script &#8211; In my case the UPS activates the script when a power outage is detected. But, this could also be a cronjob or something similar</li>
<li>SSH access between servers. See this <a title="SSH login without Password" href="http://alanrickman.me.uk/2012/01/ssh-login-password/" target="_blank">post </a>to allow SSH logon without requiring a password to authenticate</li>
<li>The user you connect with should have permissions to execute /sbin/shutdown on the remote server</li>
</ol>
<p>There are two parts to this script. First the script itself and secondly a text file containing a list of servers you wish to shutdown</p>
<p>The script:</p>
<pre class="brush: bash; gutter: true">PATH=/usr/local/bin
HOSTFILE=$PATH/servers
LOGDATE=$(date +%F_%T);
LOGFILE=$PATH/shutdown_$LOGDATE.log

for host in $(cat $HOSTFILE);do
echo &quot;Shutting Down $host...&quot; &gt;&gt; $LOGFILE
echo $(date) &gt;&gt; $LOGFILE
ssh -t alan@$host &quot;sudo /sbin/shutdown -h now&quot; &gt;&gt; $LOGFILE
echo &quot;$host Shutdown&quot; &gt;&gt; $LOGFILE
echo  &gt;&gt; $LOGFILE
echo  &gt;&gt; $LOGFILE
done

echo &quot;Remote Shutdown Completed&quot; | mutt -s &quot;Remote Shutdown&quot; -a $LOGFILE joebloggs@abc.com</pre>
<p>When you execute the script it will loop through the list of servers stored in this text file:</p>
<pre class="brush: bash; gutter: true">server1
server2
server3
server4
server5
....</pre>
<p>A simple log file is created showing the process, an e-mail is then sent with the log file attached.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2012/01/remote-shutdown-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH login without Password</title>
		<link>http://alanrickman.me.uk/2012/01/ssh-login-password/</link>
		<comments>http://alanrickman.me.uk/2012/01/ssh-login-password/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 11:50:06 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Centos]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Login]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/?p=302</guid>
		<description><![CDATA[There have been a number of times I&#8217;ve found myself needing to SSH from server to server and would prefer not to use a password. After running two simple commands you can SSH to a server without requring your username or password. The basic principal is to generate a public/private key pair which is associated [...]]]></description>
			<content:encoded><![CDATA[<p>There have been a number of times I&#8217;ve found myself needing to SSH from server to server and would prefer not to use a password.</p>
<p>After running two simple commands you can SSH to a server without requring your username or password. The basic principal is to generate a public/private key pair which is associated with your user account. The public key is then copied to the destination server and used for authentication instead of your password.</p>
<p>In this example I assume you will be connecting from <strong>servera</strong> and connecting to <strong>serverb</strong>.</p>
<ol>
<li>From <strong>servera</strong> you will need to run <strong><strong>ssh-keygen. </strong></strong>This generates the public/private key pair<strong><strong><br />
</strong></strong></p>
<pre>alan@servera$&lt;strong&gt; ssh-keygen &lt;/strong&gt;Generating public/private rsa key pair.
Enter file in which to save the key (/home/alan/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/alan/.ssh/id_rsa.
Your public key has been saved in /home/alan/.ssh/id_rsa.pub</pre>
</li>
<li>Use <strong>ssh-copy-id</strong> to copy the generated public key to <strong>serverb</strong>. This will append your public key to the list of authorised keys on the remote server in ~/.ssh/authorized_keys<strong><strong><br />
</strong></strong></p>
<pre>alan@servera$ &lt;strong&gt;ssh-copy-id -i ~/.ssh/id_rsa.pub serverb&lt;/strong&gt;
alan@serverb&#039;s password:
Now try logging into the machine, with &quot;ssh &#039;serverb&#039;&quot;, and check in:

.ssh/authorized_keys

to make sure we haven&#039;t added extra keys that you weren&#039;t expecting.</pre>
</li>
<li>Now try and SSH to <strong>serverb</strong>
<pre>alan@servera$ &lt;strong&gt;ssh serverb&lt;/strong&gt;
Last login: Sat Jan 28 10:01:59 2012 from 10.30.0.155</pre>
</li>
</ol>
<p>Assuming you followed the above steps correctly you should now be able to SSH to your server without requring a password!</p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2012/01/ssh-login-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iCloud Bookmark Sync issues</title>
		<link>http://alanrickman.me.uk/2012/01/icloud-bookmark-sync-issues/</link>
		<comments>http://alanrickman.me.uk/2012/01/icloud-bookmark-sync-issues/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 23:01:46 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Bookmark Sync]]></category>
		<category><![CDATA[iCloud]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/?p=293</guid>
		<description><![CDATA[Since iOS5 was released I&#8217;ve been struggling to get bookmark sync working properly. It seems quite a few people are struggling with it, particularly on Windows with Internet Explorer. I get the impression that Apple haven&#8217;t put quite the same amount of effort into iCloud Control Panel on Windows as they have on the Mac. [...]]]></description>
			<content:encoded><![CDATA[<p>Since iOS5 was released I&#8217;ve been struggling to get bookmark sync working properly. It seems quite a few people are struggling with it, particularly on Windows with Internet Explorer. I get the impression that Apple haven&#8217;t put quite the same amount of effort into iCloud Control Panel on Windows as they have on the Mac.</p>
<p>Since launch it all seemed to be working ok but after a little while I noticed that bookmarks weren&#8217;t updating correctly. And after trying various combinations of disabling and re-enabling bookmark sync on iPad, iPhone and in Windows it was apparent that nothing was syncing and I ended up with no bookmarks on iOS.</p>
<p><a href="http://alanrickman.me.uk/wp-content/uploads/2012/01/iCloudControlPanel.jpg"><img class="alignleft size-full wp-image-294" style="border-image: initial; border-width: 5px; border-color: white; border-style: solid;" title="iCloudControlPanel" src="http://alanrickman.me.uk/wp-content/uploads/2012/01/iCloudControlPanel.jpg" alt="iCloudControlPanel iCloud Bookmark Sync issues" width="32" height="58" /></a>At this point I noticed this yellow warning triangle over the iCloud Control Panel icon. There was no explanation to this icon and I&#8217;ve not been able to find an error log, but, I could only assume this was related to bookmark syncing as everything else was working correctly.</p>
<p>The best method I&#8217;ve found to get bookmark sync working with Internet Explorer properly again is this:</p>
<ol>
<li>Disable bookmark sync on all iOS devices</li>
<li>Disable bookmark sync in iCloud Control Panel</li>
<li>Sign Out of iCloud Control Panel</li>
<li>Move all favourites into a temporary location. This should leave you with no favourites in IE</li>
<li>Ensure your favourites are stored in the default location. Usual default for Windows 7 is <strong><em>C:\Users\[Username]\Favorites</em></strong> or <strong><em>C:\Documents and Settings\[Username]\Favorites</em></strong> for Windows XP &#8211; I read a comment on the Apple forums that suggested a greater chance of success if configured this way!</li>
<li>Sign In to iCloud Control Panel</li>
<li>Enable bookmark sync in iCloud Control Panel.</li>
<li>Restore your favourites back to the favourites folder.</li>
</ol>
<p>After a few moments, you should find an <strong><em>Apple.plist</em></strong> file in each subdirectory of your favourites folders. I believe this file is how iCloud keeps track of your favourites and what needs to be synced. It&#8217;s presence seems to suggest that bookmark sync is working properly.</p>
<ol>
<li>Re-enable Bookmark sync on your iOS devices.</li>
<li>And voila!</li>
</ol>
<p>I&#8217;ve then taken this a step further. With the help of Xmarks my bookmarks are now in sync across all browsers, all computers and mobile devices I use at home and at work!</p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2012/01/icloud-bookmark-sync-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New Year to one and all!&#8230;</title>
		<link>http://alanrickman.me.uk/2012/01/happy-new-year-to-one-and-all/</link>
		<comments>http://alanrickman.me.uk/2012/01/happy-new-year-to-one-and-all/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 00:33:21 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[Twitter]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/2012/01/happy-new-year-to-one-and-all/</guid>
		<description><![CDATA[Happy New Year to one and all! Here&#8217;s to a great 2012!]]></description>
			<content:encoded><![CDATA[<p>Happy New Year to one and all! Here&#8217;s to a great 2012!</p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2012/01/happy-new-year-to-one-and-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy New (Year) Look!</title>
		<link>http://alanrickman.me.uk/2011/12/happynew-year-look/</link>
		<comments>http://alanrickman.me.uk/2011/12/happynew-year-look/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 10:02:04 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://alanrickman.me.uk/2011/12/new-year-look/</guid>
		<description><![CDATA[Well my blog&#8217;s been going for a little under a year now and I&#8217;ve decided it&#8217;s time for a change!! So with the New Year fast approaching I opted for a theme called iBizTech LightWeight created by the guys over at Technology Tricks. They&#8217;ve produced five versions in various colours but only this version has [...]]]></description>
			<content:encoded><![CDATA[<p>Well my blog&#8217;s been going for a little under a year now and I&#8217;ve decided it&#8217;s time for a change!!</p>
<p>So with the New Year fast approaching I opted for a theme called iBizTech LightWeight created by the guys over at <a title="Technology Tricks" href="http://www.technologytricks.com/" target="_blank">Technology Tricks</a>. They&#8217;ve produced five versions in various colours but only this version has been updated to supports widgets.</p>
<p>I wasn&#8217;t a big fan of the light colour theme but noticed that the images for the other four colours were included in the download. So I decided to make a few modifications to suit my site.</p>
<ol>
<li>Modified the CSS to use the orange skin</li>
<li>The CSS used for the sidebar didn&#8217;t play nice with Twitter Tools so made amendments to make the hyperlinks work properly</li>
<li>I didn&#8217;t really have the need for the ad banner so I replaced that with the social media icons</li>
<li>The featured post item was something I liked the idea of but it didn&#8217;t seem very flexible. I replaced the featured post code with the Dynamic Content Gallery plugin as this allowed for making a post &#8220;featured&#8221; whilst editing it.</li>
</ol>
<p>I&#8217;ve got a few modifications to complete so the theme can be used as a proper child theme. Once completed I&#8217;ll look into making it available for download.</p>
<p>With that I&#8217;ll wish everyone a Happy New Year!!</p>
]]></content:encoded>
			<wfw:commentRss>http://alanrickman.me.uk/2011/12/happynew-year-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

