<?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>i3lance</title>
	<atom:link href="http://www.i3lance.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.i3lance.co.uk</link>
	<description>The musings of a scuba diving web standards programming organ grinder</description>
	<lastBuildDate>Fri, 05 Apr 2013 14:19:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Believable Branding &#8211; What do consumers buy into?</title>
		<link>http://www.i3lance.co.uk/2013/04/believable-branding-what-do-consumers-buy-into/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=believable-branding-what-do-consumers-buy-into</link>
		<comments>http://www.i3lance.co.uk/2013/04/believable-branding-what-do-consumers-buy-into/#comments</comments>
		<pubDate>Fri, 05 Apr 2013 14:19:38 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[infographic]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=515</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.i3lance.co.uk/wp-content/uploads/2013/04/Branding-Advertising-Trust-Influence-.png"><img src="http://www.i3lance.co.uk/wp-content/uploads/2013/04/Branding-Advertising-Trust-Influence-.png" alt="Branding Advertising - Trust and it&#039;s Influence" width="100%" class="alignnone size-full wp-image-521" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2013/04/believable-branding-what-do-consumers-buy-into/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INFOGRAPHIC: Is there a Social Media Overload?</title>
		<link>http://www.i3lance.co.uk/2013/04/infographic-is-there-a-social-media-overload/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=infographic-is-there-a-social-media-overload</link>
		<comments>http://www.i3lance.co.uk/2013/04/infographic-is-there-a-social-media-overload/#comments</comments>
		<pubDate>Fri, 05 Apr 2013 00:35:57 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[Infographics]]></category>
		<category><![CDATA[Thinktank]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=516</guid>
		<description><![CDATA[&#160;]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.i3lance.co.uk/wp-content/uploads/2013/04/social-media-overload-600-.jpg"><img class="alignnone size-full wp-image-517" alt="Social Media Overload" src="http://www.i3lance.co.uk/wp-content/uploads/2013/04/social-media-overload-600-.jpg" width="600" height="2142" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2013/04/infographic-is-there-a-social-media-overload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Quick Way to Avoid the blink of Unstyled Content on Page Load</title>
		<link>http://www.i3lance.co.uk/2013/03/a-quick-way-to-avoid-the-blink-of-unstyled-content-on-page-load/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-quick-way-to-avoid-the-blink-of-unstyled-content-on-page-load</link>
		<comments>http://www.i3lance.co.uk/2013/03/a-quick-way-to-avoid-the-blink-of-unstyled-content-on-page-load/#comments</comments>
		<pubDate>Sat, 30 Mar 2013 22:13:02 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[good practice]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=505</guid>
		<description><![CDATA[This is a method I&#8217;ve been using for a while and wanted to document it for anyone else who may want to use it or improve it. When you have a constructed page that uses...]]></description>
				<content:encoded><![CDATA[<p>This is a method I&#8217;ve been using for a while and wanted to document it for anyone else who may want to use it or improve it.</p>
<p>When you have a constructed page that uses JavaScript to render content you will sometimes encounter a blink unstyled content that sometimes occurs when applying styles with JavaScript on page load. The problem is most evident when there is some content that needs to be hidden initially and when the document is large or complex.</p>
<p>Let&#8217;s just say that it&#8217;s a semantic container like a DIV element that encases a simple unordered list or any content for that matter, you can add the following <code>&lt;div class="pre-render"&gt;</code> to the DIV container.</p>
<p>On smaller websites that have pages with a more reasonable length, the standard jQuery code would work just fine:</p>
<pre class="wp-code-highlight prettyprint">
$(&#039;html&#039;).addClass(&#039;js&#039;);
$(document).ready(function () {
    $(&#039;.pre-render&#039;).hide();
});</pre>
<p>However if you are working on a larger website, you may have to call function this in many parts of the website so in my opinion you may want to externalise your script:</p>
<pre class="wp-code-highlight prettyprint">
$(&#039;html&#039;).addClass(&#039;js&#039;);
var mylib =
{
    primary_functions :
    {
        init : function()
        {
             $(&#039;.pre-render&#039;).hide();
        }
    },
    specific_template_functions :
    {
        init : function()
        {
             // Functions go here
        }
    }
}
$(window).load(function(){
    // It&#039;s more efficient to load any generic scripts after the HTML has loaded.&#039;
    mylib.primary_functions.init();
});</pre>
<p>If the document is large then that won&#8217;t work as there is a lot of document to load before the JavaScript is called, even if you use the <code>$(window).load</code> method as above. Therefore using JavaScript to hide elements like this just won&#8217;t work unless the scripts are placed in the HTML immediately following the elements they&#8217;re hiding.</p>
<h3>Why use JavaScript for this, anyway?</h3>
<p>The initial retort from some developers is &#8220;this is what what CSS is for!&#8221; Well it is easy to add a rule to the stylesheet (CSS), such as .pre-render {display: none;}, and the problem would be solved.</p>
<p>However the pure CSS method introduces another problem: the hidden content is completely unavailable to those who have CSS enabled/available but JavaScript disabled/unavailable. These users simply won&#8217;t be able to view the content. Now, some developers don&#8217;t have a problem with that, but I do.  It&#8217;s all about accessibility and making content as available as possible, even if on a basic level.</p>
<h3>A quick solution</h3>
<p>Instead of using just one or the other to solve the problem, combine the two together using a hybrid method.</p>
<p><strong>Your CSS:</strong></p>
<pre class="wp-code-highlight prettyprint">
    &lt;style type=&quot;text/css&quot;&gt;
        .js .pre-render {display: none;}
    &lt;/style&gt;
</pre>
<p><strong>Your HTML:</strong></p>
<pre class="wp-code-highlight prettyprint">
    &lt;html&gt;
      &lt;head&gt;
        &lt;!-- OTHER STUFF --&gt;
        &lt;style type=&quot;text/css&quot; src=&quot;css/stylesheet.css&quot;&gt;&lt;/style&gt;
      &lt;/head&gt;
      &lt;body&gt;
        &lt;!-- OTHER CONTENT --&gt;
        &lt;script src=&quot;//ajax.googleapis.com/ajax/libs/jquery/latest/jquery.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
        &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery-functions.js&quot;&gt;&lt;/script&gt;
      &lt;/body&gt;
    &lt;/html&gt;
</pre>
<p><strong>Your JavaScript:</strong></p>
<p>Your JavaScript can be in either of the above methods depending on the size of your website.  Personally I prefer using the latter method simply for good practice.  You don&#8217;t have to call <strong>ALL</strong> of your JavaScript each time the page loads. </p>
<p>You probably noticed that the script references are at the bottom of the page.  It&#8217;s also good practice to have your scripts load at the bottom if you can help it.  If you using WordPress, may not seem that easy but there are ways to do it.</p>
<p>Just make sure that this is included within your JavaScript file BEFORE <code>$('.pre-render').hide();</code>.  Outside the script call as above:</p>
<pre class="wp-code-highlight prettyprint">
$(&#039;html&#039;).addClass(&#039;js&#039;);
</pre>
<p>In order to make sure this works, the .addClass() method is plaeced not inside $(document).ready() and it is first in the other method. If we had put it inside, we&#8217;d be back to square one.</p>
<p>However since I am using YUI&#8217;s recommendations to put <a href="http://developer.yahoo.com/performance/rules.html#js_bottom" title="put scripts at the bottom of youe HTML document" target="_blank">scripts at the bottom</a>, this can still make this solution work.</p>
<pre class="wp-code-highlight prettyprint">
    &lt;script type=&quot;text/javascript&quot;&gt;
      document.documentElement.className = &#039;js&#039;;
    &lt;/script&gt;
</pre>
<p>Placing the above in the <code>head</code> of your HTML document after the CSS reference should have it working nicely.  Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2013/03/a-quick-way-to-avoid-the-blink-of-unstyled-content-on-page-load/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INFOGRAPHIC: Serif vs. Sans: The Final Battle</title>
		<link>http://www.i3lance.co.uk/2013/03/infographic-serif-vs-sans-the-final-battle/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=infographic-serif-vs-sans-the-final-battle</link>
		<comments>http://www.i3lance.co.uk/2013/03/infographic-serif-vs-sans-the-final-battle/#comments</comments>
		<pubDate>Sat, 30 Mar 2013 19:05:58 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[Infographics]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[sans]]></category>
		<category><![CDATA[serif]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=501</guid>
		<description><![CDATA[Well I don&#8217;t know about the final battle but this is certainly a definitive one.&#160; You be the judge!]]></description>
				<content:encoded><![CDATA[<p>Well I don&#8217;t know about the final battle but this is certainly a definitive one.&nbsp; You be the judge!</p>
<p><a href="http://www.i3lance.co.uk/wp-content/uploads/2013/03/serif-vs-sans-serif-.jpg"><img class="alignnone size-full wp-image-502" alt="serif-vs-sans-serif" src="http://www.i3lance.co.uk/wp-content/uploads/2013/03/serif-vs-sans-serif-.jpg" width="100%" height="auto" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2013/03/infographic-serif-vs-sans-the-final-battle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INFOGRAPHIC: What Works in Rich Media Mobile Advertising?</title>
		<link>http://www.i3lance.co.uk/2013/03/infographic-what-works-in-rich-media-mobile-advertising/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=infographic-what-works-in-rich-media-mobile-advertising</link>
		<comments>http://www.i3lance.co.uk/2013/03/infographic-what-works-in-rich-media-mobile-advertising/#comments</comments>
		<pubDate>Sat, 30 Mar 2013 18:58:30 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[Infographics]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[infographic]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=497</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.i3lance.co.uk/wp-content/uploads/2013/03/rich_media_mobile_advertising_infographic_celtra_f11-.jpg"><img class="size-full wp-image-498" alt="rich_media_mobile_advertising_infographic_celtra_f11" src="http://www.i3lance.co.uk/wp-content/uploads/2013/03/rich_media_mobile_advertising_infographic_celtra_f11-.jpg" width="100%" height="auto" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2013/03/infographic-what-works-in-rich-media-mobile-advertising/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do not push the button&#8230;</title>
		<link>http://www.i3lance.co.uk/2013/03/do-not-push-the-button/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=do-not-push-the-button</link>
		<comments>http://www.i3lance.co.uk/2013/03/do-not-push-the-button/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 14:30:44 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[Idiocracy]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=487</guid>
		<description><![CDATA[TNT made this in 2012&#8230; Then they came out with a sequel in 2013&#8230; &#160;]]></description>
				<content:encoded><![CDATA[<p>TNT made this in 2012&#8230;</p>
<iframe src="http://www.youtube.com/embed/316AzLYfAzw?version=3&amp;autohide=1&amp;color=white&amp;theme=light&amp;wmode=transparent" width="560" height="340" style="background-color:#000;display:block;margin-bottom:0;max-width:100%;" title="A DRAMATIC SURPRISE ON A QUIET SQUARE" frameborder="0" allowfullscreen></iframe><p style="font-size:11px;margin-top:0;"><a href="http://www.youtube.com/watch?v=316AzLYfAzw" target="_blank" title="Watch on YouTube">Watch this video on YouTube</a>.</p>
<p>Then they came out with a sequel in 2013&#8230;</p>
<iframe src="http://www.youtube.com/embed/ZIkPeZKP-d4?version=3&amp;autohide=1&amp;color=white&amp;theme=light&amp;wmode=transparent" width="560" height="340" style="background-color:#000;display:block;margin-bottom:0;max-width:100%;" title="A DRAMATIC SURPRISE ON A QUIET SQUARE" frameborder="0" allowfullscreen></iframe><p style="font-size:11px;margin-top:0;"><a href="http://www.youtube.com/watch?v=ZIkPeZKP-d4" target="_blank" title="Watch on YouTube">Watch this video on YouTube</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2013/03/do-not-push-the-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Forums do&#8217;s and don&#8217;ts &#8211; the challenge</title>
		<link>http://www.i3lance.co.uk/2013/02/online-forums-dos-and-donts-the-challenge/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=online-forums-dos-and-donts-the-challenge</link>
		<comments>http://www.i3lance.co.uk/2013/02/online-forums-dos-and-donts-the-challenge/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 16:46:48 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[Tech blurb]]></category>
		<category><![CDATA[Thinktank]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=473</guid>
		<description><![CDATA[I&#8217;m working on a project where I&#8217;ve been asked to create an online community forum. I&#8217;m looking at bbPress at the moment as it&#8217;s the quickest way to using a framework and will sit nicely...]]></description>
				<content:encoded><![CDATA[<div id="attachment_474" class="wp-caption alignleft" style="width: 160px"><a href="http://www.i3lance.co.uk/wp-content/uploads/2013/02/forum-.jpg"><img class="size-thumbnail wp-image-474" alt="Online Forums" src="http://www.i3lance.co.uk/wp-content/uploads/2013/02/forum--150x150.jpg" width="150" height="150" /></a><p class="wp-caption-text">Online Forums &#8211; Just what is the best practice?</p></div>
<p>I&#8217;m working on a project where I&#8217;ve been asked to create an online community forum.</p>
<p>I&#8217;m looking at bbPress at the moment as it&#8217;s the quickest way to using a framework and will sit nicely within the clients existing WP framework.</p>
<p>The idea is to use the plugin, brand it, integrate it with .NET user profiles so there is a single sign on process.</p>
<p>And by the end of this project I&#8217;ll have a list of do&#8217;s and don&#8217;t's based on best practice acquired to research and other resources.</p>
<p>I&#8217;ll let you know how I get on!  Any tips in the mean time would be great!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2013/02/online-forums-dos-and-donts-the-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INFOGRAPHIC: Education &#8211; What do I.T guys really do?</title>
		<link>http://www.i3lance.co.uk/2013/01/infographic-education-what-do-i-t-guys-really-do/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=infographic-education-what-do-i-t-guys-really-do</link>
		<comments>http://www.i3lance.co.uk/2013/01/infographic-education-what-do-i-t-guys-really-do/#comments</comments>
		<pubDate>Sat, 26 Jan 2013 00:38:54 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[Infographics]]></category>
		<category><![CDATA[Thinktank]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[infographic]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=465</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.i3lance.co.uk/wp-content/uploads/2013/01/itguystall06-.jpg"><img src="http://www.i3lance.co.uk/wp-content/uploads/2013/01/itguystall06-.jpg" alt="Education: What do I.T guys do?" width="670" height="3191" class="alignnone size-full wp-image-467" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2013/01/infographic-education-what-do-i-t-guys-really-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>INFOGRAPHIC: Having less form fields can increase conversion</title>
		<link>http://www.i3lance.co.uk/2013/01/infographic-having-less-form-fields-can-increase-conversion/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=infographic-having-less-form-fields-can-increase-conversion</link>
		<comments>http://www.i3lance.co.uk/2013/01/infographic-having-less-form-fields-can-increase-conversion/#comments</comments>
		<pubDate>Sat, 26 Jan 2013 00:07:28 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[Infographics]]></category>
		<category><![CDATA[Thinktank]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[good practice]]></category>
		<category><![CDATA[infographic]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=463</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.i3lance.co.uk/wp-content/uploads/2013/01/INFOG-forms-BIG-.jpg"><img src="http://www.i3lance.co.uk/wp-content/uploads/2013/01/INFOG-forms-BIG-.jpg" alt="Having less form fields increase conversion rates" width="630" height="3819" class="alignnone size-full wp-image-464" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2013/01/infographic-having-less-form-fields-can-increase-conversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git rebase &#8211; the note to self</title>
		<link>http://www.i3lance.co.uk/2012/12/git-rebase-the-note-to-self/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=git-rebase-the-note-to-self</link>
		<comments>http://www.i3lance.co.uk/2012/12/git-rebase-the-note-to-self/#comments</comments>
		<pubDate>Fri, 28 Dec 2012 12:30:32 +0000</pubDate>
		<dc:creator>Desi Reuben-Sealey</dc:creator>
				<category><![CDATA[GIT]]></category>
		<category><![CDATA[Thinktank]]></category>
		<category><![CDATA[developer toolbox]]></category>
		<category><![CDATA[good practice]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.i3lance.co.uk/?p=450</guid>
		<description><![CDATA[Everyday that I use GIT (if you&#8217;ve been reading previous posts I&#8217;ve been using GIT for several months now, going on a year), I&#8217;m learning something new. This is something I started using fairly recently...]]></description>
				<content:encoded><![CDATA[<div id="attachment_451" class="wp-caption alignleft" style="width: 214px"><a href="http://www.i3lance.co.uk/2012/12/git-rebase-the-note-to-self/images-4/" rel="attachment wp-att-451"><img class="size-full wp-image-451" alt="GIT branching" src="http://www.i3lance.co.uk/wp-content/uploads/2012/12/images-.jpg" width="204" height="204" /></a><p class="wp-caption-text">GIT Rebasing is great when multiple people are working on the same branch</p></div>
<p>Everyday that I use GIT (if you&#8217;ve been reading previous posts I&#8217;ve been using GIT for several months now, going on a year), I&#8217;m learning something new.  This is something I started using fairly recently when several dev guys including myself started updating the same branch.</p>
<p>What I learned was that in Git, there are two main ways to integrate changes from one branch into another: the merge and the rebase.</p>
<p>The easiest way to integrate the branches, is the merge command. It performs a three-way merge between your forked branch, the trunk branch and an updated version of the trunk branch.</p>
<blockquote><p>GIT Rebasing is great when multiple people are working on the same branch</p></blockquote>
<p>However, with the rebase command, you can take all the changes that were committed on one branch and replay them on another one.  Your dialog window will show the following if you ran the following command in your branch called <strong>&#8220;experiment&#8221;</strong>;</p>
<pre class="wp-code-highlight prettyprint">
$ git checkout experiment
$ git rebase master
</pre>
<p>Then this happens&#8230;</p>
<pre class="wp-code-highlight prettyprint">
First, rewinding head to replay your work on top of it...
Applying: added staged command
</pre>
<p>In short, treat rebasing as a way to clean up and work with commits before you push them, and if you only rebase commits that have never been available publicly, then you’ll be fine. If you rebase commits that have already been pushed publicly, and people may have based work on those commits, then you may be in for some frustrating trouble.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.i3lance.co.uk/2012/12/git-rebase-the-note-to-self/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
