<?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>Geek&#039;s the new black</title>
	<atom:link href="http://geeksthenewblack.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://geeksthenewblack.wordpress.com</link>
	<description>embrace your inner geek</description>
	<lastBuildDate>Thu, 26 Jan 2012 18:39:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='geeksthenewblack.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/4f25ee4c644a2fcea8229d99700387b4?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Geek&#039;s the new black</title>
		<link>http://geeksthenewblack.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://geeksthenewblack.wordpress.com/osd.xml" title="Geek&#039;s the new black" />
	<atom:link rel='hub' href='http://geeksthenewblack.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Show rating stars in the content query web part</title>
		<link>http://geeksthenewblack.wordpress.com/2010/10/29/show-rating-stars-in-the-content-query-web-part/</link>
		<comments>http://geeksthenewblack.wordpress.com/2010/10/29/show-rating-stars-in-the-content-query-web-part/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 23:03:34 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Content Query Web Part]]></category>
		<category><![CDATA[CQWP]]></category>
		<category><![CDATA[Ratings]]></category>
		<category><![CDATA[Sharepoint]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/?p=292</guid>
		<description><![CDATA[I&#8217;m not one to blow my own horn, but I have been ROCKING the content query web part as of late. I always stayed away from it in favour of the data view web part, believing it wasn&#8217;t as flexible, but as it turns out, I was mistaken. Yesterday, I wanted a &#8220;top rated documents&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=292&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>I&#8217;m not one to blow my own horn, but I have been ROCKING the content query web part as of late. I always stayed away from it in favour of the data view web part, believing it wasn&#8217;t as flexible, but as it turns out, I was mistaken.</div>
<div>Yesterday, I wanted a &#8220;top rated documents&#8221; web part for the home page of a document centre, that lists the top rated documents from all document libraries in the site. This is easy enough, using the content query web part (CQWP) with the following settings:</div>
<ul>
<li> source = &#8220;show items in this site and all subsites&#8221;</li>
<li> list type = &#8220;document library&#8221;</li>
<li>additional filters: show items where Rating (0-5) is greater than 0</li>
<li>under presentation choose an item limit (10 in my case) and sort items by Rating (0-5) in descending order</li>
</ul>
<div>So that&#8217;s nice and all but I would like to display the lovely wee stars beside my document titles so users can see the rating on each document.</div>
<div>If you change the item style (under presentation in the CQWP settings) to something like title and description, and then set the description field to the rating column you can see the raw data that is stored in there &#8211; just a number between 0 and 5 with a whole truckload of zeroes at the end.</div>
<div>So how is this rendered throughout other parts of SharePoint 2010 sites when you see the actual star image instead of the average rating data? It is done using CSS classes on both the image of the stars, and the link itself, and it&#8217;s all wrapped in a span tag. There&#8217;s also a heap of fancy javascript in there to give you the rollover effect and the ability to submit your own rating (but we&#8217;re not going to try and get <em>that</em> fancy today). The average ratings are calculated for this colum and can be any number from 0 to 5, including long decimal numbers, but the stars are only rendered in either whole number or whole number and a half ratings (e.g. an average rating of 3.335 shows 3.5 stars).</div>
<div>To use this ratings column in the CQWP and include the necessary tags wrapped around it, I added a custom item style to itemstyle.xsl (for an introduction on modifying itemstyle.xsl see <a title="Customizing the content query web part" href="http://www.heathersolomon.com/blog/articles/CustomItemStyle.aspx">Heather Soloman&#8217;s post</a>) as per below:</div>
<div><pre class="brush: xml;">
    &lt;xsl:template name=&quot;TitleAndRatings&quot; match=&quot;Row[@Style='TitleAndRatings']&quot; mode=&quot;itemstyle&quot;&gt;
        &lt;xsl:variable name=&quot;SafeLinkUrl&quot;&gt;
            &lt;xsl:call-template name=&quot;OuterTemplate.GetSafeLink&quot;&gt;
                &lt;xsl:with-param name=&quot;UrlColumnName&quot; select=&quot;'LinkUrl'&quot;/&gt;
            &lt;/xsl:call-template&gt;
        &lt;/xsl:variable&gt;
        &lt;xsl:variable name=&quot;DisplayTitle&quot;&gt;
            &lt;xsl:call-template name=&quot;OuterTemplate.GetTitle&quot;&gt;
                &lt;xsl:with-param name=&quot;Title&quot; select=&quot;@Title&quot;/&gt;
                &lt;xsl:with-param name=&quot;UrlColumnName&quot; select=&quot;'LinkUrl'&quot;/&gt;
            &lt;/xsl:call-template&gt;
        &lt;/xsl:variable&gt;
      &lt;div class=&quot;item link-item&quot;&gt;
        &lt;xsl:call-template name=&quot;OuterTemplate.CallPresenceStatusIconTemplate&quot;/&gt;
        &lt;div style=&quot;float:right&quot;&gt;
        &lt;xsl:if test=&quot;@Ratings &amp;gt;= 4.75&quot;&gt;
		&lt;span&gt;
			&lt;a class=&quot;ms-currentRating&quot;&gt;&lt;img class=&quot;ms-rating_5&quot; src=&quot;/_layouts/Images/Ratings.png&quot; alt=&quot;Current average rating is 5 stars.&quot; /&gt;&lt;/a&gt;
		&lt;/span&gt;        		
        &lt;/xsl:if&gt;
        &lt;xsl:if test=&quot;@Ratings &amp;gt;= 4.25 and @Ratings &amp;lt; 4.75&quot;&gt;
		&lt;span&gt;
			&lt;a class=&quot;ms-currentRating&quot;&gt;&lt;img class=&quot;ms-rating_4_5&quot; src=&quot;/_layouts/Images/Ratings.png&quot; alt=&quot;Current average rating is 4.5 stars.&quot; /&gt;&lt;/a&gt;
		&lt;/span&gt;        		
        &lt;/xsl:if&gt;
        &lt;xsl:if test=&quot;@Ratings &amp;gt;= 3.75 and @Ratings &amp;lt; 4.25&quot;&gt;
		&lt;span&gt;
			&lt;a class=&quot;ms-currentRating&quot;&gt;&lt;img class=&quot;ms-rating_4&quot; src=&quot;/_layouts/Images/Ratings.png&quot; alt=&quot;Current average rating is 4 stars.&quot; /&gt;&lt;/a&gt;
		&lt;/span&gt;        		
        &lt;/xsl:if&gt;
        &lt;xsl:if test=&quot;@Ratings &amp;gt;= 3.25 and @Ratings &amp;lt; 3.75&quot;&gt;
		&lt;span&gt;
			&lt;a class=&quot;ms-currentRating&quot;&gt;&lt;img class=&quot;ms-rating_3_5&quot; src=&quot;/_layouts/Images/Ratings.png&quot; alt=&quot;Current average rating is 3.5 stars.&quot; /&gt;&lt;/a&gt;
		&lt;/span&gt;        		
        &lt;/xsl:if&gt;
        &lt;xsl:if test=&quot;@Ratings &amp;gt;= 2.75 and @Ratings &amp;lt; 3.25&quot;&gt;
		&lt;span&gt;
			&lt;a class=&quot;ms-currentRating&quot;&gt;&lt;img class=&quot;ms-rating_3&quot; src=&quot;/_layouts/Images/Ratings.png&quot; alt=&quot;Current average rating is 3 stars.&quot; /&gt;&lt;/a&gt;
		&lt;/span&gt;        		
        &lt;/xsl:if&gt;
        &lt;xsl:if test=&quot;@Ratings &amp;gt;= 2.25 and @Ratings &amp;lt; 2.75&quot;&gt;
		&lt;span&gt;
			&lt;a class=&quot;ms-currentRating&quot;&gt;&lt;img class=&quot;ms-rating_2_5&quot; src=&quot;/_layouts/Images/Ratings.png&quot; alt=&quot;Current average rating is 2.5 stars.&quot; /&gt;&lt;/a&gt;
		&lt;/span&gt;        		
        &lt;/xsl:if&gt;
        &lt;xsl:if test=&quot;@Ratings &amp;gt;= 1.75 and @Ratings &amp;lt; 2.25&quot;&gt;
		&lt;span&gt;
			&lt;a class=&quot;ms-currentRating&quot;&gt;&lt;img class=&quot;ms-rating_2&quot; src=&quot;/_layouts/Images/Ratings.png&quot; alt=&quot;Current average rating is 2 stars.&quot; /&gt;&lt;/a&gt;
		&lt;/span&gt;        		
        &lt;/xsl:if&gt;
        &lt;xsl:if test=&quot;@Ratings &amp;gt;= 1.25 and @Ratings &amp;lt; 1.75&quot;&gt;
		&lt;span&gt;
			&lt;a class=&quot;ms-currentRating&quot;&gt;&lt;img class=&quot;ms-rating_1_5&quot; src=&quot;/_layouts/Images/Ratings.png&quot; alt=&quot;Current average rating is 1.5 stars.&quot; /&gt;&lt;/a&gt;
		&lt;/span&gt;        		
        &lt;/xsl:if&gt;
        &lt;xsl:if test=&quot;@Ratings &amp;lt; 1.25&quot;&gt;
		&lt;span&gt;
			&lt;a class=&quot;ms-currentRating&quot;&gt;&lt;img class=&quot;ms-rating_1&quot; src=&quot;/_layouts/Images/Ratings.png&quot; alt=&quot;Current average rating is 1 star.&quot; /&gt;&lt;/a&gt;
		&lt;/span&gt;        		
        &lt;/xsl:if&gt;
        &lt;/div&gt;
        &lt;xsl:if test=&quot;string-length(@DocumentIconImageUrl) != 0&quot;&gt;
           &lt;div class=&quot;image-area-left&quot;&gt;
               &lt;img class=&quot;image&quot; src=&quot;{@DocumentIconImageUrl}&quot; title=&quot;&quot; /&gt;
           &lt;/div&gt;
       &lt;/xsl:if&gt;
        &lt;a href=&quot;{$SafeLinkUrl}&quot; title=&quot;{@LinkToolTip}&quot;&gt;
          &lt;xsl:if test=&quot;$ItemsHaveStreams = 'True'&quot;&gt;
            &lt;xsl:attribute name=&quot;onclick&quot;&gt;
              &lt;xsl:value-of select=&quot;@OnClickForWebRendering&quot;/&gt;
            &lt;/xsl:attribute&gt;
          &lt;/xsl:if&gt;
          &lt;xsl:if test=&quot;$ItemsHaveStreams != 'True' and @OpenInNewWindow = 'True'&quot;&gt;
            &lt;xsl:attribute name=&quot;onclick&quot;&gt;
              &lt;xsl:value-of disable-output-escaping=&quot;yes&quot; select=&quot;$OnClickTargetAttribute&quot;/&gt;
            &lt;/xsl:attribute&gt;
          &lt;/xsl:if&gt;
          &lt;xsl:value-of select=&quot;$DisplayTitle&quot;/&gt; 
        &lt;/a&gt;
      &lt;/div&gt;
    &lt;/xsl:template&gt;
</pre></p>
</div>
<div>This first does a test to check which range the average rating falls into, and then outputs the necessary code to show the correct amount of stars. I&#8217;ve also include document title and icon. What you end up with is something like this:</div>
<div><a href="http://geeksthenewblack.files.wordpress.com/2010/10/capture.jpg"><img class="aligncenter size-full wp-image-305" title="Doc icon, title and ratings CQWP" src="http://geeksthenewblack.files.wordpress.com/2010/10/capture.jpg?w=600" alt=""   /></a></div>
<div>Very nice!</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/292/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=292&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2010/10/29/show-rating-stars-in-the-content-query-web-part/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2010/10/capture.jpg" medium="image">
			<media:title type="html">Doc icon, title and ratings CQWP</media:title>
		</media:content>
	</item>
		<item>
		<title>Enable Enterprise Keywords column in a blank site</title>
		<link>http://geeksthenewblack.wordpress.com/2010/05/26/enable-enterprise-keywords-column-in-a-blank-site/</link>
		<comments>http://geeksthenewblack.wordpress.com/2010/05/26/enable-enterprise-keywords-column-in-a-blank-site/#comments</comments>
		<pubDate>Wed, 26 May 2010 00:54:40 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Managed metadata]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/?p=283</guid>
		<description><![CDATA[Introduction: I had created a new site collection using the blank site template using Powershell as such: New-SPSite -url "http://mynew2010site.domain.co.nz" -OwnerAlias "DOMAIN\sp2010_admin" -Name "My New 2010 Site" -Template "STS#1" I then created a custom site content type and wanted to add an Enterprise Keywords column to it (read about the differences between managed terms and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=283&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Introduction:</p>
<p>I had created a new site collection using the blank site template using Powershell as such:</p>
<p><code>New-SPSite -url "http://mynew2010site.domain.co.nz" -OwnerAlias "DOMAIN\sp2010_admin" -Name "My New 2010 Site" -Template "STS#1"</code></p>
<p>I then created a custom site content type and wanted to add an Enterprise Keywords column to it (<a href="http://msdn.microsoft.com/en-us/library/ee559337.aspx">read about the differences between managed terms and enterprise keywords</a>).</p>
<p>I came across <a href="http://chrislcap.spaces.live.com/blog/cns!2B396B3160473E4C!1670.entry">this blog post</a> which outlined enabling enterprise keywords on a document library or list by going to library (or list) settings, and clicking the &#8220;Enterprise Metadata and Keywords setting&#8221; options under Permissions and Management.</p>
<p>I didn&#8217;t have this option available to me!</p>
<p>Troubleshooting:</p>
<p>I figured I must have to turn on a feature to enable this. I activated the Metadata Navigation and Filtering feature as well as the SharePoint Server Enterprise Site features but still didn&#8217;t have the option available.</p>
<p>I sent out a tweet, and even joined in on a chat session that was starting with a bunch of MVPs. No one seemed to know the answer.</p>
<p>I Googled and found some people posting the same issue that I had, however no one had come up with an answer. I did find <a href="http://social.technet.microsoft.com/Forums/en/sharepoint2010setup/thread/2de08757-a1df-44a4-bcbd-d1d9a5e4077f">this thread</a> on the Microsoft Technet Forums though which proved invaluable. I wasn&#8217;t attemping the same task as the poster, but I tried to do what he was doing anyway to see if I would get a similar error. I did.</p>
<p>Attempting to create a site column of type &#8220;Managed Metadata&#8221; first gave me a message saying &#8220;The required feature is not enabled for this column type&#8221;. Despite this message I attempted to save the column and then recieved this error: &#8220;The Taxonomy feature (Feature ID &#8220;73EF14B1-13A9-416b-A9B5-ECECA2B0604C&#8221;) has not been activated&#8221;.</p>
<p>Solution:</p>
<p>So off to my trusty SharePoint 2010 Management Shell I go, and using the Enable-SPFeature cmdlet, I was able to activate the feature and voila! I now had that magic little link in my library settings.</p>
<p><code>Enable-SPFeature -id "73EF14B1-13A9-416b-A9B5-ECECA2B0604C" -url http://mynew2010site.domain.co.nz</code></p>
<p style="text-align:center;"><a href="http://geeksthenewblack.files.wordpress.com/2010/05/screenshot.png"><img class="aligncenter size-full wp-image-284" title="ScreenShot" src="http://geeksthenewblack.files.wordpress.com/2010/05/screenshot.png?w=600&#038;h=174" alt="" width="600" height="174" /></a></p>
<p>This appears to only be an issue when creating a site collection using the blank template, and on libraries at the root site of this site collection. </p>
<p>Thanks a bunch to <a href="http://twitter.com/pswider">Paul Swider</a> and <a href="http://twitter.com/brianfarnhill">Brian Farnhill</a> for their input via the Twitterverse.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/283/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=283&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2010/05/26/enable-enterprise-keywords-column-in-a-blank-site/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2010/05/screenshot.png" medium="image">
			<media:title type="html">ScreenShot</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint 2010 RTM</title>
		<link>http://geeksthenewblack.wordpress.com/2010/04/18/sharepoint-2010-rtm/</link>
		<comments>http://geeksthenewblack.wordpress.com/2010/04/18/sharepoint-2010-rtm/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 01:18:46 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/2010/04/18/sharepoint-2010-rtm/</guid>
		<description><![CDATA[SharePoint 2010 RTM will be here in 9 days! Volume licensing customers with Software assurance customers will get it first (me me me!) starting April 27th. Lots of work to do now&#8230;. Read the Microsoft SharePoint team blog for all the info: http://blogs.msdn.com/sharepoint/archive/2010/04/16/sharepoint-2010-reaches-rtm.aspx. You should also subscribe to this blog&#8217;s feed if you&#8217;re interested in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=274&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SharePoint 2010 RTM will be here in 9 days! </p>
<p>Volume licensing customers with Software assurance customers will get it first (me me me!) starting April 27th.</p>
<p>Lots of work to do now&#8230;.</p>
<p>Read the Microsoft SharePoint team blog for all the info:<br />
<a href="http://blogs.msdn.com/sharepoint/archive/2010/04/16/sharepoint-2010-reaches-rtm.aspx">http://blogs.msdn.com/sharepoint/archive/2010/04/16/sharepoint-2010-reaches-rtm.aspx</a>. You should also subscribe to this blog&#8217;s feed if you&#8217;re interested in SharePoint. It is a constant source of valuable information.</p>
<p>Thanks <a href="http://twitter.com/nztechtweet">@nztechtweet</a>, <a href="http://twitter.com/davidpae">@davidpae</a> and <a href="http://twitter.com/marcelalberts">@marcelalberts</a> for the heads up on this news.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/274/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=274&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2010/04/18/sharepoint-2010-rtm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>
	</item>
		<item>
		<title>iPhone contact sync &#8211; what a nightmare!</title>
		<link>http://geeksthenewblack.wordpress.com/2010/01/04/iphone-contact-sync-what-a-nightmare/</link>
		<comments>http://geeksthenewblack.wordpress.com/2010/01/04/iphone-contact-sync-what-a-nightmare/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 01:10:57 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[iPhone 3Gs]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/2010/01/04/iphone-contact-sync-what-a-nightmare/</guid>
		<description><![CDATA[After having my iPhone for over a week I thought I had better migrate all my contacts over from my old mobile. I had been procrastinating as I thought I would have to do it manually. Turns out doing it manually may have been faster. First I realized that my crappy old phone actually had [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=270&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After having my iPhone for over a week I thought I had better migrate all my contacts over from my old mobile. I had been procrastinating as I thought I would have to do it manually.</p>
<p>Turns out doing it manually may have been faster.</p>
<p>First I realized that my crappy old phone actually had Bluetooth and so does the iPhone. This old Sanyo 6600 was able to pair with the iPhone but the iPhone was not capable of receiving the contacts. Turns out the only thing the iPhone Bluetooth is good for is connecting to headset/handfree/ headphone devices and sending/receiving files from other iPhones or iPod touches (using an app like <a href="http://infinite-labs.net/mover/">Mover</a>).</p>
<p>iTunes however had a contacts sync function with Microsoft Outlook so I sent all my contacts to my laptop using Bluetooth, they transferred over pretty quickly, in .vcf format. I then had to drag these all into Outlook and save them one by one which was a bit if a pain.</p>
<p>The real pain though, was trying to get iTunes to sync with Outlook.</p>
<p>I just could not get this to work. Contacts already in my iPhone were synced to Outlook with no problem, however it would not add any new contacts to the iPhone. Hours of troubleshooting and forum trawling later I gave up on Outlook. I exported all the contacts as a .csv file and imported them into Windows Mail. I then set iTunes to sync Windows contacts instead of Outlook contacts and voilà! It worked. What a nightmare though!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/270/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=270&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2010/01/04/iphone-contact-sync-what-a-nightmare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>
	</item>
		<item>
		<title>My first iPhone!</title>
		<link>http://geeksthenewblack.wordpress.com/2009/12/28/my-first-iphone/</link>
		<comments>http://geeksthenewblack.wordpress.com/2009/12/28/my-first-iphone/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 01:15:56 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone 3Gs]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/2009/12/28/my-first-iphone/</guid>
		<description><![CDATA[So my dear husband got me a shiny new 16GB iPhone 3Gs for Christmas/my birthday and I&#8217;ve barely put it down since 8am Christmas day. You would think being a bit of a geek I would already have a fancy gadget like this but I don&#8217;t. While I love new technology and all, I am [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=265&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So my dear husband got me a shiny new 16GB iPhone 3Gs for Christmas/my birthday and I&#8217;ve barely put it down since 8am Christmas day. </p>
<p>You would think being a bit of a geek I would already have a fancy gadget like this but I don&#8217;t. While I love new technology and all, I am also a bit of a tight-arse hence even though I yearned for an iPhone for a long time, I didn&#8217;t want to fork out the $$ for it. Now I realise though, it is definitely worth the big bucks. It is just spectacular. It is fast, intuitive and everything else a smartphone should be. Now I can tweet, blog, Facebook and surf the net from (almost) anywhere.</p>
<p>I haven&#8217;t had a heap of time to try out many apps but here&#8217;s a couple that have already become favourites:</p>
<p><a href="http://www.firemint.com/flightcontrol/">Flightcontrol</a>: just guiding some planes onto a landing strip sounds kinda boring but this is one of the best games I&#8217;ve ever played! Warning: highly addictive.</p>
<p><a href="http://www.atebits.com/tweetie-iphone/">Tweeite 2</a>: I first installed twitterific since it was free and it was OK, but it didn&#8217;t really inspire me to tweet much. Tweetie 2 came highly recommended (via @mc_stacey) so I spent the $4 and installed it today. This is an absolutely fantastic app that is very intuitive and seems to be designed exactly around the way people use Twitter. Wins it has over twitterific are the ease of tracking @reply conversations back and forth, the translate feature, the &#8216;in reply to&#8217; and &#8216;from inserttwittetappnamehere&#8217; links, viewing tweets integrated with twitpic/yfrog/etc pics and the individual profile viewing is much better. The geotag feature looks quite cool and the &#8216;post to tweetie&#8217; safari bookmarklet will no doubt come in handy.</p>
<p><a href="http://tvnz.co.nz/technology-news/download-tvnz-iphone-application-3051195">TVNZ app</a>: this app is nice because it&#8217;s free and is also very easy to use. In my opinion, it also gives more accurate NZ weather information than the Yahoo weather function that comes with the iPhone. This app gives you lots of news headlines which you can view by category and it also has a TV schedule (including TV3) and a podcasts area.</p>
<p><a href="http://iphone.wordpress.org/">WordPress</a>: I had initial problems setting this up (it kept telling me I had the wrong password but then it just started working) but despite this it seems to be a nice wee app that I am using to write this very post. You can manage posts, pages and comments with the easy to use interface. You can add pictures to your posts, however it doesn&#8217;t look like you can do other advanced editing like adding hyperlinks or bulleted lists. It will no doubt become very useful for short posts on the fly though. Now there is no reason to have such a long time in between blog entries!  </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/265/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=265&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2009/12/28/my-first-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Office Web Apps in a Standalone SharePoint 2010 environment</title>
		<link>http://geeksthenewblack.wordpress.com/2009/11/27/installing-office-web-apps-in-a-standalone-sharepoint-2010-environment/</link>
		<comments>http://geeksthenewblack.wordpress.com/2009/11/27/installing-office-web-apps-in-a-standalone-sharepoint-2010-environment/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 23:05:34 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Office Web Apps]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/2009/11/27/installing-office-web-apps-in-a-standalone-sharepoint-2010-environment/</guid>
		<description><![CDATA[I recently set up a new VM (on a Hyper-V host) with Windows Server 2008 R2 for the purpose of evaluating SharePoint Server 2010 beta. This is a single server, standalone environment – domain controller, SQL server 2008 and SharePoint Server 2010 all on one VM. Here are the resources I read through (I obviously didn’t read [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=258&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently set up a new VM (on a Hyper-V host) with Windows Server 2008 R2 for the purpose of evaluating SharePoint Server 2010 beta. This is a single server, standalone environment – domain controller, SQL server 2008 and SharePoint Server 2010 all on one VM.</p>
<p>Here are the resources I read through (I obviously didn’t read one of them well enough, you’ll understand later) to get set for installing SP Server 2010 beta and Office Web Apps beta in this standalone environment. These references contain download links and product keys too should you need them.</p>
<p><a title="http://blogs.msdn.com/opal/archive/2009/11/16/installation-notice-for-sharepoint-2010-public-beta.aspx" href="http://blogs.msdn.com/opal/archive/2009/11/16/installation-notice-for-sharepoint-2010-public-beta.aspx">http://blogs.msdn.com/opal/archive/2009/11/16/installation-notice-for-sharepoint-2010-public-beta.aspx</a> </p>
<p><a title="http://blogs.msdn.com/opal/archive/2009/10/25/sharepoint-2010-pre-requisites-download-links.aspx" href="http://blogs.msdn.com/opal/archive/2009/10/25/sharepoint-2010-pre-requisites-download-links.aspx">http://blogs.msdn.com/opal/archive/2009/10/25/sharepoint-2010-pre-requisites-download-links.aspx</a></p>
<p><a title="http://sharepointgeorge.com/2009/installing-sharepoint-2010-beta-windows-2008-r2-server/" href="http://sharepointgeorge.com/2009/installing-sharepoint-2010-beta-windows-2008-r2-server/">http://sharepointgeorge.com/2009/installing-sharepoint-2010-beta-windows-2008-r2-server/</a></p>
<p><a title="http://technet.microsoft.com/en-us/library/ee695756(office.14).aspx" href="http://technet.microsoft.com/en-us/library/ee695756(office.14).aspx">http://technet.microsoft.com/en-us/library/ee695756(office.14).aspx</a> (Deploying Office Web Apps)</p>
<p>After installing all <a href="http://blogs.msdn.com/opal/archive/2009/10/25/sharepoint-2010-pre-requisites-download-links.aspx">prerequisites for SharePoint 2010</a> (including SQL 2008 SP1, CU2 and CU3) I set out to install SharePoint 2010. Now, if you read through the TechNet resource on deploying Office Web Apps, you’ll see that there is a wee bit of Powershelly stuff you’ll need to do to activate and start the Office Web App services and to create the service apps and proxies. This needs to be done <strong>only if you run the SharePoint post-setup configuration wizard </strong>as part of your SharePoint 2010 installation. I was keen to avoid this, hence here are the steps I followed to get everything up and running:</p>
<ol>
<li>Ran prerequisite installer from SharePoint 2010 setup to ensure I hadn’t missed any prereqs</li>
<li>Ran SharePoint Server 2010 OfficeServer.exe setup (using complete installation option to be able to use full blown SQL 2008)</li>
<li>REMOVED TICK from “Run the SharePoint Products and Technologies Configuration Wizard now” box. (Do not run the config wizard at this time unless you want to manually active Office Web Apps using Powershell)</li>
<li>Ran Office Web Apps WcServer.exe setup</li>
<li>Once the setup is finished, the “Run the SharePoint Products and Technologies Configuration Wizard now” box should be ticked. Click close to start the wizard and run through</li>
<li>Ran Farm configuration wizard from Central Administration</li>
</ol>
<p>All done! Well, kind of. I happily went and created my first site collection, uploaded a Word document and tried to open it up to test Office Web Apps. Word Web App launched and appeared to be OK, but after several minutes of SharePoint “processing” my document I got an error that read: <strong>“Word Web App cannot open this document because the server is still processing the document. Please try again later.”</strong></p>
<p>OK. So tried an Excel document – that opened fine. Unsurprisingly really because Excel has it’s own web services which have been around since MOSS 2007. Then tried a Powerpoint document and I got a different error, something along the lines of “network connection interrupted” which didn’t make any sense. At first I thought it might have been a resourcing issue, so I turned off a couple of VMs and allocated some more RAM to this one, same problem though.</p>
<p>So after SEVERAL hours of looking through event logs, Googling, looking in every dark corner of Central Administration, testing and retesting, I decided to re-read through the deployment instructions. In Jie Li’s article (3rd link in the above list), under step 11 we have the following note:</p>
<blockquote><p>If you are trying to use Office Web Applications on DC (<a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=27d81b1c-18ae-4983-8e1c-224bb747eb99">Office Web Application</a> need to be installed seperately, like a language pack or an update. Please also note that Office Web Application cannot be installed on Windows 7), then the following commands need to be run to make the services work. Please note that in different languages, Service Application names could be localized. You can find them out by Get-SPServiceApplication, and then change the names in the script as necessary.</p>
<p><code>$e = Get-SPServiceApplication | where {$_.TypeName.Equals("Word Viewing Service Application")}<br />
$e.WordServerIsSandboxed = $false<br />
$e.WordServerIsSandboxed</code></p>
<p><code><strong>#(Please use the below script for PowerPointServiceApplication - You need to enter "Y" for the answer of each cmd)<br />
Get-SPPowerPointServiceApplication | Set-SPPowerPointServiceApplication -EnableSandboxedViewing $false<br />
Get-SPPowerPointServiceApplication | Set-SPPowerPointServiceApplication -EnableSandboxedEditing $false</strong></code></p>
<p><em>In the server&#8217;s c:\windows\system32\inetsrv\config\applicationHost.config<br />
Add the line below in the end of the dynamicTypes.<br />
&lt;add mimeType=&#8221;application/zip&#8221; enabled=&#8221;false&#8221; /&gt;</em></p>
<p><em>IISRESET</em></p></blockquote>
<p>I had initially not seen this as I was using the TechNet article as my reference for installing Office Web Apps. So, because my server is also a domain controller I ran the Powershell commands and just like magic, Office Web Apps worked. Albeit a little slowly at first (possibly because I only have 3 GB RAM allocated to this server – don’t laugh) but after installing Silverlight it is nice and quick.</p>
<p>Issue resolved, I can now continue to play with SP2010.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/258/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/258/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/258/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=258&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2009/11/27/installing-office-web-apps-in-a-standalone-sharepoint-2010-environment/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>
	</item>
		<item>
		<title>Blowing shit up</title>
		<link>http://geeksthenewblack.wordpress.com/2009/10/09/blowing-shit-up/</link>
		<comments>http://geeksthenewblack.wordpress.com/2009/10/09/blowing-shit-up/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 11:16:58 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[Other cool stuff]]></category>
		<category><![CDATA[explosions]]></category>
		<category><![CDATA[moon]]></category>
		<category><![CDATA[NASA]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/2009/10/09/blowing-shit-up/</guid>
		<description><![CDATA[So I&#8217;m staying up late (yes, past midnight on a Friday, what a rager!) to watch the Americans smash a rocket into the moon. I&#8217;ll expand on this post later. I expect this to be one of those things that is massively hyped up only to end up being a huge let down &#8211; still [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=226&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m staying up late (yes, past midnight on a Friday, what a rager!) to watch the Americans smash a rocket into the moon. I&#8217;ll expand on this post later. I expect this to be one of those things that is massively hyped up only to end up being a huge let down &#8211; still can&#8217;t help but watch it though.</p>
<p>UPDATE: Yes, it was a huge disappointment. People around the world had their eyes glued to NASA TV, anticipation building as mission control were counting down &#8211; &#8220;1 minute to centaur impact!&#8221; &#8211; hoping for at least some kind of visible plume. What we got was this:</p>

<a href='http://geeksthenewblack.wordpress.com/2009/10/09/blowing-shit-up/capture-2/' title='Before'><img data-attachment-id='231' data-orig-size='362,247' data-liked='0'width="150" height="102" src="http://geeksthenewblack.files.wordpress.com/2009/10/capture1.jpg?w=150&#038;h=102" class="attachment-thumbnail" alt="Before" title="Before" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/09/blowing-shit-up/capture-copy/' title='During'><img data-attachment-id='232' data-orig-size='362,247' data-liked='0'width="150" height="102" src="http://geeksthenewblack.files.wordpress.com/2009/10/capture-copy.jpg?w=150&#038;h=102" class="attachment-thumbnail" alt="During" title="During" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/09/blowing-shit-up/capture-copy-2/' title='After'><img data-attachment-id='233' data-orig-size='362,247' data-liked='0'width="150" height="102" src="http://geeksthenewblack.files.wordpress.com/2009/10/capture-copy-2.jpg?w=150&#038;h=102" class="attachment-thumbnail" alt="After" title="After" /></a>

<p>Yeap, a bit fat lot of nothing.</p>
<p>So in light of this, below are my picks for the best explosions of all time.</p>
<h2>Best TV explosion</h2>
<h3>Mythbusters</h3>
<p>The team on the Discovery Channel show <a title="Mythbusters" href="http://dsc.discovery.com/fansites/mythbusters/mythbusters.html" target="_blank">Mythbusters</a> relish in blowing stuff up, and they are damn good at it. In episode 117 they tested various methods that could supposedly lead to homemade diamonds. Obviously they all failed (otherwise we&#8217;d all be doing it!) so they resorted to using 5,000 pounds (2,300 kg) of explosives to see if an explosion of this magnitude would instantly convert carbon into nice shiny diamonds. It did work, albeit creating only &#8220;industrial grade&#8221; diamonds. Sorry to say guys, but even if 5000 pounds of explosives could create a top quality stone, it&#8217;s still going to be cheaper to buy her that huge diamond engagement ring from the jewellery store.</p>
<p>Watch the videos here: <a href="http://dsc.discovery.com/videos/mythbusters-homemade-diamond-high-speed.html">Mythbusters \&#8221;Homemade diamonds\&#8221; explosion</a></p>
<h2><strong>Best natural explosion</strong></h2>
<h3>Tunguska event</h3>
<p>Take the above explosion, multiply it by a million and you have the magnitude of the impact of the <a title="Tunguska Event from Wikipedia" href="http://en.wikipedia.org/wiki/Tunguska_event" target="_blank">Tunguska event</a>. There are several different hypotheses as to what exactly caused this event, but the most widely held belief is that it was caused by a large meteoroid or comet entering the Earth&#8217;s atmosphere above Siberia, and exploding, causing a massive, but indirect, impact. The result was an enormous shockwave that felled trees, killed animals and knocked people off their feet hundreds of miles away. In the few days after the impact, skies in Europe and Asia were said to be glowing &#8211; likely due to the formation of <a title="Noctilucent clouds" href="http://en.wikipedia.org/wiki/Noctilucent_cloud" target="_blank">Noctilucent clouds</a> high in the atmosphere, composed of ice particles left over from the explosion. According to <a href="http://www.crystalinks.com/tunguskaevent.html" target="_blank">this reference</a>, &#8220;The Guinness Book of World Records (1966 edition) states that due to the rotation of the Earth, if the collision had occurred 4 hours 47 minutes later, it would have completely destroyed the city of St. Petersburg&#8221;. Close call.</p>
<div class="wp-caption aligncenter" style="width: 310px"><img title="Tunguska event" src="http://upload.wikimedia.org/wikipedia/commons/a/ad/Tunguska.png" alt="" width="300" height="195" /><p class="wp-caption-text">Scorched and flattened trees as a result of the Tunguska event</p></div>
<p style="text-align:center;">
<h2>Best movie explosion</h2>
<h3>Live Free or Die Hard</h3>
<p>I am massively biased here because I am a HUGE fan of the Die Hard movies. I love the scene where John McClane uses a car to blow up a helicopter because, &#8220;I was out of bullets&#8221;. The creativity here, combined with the excellent one liner (although from memory I don&#8217;t think he actually uses this line in the movie, it is just in the trailer) and the fact that it&#8217;s John McClane means it wins my vote for best movie explosion.</p>
<span style="text-align:center; display: block;"><a href="http://geeksthenewblack.wordpress.com/2009/10/09/blowing-shit-up/"><img src="http://img.youtube.com/vi/7UcpL45SZRM/2.jpg" alt="" /></a></span>
<p>Signing off with a lolcat&#8230;.</p>
<p style="text-align:center;"><img class="aligncenter" title="Invisible movie explosion" src="http://icanhascheezburger.files.wordpress.com/2007/12/funny-pictures-stunt-cat.jpg?w=396&#038;h=420" alt="" width="396" height="420" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/226/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=226&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2009/10/09/blowing-shit-up/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/capture1.jpg?w=150" medium="image">
			<media:title type="html">Before</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/capture-copy.jpg?w=150" medium="image">
			<media:title type="html">During</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/capture-copy-2.jpg?w=150" medium="image">
			<media:title type="html">After</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/a/ad/Tunguska.png" medium="image">
			<media:title type="html">Tunguska event</media:title>
		</media:content>

		<media:content url="http://icanhascheezburger.files.wordpress.com/2007/12/funny-pictures-stunt-cat.jpg" medium="image">
			<media:title type="html">Invisible movie explosion</media:title>
		</media:content>
	</item>
		<item>
		<title>A little break</title>
		<link>http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/</link>
		<comments>http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 00:46:23 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[Other cool stuff]]></category>
		<category><![CDATA[samoa]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/</guid>
		<description><![CDATA[So I&#8217;m finally back into the swing of things after a fabulous island getaway. I didn&#8217;t text, blog, tweet or email for an entire 10 days! Samoa was an absolutely fabulous holiday destination. Thankfully we arrived back two days before the disastrous tsunami struck. The Samoan people are a positively wonderful, friendly and generous population [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=203&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m finally back into the swing of things after a fabulous island getaway. I didn&#8217;t text, blog, tweet or email for an entire 10 days!</p>
<p>Samoa was an absolutely fabulous holiday destination. Thankfully we arrived back two days before the disastrous tsunami struck. The Samoan people are a positively wonderful, friendly and generous population and it is awful that such a thing has happened to them.</p>
<p>Help support their cause by donating to the Red Cross Tsunami relief fund.</p>
<p><a title="Red Cross Samoa Tsunami Relief" href="//www.givealittle.co.nz/cause/pacifictsunami" target="_blank">http://www.givealittle.co.nz/cause/pacifictsunami</a></p>
<p>Below are a few photos of our holiday. Everyone should definitely visit this magnificent place in their lifetime &#8211; so much untouched beauty, perfect for everyone from adventure seekers to those who just want to lay on the beach and drink cocktails.</p>

<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9190074/' title='View from Le Lagoto resort'><img data-attachment-id='205' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9190074.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Sun going down in front of Le Lagoto resort, Savai&#039;i" title="View from Le Lagoto resort" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9190056/' title='Snorkelling in front of Le Lagoto'><img data-attachment-id='204' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9190056.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Wonderful snorkelling in front of Le Lagoto resort, Savai&#039;i" title="Snorkelling in front of Le Lagoto" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9200165/' title='Local Matai (chief) at Alofaaga blowholes'><img data-attachment-id='206' data-orig-size='684,912' data-liked='0'width="112" height="150" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9200165.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="Local Matai (chief) at Alofaaga blowholes" title="Local Matai (chief) at Alofaaga blowholes" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9200168/' title='Alofaaga blowholes'><img data-attachment-id='207' data-orig-size='684,912' data-liked='0'width="112" height="150" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9200168.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="My family in front of a blowhole" title="Alofaaga blowholes" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9200120/' title='Tanu beach fales'><img data-attachment-id='216' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9200120.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Me with my sisters at their beach fale at Tanu" title="Tanu beach fales" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9220356/' title='Swimming with turtles'><img data-attachment-id='217' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9220356.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Swimming with turtles attraction on Savai&#039;i" title="Swimming with turtles" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9220424/' title='Interisland ferry'><img data-attachment-id='218' data-orig-size='684,912' data-liked='0'width="112" height="150" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9220424.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="Interisland ferry" title="Interisland ferry" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9230447/' title='Fuipisia Waterfall'><img data-attachment-id='219' data-orig-size='2736,3648' data-liked='0'width="112" height="150" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9230447.jpg?w=112&#038;h=150" class="attachment-thumbnail" alt="Fuipisia falls on Upolu." title="Fuipisia Waterfall" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9250553/' title='Seabreeze Resort'><img data-attachment-id='220' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9250553.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Seabreeze Resort on the South cost of Upolu." title="Seabreeze Resort" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9240499/' title='There&#039;s a gecko on my Mah Jong!'><img data-attachment-id='208' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9240499.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="There&#039;s a gecko on my Mah Jong!" title="There&#039;s a gecko on my Mah Jong!" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9240509/' title='Lalomanu beach'><img data-attachment-id='209' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9240509.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="View in front of Litia Sini at Lalomanu" title="Lalomanu beach" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9240534/' title='Litia Sini beach fales'><img data-attachment-id='210' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9240534.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Litia Sini beach fales at Lalomanu" title="Litia Sini beach fales" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9250614/' title='Piula Cave Pool'><img data-attachment-id='221' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9250614.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Piula Cave Pool on the North coast of Upolu." title="Piula Cave Pool" /></a>
<a href='http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/p9260651/' title='Robert Louis Stevenson homestead'><img data-attachment-id='211' data-orig-size='912,684' data-liked='0'width="150" height="112" src="http://geeksthenewblack.files.wordpress.com/2009/10/p9260651.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Robert Louis Stevenson homestead on Upolu" title="Robert Louis Stevenson homestead" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/203/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/203/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/203/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=203&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2009/10/04/a-little-break/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9190074.jpg?w=150" medium="image">
			<media:title type="html">View from Le Lagoto resort</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9190056.jpg?w=150" medium="image">
			<media:title type="html">Snorkelling in front of Le Lagoto</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9200165.jpg?w=112" medium="image">
			<media:title type="html">Local Matai (chief) at Alofaaga blowholes</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9200168.jpg?w=112" medium="image">
			<media:title type="html">Alofaaga blowholes</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9200120.jpg?w=150" medium="image">
			<media:title type="html">Tanu beach fales</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9220356.jpg?w=150" medium="image">
			<media:title type="html">Swimming with turtles</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9220424.jpg?w=112" medium="image">
			<media:title type="html">Interisland ferry</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9230447.jpg?w=112" medium="image">
			<media:title type="html">Fuipisia Waterfall</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9250553.jpg?w=150" medium="image">
			<media:title type="html">Seabreeze Resort</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9240499.jpg?w=150" medium="image">
			<media:title type="html">There&#039;s a gecko on my Mah Jong!</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9240509.jpg?w=150" medium="image">
			<media:title type="html">Lalomanu beach</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9240534.jpg?w=150" medium="image">
			<media:title type="html">Litia Sini beach fales</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9250614.jpg?w=150" medium="image">
			<media:title type="html">Piula Cave Pool</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/10/p9260651.jpg?w=150" medium="image">
			<media:title type="html">Robert Louis Stevenson homestead</media:title>
		</media:content>
	</item>
		<item>
		<title>Current wants &#8211; tees, totes and beats</title>
		<link>http://geeksthenewblack.wordpress.com/2009/09/12/current-wants-tees-and-totes/</link>
		<comments>http://geeksthenewblack.wordpress.com/2009/09/12/current-wants-tees-and-totes/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 12:00:13 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Style]]></category>
		<category><![CDATA[shopping]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/?p=192</guid>
		<description><![CDATA[I was almost in tears watching Big Bang Theory when Sheldon and Koothrappali (yes I had to Google how to spell that) had a match of rock, paper, scissors, lizard, Spock. Now ThinkGeek is offering this fabulous babydoll tee so you&#8217;ll remember the rules on the go. ThinkGeek also references the original brains behind this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=192&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was almost in tears watching Big Bang Theory when Sheldon and Koothrappali (yes I had to Google how to spell that) had a match of rock, paper, scissors, lizard, Spock. Now <a title="Rock, paper, scissors, lizard, Spock T shirt at ThinkGeek.com" href="http://www.thinkgeek.com/tshirts-apparel/womens/b9c7/" target="_blank">ThinkGeek</a> is offering this fabulous babydoll tee so you&#8217;ll remember the rules on the go. ThinkGeek also references the original brains behind this game, <a title="Sam Kass - rock paper scissors lizard Spock" href="http://www.samkass.com/theories/RPSSL.html" target="_blank">Sam Kass</a>. So much cooler than the standard jan-ken-pon - <a title="Alex Kidd" href="http://en.wikipedia.org/wiki/Alex_Kidd_in_Miracle_World" target="_blank">Alex Kidd</a> anyone??</p>
<div class="wp-caption aligncenter" style="width: 330px"><a href="http://www.thinkgeek.com/tshirts-apparel/womens/b9c7/"><img class=" " title="Rock paper scissors lizard Spock tee" src="http://www.thinkgeek.com/images/products/zoom/b9c7_rock_paper_scissors_lizard_spock_babydoll.jpg" alt="http://www.thinkgeek.com/tshirts-apparel/womens/b9c7/" width="320" height="316" /></a><p class="wp-caption-text">Rock paper scissors lizard Spock tee at ThinkGeek</p></div>
<p>Next, I came across a little gem on <a title="Floozy - handbags and more" href="http://www.floozy.co.nz" target="_blank">Floozy</a> - Harvey&#8217;s &#8220;Treecycle&#8221; bags that are made out of recycled seatbelts. Gorgeous, eco-friendly and bound to be extremely tough, I *love* the <a title="Harveys Treecycle Hobo bag at Floozy.co.nz" href="http://www.floozy.co.nz/bag/treecycle-hobo-handbag" target="_blank">Treecycle Hobo style</a>. <a title="Harvey's seatbelt bags" href="http://www.seatbeltbags.com/" target="_blank">Harvey&#8217;s</a> is husband and wife team Dana and Melanie, who started the business in their garage in California. Dana was raised in NZ and according to Floozy, learnt how to weave bags from his Polynesian grandmother. Turns out paying attention to granny has obviously paid off, with Harvey&#8217;s bags now being stocked at various boutiques and department stores around the world, and being seen adorning the skinny wrists of celebs such as Britney Spears and Jessica Alba (<a title="Hollywire - Harveys seatbelt bags" href="http://www.hollywire.com/featured/harvey’s-seatbelt-bags-for-sustainable-hollywood-stars-and-you-too/" target="_blank">ref</a>).</p>
<div class="wp-caption aligncenter" style="width: 334px"><a href="http://www.floozy.co.nz/bag/treecycle-hobo-handbag"><img class="  " title="Harveys Treecycle Hobo bag" src="http://ep.yimg.com/ca/I/yhst-83994635520088_2072_23422933" alt="Harveys Treecycle Hobo bag" width="324" height="324" /></a><p class="wp-caption-text">Harveys Treecycle Hobo bag</p></div>
<p><a title="Beatles Rock Band" href="http://www.thebeatlesrockband.com/" target="_blank">Beatles Rock Band</a>!! I am a big Beatles fan and can&#8217;t wait to give the new game a ago, however unfortunately we are a little challenged in the gaming department currently with only the trustuy PS2 and Guitar Hero World Tour instruments. Need a PS3 to play this, and to be able to play previous Rock Band titles using the Guitar Hero instruments. May have to wait it out a little while longer yet (especially if I buy the Treecyle Hob bag first).</p>
<div id="attachment_199" class="wp-caption aligncenter" style="width: 334px"><a href="http://geeksthenewblack.files.wordpress.com/2009/09/beatles-rock-band.jpg"><img class="size-full wp-image-199  " title="Beatles Rock Band" src="http://geeksthenewblack.files.wordpress.com/2009/09/beatles-rock-band.jpg?w=600" alt="Beatles Rock Band"   /></a><p class="wp-caption-text">Beatles Rock Band</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=192&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2009/09/12/current-wants-tees-and-totes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>

		<media:content url="http://www.thinkgeek.com/images/products/zoom/b9c7_rock_paper_scissors_lizard_spock_babydoll.jpg" medium="image">
			<media:title type="html">Rock paper scissors lizard Spock tee</media:title>
		</media:content>

		<media:content url="http://ep.yimg.com/ca/I/yhst-83994635520088_2072_23422933" medium="image">
			<media:title type="html">Harveys Treecycle Hobo bag</media:title>
		</media:content>

		<media:content url="http://geeksthenewblack.files.wordpress.com/2009/09/beatles-rock-band.jpg" medium="image">
			<media:title type="html">Beatles Rock Band</media:title>
		</media:content>
	</item>
		<item>
		<title>Making images look flash &#8211; some image gallery solutions I love</title>
		<link>http://geeksthenewblack.wordpress.com/2009/09/06/making-images-look-flash/</link>
		<comments>http://geeksthenewblack.wordpress.com/2009/09/06/making-images-look-flash/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 11:13:27 +0000</pubDate>
		<dc:creator>Kylie</dc:creator>
				<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://geeksthenewblack.wordpress.com/?p=183</guid>
		<description><![CDATA[A quick post on a couple of great image viewing utilities currently in use on my websites&#8230; Tiltviewer Brought to you by Airtight Interactive, Tiltviewer is a beautiful image gallery viewer built using Flash technology. It gives a fabulous 3D effect and lots of customisable options. It looks uber sleek and professional but takes very [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=183&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A quick post on a couple of great image viewing utilities currently in use on my websites&#8230;</p>
<h1>Tiltviewer</h1>
<p>Brought to you by <a title="Airtight Interactive" href="http://www.airtightinteractive.com/" target="_blank">Airtight Interactive</a>, <a title="Tiltviewer" href="http://www.simpleviewer.net/tiltviewer/" target="_blank">Tiltviewer</a> is a beautiful image gallery viewer built using Flash technology. It gives a fabulous 3D effect and lots of customisable options. It looks uber sleek and professional but takes very little technical ability to implement. You can use an XML file to define your images, or load images automatically from Flickr or Picasa. The gallery is interactive, with users being able to click to zoom in and out, and flip photos over to view image descriptions or other details. The installation and configuration instructions, as well as the FAQs and online forums make this product highly supported and therefore a breeze to implement and customise. To see how I have implemented it, visit the <a title="Adagio Wanganui image gallery" href="http://adagiowanganui.co.nz/gallery/gallery.html" target="_blank">Adagio Wanganui image gallery</a>. I&#8217;ve used an XML file to define the images and haven&#8217;t customised it too much because it is wonderfully functional out of the box. You&#8217;ll also find <a title="Simpleviewer" href="http://www.simpleviewer.net/simpleviewer/" target="_blank">Simpleviewer</a>, <a title="Autoviewer" href="http://www.simpleviewer.net/autoviewer/" target="_blank">Autoviewer</a> and <a title="Postcardviewer" href="http://www.simpleviewer.net/postcardviewer/" target="_blank">Postcardviewer</a> from Airtight, which are all very elegant gallery solutions as well. I&#8217;ve implemented Simpleviewer for some <a title="Alchemy Cafe and Wine bar image gallery" href="http://www.perfectvenue.co.nz/resources/galleries/alchemy/alchemy.html" target="_blank">image galleries on Perfect Venue</a> and really like it.</p>
<h1>Smoothgallery</h1>
<p><a title="Smoothgallery" href="smoothgallery.jondesign.net/" target="_blank">Smoothgallery</a>, from <a title="Jondesign" href="http://english.jondesign.net/" target="_blank">Jondesign</a> (Jonathan Schemoul) is a javascript image gallery or featured content slideshow (or whatever else you decide to implement it as), available as a free download and is also used as the basis for a <a title="Featured content gallery plugin for WordPress" href="http://www.featuredcontentgallery.com/" target="_blank">WordPress plugin</a>. I found this one a little harder to work with than the above Tiltviewer, but that is possibly because I was needing to customise it a bit more. It offers another very elegant solution, and is great for a featured content gallery as part of a home page. There are a few options you can feed it when initialising the gallery, and of course you can edit the heck out of the CSS, however I didn&#8217;t find it that intuitive to customise and resorted to the forums quite a bit. The biggest problem I had was getting it to start on a random image. After a lot of digging I found <a title="Smoothgallery forum post" href="http://smoothgallery.jondesign.net/forums/viewtopic.php?id=1283" target="_blank">this post</a> with the answer. Nonetheless, it is a great solution and I&#8217;m currently implementing it for a &#8220;featured venue&#8221; slideshow that will persist across a few pages on <a title="Perfect Venue" href="http://www.perfectvenue.co.nz" target="_blank">Perfect Venue</a>.</p>
<h1>Slimbox (2)</h1>
<p>It seems that everyone is using <a title="Lightbox" href="http://www.huddletogether.com/projects/lightbox/" target="_self">lightbox</a> on all sorts of websites these days and why not? It is a simple and lightweight viewer that almost anyone can install and use within minutes. For enlarging images on Perfect Venue I&#8217;ve used <a title="Slimbox 2" href="http://www.digitalia.be/software/slimbox2" target="_blank">Slimbox 2</a>, which is an even more lightweight version of Lightbox that uses the <a title="jQuery" href="http://jquery.com/" target="_blank">jQuery</a> javascript library. I haven&#8217;t spent time customising this at all because it provided exactly what I needed straight out of the box.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geeksthenewblack.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geeksthenewblack.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geeksthenewblack.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geeksthenewblack.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geeksthenewblack.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geeksthenewblack.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geeksthenewblack.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geeksthenewblack.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geeksthenewblack.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geeksthenewblack.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geeksthenewblack.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geeksthenewblack.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geeksthenewblack.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geeksthenewblack.wordpress.com/183/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geeksthenewblack.wordpress.com&amp;blog=8502562&amp;post=183&amp;subd=geeksthenewblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geeksthenewblack.wordpress.com/2009/09/06/making-images-look-flash/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/51377e01a6417bfe6cc7f475a7e50380?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">geeksthenewblack</media:title>
		</media:content>
	</item>
	</channel>
</rss>
