<?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>Peterski</title>
	<atom:link href="http://peterski.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://peterski.wordpress.com</link>
	<description>A developers perspective on...</description>
	<lastBuildDate>Thu, 22 Sep 2011 23:34:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='peterski.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Peterski</title>
		<link>http://peterski.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://peterski.wordpress.com/osd.xml" title="Peterski" />
	<atom:link rel='hub' href='http://peterski.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Google+ public feed (JSON) with jQuery</title>
		<link>http://peterski.wordpress.com/2011/09/22/javascript-to-pull-out-google-plus-public-feedjson-with-jquery/</link>
		<comments>http://peterski.wordpress.com/2011/09/22/javascript-to-pull-out-google-plus-public-feedjson-with-jquery/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 04:36:49 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jQuery ajax json google plus]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=270</guid>
		<description><![CDATA[With the release of the Google+ api I was tasked to see what it might look like if we pulled in a feed into our intranet. Below is the resultant code. The trickiest part to the code is setting callback=? at the end of the url and setting the dataType to jsonp, the p is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=270&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With the release of the Google+ api I was tasked to see what it might look like if we pulled in a feed into our intranet. Below is the resultant code.</p>
<p>The trickiest part to the code is setting callback=? at the end of the url and setting the dataType to json<strong>p</strong>, the p is very significant <a title="jQuery json page" href="http://api.jquery.com/jQuery.getJSON/" target="_blank">check here why</a>.</p>
<p>Please note you need to add your own google+ api key below<br />
&#8220;YOURKEY&#8221; as well as your own google plus userID &#8220;YOURGOOGLEPLUSID&#8221;.</p>
<p>Contents of getGooglePlus.js below,<br />
$(document).ready(function() {<br />
$.ajax({<br />
type: &#8220;get&#8221;,<br />
url: &#8220;https://www.googleapis.com/plus/v1/people/YOURGOOGLEPLUSID/activities/public?alt=json&amp;pp=1&amp;key=YOURKEY&amp;callback=?&#8221;,<br />
contentType: &#8220;application/json; charset=utf-8&#8243;,<br />
dataType: &#8220;jsonp&#8221;,<br />
success: function(msg) {<br />
BuildTable(msg);<br />
}<br />
});<br />
});</p>
<p>function BuildTable(msg) {</p>
<p>var table = &#8216;</p>
<p>&#8216;; for (var i = 0, l = msg.items.length; i &lt; l; i++) { var googlePlus = msg.items[i];</p>
<p>var row = &#8216;<br />
&#8216;;row += &#8216;<a href="' + googlePlus.title + '">&#8216; + googlePlus.object.attachments[0].displayName + &#8216;</a><br />
&#8216; + googlePlus.object.attachments[0].content + &#8216;</p>
<p>&#8216;;<br />
row += &#8216;</p>
<p>&#8216;;<br />
table += row;<br />
}<br />
table += &#8216;</p>
<p>&#8216;;<br />
$(&#8216;#Container&#8217;).html(table);<br />
}</p>
<p>Contents of HTML CODE:</p>
<p>&lt;script src=&#8221;http://code.jquery.com/jquery-latest.js&#8221; &gt;<br />
&lt;script src=&#8221;getGooglePlus.js&#8221;&gt;<br />
&lt;div id=&#8221;Container&#8221;&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/270/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=270&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2011/09/22/javascript-to-pull-out-google-plus-public-feedjson-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharp LC46LE700X Review</title>
		<link>http://peterski.wordpress.com/2011/03/29/sharp-lc46le700x-review/</link>
		<comments>http://peterski.wordpress.com/2011/03/29/sharp-lc46le700x-review/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 02:39:32 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=266</guid>
		<description><![CDATA[Got this on Saturday, had it delivered Monday and setup Monday night. PROS – Great picture quality (once you turn of all the mumbo jumbo, smooth motion and dynamic contrast) – Low energy consumption – Excellent value for money with 3 year warranty – Nice remote/Nice Menu system, lot better than Sony. Menu user experience [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=266&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-267" style="padding:10px;" title="Sharp 46 Full HD LED LCD 100Hz TV" src="http://peterski.files.wordpress.com/2011/03/sharp-46-full-hd-led-lcd-100hz-tv.gif?w=150&#038;h=103" alt="" width="150" height="103" /></p>
<p>Got this on Saturday, had it delivered Monday and setup Monday night.</p>
<p>PROS<br />
– Great picture quality (once you turn of all the mumbo jumbo, smooth motion and dynamic contrast)<br />
– Low energy consumption<br />
– Excellent value for money with 3 year warranty<br />
– Nice remote/Nice Menu system, lot better than Sony. Menu user experience with Sony I have found awful based on playing with the 46HX800 model(nice having the power button under the remote though)</p>
<p>CONS:<br />
– Speakers are awful u can barely hear them, I think they are just tweeter no bass to them at all. So hooking up to an amp of some sort is essential.<br />
– Glossy screen (Maybe! Though some people perceive that the glossy screen actually enhances the image on the screen) but does reflect stuff something awful.<br />
– Bent insertion column guide inside the TV when setting up the stand (not sure if it was my fault or was like that from the factory), anyone else experience this? Had to get a massive screwdriver to bend it back into place.</p>
<p>I upgraded from a 32&#8243; Benq(1280&#215;768) and was worried that the SD signal from a set top box would be awful as I have experienced that in the Sony 46HX800 and Sanyo 46&#8243; LED( in show rooms only), but was pleasantly surprised as the picture looked quite good not as sharp as the 32&#8243; but very close, but off course that is to be expected larger screen larger pixels. HD signal looked very good.</p>
<p>Yet to hook up the console and HTPC.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=266&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2011/03/29/sharp-lc46le700x-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>

		<media:content url="http://peterski.files.wordpress.com/2011/03/sharp-46-full-hd-led-lcd-100hz-tv.gif?w=150" medium="image">
			<media:title type="html">Sharp 46 Full HD LED LCD 100Hz TV</media:title>
		</media:content>
	</item>
		<item>
		<title>How to set website wide locale in an asp.net website.</title>
		<link>http://peterski.wordpress.com/2010/09/08/how-to-set-website-wide-locale-in-an-asp-net-website/</link>
		<comments>http://peterski.wordpress.com/2010/09/08/how-to-set-website-wide-locale-in-an-asp-net-website/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 10:35:06 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[asp.net web.config locale howto c# localisation localization timezone]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=243</guid>
		<description><![CDATA[I noticed that a website I had just deployed was not showing the correct locale even thought the server was configured exactly the same as my development machine. The datetime/location/timezone settings were exactly the same. I found the below addition to the web.config to be very useful in changing the culture locale: &#60;configuration&#62; &#60;system.web&#62; &#60;globalization [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=243&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I noticed that a website I had just deployed was not showing the correct locale even thought the server was configured exactly the same as my development machine. The datetime/location/timezone settings were exactly the same.</p>
<p>I found the below addition to the web.config to be very useful in changing the culture locale:</p>
<p style="padding-left:10px;margin-bottom:-11px;">&lt;configuration&gt;</p>
<p style="padding-left:20px;margin-bottom:-11px;">&lt;system.web&gt;</p>
<p style="padding-left:30px;">&lt;globalization<br />
fileEncoding=&#8221;utf-8&#8243;<br />
requestEncoding=&#8221;utf-8&#8243;<br />
responseEncoding=&#8221;utf-8&#8243;<br />
culture=&#8221;en-AU&#8221;<br />
uiCulture=&#8221;en-AU&#8221;<br />
/&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/243/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=243&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2010/09/08/how-to-set-website-wide-locale-in-an-asp-net-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>
	</item>
		<item>
		<title>Kindle 3 Review &#8211; Australia</title>
		<link>http://peterski.wordpress.com/2010/09/08/kindle-3-review-australia/</link>
		<comments>http://peterski.wordpress.com/2010/09/08/kindle-3-review-australia/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 10:23:31 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[culture]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[e-reader]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[Kindle 3 Amazon Review]]></category>
		<category><![CDATA[pearl]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=241</guid>
		<description><![CDATA[Pros: Excellent screen, easy to read Long battery life User friendly design Easy to transfer sync files Saves trees (maybe, would like to see cost of resources used to produce and ship one of these suckers..) Useful dictionary Cons: Keyboard is pretty irrelevant and takes up precious space Surface could be a little stickier for holding [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=241&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Pros:</p>
<ul>
<li>Excellent screen, easy to read</li>
<li>Long battery life</li>
<li>User friendly design</li>
<li>Easy to transfer sync files</li>
<li>Saves trees (maybe, would like to see cost of resources used to produce and ship one of these suckers..)</li>
<li>Useful dictionary</li>
</ul>
<p>Cons:</p>
<ul>
<li>Keyboard is pretty irrelevant and takes up precious space</li>
<li>Surface could be a little stickier for holding long periods, back material could have been used on the front</li>
<li>Logo on front is distracting when reading</li>
</ul>
<p>I&#8217;ve been wanting to get an e-reader for quite a while now. When I lived in Tokyo 2 years ago I spent months trying to find one with no avail. I event went to the multi-story Sony headquarters  building in Tokyo and when I asked the sales guy about an e-reader he thought I was talking about a mini laptop. Basically they didn&#8217;t sell &#8216;em.</p>
<p>Along comes Amazon and starts selling the Kindle, each revision sells more and more of them. Now at version 3 its met a price point I cant pass up. So I preordered mine a month ago and a couple of days ago it arrived.</p>
<p>The new Pearl E-Ink screen is very easy to read, I&#8217;ve had a look at other e-readers with e-ink and they are not as clear/crisp as this pearl display. Sony has also released a couple of readers now with Pearl but they are almost double the price.</p>
<p>One of the biggest issues people have usually commented on is the screen refresh that this type of screen has to do, fortunately this refresh is very quick.</p>

<a href='http://peterski.wordpress.com/2010/09/08/kindle-3-review-australia/img_0074/' title='Kindle 3 Screensaver'><img data-attachment-id='245' data-orig-size='640,480' data-liked='0'width="150" height="112" src="http://peterski.files.wordpress.com/2010/09/img_0074-e1283943109334.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Kindle 3 Screensaver" title="Kindle 3 Screensaver" /></a>
<a href='http://peterski.wordpress.com/2010/09/08/kindle-3-review-australia/img_0075/' title='Kindle 3'><img data-attachment-id='246' data-orig-size='640,480' data-liked='0'width="150" height="112" src="http://peterski.files.wordpress.com/2010/09/img_0075-e1283943073522.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Kindle 3" title="Kindle 3" /></a>
<a href='http://peterski.wordpress.com/2010/09/08/kindle-3-review-australia/img_0076/' title='Close up of Kindle in daylight'><img data-attachment-id='247' data-orig-size='640,480' data-liked='0'width="150" height="112" src="http://peterski.files.wordpress.com/2010/09/img_0076-e1283943027833.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Close up of Kindle in daylight" title="Close up of Kindle in daylight" /></a>
<a href='http://peterski.wordpress.com/2010/09/08/kindle-3-review-australia/img_0086/' title='Reading whilst holding a baby is no problem!'><img data-attachment-id='248' data-orig-size='640,480' data-liked='0'width="150" height="112" src="http://peterski.files.wordpress.com/2010/09/img_0086-e1283942984974.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Reading whilst holding a baby is no problem!" title="Reading whilst holding a baby is no problem!" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/241/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/241/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/241/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=241&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2010/09/08/kindle-3-review-australia/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>

		<media:content url="http://peterski.files.wordpress.com/2010/09/img_0074-e1283943109334.jpg?w=150" medium="image">
			<media:title type="html">Kindle 3 Screensaver</media:title>
		</media:content>

		<media:content url="http://peterski.files.wordpress.com/2010/09/img_0075-e1283943073522.jpg?w=150" medium="image">
			<media:title type="html">Kindle 3</media:title>
		</media:content>

		<media:content url="http://peterski.files.wordpress.com/2010/09/img_0076-e1283943027833.jpg?w=150" medium="image">
			<media:title type="html">Close up of Kindle in daylight</media:title>
		</media:content>

		<media:content url="http://peterski.files.wordpress.com/2010/09/img_0086-e1283942984974.jpg?w=150" medium="image">
			<media:title type="html">Reading whilst holding a baby is no problem!</media:title>
		</media:content>
	</item>
		<item>
		<title>Browser Sandbox &#8211; Run any browser from the web</title>
		<link>http://peterski.wordpress.com/2010/03/26/browser-sandbox-run-any-browser-from-the-web/</link>
		<comments>http://peterski.wordpress.com/2010/03/26/browser-sandbox-run-any-browser-from-the-web/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 22:34:54 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=235</guid>
		<description><![CDATA[[UPDATE - Microsoft has asked for the IE browsers to be taken down! Thats just awesome!] Just found a very useful tool for browser testing, you can run IE 6/7/8 (plus other browsers) in a sandbox(def. runs on your local machine in an isolated environment). This works very well from initial testing. You will need [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=235&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://peterski.files.wordpress.com/2010/03/spoon-net.jpg"><img class="alignright size-medium wp-image-236" title="spoon.net" src="http://peterski.files.wordpress.com/2010/03/spoon-net.jpg?w=300&#038;h=175" alt="" width="300" height="175" /></a></p>
<p><span style="color:#ff0000;">[UPDATE - Microsoft has asked for the IE browsers to be taken down! Thats just awesome!] </span><br />
Just found a very useful tool for browser testing, you can run IE 6/7/8 (plus other browsers) in a sandbox(def. runs on your local machine in an isolated environment). This works very well from initial testing.</p>
<p>You will need Firefox and go will need to go here http://spoon.net/browsers/ install the plugin.</p>
<p>Wait for the browser to reboot and go back here http://spoon.net/browsers/</p>
<p>Then you will be able to click on the browser you need to launch and preview a page in.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/235/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=235&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2010/03/26/browser-sandbox-run-any-browser-from-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>

		<media:content url="http://peterski.files.wordpress.com/2010/03/spoon-net.jpg?w=300" medium="image">
			<media:title type="html">spoon.net</media:title>
		</media:content>
	</item>
		<item>
		<title>Testing Windows Phone 7 emulator using Visual Studio 2010 RC</title>
		<link>http://peterski.wordpress.com/2010/03/21/testing-windows-phone-7-emulator-using-visual-studio-2010-rc/</link>
		<comments>http://peterski.wordpress.com/2010/03/21/testing-windows-phone-7-emulator-using-visual-studio-2010-rc/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 22:48:58 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=229</guid>
		<description><![CDATA[I used this tutorial from Engadget to set things up and get it running. Background: I am a 1.6 year user of the iPhone so my comparison is directly to that OS. The Win Mob OS is still not complete so I will only note the things that came to mind whilst playing around with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=229&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I used this tutorial from <a title="Engadget" href="http://www.engadget.com/2010/03/20/taking-the-windows-phone-7-series-emulator-for-a-test-drive-vid/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+weblogsinc/engadget+(Engadget)&amp;utm_content=Google+International">Engadget</a> to set things up and get it running.</p>
<p>Background: I am a 1.6 year user of the iPhone so my comparison is directly to that OS. The Win Mob OS is still not complete so I will only note the things that came to mind whilst playing around with it.</p>
<p>Cool features:</p>
<ul>
<li>IE  remembers the zoom level you were at in the previous page, very nice little feature. Also renders pages very nicely, but not any <a href="http://desandro.com/articles/opera-logo-css/">CSS3 </a>as yet.</li>
<li>Messaging auto word suggest is unobtrusive compared to the iPhone. The words appear in a horizontal list below the word you are typing, its quite nice.</li>
<li>Apps are displayed in a long list, depending on your resolution you will at maximum only see 10 apps at a time, down from 16 on the iPhone.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/229/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=229&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2010/03/21/testing-windows-phone-7-emulator-using-visual-studio-2010-rc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>
	</item>
		<item>
		<title>Website Optimisation</title>
		<link>http://peterski.wordpress.com/2009/09/15/website-optimisation/</link>
		<comments>http://peterski.wordpress.com/2009/09/15/website-optimisation/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 05:41:02 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=212</guid>
		<description><![CDATA[The goal of this article is to give you some pointers in optimising a website or webpage. I will concentrate on the methods that I used and found the most usefull in optimising some pretty heavy web sites/pages. <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=212&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The goal of this article is to give you some pointers in optimising a website or webpage. There are many areas that could be covered here, I will concentrate on the methods that I used and found most useful in optimising some pretty heavy web sites/pages.</p>
<p><strong><span style="text-decoration:underline;">Essential Tools</span></strong></p>
<p>Firefox 3+</p>
<p>Plugins:</p>
<ul>
<li><a href="http://getfirebug.com/" target="_blank">firebug &#8211; net section</a></li>
<li><a href="http://developer.yahoo.com/yslow/" target="_blank">yslow</a></li>
<li>FF &#8211; Lori</li>
<li><a href="http://code.google.com/speed/page-speed/" target="_blank">Page Speed</a></li>
</ul>
<p>The above plugins are very useful for what we want to do, each one has its strengths and weaknesses.  <a href="http://developer.yahoo.com/yslow/" target="_blank">YSlow</a> offers suggestions for improving the page&#8217;s performance, summarizes the page&#8217;s components, displays statistics about the page, and provides tools for performance analysis, including <a style="color:#006ca2;text-decoration:none;" href="http://developer.yahoo.com/yslow/smushit/index.html">Smush.it™</a> and <a style="color:#006ca2;text-decoration:none;" href="http://jslint.com/">JSLint</a>. Another cool tool is <a href="http://code.google.com/speed/page-speed/" target="_blank">Page Speed</a>. It is an open-source Firefox/Firebug Add-on. Webmasters and web developers can use Page Speed to check the performance of their web pages and to get suggestions on how to improve them.</p>
<p>Below are recommendations once you have established that your site is under performing.</p>
<p><strong>1.0 Images<br />
<span style="font-weight:normal;">Compress images as far as possible before loosing quality. JSLint and Smush.it are easy tools to use as mentioned above in YSlow. Reusable images should be combined into one file and manipulated through CSS.</span></strong></p>
<p><strong>2.0 Javascript<br />
<span style="font-weight:normal;">Move all js files to the bottom of the file where possible. Compress files where possible with <a href="http://www.crockford.com/javascript/jsmin.html" target="_blank">jsmin</a>.</span></strong></p>
<p><strong>3.0 HTML/W3C Compliance</strong></p>
<p>W3C compliance is important as the browser has to do extra work if there are syntactical errors.</p>
<p><strong>4.0 CSS</strong></p>
<p><strong><span style="font-weight:normal;">Compress files where possible with </span><a href="http://www.crockford.com/javascript/jsmin.html" target="_blank"><span style="font-weight:normal;">jsmin</span></a><span style="font-weight:normal;">. Make sure CSS is not redundant.</span></strong></p>
<p><strong> 5.0 Server Compression<br />
</strong><strong><span style="font-weight:normal;"> </span></strong></p>
<p><strong><span style="font-weight:normal;">Assumptions: Website is running on Microsoft Platform and website is running on IIS (Internet Information Server). I found this step to have the most immediate impact and one of the simplest and fastest optimization techniques. <a href="http://smallworkarounds.blogspot.com/2009/01/aspnet-iis-tricks-using-gzip.html" target="_blank">IIS Compression using GZIP</a> . Using this technique I was able to cut download size by 40%.</span></strong></p>
<p><strong><span style="font-weight:normal;">[update] Found this recently posted resource which gives an even more in-depth tutorial then the above link on fine tuning <a href="http://www.codeproject.com/KB/dotnet/DotNetBestPractices4.aspx" target="_blank">IIS Compression</a>. </span></strong></p>
<p><span style="font-weight:normal;"><strong>6.0 Reduce the number of files</strong></span></p>
<p><span style="font-weight:normal;">The number of files being included into a page has a big impact on page load time. Combine image into one if used across site. Combine CSS/JS where possible.</span></p>
<p><span style="font-weight:normal;"><br />
</span></p>
<p><span style="font-weight:normal;">Using the simple steps above I was able to cut the page footprint by 70%. This is not only a time saving for the end user but a huge financial saving for the host in terms of bandwidth.</span></p>
<p><span style="font-weight:normal;"><br />
</span></p>
<p><strong><span style="font-weight:normal;"><span style="text-decoration:underline;">Related:</span></span></strong></p>
<p>Another quality article from smashing magazine, <a href="http://www.smashingmagazine.com/2010/01/06/page-performance-what-to-know-and-what-you-can-do/">http://www.smashingmagazine.com/2010/01/06/page-performance-what-to-know-and-what-you-can-do/</a></p>
<p><strong><span style="font-weight:normal;"><span style="text-decoration:underline;"><br />
</span></span></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=212&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2009/09/15/website-optimisation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>
	</item>
		<item>
		<title>Wii &#8211; Super Mario Galaxy</title>
		<link>http://peterski.wordpress.com/2009/05/10/wii-super-mario-galaxy/</link>
		<comments>http://peterski.wordpress.com/2009/05/10/wii-super-mario-galaxy/#comments</comments>
		<pubDate>Sun, 10 May 2009 00:42:43 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[mario]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=204</guid>
		<description><![CDATA[I have just finished Super Mario Galaxy, ok it did take me 18months to finish but then again I am getting value for money so after all that time I have to say that this game would have to be one of the best games ever to be made. This is becuase of the beautiful [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=204&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-206" style="padding:10px;" title="box_115741" src="http://peterski.files.wordpress.com/2009/05/box_1157411.jpg?w=780" alt="box_115741"   align="left" /> I have just finished Super Mario Galaxy, ok it did take me 18months to finish but then again I am getting value for money so after all that time I have to say that this game would have to be one of the best games ever to be made. This is becuase of the beautiful and ever changing level design. Each level is beautifully rendered and quite unique. It is also one of the easiest games to get into, almost anyone could enjoy this game. Perhaps not as easy to get into as say Wii sports bowling or tennis, but if you want a lasting and rewarding expierence this is as good as it gets in games.  So many innovative ideas and full use of the way the Wii control system works. I would have to give it 10/10 points.</p>
<p>[Update - 4th June 09] &#8211; Super Mario Galaxy 2 has been announced at E3 dont expect it anytime this year though.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/204/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/204/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/204/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=204&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2009/05/10/wii-super-mario-galaxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>

		<media:content url="http://peterski.files.wordpress.com/2009/05/box_1157411.jpg" medium="image">
			<media:title type="html">box_115741</media:title>
		</media:content>
	</item>
		<item>
		<title>Easy banana cake recipe</title>
		<link>http://peterski.wordpress.com/2009/03/04/easy-banana-cake-recipe/</link>
		<comments>http://peterski.wordpress.com/2009/03/04/easy-banana-cake-recipe/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 21:19:23 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[banana cake recipe]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=202</guid>
		<description><![CDATA[Real easy recipe that I tried last week, this cake is delicious with ice cream. This cake did not come out moist for me, probably because I used a round tin instead of a loaf tin. Ingredients: (2 bananas used for this recipe) ¼ cup milk 1 teaspoon lemon juice 250g (8oz) bananas  1 cup [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=202&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Real easy recipe that I tried last week, this cake is delicious with ice cream. This cake did not come out moist for me, probably because I used a round tin instead of a loaf tin.</p>
<p><span style="text-decoration:underline;">Ingredients:</span></p>
<p>(2 bananas used for this recipe)</p>
<p>¼ cup milk<br />
1 teaspoon lemon juice<br />
250g (8oz) bananas <br />
1 cup sugar<br />
2 cups self raising flour<br />
2 eggs<br />
60 g (2 oz) butter</p>
<p><span style="text-decoration:underline;">Method:</span></p>
<p>Combine milk and lemon juice. Peel and mash bananas, put into bowl of electric mixer. Add sugar, sifted flour, lightly beaten eggs, softened butter and combined milk and lemon juice. Beat on low speed until combined, then beat on medium speed 2 minutes. Turn mixture into greased 23 cm x 12 cm (9 in x 5 in) loaf tin which has the base lined with greased greaseproof paper. Bake in low to moderate oven approx 1 ¾ hours or until cooked when tested. Cool in tin 10 minutes before turning out on wire rack to complete cooling.</p>
<p>I found this recipe <a title="Link to easy banana cake recipe" href="http://www.bananacakerecipe.com.au/easy-banana-cake-recipe.asp" target="_blank">here</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=202&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2009/03/04/easy-banana-cake-recipe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>
	</item>
		<item>
		<title>Experience of using Google&#8217;s tutorials in building an Android application.</title>
		<link>http://peterski.wordpress.com/2009/02/18/experience-of-using-googles-tutorials-in-building-an-android-application/</link>
		<comments>http://peterski.wordpress.com/2009/02/18/experience-of-using-googles-tutorials-in-building-an-android-application/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 05:32:58 +0000</pubDate>
		<dc:creator>peterski</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://peterski.wordpress.com/?p=194</guid>
		<description><![CDATA[Coming from a .net background there are some hurdles to over come here since we are entering a Java world. Things you will need right of the bat are the  Java SDK, an IDE,  google recommends Eclipse, which I got. Then go here http://code.google.com/android/ Download the SDK and plugin for eclipse. pfooh and thats it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=194&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-196" title="android1" src="http://peterski.files.wordpress.com/2009/02/android1.jpg?w=780" alt="android1"   />Coming from a .net background there are some hurdles to over come here since we are entering a Java world.</p>
<p>Things you will need right of the bat are the  Java SDK, an IDE,  google recommends Eclipse, which I got.</p>
<p>Then go here <a href="http://code.google.com/android/">http://code.google.com/android/</a></p>
<p>Download the SDK and plugin for eclipse. pfooh and thats it u can start coding. It took me about an hour to get everything depending on your net connection offcourse, being in Australia <em>forget about it</em>.</p>
<p>I followed the <a href="http://code.google.com/android/intro/tutorial.html">tutorial</a> on the above link to create a notepad style application. The tutorial is very good and pretty easy to follow even if your not a Java guru, as long as you understand OO concepts.</p>
<p>So within an hour I was able to run the emulator with my small functional app residing on the android phones desktop.</p>
<p>One thing that I liked straight away was how the interface can be coded in xml and is seperated from the classes. Also all OS libraries are logically set out and are quite easy to understand and use.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/peterski.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/peterski.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/peterski.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/peterski.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/peterski.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/peterski.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/peterski.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/peterski.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/peterski.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/peterski.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/peterski.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/peterski.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/peterski.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/peterski.wordpress.com/194/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=peterski.wordpress.com&amp;blog=845385&amp;post=194&amp;subd=peterski&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://peterski.wordpress.com/2009/02/18/experience-of-using-googles-tutorials-in-building-an-android-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2c683e130d3ad3c34f20b3082a790fbb?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">peterski</media:title>
		</media:content>

		<media:content url="http://peterski.files.wordpress.com/2009/02/android1.jpg" medium="image">
			<media:title type="html">android1</media:title>
		</media:content>
	</item>
	</channel>
</rss>
