<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Andrew Chaa, cha cha</title>
	<atom:link href="http://andrewchaa.me.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewchaa.me.uk</link>
	<description>Dance with a geek</description>
	<lastBuildDate>Sat, 26 May 2012 23:58:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='andrewchaa.me.uk' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Andrew Chaa, cha cha</title>
		<link>http://andrewchaa.me.uk</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://andrewchaa.me.uk/osd.xml" title="Andrew Chaa, cha cha" />
	<atom:link rel='hub' href='http://andrewchaa.me.uk/?pushpress=hub'/>
		<item>
		<title>jQuery basics</title>
		<link>http://andrewchaa.me.uk/2012/05/17/jquery-basics/</link>
		<comments>http://andrewchaa.me.uk/2012/05/17/jquery-basics/#comments</comments>
		<pubDate>Thu, 17 May 2012 15:55:30 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=732</guid>
		<description><![CDATA[This is the summary of &#8220;Fundamentals of Great jQuery Development&#8221;, which is available at http://vimeo.com/18511621. javascript is a functional language, not in a useful way, but because it treats function as its first-class citizen. It is also Object-oriented language, as it treats everything as object. function declaration This is what people use most of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=732&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is the summary of &#8220;Fundamentals of Great jQuery Development&#8221;, which is available at <a href="http://vimeo.com/18511621">http://vimeo.com/18511621</a>.</p>
<p>javascript is a functional language, not in a useful way, but because it treats function as its first-class citizen. It is also Object-oriented language, as it treats everything as object.</p>
<p><strong>function declaration</strong><br />
This is what people use most of the time.<br />
<pre class="brush: jscript;">
function foo(p1) {
    p1();
}
</pre></p>
<p><strong>function expression</strong><br />
This doesn&#8217;t have name and is anonymous.<br />
<pre class="brush: jscript;">
foo(function () {});
</pre></p>
<p><strong>function expression with name</strong><br />
<pre class="brush: jscript;">
foo(function f1(), &quot;test&quot; {});
</pre></p>
<p><strong>json literals</strong><br />
<pre class="brush: jscript;">
var o = {
    foo: 1,
    bar: &quot;test&quot;,
    alpha: {
        damian: function () { }
    }
};

</pre><br />
Here o is an object.</p>
<p><strong>constructor</strong><br />
&#8220;new&#8221; means you create a new object based on its protytype.<br />
If you mean a class, capitalise the first letter as convention.</p>
<p><pre class="brush: jscript;">
function Animal() {
    this.breed = &quot;domestic tabby&quot;;
    this.smellsLike = &quot;candy&quot;;
}
Animal.prototype = {
    member1: function() { },
    member2: &quot;&quot;
};

var f = new Animal(); // create a new animal based on the prototype.
f.member1
var f = Animal(); // this makes breed and smellsLike global scope, possibly overriding other breed.
</pre></p>
<p><strong>Scope</strong><br />
In javascript, a variable&#8217;s scope is function-level. A variable is accessible within a function, even though it is declared within a block</p>
<p><pre class="brush: jscript;">
function () {
    var i = 0;
    for (var j = 0; j &lt;= 10; j++) {
        var x = 'test'; 
    }
    x = 20; //this x is visible outside of the for block
}
x = 20: // x is not visible outside of function
</pre></p>
<p>Global variable or function is bad, because you cannot guarantee that only your javascript would run in the browser. You have multiple javascript from 3rd party, grease-monkey plugins, &#8230;</p>
<p>So, don&#8217;t declare a function in the global scope. Instead, create anonymous function and immediately execute it.</p>
<p><pre class="brush: jscript;">
(function() {
    var i = 'test'; //as long as you use 'var', it is safe.
    this.alert('hi'); // this is global window
    
}())

//If you want to pass window object
(function (w) {
    var i = 'test';
}(window))

</pre></p>
<p><strong>this</strong></p>
<p><pre class="brush: jscript;">
function foo() {
    this //this is an global object
}

function Foo() {
    this // not an global object, but this function.
}
var f = new Foo();


//this can be resued depending on the context.
function foo() {
    alert(this.hi); //In this case, this becomes the function, not global.
}
foo.call({ hi: 'test' });
foo.call({ hi: 123 });
</pre></p>
<p><strong>Closure</strong><br />
A closure is a function that references a variable that isn&#8217;t contained within its own immediate scope.</p>
<p><pre class="brush: jscript;">
// this variable is out of the scope;
function foo() {
    var myVar = 1;

    return function() { 
        return myVar.toString();
    };
}

var myFunc = foo();
myFunc(); //This access myVar, which is outside of the function boundary. This looks trivial, but event handler takes advantage of closure.
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/732/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/732/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/732/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=732&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/05/17/jquery-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
		<item>
		<title>Rails Commands</title>
		<link>http://andrewchaa.me.uk/2012/05/16/rails-commands/</link>
		<comments>http://andrewchaa.me.uk/2012/05/16/rails-commands/#comments</comments>
		<pubDate>Wed, 16 May 2012 06:41:18 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=721</guid>
		<description><![CDATA[Summary of various ruby commands .erb: embedded ruby, the primary template system for including dynamic content in web pages. Generation Undoing things Running tests Embedded Ruby template Unix commands mv: rename Git commands Commit, merge, and push RVM and bundler integration<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=721&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Summary of various ruby commands</p>
<p>.erb: embedded ruby, the primary template system for including dynamic content in web pages.</p>
<h3>Generation</h3>
<p><pre class="brush: bash;">
$ rails generate integration_test static_pages
</pre></p>
<h3>Undoing things</h3>
<p><pre class="brush: bash;">
$ rails generate controller StaticPages home help
$ rails destroy  controller StaticPages home help

$ rails generate model Foo bar:string baz:integer
$ rails destroy  model Foo

$ rake db:migrate
$ rake db:rollback
$ rake db:migrate VERSION=0
</pre></p>
<h3>Running tests</h3>
<p><pre class="brush: bash;">
$ bundle exec rspec spec/requests/static_pages_spec.rb
</pre></p>
<h3>Embedded Ruby template</h3>
<p><pre class="brush: ruby;">
&lt;% provide(:title, 'About Us') %&gt;
&lt;!DOCTYPE html&gt;
&lt;html&gt;
  &lt;head&gt;
    &lt;title&gt;Ruby on Rails Tutorial Sample App | &lt;%= yield(:title) %&gt;&lt;/title&gt;
</pre></p>
<h3>Unix commands</h3>
<p>mv: rename</p>
<p><pre class="brush: bash;">
$ mv app/views/layouts/application.html.erb foobar
</pre></p>
<h3>Git commands</h3>
<p>Commit, merge, and push<br />
<pre class="brush: bash;">
$ git add .
$ git commit -m &quot;Finish static pages&quot;
$ git checkout master
$ git merge static-pages
$ git push
</pre></p>
<h3>RVM and bundler integration</h3>
<p><pre class="brush: bash;">
$ rvm get head &amp;&amp; rvm reload
$ chmod +x $rvm_path/hooks/after_cd_bundler
$ cd ~/rails_projects/sample_app
$ bundle install --without production --binstubs=./bundler_stubs
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/721/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/721/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/721/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=721&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/05/16/rails-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
		<item>
		<title>My Favourite Textmate Shortcuts</title>
		<link>http://andrewchaa.me.uk/2012/05/14/my-favourite-textmate-shortcuts/</link>
		<comments>http://andrewchaa.me.uk/2012/05/14/my-favourite-textmate-shortcuts/#comments</comments>
		<pubDate>Mon, 14 May 2012 19:54:41 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[textmate]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=713</guid>
		<description><![CDATA[cmd + T: Go to file ctrl + cmd + R: Reveal in a project shft + cmd + N: new file in the current folder cmd + Enter: go to the next line cmd + W: close tab shft + ctrl + D: duplicate the selection to be continued &#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=713&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>cmd + T: Go to file </li>
<li>ctrl + cmd + R: Reveal in a project</li>
<li>shft + cmd + N: new file in the current folder</li>
<li>cmd + Enter: go to the next line</li>
<li>cmd + W: close tab</li>
<li>shft + ctrl + D: duplicate the selection</li>
</ul>
<p>to be continued &#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/713/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/713/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/713/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=713&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/05/14/my-favourite-textmate-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
		<item>
		<title>Structuremap Basics</title>
		<link>http://andrewchaa.me.uk/2012/05/04/structuremap-basics/</link>
		<comments>http://andrewchaa.me.uk/2012/05/04/structuremap-basics/#comments</comments>
		<pubDate>Fri, 04 May 2012 10:03:17 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[dependency injection]]></category>
		<category><![CDATA[StructureMap]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=705</guid>
		<description><![CDATA[Define the instance for your interface Call the wiring module within Application_Start() event in Global.asax.cs To be continued<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=705&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Define the instance for your interface</p>
<p><pre class="brush: csharp;">
public class WiringModule
{
    public void Initialize(IInitializationExpression x)
    {
        x.For&lt;IJobPoster&gt;().Use&lt;JobPoster&gt;();
    }
}

</pre></p>
<p>Call the wiring module within Application_Start() event in Global.asax.cs</p>
<p><pre class="brush: csharp;">
protected void Application_Start()
{
    ObjectFactory.Initialize(wiringModule.Initalize);
}

</pre></p>
<p>To be continued</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/705/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/705/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/705/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=705&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/05/04/structuremap-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
		<item>
		<title>My ReSharper Keyboard Shortcuts</title>
		<link>http://andrewchaa.me.uk/2012/04/30/my-resharper-keyboard-shortcuts/</link>
		<comments>http://andrewchaa.me.uk/2012/04/30/my-resharper-keyboard-shortcuts/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 07:47:42 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Resharper]]></category>
		<category><![CDATA[shortcuts]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=701</guid>
		<description><![CDATA[This is ReSharper&#8217;s comprehensive shortcuts. Yet there are a few things I favour. Shft + F12: Go to previous error/warning/highlight. Handy, when you create a new type. You don&#8217;t have to press left arrow<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=701&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is ReSharper&#8217;s <a href="http://www.jetbrains.com/resharper/webhelp/Reference__Keyboard_Shortcuts.html">comprehensive shortcuts</a>. Yet there are a few things I favour.</p>
<ul>
<li>Shft + F12: Go to previous error/warning/highlight. Handy, when you create a new type. You don&#8217;t have to press left arrow</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/701/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/701/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/701/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=701&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/04/30/my-resharper-keyboard-shortcuts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
		<item>
		<title>jquery selection basics</title>
		<link>http://andrewchaa.me.uk/2012/04/27/jquery-selection-basic/</link>
		<comments>http://andrewchaa.me.uk/2012/04/27/jquery-selection-basic/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 10:49:43 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[basics]]></category>
		<category><![CDATA[checkbox]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=691</guid>
		<description><![CDATA[To be continued&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=691&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: jscript;">

$(':checkbox')          //If you want to select all checkboxes, 
$(':checkbox:enabled')  //Select all checkboxes enabled

$(':enabled, checkbox') //This works on Firefox and Chrome, but not on IE
</pre></p>
<p>To be continued&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/691/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/691/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/691/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/691/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/691/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/691/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/691/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/691/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/691/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/691/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/691/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/691/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/691/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/691/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=691&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/04/27/jquery-selection-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
		<item>
		<title>show ajax loader image while making ajax request with jquery</title>
		<link>http://andrewchaa.me.uk/2012/04/26/show-ajax-loader-image-while-making-ajax-request-with-jquery/</link>
		<comments>http://andrewchaa.me.uk/2012/04/26/show-ajax-loader-image-while-making-ajax-request-with-jquery/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 15:01:27 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[loader]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=681</guid>
		<description><![CDATA[You will need an image, first. Go to ajaxload.info and get one you like. Put the html for the loader in the page. Style the div element to position it on the centre of the browser. Now, use javascript to fade it in and out, when an ajax request starts. Reference: http://stackoverflow.com/questions/807408/showing-loading-animation-in-center-of-page-while-making-a-call-to-action-method<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=681&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You will need an image, first. Go to <a href="http://ajaxload.info/">ajaxload.info</a> and get one you like.</p>
<p>Put the html for the loader in the page.</p>
<p><pre class="brush: xml;">
&lt;div id=&quot;spinner&quot;&gt;
    &lt;img src=&quot;/jobadmanager/Content/images/ajax-loader-big.gif&quot; alt=&quot;Loading...&quot;/&gt;
&lt;/div&gt;
</pre></p>
<p>Style the div element to position it on the centre of the browser.</p>
<p><pre class="brush: css;">
&lt;style&gt;
div#spinner
{
    display: none;
    width:100px;
    height: 100px;
    position: fixed;
    top: 50%;
    left: 50%;
    text-align:center;
    margin-left: -50px;
    margin-top: -100px;
    z-index:2;
    overflow: auto;
}    
&lt;/style&gt;
</pre></p>
<p>Now, use javascript to fade it in and out, when an ajax request starts. </p>
<p><pre class="brush: jscript;">
&lt;script type=&quot;text/javascript&quot;&gt;
    $('#spinner').ajaxStart(function () {
        $(this).fadeIn('fast');
    }).ajaxStop(function () {
        $(this).stop().fadeOut('fast');
    });

&lt;/script&gt;
</pre></p>
<p>Reference: http://stackoverflow.com/questions/807408/showing-loading-animation-in-center-of-page-while-making-a-call-to-action-method</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/681/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/681/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/681/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/681/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/681/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/681/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/681/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/681/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/681/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/681/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/681/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/681/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/681/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/681/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=681&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/04/26/show-ajax-loader-image-while-making-ajax-request-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 Bootcamp on mac Shortcut Keys</title>
		<link>http://andrewchaa.me.uk/2012/04/25/windows-7-bootcamp-on-mac-shortcut-keys/</link>
		<comments>http://andrewchaa.me.uk/2012/04/25/windows-7-bootcamp-on-mac-shortcut-keys/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 19:53:04 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bootcamp]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[shortcuts]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=677</guid>
		<description><![CDATA[# Hash It should be a simple thing, but dear!, I coundn&#8217;t find it. On Mac, you can use alt + 3. The combination is weird enough, but on windows 7, I couldn&#8217;t type it at all, &#8230; well until tonight. Simply, it is right alt + 3. ##### hahaha. To summarise all the  key [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=677&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3># Hash</h3>
<p>It should be a simple thing, but dear!, I coundn&#8217;t find it. On Mac, you can use alt + 3. The combination is weird enough, but on windows 7, I couldn&#8217;t type it at all, &#8230; well until tonight.</p>
<p>Simply, it is <a href="https://discussions.apple.com/thread/2758010?start=0&amp;tstart=0">right alt + 3</a>. ##### hahaha.</p>
<p>To summarise all the  key combinations</p>
<ul>
<li>#: right alt + 3</li>
<li>Del: fn + &lt;-</li>
<li>Home: fn + left arrow</li>
<li>End: fn + right arrow</li>
<li>Begging of a page: fn + up arrow</li>
<li>End of a page: fn + down arrow</li>
</ul>
<p>Hope this post helps you out of your frustration with Windows 7 on Mac bootcamp.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/677/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/677/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/677/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=677&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/04/25/windows-7-bootcamp-on-mac-shortcut-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
		<item>
		<title>Disable browser cache for ajax request on ASP.NET MVC</title>
		<link>http://andrewchaa.me.uk/2012/04/25/disable-browser-cache-for-ajax-request-on-asp-net-mvc/</link>
		<comments>http://andrewchaa.me.uk/2012/04/25/disable-browser-cache-for-ajax-request-on-asp-net-mvc/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 15:14:34 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[ASP.Net MVC]]></category>
		<category><![CDATA[attribute]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=671</guid>
		<description><![CDATA[The application reloads the list of jobs, if any job is reposted or expired. We display different labels, such as &#8220;reposted&#8221;, &#8220;expired&#8221;, depending on the action. It worked well with browsers but IE 8. Simply, IE was cacheing the part of html. Though we request the partial view by post. So, we brought in NoCache [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=671&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The application reloads the list of jobs, if any job is reposted or expired. We display different labels, such as &#8220;reposted&#8221;, &#8220;expired&#8221;, depending on the action. It worked well with browsers but IE 8.</p>
<p>Simply, IE was cacheing the part of html. Though we request the partial view by post.</p>
<p><pre class="brush: jscript;">
update: function () {
    $.ajax({
        type: &quot;GET&quot;,
        url: &quot;MJobsB?p=&quot; + list.cPg(),
        contentType: &quot;text/html; charset=utf-8&quot;,
        dataType: &quot;html&quot;,
        success: function (data) {
            $('#ct #cnt').html(data);
        },
        error: function () { alert(&quot;Error Loading Jobs&quot;); }
    });
},
</pre></p>
<p>So, we brought in <a href="http://stackoverflow.com/a/1705113/437961">NoCache</a> attribute. And made the action not cached on IE. We made it with attribute, as we want to cache other stuff, especially images.</p>
<p>This is NoCache attribute.</p>
<p><pre class="brush: csharp;">
public class NoCacheAttribute : ActionFilterAttribute
{
    public override void OnResultExecuting(ResultExecutingContext filterContext)
    {
        filterContext.HttpContext.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1));
        filterContext.HttpContext.Response.Cache.SetValidUntilExpires(false);
        filterContext.HttpContext.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);
        filterContext.HttpContext.Response.Cache.SetCacheability(HttpCacheability.NoCache);
        filterContext.HttpContext.Response.Cache.SetNoStore();

        base.OnResultExecuting(filterContext);
    }
}
</pre></p>
<p>On controller, you just add the attribute.<br />
<pre class="brush: csharp;">
[NoCache]
[HttpGet]
public ActionResult MJobsB(int cId, int? pg)
{
    return RenderJobListIn(&quot;_MJobsB&quot;, cId, Mode.List, pg, false);            
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/671/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=671&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/04/25/disable-browser-cache-for-ajax-request-on-asp-net-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
		<item>
		<title>running sublime text 2 on ubuntu</title>
		<link>http://andrewchaa.me.uk/2012/04/23/running-sublime-text-2-on-ubuntu/</link>
		<comments>http://andrewchaa.me.uk/2012/04/23/running-sublime-text-2-on-ubuntu/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 14:42:54 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[sublime]]></category>
		<category><![CDATA[sublime text 2]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://andrewchaa.me.uk/?p=660</guid>
		<description><![CDATA[You can download sublime text 2. I created a directory, &#8220;Applications&#8221; under Home. I extracted the downloaded tar in there. Then I did &#8220;Make Link&#8221; of sublime_text executable and put it into /home/bin, where $Path includes. I renamed the shortcut (excuse my windows terminology) to &#8220;subl&#8221;, so I can just type &#8220;subl .&#8221; to launch [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=660&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can download <a href="http://www.sublimetext.com/2">sublime text 2</a>.</p>
<p>I created a directory, &#8220;Applications&#8221; under Home. I extracted the downloaded tar in there. Then I did &#8220;Make Link&#8221; of sublime_text executable and put it into /home/bin, where $Path includes. I renamed the shortcut (excuse my windows terminology) to &#8220;subl&#8221;, so I can just type &#8220;subl .&#8221; to launch the editor.</p>
<p>&#8220;Unable to locate theme engine in module_path: &#8220;pixmap&#8221;"<br />
I run the editor and get this error.</p>
<p><pre class="brush: bash;">
sudo apt-get install gtk2-engines-pixbuf
</pre></p>
<p>Once you install gtk2&#8230;, the error will go away.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/simplelifeuk.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/simplelifeuk.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/simplelifeuk.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/simplelifeuk.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/simplelifeuk.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/simplelifeuk.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/simplelifeuk.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/simplelifeuk.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/simplelifeuk.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/simplelifeuk.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/simplelifeuk.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/simplelifeuk.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/simplelifeuk.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/simplelifeuk.wordpress.com/660/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrewchaa.me.uk&#038;blog=1833431&#038;post=660&#038;subd=simplelifeuk&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrewchaa.me.uk/2012/04/23/running-sublime-text-2-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c311c181986feead6c7cb43fb9844b32?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">simplelifeuk</media:title>
		</media:content>
	</item>
	</channel>
</rss>
