<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog on the Bog</title>
	<atom:link href="http://timtait.co.nz/feed/" rel="self" type="application/rss+xml" />
	<link>http://timtait.co.nz</link>
	<description>Tim Tait's blog</description>
	<lastBuildDate>Fri, 30 Oct 2009 08:40:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Positioning and Centering a Deep Zoom</title>
		<link>http://timtait.co.nz/2009/10/positioning-and-centering-a-deep-zoom/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://timtait.co.nz/2009/10/positioning-and-centering-a-deep-zoom/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 08:38:18 +0000</pubDate>
		<dc:creator>Tim Tait</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[centering]]></category>
		<category><![CDATA[deep zoom]]></category>
		<category><![CDATA[positioning]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://timtait.co.nz/?p=468</guid>
		<description><![CDATA[I have seen a few people struggling with how to center their single image Deep Zooms on a specific point on their screen. Here&#8217;s how I do it.
void msi_Reset()
{
    msi.UseSprings = false;
    msi.ViewportOrigin = new Point(0, 0);

    msi.MotionFinished += new RoutedEventHandler(msi_Center);

    double MSISize = 3;
 [...]]]></description>
			<content:encoded><![CDATA[<p>I have seen a few people struggling with how to center their single image Deep Zooms on a specific point on their screen. Here&#8217;s how I do it.</p>
<pre class="brush: csharp">void msi_Reset()
{
    msi.UseSprings = false;
    msi.ViewportOrigin = new Point(0, 0);

    msi.MotionFinished += new RoutedEventHandler(msi_Center);

    double MSISize = 3;
    if (msi.AspectRatio &gt; 1)
    {
        msi.ViewportWidth = MSISize;
    }
    else
    {
        msi.ViewportWidth = MSISize / msi.AspectRatio;
    }

}

void msi_Center(object sender, RoutedEventArgs e)
{
    msi.MotionFinished -= msi_Center;

    Point center = msi.ElementToLogicalPoint(new Point(-msi.ActualWidth / 2, -msi.ActualHeight / 2));
    center.X += 0.5;
    center.Y += 0.5 / msi.AspectRatio;

    msi.ViewportOrigin = center;

    msi.UseSprings = true;
}</pre>
<p><span id="more-468"></span><br />
In the msi_Reset() function I move the image to the top left corner of the screen and then resize it to 1/3 the width of the screen.</p>
<p>if (msi.AspectRatio &gt; 1) - Checks to see if the image is a portrait or landscape. AspectRatio is the images width/height. So if it&#8217;s greater than 1 it&#8217;s a landscape, etc.</p>
<p>When this has finished resizing and positioning the image, the msi_Center() function is called. This then converts the center point of the screen into logical coordinates. Then adds 0.5 to the X moving the image to the left by half of its width, and 0.5 to the Y moving the image up by half of its width.</p>
<p>I have found that this only works when I have the msi.ViewPortOrigin set to (0,0)  at the start. This is a bit of problem if you have msi_Reset() hooked up to a window resize event as it makes the image jump around.</p>
]]></content:encoded>
			<wfw:commentRss>http://timtait.co.nz/2009/10/positioning-and-centering-a-deep-zoom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Defaced</title>
		<link>http://timtait.co.nz/2009/08/defaced/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://timtait.co.nz/2009/08/defaced/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 02:17:29 +0000</pubDate>
		<dc:creator>Tim Tait</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[defaced]]></category>
		<category><![CDATA[hacked]]></category>

		<guid isPermaLink="false">http://timtait.co.nz/?p=34</guid>
		<description><![CDATA[I looked at my Blog today and it looked a little different.

I feel special  
Punker2Bot is responsible.
Its a fairly simple hack, the HTML at the bottom of this post was inserted at the top of the wp-config.php file. This file is called on pretty much every page.
I don&#8217;t think anything else has been changed [...]]]></description>
			<content:encoded><![CDATA[<p>I looked at my Blog today and it looked a little different.</p>
<p style="text-align: left;"><img class="size-medium wp-image-37 aligncenter" title="hacked" src="http://timtait.co.nz/wp-content/uploads/2009/08/hacked-300x297.gif" alt="hacked" width="300" height="297" /></p>
<p>I feel special <img src='http://timtait.co.nz/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><span id="more-34"></span>Punker2Bot is responsible.</p>
<p>Its a fairly simple hack, the HTML at the bottom of this post was inserted at the top of the wp-config.php file. This file is called on pretty much every page.</p>
<p>I don&#8217;t think anything else has been changed but to be safe I&#8217;ll be upgrading to a fresh new version of the latest Wordpress and changing hosts.</p>
<div style="font-size:6pt">
<table border="0">
<tbody>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;html&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;head&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;title&gt;</span>Hacked by Punker2Bot<span class="webkit-html-tag">&lt;/title&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;link <span class="webkit-html-attribute-name">rel</span>=&#8221;<span class="webkit-html-attribute-value">icon</span>&#8221; <span class="webkit-html-attribute-name">type</span>=&#8221;<span class="webkit-html-attribute-value">image/png</span>&#8221; <span class="webkit-html-attribute-name">href</span>=&#8221;<a class="webkit-html-attribute-value webkit-html-resource-link" href="http://www.yougetsignal.com/favicon.ico" target="_blank">http://www.yougetsignal.com/favicon.ico</a>&#8221; /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;/head&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;body <span class="webkit-html-attribute-name">bgcolor</span>=&#8221;<span class="webkit-html-attribute-value">#000000</span>&#8221; <span class="webkit-html-attribute-name">onload</span>=&#8221;<span class="webkit-html-attribute-value">doWave(0)</span>&#8220;&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;center&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;table <span class="webkit-html-attribute-name">width</span>=&#8221;<span class="webkit-html-attribute-value">100%</span>&#8221; <span class="webkit-html-attribute-name">height</span>=&#8221;<span class="webkit-html-attribute-value">100%</span>&#8221; <span class="webkit-html-attribute-name">border</span>=&#8221;<span class="webkit-html-attribute-value">0</span>&#8220;&gt;</span><span class="webkit-html-tag">&lt;tr&gt;</span><span class="webkit-html-tag">&lt;td <span class="webkit-html-attribute-name">valign</span>=&#8221;<span class="webkit-html-attribute-value">middle</span>&#8221; <span class="webkit-html-attribute-name">align</span>=&#8221;<span class="webkit-html-attribute-value">center</span>&#8220;&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;p <span class="webkit-html-attribute-name">class</span>=&#8221;<span class="webkit-html-attribute-value">Estilo7</span>&#8221; <span class="webkit-html-attribute-name">style</span>=&#8221;<span class="webkit-html-attribute-value">margin-top: 3px; margin-bottom: 3px;</span>&#8221; &gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">face</span>=&#8221;<span class="webkit-html-attribute-value">Fixedsys</span>&#8220;&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">color</span>=&#8221;<span class="webkit-html-attribute-value">#00BCFF</span>&#8221; 	<span class="webkit-html-attribute-name">face</span>=&#8221;<span class="webkit-html-attribute-value">Fixedsys</span>&#8221;  <span class="webkit-html-attribute-name">size</span>=&#8221;<span class="webkit-html-attribute-value">+4</span>&#8220;&gt;</span>HACKED <span class="webkit-html-tag">&lt;/font&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">color</span>=&#8221;<span class="webkit-html-attribute-value">#FFFFFF</span>&#8221; 	<span class="webkit-html-attribute-name">face</span>=&#8221;<span class="webkit-html-attribute-value">Fixedsys</span>&#8221;  <span class="webkit-html-attribute-name">size</span>=&#8221;<span class="webkit-html-attribute-value">+4</span>&#8220;&gt;</span>HACKED <span class="webkit-html-tag">&lt;/font&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">color</span>=&#8221;<span class="webkit-html-attribute-value">#00BCFF</span>&#8221; 	<span class="webkit-html-attribute-name">face</span>=&#8221;<span class="webkit-html-attribute-value">Fixedsys</span>&#8221;  <span class="webkit-html-attribute-name">size</span>=&#8221;<span class="webkit-html-attribute-value">+4</span>&#8220;&gt;</span>HACKED<span class="webkit-html-tag">&lt;/font&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;br /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">color</span>=&#8221;<span class="webkit-html-attribute-value">#00BCFF</span>&#8221; <span class="webkit-html-attribute-name">face</span>=&#8221;<span class="webkit-html-attribute-value">Fixedsys</span>&#8221;  <span class="webkit-html-attribute-name">style</span>=&#8221;<span class="webkit-html-attribute-value">font-size:75px;letter-spacing:5px</span>&#8220;&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;script&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var text=&#8221;Punker2Bot&#8221;</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var speed=45</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (document.all||document.getElementById){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">document.write(&#8217;&lt;span id=&#8221;highlight&#8221;&gt;&#8217; + text + &#8216;&lt;/span&gt;&#8217;)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var storetext=document.getElementById? document.getElementById(&#8221;highlight&#8221;) : document.all.highlight</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">else</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">document.write(text)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var hex=new Array(&#8221;00&#8243;,&#8221;14&#8243;,&#8221;28&#8243;,&#8221;3C&#8221;,&#8221;50&#8243;,&#8221;64&#8243;,&#8221;78&#8243;,&#8221;8C&#8221;,&#8221;A0&#8243;,&#8221;B4&#8243;,&#8221;C8&#8243;,&#8221;DC&#8221;,&#8221;FF&#8221;)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var r=1</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var g=1</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var b=1</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var seq=1</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">function changetext(){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">rainbow=&#8221;#&#8221;+hex[r]+hex[g]+hex[b]</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">storetext.style.color=rainbow</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">function change(){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (seq==6){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">b&#8211;</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (b==0)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">seq=1</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (seq==5){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">r++</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (r==12)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">seq=6</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (seq==4){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">g&#8211;</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (g==0)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">seq=5</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (seq==3){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">b++</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (b==12)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">seq=4</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (seq==2){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">r&#8211;</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (r==0)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">seq=3</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (seq==1){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">g++</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (g==12)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">seq=2</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">changetext()</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">function starteffect(){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (document.all||document.getElementById)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">flash=setInterval(&#8221;change()&#8221;,speed)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">starteffect()</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;/script&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;/font&gt;</span> <span class="webkit-html-tag">&lt;br /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">color</span>=&#8221;<span class="webkit-html-attribute-value">#FFC21F</span>&#8221; <span class="webkit-html-attribute-name">face</span>=&#8221;<span class="webkit-html-attribute-value">Fixedsys</span>&#8221;  <span class="webkit-html-attribute-name">size</span>=&#8221;<span class="webkit-html-attribute-value">+4</span>&#8220;&gt;</span><span class="webkit-html-tag">&lt;span <span class="webkit-html-attribute-name">style</span>=&#8221;<span class="webkit-html-attribute-value">position:relative;text-decoration:blink;top:-11px;</span>&#8220;&gt;</span>_<span class="webkit-html-tag">&lt;/span&gt;</span>was here<span class="webkit-html-tag">&lt;span <span class="webkit-html-attribute-name">style</span>=&#8221;<span class="webkit-html-attribute-value">position:relative;text-decoration:blink;top:-11px;</span>&#8220;&gt;</span>_<span class="webkit-html-tag">&lt;/span&gt;</span><span class="webkit-html-tag">&lt;/font&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;/p&gt;</span><span class="webkit-html-tag">&lt;hr <span class="webkit-html-attribute-name">style</span>=&#8221;<span class="webkit-html-attribute-value">border:0;border-top:1px solid #FFD100;width:65%;margin:15px;</span>&#8221; /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;div <span class="webkit-html-attribute-name">style</span>=&#8221;<span class="webkit-html-attribute-value">color:#fff</span>&#8220;&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;img <span class="webkit-html-attribute-name">src</span>=&#8221;<a class="webkit-html-attribute-value webkit-html-resource-link" href="http://pic40.picturetrail.com/VOL361/7579826/18144634/306426869.jpg" target="_blank">http://pic40.picturetrail.com/VOL361/7579826/18144634/306426869.jpg</a>&#8221; <span class="webkit-html-attribute-name">alt</span>=&#8221;<span class="webkit-html-attribute-value">Hacked by Punker2Bot</span>&#8221; /&gt;</span><span class="webkit-html-tag">&lt;br /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;span <span class="webkit-html-attribute-name">style</span>=&#8221;<span class="webkit-html-attribute-value">font-weight:normal</span>&#8220;&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;br /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">color</span>=&#8221;<span class="webkit-html-attribute-value">red</span>&#8220;&gt;</span>&amp;lt;?<span class="webkit-html-tag">&lt;/font&gt;</span> if (!isset(<span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">color</span>=&#8221;<span class="webkit-html-attribute-value">#1F85FF</span>&#8220;&gt;</span>$web_security<span class="webkit-html-tag">&lt;/font&gt;</span>))  { die(&#8221;<span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">color</span>=&#8221;<span class="webkit-html-attribute-value">#FF006A</span>&#8220;&gt;</span>Punker2Bot was here!<span class="webkit-html-tag">&lt;/font&gt;</span>&#8220;); } <span class="webkit-html-tag">&lt;font <span class="webkit-html-attribute-name">color</span>=&#8221;<span class="webkit-html-attribute-value">red</span>&#8220;&gt;</span>?&amp;gt;<span class="webkit-html-tag">&lt;/font&gt;</span><span class="webkit-html-tag">&lt;/span&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;br /&gt;</span><span class="webkit-html-tag">&lt;br /&gt;</span><span class="webkit-html-tag">&lt;br /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">Nada fue borrado, esto solo es un mensaje.. <span class="webkit-html-tag">&lt;br /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">para demostrarte que tu sitio tiene problemas de seguridad<span class="webkit-html-tag">&lt;br /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;br&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;span <span class="webkit-html-attribute-name">style</span>=&#8221;<span class="webkit-html-attribute-value">font-size:25px</span>&#8220;&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;script <span class="webkit-html-attribute-name">language</span>=&#8221;<span class="webkit-html-attribute-value">JavaScript1.2</span>&#8220;&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var message=&#8221;conseguite un mejor webmaster!&#8221;</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var neonbasecolor=&#8221;#0F0F0F&#8221;</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var neontextcolor=&#8221;#FF0022&#8243;</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var neontextcolor2=&#8221;#FF0022&#8243;</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var flashspeed=20</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var flashingletters=3</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var flashingletters2=0</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var flashpause=0</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var n=0</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (document.all||document.getElementById){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">document.write(&#8217;&lt;font color=&#8221;&#8216;+neonbasecolor+&#8217;&#8221;&gt;&#8217;)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">for (m=0;m&lt;message.length;m++)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">document.write(&#8217;&lt;span id=&#8221;neonlight&#8217;+m+&#8217;&#8221;&gt;&#8217;+message.charAt(m)+&#8217;&lt;/span&gt;&#8217;)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">document.write(&#8217;&lt;/font&gt;&#8217;)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">else</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">document.write(message)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">function crossref(number){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">var crossobj=document.all? eval(&#8221;document.all.neonlight&#8221;+number) : document.getElementById(&#8221;neonlight&#8221;+number)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">return crossobj</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">function neon(){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (n==0){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">for (m=0;m&lt;message.length;m++)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">crossref(m).style.color=neonbasecolor</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">crossref(n).style.color=neontextcolor</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (n&gt;flashingletters-1) crossref(n-flashingletters).style.color=neontextcolor2</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (n&gt;(flashingletters+flashingletters2)-1) crossref(n-flashingletters-flashingletters2).style.color=neonbasecolor</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (n&lt;message.length-1)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">n++</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">else{</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">n=0</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">clearInterval(flashing)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">setTimeout(&#8221;beginneon()&#8221;,flashpause)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">return</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">function beginneon(){</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">if (document.all||document.getElementById)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">flashing=setInterval(&#8221;neon()&#8221;,flashspeed)</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">}</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content">beginneon()</td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;/script&gt;</span><span class="webkit-html-tag">&lt;/span&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;br /&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;/div&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;/td&gt;</span><span class="webkit-html-tag">&lt;/tr&gt;</span><span class="webkit-html-tag">&lt;/table&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;/body&gt;</span></td>
</tr>
<tr>
<td class="webkit-line-number"></td>
<td class="webkit-line-content"><span class="webkit-html-tag">&lt;/html&gt;</span></td>
</tr>
</tbody>
</table>
</div>
]]></content:encoded>
			<wfw:commentRss>http://timtait.co.nz/2009/08/defaced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight install</title>
		<link>http://timtait.co.nz/2009/05/silverlight-install/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://timtait.co.nz/2009/05/silverlight-install/#comments</comments>
		<pubDate>Fri, 08 May 2009 13:31:48 +0000</pubDate>
		<dc:creator>Tim Tait</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[silverlight]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[woes]]></category>

		<guid isPermaLink="false">http://timtait.co.nz/?p=22</guid>
		<description><![CDATA[I finally managed to get the Silverlight 3 beta installed and working on my work computer yesterday after facing a few issues.
The first issue I faced was needing to do an offline install since the Silverlight Tools installer was blocked from downloading the required files. This was easy enough and the process can be found [...]]]></description>
			<content:encoded><![CDATA[<p><span>I finally managed to get the Silverlight 3 beta installed and working on my work computer yesterday after facing a few issues.</span></p>
<p><span>The first issue I faced was needing to do an offline install since the Silverlight Tools installer was blocked from downloading the required files. This was easy enough and the process can be found on<span> </span><a href="http://timheuer.com/blog/archive/2008/09/29/install-silverlight-2-rc0-offline.aspx" target="_blank">Tim Heuer&#8217;s</a><span> </span>blog.</span></p>
<p><span>After that I thought I would be away laughing but when I loaded up Visual Studio I had no syntax highlighting on XAML files and all these errors saying &#8220;<span><em style="font-style: italic;"><em>Package &#8216;Microsoft.VisualStudio.Xaml&#8217; has failed to load&#8230; blah blah&#8230; You may use &#8216;devenv /resetskippkgs&#8217; to re-enable package loading.&#8221;</em></em></span></span></p>
<p><span>Running the &#8216;devenv /resetskippkgs&#8217; didn&#8217;t seem to do a lot and it was about here that things all started to go horribly wrong. I uninstalled Visual Studio, tried the express editions, reinstalled Visual Studio, uninstalled Silverlight 3 beta, tried installing Silverlight 2&#8230; but it failed. Somewhere along the way Silverlight 3 wasn&#8217;t uninstalling completely and I managed to find<span> </span><a href="http://blogs.msdn.com/rpomeroy/archive/2008/06/10/how-to-manually-clean-up-a-bad-silverlight-installation.aspx" target="_blank">Bob Pomeroy&#8217;s Blog</a><span> </span>on how to manually clean a bad Silverlight install.</span></p>
<p><span>So after deleting a few registry keys, a program files folder and a half finished install I was all set to try again.</span></p>
<p><span>This time everything installed sweet as and everything’s working as it should.</span></p>
<p><em></em></p>
]]></content:encoded>
			<wfw:commentRss>http://timtait.co.nz/2009/05/silverlight-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ANZAC Day</title>
		<link>http://timtait.co.nz/2009/04/anzac-day/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://timtait.co.nz/2009/04/anzac-day/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 00:59:42 +0000</pubDate>
		<dc:creator>Tim Tait</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[anzac day]]></category>
		<category><![CDATA[telecom]]></category>

		<guid isPermaLink="false">http://timtait.co.nz/?p=15</guid>
		<description><![CDATA[I&#8217;ve got an awesome view of the ANZAC Day &#8211; National Wreath Laying Ceremony today. I&#8217;ve got a clear view of the exterior of the National War Memorial out of my apartment window and the inside view is being broadcast live on TV 1.

The guy presenting the ceremony on TV mentioned something about the RSA [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I&#8217;ve got an awesome view of the ANZAC Day &#8211; National Wreath Laying Ceremony today. I&#8217;ve got a clear view of the exterior of the <a href="http://www.nationalwarmemorial.govt.nz/" target="_blank">National War Memorial</a> out of my apartment window and the inside view is being broadcast live on TV 1.</p>
<p style="text-align: center;"><a title="NZ National War Memorial by timtait, on Flickr" href="http://www.flickr.com/photos/37725404@N02/3472262150/" target="_blank"><img class="aligncenter" src="http://farm4.static.flickr.com/3343/3472262150_e7daea8074_m.jpg" alt="NZ National War Memorial" width="240" height="180" /></a></p>
<p style="text-align: left;">The guy presenting the ceremony on TV mentioned something about the <a href="http://www.rsa.org.nz/" target="_blank">RSA</a> website where I found this online <a href="http://www.anzacpoppy.com/" target="_blank">Field of Rememberance</a>. I thought the donation model based around mobile phone content was pretty cool. I brought a couple of the wallpapers but its got me wondering what sort of apps which could be made for the RSA for next years ANZAC day.</p>
]]></content:encoded>
			<wfw:commentRss>http://timtait.co.nz/2009/04/anzac-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expression For Art&#8217;s Sake</title>
		<link>http://timtait.co.nz/2009/04/expression-for-arts-sake/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://timtait.co.nz/2009/04/expression-for-arts-sake/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 12:44:53 +0000</pubDate>
		<dc:creator>Tim Tait</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[deepzoom]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[silverlight]]></category>

		<guid isPermaLink="false">http://timtait.co.nz/?p=8</guid>
		<description><![CDATA[Holy hell the last week has been busy. Last week while I was up at Web09 I was talking to Nigel Parker from Microsoft and he invited me along to the Expresion For Art&#8217;s Sake workshop that he was holding here in Wellington this week. It just finished today and since it started I have [...]]]></description>
			<content:encoded><![CDATA[<p>Holy hell the last week has been busy. Last week while I was up at Web09 I was talking to Nigel Parker from Microsoft and he invited me along to the Expresion For Art&#8217;s Sake workshop that he was holding here in Wellington this week. It just finished today and since it started I have spent pretty much spent every waking hour knee deep in Silverlight development.</p>
<p>Before this week I had hardly touched Silverlight and now I don&#8217;t think I can live without it. Even though Silverlight is very different from Flash, I think having that Flash background let me pick it up fairly quickly. I have spent most of this week working on a Deep Zoom project which I will keep chipping away at over this weekend and hopefully have something to show next week.</p>
<p>Its unreal to think how much I have learnt from this event. On Monday I wouldn&#8217;t have known where to start yet now I feel like I could knock anything out as a Silverlight app. I have to redevelop our wayfinders at work by the end June and I think that this will be an ideal project to truly put Silverlight through its paces.</p>
<p>Ah well big thanks to <a href="http://blogs.msdn.com/nigel/" target="_blank">Nigel</a> , <a href="http://timheuer.com/blog/" target="_blank">Tim</a> and <a href="http://ux.artu.tv/" target="_blank">Arturo</a> -  for the awesome week thats been.</p>
]]></content:encoded>
			<wfw:commentRss>http://timtait.co.nz/2009/04/expression-for-arts-sake/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Blogs Up</title>
		<link>http://timtait.co.nz/2009/04/blogs-up/#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
		<comments>http://timtait.co.nz/2009/04/blogs-up/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 10:27:31 +0000</pubDate>
		<dc:creator>Tim Tait</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://timtait.co.nz/?p=3</guid>
		<description><![CDATA[In a couple of weeks I have some major adjustments to do on our Wordpress site at work so I figured the best way to learn how would be to jump in and make one for myself.
It&#8217;s all a bit plain at the mo but I&#8217;ll add to it when I feel the need.
I&#8217;m off [...]]]></description>
			<content:encoded><![CDATA[<p>In a couple of weeks I have some major adjustments to do on our Wordpress site at work so I figured the best way to learn how would be to jump in and make one for myself.</p>
<p>It&#8217;s all a bit plain at the mo but I&#8217;ll add to it when I feel the need.</p>
<p>I&#8217;m off to Web09 in Auckland tomorrow for a few days, I&#8217;ll update when I get back.</p>
]]></content:encoded>
			<wfw:commentRss>http://timtait.co.nz/2009/04/blogs-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Code -->
