<?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>CodeBlog</title>
	<atom:link href="http://www.codeblog.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codeblog.co.uk</link>
	<description></description>
	<lastBuildDate>Thu, 10 Jan 2013 20:57:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>BracketLESS</title>
		<link>http://www.codeblog.co.uk/2012/12/04/projects/bracketless/</link>
		<comments>http://www.codeblog.co.uk/2012/12/04/projects/bracketless/#comments</comments>
		<pubDate>Tue, 04 Dec 2012 17:49:53 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[brackets]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[LESS]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1272</guid>
		<description><![CDATA[A LESS compiler extension for Adobe Brackets In recent months the open source code editor Brackets (written on Chromium with HTML5, JS &#38; LESS) has become my favorite editor for all web orientated coding.  It&#8217;s simplicity, stability &#38; near identical UI on both Windows &#38; OS X made me make the jump from NetBeans &#8211; which I have been finding slightly bloated &#38; sluggish of late. Although Brackets itself uses LESS, I hadn&#8217;t been able to find an extension to compile LESS to CSS on save (I could have missed something here &#8211; but hey I wanted to have a play with &#8230;]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2012/12/04/projects/bracketless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CountDown Gadget (Version 2)</title>
		<link>http://www.codeblog.co.uk/2012/10/29/windows-gadgets/countdown-gadget-version-2/</link>
		<comments>http://www.codeblog.co.uk/2012/10/29/windows-gadgets/countdown-gadget-version-2/#comments</comments>
		<pubDate>Mon, 29 Oct 2012 15:56:56 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Windows Gadgets]]></category>
		<category><![CDATA[Count Down]]></category>
		<category><![CDATA[Windows Gadget]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1241</guid>
		<description><![CDATA[A brand new version of my simple count down timer. Changeable skins, font styles, sizes, colours, time display formats &#38; more. Features: A new more up-to-date look and feel Counts up as well as down Allows selection of the weekdays to exclude from the count 5 different skins (small &#38; large) Count down to custom time / date Switchable date / time display format (Full, Days, Hours, Minutes) Scroll-able Strap line / Message Count down accuracy improved Other stability issues, patched. How to get CountDown v2 Click here to get your copy of CountDown v2.]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2012/10/29/windows-gadgets/countdown-gadget-version-2/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Using a custom CSS stylsheet in a WordPress widget</title>
		<link>http://www.codeblog.co.uk/2012/04/19/web-development/using-a-custom-css-stylsheet-in-a-wordpress-widget/</link>
		<comments>http://www.codeblog.co.uk/2012/04/19/web-development/using-a-custom-css-stylsheet-in-a-wordpress-widget/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 18:25:39 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1217</guid>
		<description><![CDATA[This serves as nothing more than a note to self &#38; anyone else that has ever told me that it&#8217;s not possible to include a CSS stylesheet from within a WordPress sidebar / footer widget: Within your widget init function add the line to enqueue the stylesheet: wp_enqueue_style('my-widgets-css', WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)). '/widget.css'); for instance &#8230;. class DeviseCallBackWidget extends WP_Widget {   function DeviseCallBackWidget()   {     $widget_ops = array('classname' =&#62; 'DeviseCallBackWidget', 'description' =&#62; 'Displays callback form on sidebar' );     $this-&#62;WP_Widget('DeviseCallBackWidget', 'Devise CallBack Widget', $widget_ops);          wp_enqueue_style('widget', WP_CONTENT_URL . '/plugins/' . plugin_basename(dirname(__FILE__)). '/widget.css');   } etc... &#8230;]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2012/04/19/web-development/using-a-custom-css-stylsheet-in-a-wordpress-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jazzing up Javascript confirmation boxes with Orman Clarks popup window template, JQuery &amp; CSS</title>
		<link>http://www.codeblog.co.uk/2012/02/14/how-tos/customize-the-bootstrap-modal-overlay/</link>
		<comments>http://www.codeblog.co.uk/2012/02/14/how-tos/customize-the-bootstrap-modal-overlay/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 20:42:13 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1176</guid>
		<description><![CDATA[Making user prompts look much more appetizing doesn&#8217;t have to be that much of a chore, especially when great UI designers are giving you their Photoshop templates for free! Orman Clark over at premiumpixels.com regularly releases lovingly designed UI components to the masses. By request of a friend who&#8217;s starting out with JQuery, I thought I&#8217;d show you how to bring to life one of my favourites, the popup window. Click here to see a demo Prerequisites: Ormans PSD jQuery Tools Overlay &#38; Expose files You can also download a working demo here, this contains everything. This guide requires basic &#8230;]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2012/02/14/how-tos/customize-the-bootstrap-modal-overlay/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C# Animated Tray Icon</title>
		<link>http://www.codeblog.co.uk/2012/01/06/how-tos/c-animated-tray-icon/</link>
		<comments>http://www.codeblog.co.uk/2012/01/06/how-tos/c-animated-tray-icon/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 21:12:12 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#.NET]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1157</guid>
		<description><![CDATA[Overview Animated tray icons are a useful way of alerting users of changes to your applications state. Unfortunately the .NET frameworks tray icon offering doesn&#8217;t support animation so I decided to write a reusable component that extends the tray icon to incorporate the desired functionality. Another notable feature of this implementation is that it supports the 24&#215;24 Windows 7 tray icons as opposed to others that rely on the scaling the 16&#215;16 size icons up. Download the control &#38; sample project Extending the non-extendable The .NET TrayIcon class is sealed and therefore non-extendable so I have wrapped it (and some &#8230;]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2012/01/06/how-tos/c-animated-tray-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The quickest way to add a custom folder icon in C# .NET</title>
		<link>http://www.codeblog.co.uk/2011/12/27/how-tos/the-quickest-way-to-add-a-custom-folder-icon-in-c-net/</link>
		<comments>http://www.codeblog.co.uk/2011/12/27/how-tos/the-quickest-way-to-add-a-custom-folder-icon-in-c-net/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 19:52:00 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[C#.NET]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1139</guid>
		<description><![CDATA[There are lots of long-winded methods out there that show you how to add / change a folders icon, below is a short C# class method that just gets the job done. To change a folder icon we need to accomplish the following: Ensure the target folder has the &#8216;System&#8217; attribute applied to it Add a desktop.ini file within the target folder specifying the icon path The Code public static void setFolderIcon(string path, string iconPath, string folderToolTip) { /* Remove any existing desktop.ini */ if (File.Exists(path + @"\desktop.ini")) File.Delete(path + @"\desktop.ini"); /* Write the desktop.ini */ StreamWriter sw = File.CreateText(path &#8230;]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2011/12/27/how-tos/the-quickest-way-to-add-a-custom-folder-icon-in-c-net/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My big fat ambitious &#8216;bucket list&#8217;</title>
		<link>http://www.codeblog.co.uk/2011/11/13/other-stuff/one-large-bucket-list/</link>
		<comments>http://www.codeblog.co.uk/2011/11/13/other-stuff/one-large-bucket-list/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 01:45:13 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Other Stuff]]></category>
		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1117</guid>
		<description><![CDATA[&#8220;Anyone motivated to be successful—to really make an impact with your life—has a list of things they want to do.&#8221; - thrillingheroics.com My constantly changing list of goals to accomplish before I kick it are &#8230; Personal Goals Paragliding license Private pilots license Commercial pilots license Fly for a living for at least year Move to more of a LIP life style like the guys here, here or here. Get a Degree Scuba license Learn to power kite Learn to kite buggy Climb a mountain over 20,000ft Skydive Build a UAV from scratch Base jump &#8211; with a wing suit Learn &#8230;]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2011/11/13/other-stuff/one-large-bucket-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JavaScript Toggle Button using jQuery</title>
		<link>http://www.codeblog.co.uk/2011/10/18/web-development/javascript-toggle-button-using-jquery/</link>
		<comments>http://www.codeblog.co.uk/2011/10/18/web-development/javascript-toggle-button-using-jquery/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:26:09 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1073</guid>
		<description><![CDATA[Not that there aren&#8217;t enough examples &#38; implementations of javascript toggle buttons on Google, here&#8217;s another to add to the collection. This plugins main features / capabilities are: Cross browser compatible As accessible &#38; screen reader friendly as possible Light-weight &#38; easy to use Works with both image sprites &#38; regular HTML buttons Single &#38; multiple button selection modes No / Disabled JavaScript fall over Working example Toggle Toggle Repeat Repeat On / Off On / Off Fall over example Toggle Toggle Repeat Repeat On / Off On / Off Download You can Download the jQuery Toggle button script and &#8230;]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2011/10/18/web-development/javascript-toggle-button-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIX: Retweets not appearing in your Twitter feed when using Javascript (blogger.js)?</title>
		<link>http://www.codeblog.co.uk/2011/08/22/fixes-and-tweaks/retweets-not-appearing-in-my-twitter-feed-using-js/</link>
		<comments>http://www.codeblog.co.uk/2011/08/22/fixes-and-tweaks/retweets-not-appearing-in-my-twitter-feed-using-js/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 07:03:54 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[Fixes & Tweaks]]></category>
		<category><![CDATA[retweets]]></category>
		<category><![CDATA[RTs]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1013</guid>
		<description><![CDATA[Many templates and plugins use an older method of importing tweets, unfortunately it doesn't support RTs, here is a simple fix.]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2011/08/22/fixes-and-tweaks/retweets-not-appearing-in-my-twitter-feed-using-js/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOW TO: The simplest way to show your tweets &amp; RTs on any web page (JavaScript, no PHP)</title>
		<link>http://www.codeblog.co.uk/2011/08/22/how-tos/how-to-the-simplest-way-to-show-your-tweets-rts-on-any-web-page-javascript-no-php/</link>
		<comments>http://www.codeblog.co.uk/2011/08/22/how-tos/how-to-the-simplest-way-to-show-your-tweets-rts-on-any-web-page-javascript-no-php/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 07:01:40 +0000</pubDate>
		<dc:creator>Oliver</dc:creator>
				<category><![CDATA[How to's]]></category>
		<category><![CDATA[retweets]]></category>
		<category><![CDATA[RTs]]></category>
		<category><![CDATA[tweets]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.codeblog.co.uk/?p=1019</guid>
		<description><![CDATA[Showing your latest tweets (&#38; retweets) within your blog or site can be an intuitive way of getting people to follow you. The easiest way to do this is by retrieving your Twitter feed (in JSON format), reading your latest tweet(s) and adding them to the page. In this example, we&#8217;ll be starting with a blank HTML5 document like so: &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; &#60;title&#62;&#60;/title&#62; &#60;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&#62; &#60;/head&#62; &#60;body&#62; &#60;/body&#62; &#60;/html&#62; Create the area within your page to show the tweet(s) You need to create a list node to display the tweet(s) somewhere on your page, this needs &#8230;]]></description>
		<wfw:commentRss>http://www.codeblog.co.uk/2011/08/22/how-tos/how-to-the-simplest-way-to-show-your-tweets-rts-on-any-web-page-javascript-no-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
