<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Developer Flotsam</title>
	<atom:link href="http://blog.webjak.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.webjak.net</link>
	<description>Developer Flotsam - random stuff floating around?</description>
	<lastBuildDate>Thu, 09 Jul 2009 03:27:56 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
		<url>http://www.gravatar.com/blavatar/c69967a9056213792a3a7b47a6f573af?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Developer Flotsam</title>
		<link>http://blog.webjak.net</link>
	</image>
			<item>
		<title>Eventr &#8211; Your Flexible DeepZoom Reference App</title>
		<link>http://blog.webjak.net/2009/07/09/eventr-your-flexible-deepzoom-reference-app/</link>
		<comments>http://blog.webjak.net/2009/07/09/eventr-your-flexible-deepzoom-reference-app/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 03:26:11 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Control]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/?p=331</guid>
		<description><![CDATA[A few weeks ago at Remix Australia I launched an open source project called Eventr which is a reference application for using Silverlight&#8217;s deep zoom technology. Check out the sample application here.
The project is composed of the SuperDeepZoom control, an adaptable wrapper around the MultiScaleImage control (which is how Deep Zoom is implemented in Silverlight) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=331&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A few weeks ago at Remix Australia I launched an open source project called <a href="http://eventr.codeplex.com" title="Eventr on Codeplex">Eventr</a> which is a reference application for using Silverlight&#8217;s deep zoom technology. Check out the sample application <a href="http://www.imsilverlight.com/sites/SuperDeepZoom/sample/iframe.html" title="Eventr + SuperDeepZoom Sample">here</a>.</p>
<p>The project is composed of the SuperDeepZoom control, an adaptable wrapper around the MultiScaleImage control (which is how Deep Zoom is implemented in Silverlight) &#8211; and a sample application which hosts the control and handles the data loading, templates and general behaviour).</p>
<p>Together the SuperDeepZoom control and host application can do some pretty cool things &#8211; think of this project as <a href="http://memorabilia.hardrock.com/" title="Hard Rock Deep Zoom"> Hard Rock Cafe Memorabilia</a> deep zoom on steroids &#8211; but you get all the code!</p>
<p>You can :</p>
<ul>
<li>
		Use fully templatable[sic] individual image overlay templates. Zoom in on an image and see data about that image overlaid on top. Hell, even show video as you zoom in to the image if you like!
	</li>
<li>
		Show general overlays. Zoom in and see data up the side or across the bottom about the screen&#8230; a bit like zooming in to an image in the Hard Rock demo.
	</li>
<li>
		Filter the images by pre-defined categories&#8230;
	</li>
<li>
		Track your progress as you navigate around the control. Send a personalised &#8220;fly-though&#8221; to a friend using deep linking. See the fly through on the screen (press F on yours, or load one through the URL).
	</li>
<li>
		Keep simple metrics of image views&#8230; show a count of most popular images.
	</li>
<li>
		Rotate and ad, cause ad impression for each separate image view.
	</li>
<li>
		&#8230; plus much much more.
	</li>
</ul>
<p>MultiScaleImages can be made up from a set of individual sub images &#8211; allowing the individual images to be re-arranged by the control at run time&#8230; this is how the SuperDeepZoom control can show overlay data that is linked to the viewed image, and also how it arranges the images when the control is resized or a filtered image list is selected. </p>
<p>The SuperDeepZoom control supports templated overlays for both image data and also fly though viewing. Fly through view allows you to see your path through the composition (press F)- which can be passed in from the URL (for deep linking from a friend). You can easily manipulate the fly through/overlay templates to your liking. You pass the templates in to the control from your XAML and it handles the rest.</p>
<p>The templated overlay is a special ItemsControl where each of its items are overlaid directly over the corresponding sub image. This means you can show text, video, anything(!) over the images &#8211; its entirely up to the template.</p>
<p>The SuperDeepZoom control concentrates on looking after the actual MultiScaleImage, aligning the overlays etc, fly through, sub image arrangement etc &#8211; but it does not try and handle the application stuff: Controls to start/stop slideshows, back and next buttons, zoom in and out buttons, filter lists etc. The other thing the SuperDeepZoom control doesn&#8217;t handle is the overlay data source. </p>
<p><strong>Overlay Data</strong></p>
<p>As you zip between images in the deep zoom composition the control keeps track of which images you are looking at. It notifies the host application when an image is zoomed enough &#8211; &#8220;hey, they are looking at an image&#8221;. What&#8217;s especially cool is what else it can give the host app. </p>
<p>Your host app can load in any POCO (plan on C# object &#8211; classes etc) in to the SuperDeepZoom control and associate it with a particular sub image. When the user zooms in on an image, the control hands this object back to the host application&#8230; it can then be shown using a template with databinding or what ever you like!</p>
<p>The same goes for the per image overlays. Each item in the image overlay ItemsControl is associated with one of your data objects&#8230; they are then shown using the ItemTemplate that you feed in from the host app &#8211; it&#8217;s so easy to change around this template, and also to add more functionality to the objects themselves (i.e. customisation is sweeet).</p>
<p>This all means that the SuperDeepZoom control manages only the MultiscaleImage, aligning overlays etc &#8211; all the rest is handled through databinding and events from the control in your host application.</p>
<p><strong>Composing deep zoom &#8230;erm&#8230; compositions</strong></p>
<p>Included in the project is a tool which you can use to suck in a directory of images and automatically output a deep zoom composition compatible with the SuperDeepZoom control (i.e. it has sub images, rather than being one big deep zoomable image).</p>
<p><strong>Usage</strong></p>
<p>Usage of the SuperDeepZoom control is pretty simple&#8230; at it&#8217;s most basic level you can just drop it in, configure the path to the deep zoom composition and start using it.</p>
<p>The real fun comes when you start databinding values, customising templates and passing in your own data. </p>
<p>Pulling apart the sample application is your best bet for quickly getting up to speed on this stuff, but for posterity I&#8217;ll run through the basic set up for relatively simple deep zoom application. In coming posts I will describe in more detail how to go about customising overlays and other cool bits.</p>
<p><strong>Getting set-up</strong></p>
<p>Start off by creating a new Silverlight application in Visual Studio &#8211; ensure you create a web site with it as you will need somewhere to host the deep zoom composition.</p>
<p>Next, you&#8217;ll need to download the source code from the Codeplex project <a href="http://eventr.codeplex.com" title="Eventr Project on Codeplex">here</a>. Once you have that, include the SuperDeepZoom project in your solution and add a project reference to it by right clicking on References in your Silverlight project and select Projects tab&#8230;</p>
<p><strong>Creating some deep zoom imagery</strong></p>
<p>Before you can start you need something to deep zoom. Fire up the Eventr source code and start the DZCollectionCreator project (sorry not compiled in the distro <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> ). From here you can select an input directory to source your images from (JPG or PNG should be okay). Select an output directory. Once the process completes (should be pretty quick, about 2 seconds per image) navigate to the output directory and copy the entire contents. Next cruise to the directory of your *web* project and create a folder (call it MyDeepZoomComp) or something, and copy the stuff in. There will be a heap of files (far more than the number of images you input). This is part of the magicery behind how deep zoom works.</p>
<p>Now you have something to zoom.</p>
<p>Why not use deep zoom composer? This tool uses the deep zoom composition API internally, but it automatically lays out the images for you&#8230; saving you time!</p>
<p><strong>Getting something going</strong></p>
<p>We&#8217;ll now insert the SDZ control in to your page. First you&#8217;ll need to include a namespace to the control:</p>
<pre name="code" class="xml">

&lt;UserControl x:Class=&quot;EventrSampleRunThrough.MainPage&quot;
    xmlns=&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;
    xmlns:x=&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot; 

    xmlns:sdz=&quot;clr-namespace:SuperDeepZoom;assembly=SuperDeepZoom&quot;

    &gt;

	&lt;Grid x:Name=&quot;LayoutRoot&quot; Background=&quot;White&quot;&gt;

    &lt;/Grid&gt;
&lt;/UserControl&gt;
</pre>
<p>I also took out the width and height properties so the control will fill the browser window.</p>
<p>With the SDZ namespace in you&#8217;ll be able to insert the control.</p>
<pre name="code" class="xml">

&lt;sdz:SuperDeepZoom x:Name=&quot;sdz&quot; DeepZoomSource=&quot;../SampleDeepZoom/output.xml&quot;/&gt;
</pre>
<p>This is pointing to a deep zoom comp in the root of the web site in the SampleDeepZoom folder. Note this path is relative to the Silverlight XAP package, which is usually stored in ClientBin &#8211; hence the ../ on the front (the SDZ control has some smarts to calculate relative paths).</p>
<p>Run your app! you will see you fully functional deep zoom composition, complete with double click to zoom and mouse wheel support! Too easy eh?</p>
<p><strong>More to come</strong></p>
<p>I&#8217;ll be blogging a lot more on this project over the coming weeks and months (as time permits!). Next time I will describe how to make some simple overlays (complete with your own custom data). </p>
<p>Until then, I hope you enjoy my little project, and please keep those comments flowing with your ideas and suggestions <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
<p>P.S. A big thanks to the delicate genius himself <a href="http://delicategeniusblog.com/">Michael Kordahi</a> for helping me get this off the ground <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/331/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/331/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/331/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=331&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/07/09/eventr-your-flexible-deepzoom-reference-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
		<item>
		<title>SDDN Meeting, 30 June, Melbourne</title>
		<link>http://blog.webjak.net/2009/06/26/sddn-meeting-30-june-melbourne/</link>
		<comments>http://blog.webjak.net/2009/06/26/sddn-meeting-30-june-melbourne/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 09:30:03 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/?p=325</guid>
		<description><![CDATA[EDIT: We&#8217;ll be giving away not one but two Expression Studio Suites worth over $1K each!
Come along and see Sketchflow and Blend 3 in all their glory!
Sketchflow Shane Morris, Microsoft
Don&#8217;t know what Sketchflow is? Then read this!. Okay, now tell me you dont want Shane, MS UX Evangelist, to run through it live!
Expression Blend 3 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=325&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>EDIT: <strong>We&#8217;ll be giving away not one but two Expression Studio Suites worth over $1K each!</strong></p>
<p>Come along and see Sketchflow and Blend 3 in all their glory!</p>
<p><strong>Sketchflow</strong> Shane Morris, Microsoft</p>
<p>Don&#8217;t know what Sketchflow is? Then <a href="http://team.silverlight.net/announcements/sketchflow-rapid-prototyping-that-works/" title="Sketchflow Overview">read this!</a>. Okay, now tell me you dont want Shane, MS UX Evangelist, to run through it live!</p>
<p><strong>Expression Blend 3 &#8211; What&#8217;s new?</strong> &#8211; Mahesh Krishnan, Readify</p>
<p>Expression Blend 3 improves upon the goodness of Blend 2 SP 1 by providing a whole heap of new features and more importantly, the ability to create applications for Silverlight 3. The list of new enhancements is long &#8211; Lots of improvements to the way you use the tool, Improvements to how XAML, C# and VB.NET files are edited, Support for importing Adobe Photoshop and Illustrator files, Skinning enhancements, Enhancements for animation, Sample data generation, etc, etc. </p>
<p>Mahesh Krishnan will run through these changes in a fast demo based session (without using Powerpoint!) The session is targeted at both Designers and Developers, so don&#8217;t miss out <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
<p>About the speaker: Mahesh Krishnan, works as Senior Consultant at Readify and blogs at <a>http://blogesh.wordpress.com</a>. He has previously presented at a number of user group meetings, codecamps and Tech.Ed</p>
<p>We meet @ the Microsoft Theatre, Level 5, 4 Freshwater Place, Southbank. Be there from 6!</p>
<p><strong>Use the registration tool on <a href="http://www.sddn.org.au" title="SDDN Site">the SDDN site</a>.</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/325/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/325/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/325/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=325&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/06/26/sddn-meeting-30-june-melbourne/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
		<item>
		<title>Remix Australia 2009 videos available</title>
		<link>http://blog.webjak.net/2009/06/20/remix-australia-2009-videos-available/</link>
		<comments>http://blog.webjak.net/2009/06/20/remix-australia-2009-videos-available/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 01:49:43 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/?p=321</guid>
		<description><![CDATA[Another #auremix passes, but this time we have video for all those that weren&#8217;t able to attend!
Check out http://www.microsoft.com/australia/remix/videos/default.aspx for all the sessions from Remix Australia.
If you are watching my session (the Silverlight 3 Super Session) then you may be interested in the sample code so you can sing along at home  
Overall Remix [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=321&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Another #auremix passes, but this time we have video for all those that weren&#8217;t able to attend!</p>
<p>Check out <a href="http://www.microsoft.com/australia/remix/videos/default.aspx" title="Remix Videos">http://www.microsoft.com/australia/remix/videos/default.aspx</a> for all the sessions from Remix Australia.</p>
<p>If you are watching my session (the Silverlight 3 Super Session) then you may be interested in the <a href="http://blog.webjak.net/2009/06/11/remix-australia-09-silverlight-3-super-session-demo/" title="Remix Session Sample Code">sample code</a> so you can sing along at home <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
<p>Overall Remix was a great event &#8211; the most value I find is talking to peeps in the hallways and after party. It&#8217;s always great to hear what others are doing and to join ideas and thoughts.</p>
<p>Will most definitely see you there again next year!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/321/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=321&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/06/20/remix-australia-2009-videos-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
		<item>
		<title>Silverlight 3 &#8211; Split image in to tiles and show in 3d space</title>
		<link>http://blog.webjak.net/2009/06/13/silverlight-3-split-image-in-to-tiles-and-show-in-3d-space/</link>
		<comments>http://blog.webjak.net/2009/06/13/silverlight-3-split-image-in-to-tiles-and-show-in-3d-space/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 12:17:48 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[auremix09]]></category>
		<category><![CDATA[WritableBitmap]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/?p=313</guid>
		<description><![CDATA[At Remix Australia 09 one of the demos I showed was of a 3d wall with lots of images which would then extrude in to 3d space.
I&#8217;ve taken that demo and updated it a little so you can now load and show any image as a set of separate 3d tiles which can be moved [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=313&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>At Remix Australia 09 one of the demos I showed was of a 3d wall with lots of images which would then extrude in to 3d space.</p>
<p>I&#8217;ve taken that demo and updated it a little so you can now load and show any image as a set of separate 3d tiles which can be moved around independently of one another. </p>
<p>Have a look at the app running here: <a href="http://www.imsilverlight.com/sites/demo/SuperWall3dThingo/TestPage.html" title="3d tiled image thingo">Tile image and place tiles in to 3d space thingo</a>.</p>
<h2><span style="color:#ff0000;">&lt;Sample Code&gt;</span></h2>
<p><a href="http://www.webjak.net/files/FileDetail.aspx?fileId=74c157ee-c9be-4169-bf92-fbbd7b7b99ff" title="Get the sample code">Split image and 3d-ify</a><br />
<h2><span style="color:#ff0000;">&lt;/Sample Code&gt;</span></h2>
<p>The cool part here is using the new WritableBitmap to create the tiles. Open up CrazyNoPurposeWrapImage3dThingo.cs and check out the way the code loops through rows and columns and renders potions of the source image in to tiles using WritableBitmap.Render, modifying the translate transform to move the source portion around.</p>
<pre name="code" class="csharp">

bm.Render(imgWriteTemp, new TranslateTransform() { X = -cx, Y = -cy });
</pre>
<p>The 3d stuff I&#8217;ll explain another day <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
<p>Enjoy!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/313/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/313/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/313/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=313&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/06/13/silverlight-3-split-image-in-to-tiles-and-show-in-3d-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
		<item>
		<title>Remix Australia 09 &#8211; Silverlight 3 Super Session Demo!</title>
		<link>http://blog.webjak.net/2009/06/11/remix-australia-09-silverlight-3-super-session-demo/</link>
		<comments>http://blog.webjak.net/2009/06/11/remix-australia-09-silverlight-3-super-session-demo/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 01:52:55 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Remix]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/?p=307</guid>
		<description><![CDATA[I&#8217;ve been a bit quiet blogging lately &#8211; because I&#8217;ve been working on three great apps for Remix Australia 09! 
Download the sample app that I use throughout my Silverlight demo @ Remix Australia 09 here.
Video of the session will be posted soon after the event, so stay tuned!
&#60;Sample Code&#62;
Silverlight 3 Super Session Code
&#60;/Sample Code&#62;
The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=307&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve been a bit quiet blogging lately &#8211; because I&#8217;ve been working on three great apps for Remix Australia 09! </p>
<p>Download the sample app that I use throughout my Silverlight demo @ Remix Australia 09 here.</p>
<p>Video of the session will be posted soon after the event, so stay tuned!</p>
<h2><span style="color:#ff0000;">&lt;Sample Code&gt;</span></h2>
<p><a href="http://www.webjak.net/files/FileDetail.aspx?fileId=c1b5c94d-ff30-4beb-aff8-f6e6f54c57b5" title="Get the sample code">Silverlight 3 Super Session Code</a><br />
<h2><span style="color:#ff0000;">&lt;/Sample Code&gt;</span></h2>
<p>The main Solution is located in RemixDemos/RemixDemos.sln.</p>
<p>BTW, don&#8217;t expect too many comments in the reference app. Any commenting I&#8217;ve done in the last month has gone in to the eventr Codeplex app!</p>
<p>I&#8217;ll be blogging more on the <a href="http://www.codeplex.com/eventr" title="Download eventr reference app">eventr Deep Zoom app</a> on Codeplex in coming weeks and months.</p>
<p>I really hope you enjoy these apps!</p>
<p>Cheers,</p>
<p>Jordan.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/307/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/307/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/307/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=307&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/06/11/remix-australia-09-silverlight-3-super-session-demo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
		<item>
		<title>Debug SL3 OOB application startup</title>
		<link>http://blog.webjak.net/2009/05/27/debug-sl3-oob-application-startup/</link>
		<comments>http://blog.webjak.net/2009/05/27/debug-sl3-oob-application-startup/#comments</comments>
		<pubDate>Wed, 27 May 2009 01:45:49 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[OOB]]></category>
		<category><![CDATA[Silverlight 3]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/?p=304</guid>
		<description><![CDATA[Just a short post.
The other day I was having some trouble debugging the start up of a Silverlight 3 OOB application. The problem was well and truly gone before I could attach to the application from Visual Studio.
If you didn&#8217;t realise, you can attach VS to your OOB app by attaching to the appropriate sllauncher.exe [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=304&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just a short post.<br />
The other day I was having some trouble debugging the start up of a Silverlight 3 OOB application. The problem was well and truly gone before I could attach to the application from Visual Studio.</p>
<p>If you didn&#8217;t realise, you can attach VS to your OOB app by attaching to the appropriate sllauncher.exe instance.</p>
<p>As stated though, you will miss out on any start up problems you are trying to debug.</p>
<p>My (hacky) work around was to wack this in my start up code&#8230; I wacked it in MainPage.xaml.cs, but I can&#8217;t see any reason this won&#8217;t work in App.xaml.cs:</p>
<pre name="code" class="csharp">

while (!Debugger.IsAttached)
{
    Thread.Sleep(100);
}
</pre>
<p>This code will basically hang the app until you attach your debugger! Just make sure you don&#8217;t let this one in to production <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/304/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=304&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/05/27/debug-sl3-oob-application-startup/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
		<item>
		<title>June 2 SDDN Meeting in Sydney</title>
		<link>http://blog.webjak.net/2009/05/27/june-2-sddn-meeting-in-sydney/</link>
		<comments>http://blog.webjak.net/2009/05/27/june-2-sddn-meeting-in-sydney/#comments</comments>
		<pubDate>Wed, 27 May 2009 01:33:16 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[SDDN]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[User Group]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/?p=301</guid>
		<description><![CDATA[Miguel has been very organised and has another SDDN meeting off the ground in Sydney!
From Miguel&#8217;s blog: 
&#8220;Next Tuesday, June 2 at 6:30 at Microsoft in Sydney (1 Epping Road, North Ryde NSW) we will have the SSDN Sydney’s June Meeting. This time Tatham Oddie will be talking about the new Out of Browser features [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=301&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Miguel has been very organised and has another SDDN meeting off the ground in Sydney!</p>
<p>From <a href="http://miguelmadero.blogspot.com/2009/05/silverlight-designer-and-developer.html" title="Miguels Blog">Miguel&#8217;s blog</a>: </p>
<p>&#8220;Next Tuesday, June 2 at 6:30 at Microsoft in Sydney (1 Epping Road, North Ryde NSW) we will have the SSDN Sydney’s June Meeting. This time Tatham Oddie will be talking about the new Out of Browser features in Silverlight 3 and Sergey Klementiev will presenting “LOB applications in Silverlight Lap around middle tier”. You will also have the opportunity to win a copy full of Expression 2 Suite and the best of all network amongst your Silverlight peers. So don’t miss it.&#8221;</p>
<p>Register on <a href="http://www.sddn.org.au" title="SDDN Site">the site</a>.</p>
<p>See you there!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/301/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=301&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/05/27/june-2-sddn-meeting-in-sydney/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
		<item>
		<title>First Virtual Silverlight Designer and Developer Network Meeting</title>
		<link>http://blog.webjak.net/2009/05/14/first-virtual-silverlight-designer-and-developer-network-meeting/</link>
		<comments>http://blog.webjak.net/2009/05/14/first-virtual-silverlight-designer-and-developer-network-meeting/#comments</comments>
		<pubDate>Wed, 13 May 2009 23:27:50 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[SDDN]]></category>
		<category><![CDATA[Virtual Meeting]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/2009/05/14/first-virtual-silverlight-designer-and-developer-network-meeting/</guid>
		<description><![CDATA[Miguel has been hard at work organising our first ever virtual SDDN meeting!
It&#8217;s on May 18, 2009 at 9:00 pm Sydney Time.
See Miguel&#8217;s Blog for more details!
Link to the meeting will be released today hopefully.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=300&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Miguel has been hard at work organising our first ever virtual SDDN meeting!</p>
<p>It&#8217;s on May 18, 2009 at 9:00 pm Sydney Time.</p>
<p>See <a href="http://miguelmadero.blogspot.com/2009/05/first-virtual-silverlight-designer-and.html" title="Miguel's Blog">Miguel&#8217;s Blog</a> for more details!</p>
<p>Link to the meeting will be released today hopefully.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/300/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/300/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/300/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=300&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/05/14/first-virtual-silverlight-designer-and-developer-network-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
		<item>
		<title>Silverlight Slider that snaps to rounded value when dragged</title>
		<link>http://blog.webjak.net/2009/05/10/silverlight-slider-that-snaps-to-rounded-value-when-dragged/</link>
		<comments>http://blog.webjak.net/2009/05/10/silverlight-slider-that-snaps-to-rounded-value-when-dragged/#comments</comments>
		<pubDate>Sun, 10 May 2009 03:06:06 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Control]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Slider]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/?p=295</guid>
		<description><![CDATA[The other day I had a problem where a slider had five distinct values and the user would drag the slider to their selection. An example of this would be a question like &#8220;From 1 to 5, please select how much you like puppies&#8221;. Of course, everyone would answer 5 to that question but that&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=295&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The other day I had a problem where a slider had five distinct values and the user would drag the slider to their selection. An example of this would be a question like &#8220;From 1 to 5, please select how much you like puppies&#8221;. Of course, everyone would answer 5 to that question but that&#8217;s not the point&#8230; When a user clicked the slider (as opposed to dragging the thumb), the slider change would work fine, and the slider would go to the right place. The problem was that when the dragged the slider to change the value they could drag it to an intermediary value. Small change was 1 and large change was 1, but the could select 1.1393938&#8230; which would leave the slider sitting in a position between 1 and 2 somewhere.</p>
<p>The answer was to jump in to Silverlight Spy and have a bit of a hunt around the Slider code. I pulled out some of the code and created a new class inherited from Slider, and now when I drag it snaps to the right positions!</p>
<p>The code here is not complete, it doesn&#8217;t properly support IsDirectionReversed or Vertical sliders, but you could quite easily fix it for your own purposes.</p>
<p>Basically, just create a new control and inherit from Slider, then override the method as below.</p>
<p>Keep in mind, this to me is a fairly hacky approach <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
<pre name="code" class="csharp">

public class MySlider : Slider
    {
        protected override void OnValueChanged(double oldValue, double newValue)
        {
            int val = Convert.ToInt32(Math.Round(newValue));        

            Thumb ElementHorizontalThumb = GetTemplateChild(&quot;HorizontalThumb&quot;) as Thumb;

            double maximum = base.Maximum;
            double minimum = base.Minimum;

            double num3 = val;
            double num4 = 1.0 - ((maximum - num3) / (maximum - minimum));

            RepeatButton ElementHorizontalLargeDecrease = GetTemplateChild(&quot;HorizontalTrackLargeChangeDecreaseRepeatButton&quot;) as RepeatButton;
            RepeatButton ElementHorizontalLargeIncrease = GetTemplateChild(&quot;HorizontalTrackLargeChangeIncreaseRepeatButton&quot;) as RepeatButton;

            Grid grid = GetTemplateChild(&quot;HorizontalTemplate&quot;) as Grid;

            if (grid != null)
            {

                if ((grid.ColumnDefinitions != null) &amp;&amp; (grid.ColumnDefinitions.Count == 3))
                {
                    grid.ColumnDefinitions[0].Width = new GridLength(1.0, GridUnitType.Auto);
                    grid.ColumnDefinitions[2].Width = new GridLength(1.0, GridUnitType.Star);

                    if (ElementHorizontalLargeDecrease != null)
                    {
                        ElementHorizontalLargeDecrease.SetValue(Grid.ColumnProperty, 0);
                    }
                    if (ElementHorizontalLargeIncrease != null)
                    {
                        ElementHorizontalLargeIncrease.SetValue(Grid.ColumnProperty, 2);
                    }
                }
                if ((ElementHorizontalLargeDecrease != null) &amp;&amp; (ElementHorizontalThumb != null))
                {
                    ElementHorizontalLargeDecrease.Width = Math.Max(0.0, num4 * (base.ActualWidth - ElementHorizontalThumb.ActualWidth));
                }
            }
        }

    }
</pre>
<p>The main crux of this is that I first round the value, then pass it in as &#8220;num3&#8243; which is then used to calculate the real position of the thumb slider. </p>
<p>As I said, a bit hacky, but it works nice!</p>
<p>I checked the Slider for a property that might turn it in to this mode, but couldn&#8217;t see anything&#8230; I think it would be a nice addition to the in built slider control.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/295/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=295&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/05/10/silverlight-slider-that-snaps-to-rounded-value-when-dragged/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
		<item>
		<title>REMIX09 Australia session list and speakers</title>
		<link>http://blog.webjak.net/2009/05/02/remix09-australia-session-list-and-speakers/</link>
		<comments>http://blog.webjak.net/2009/05/02/remix09-australia-session-list-and-speakers/#comments</comments>
		<pubDate>Sat, 02 May 2009 05:49:44 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://blog.webjak.net/?p=292</guid>
		<description><![CDATA[The speaker and session lists for REMIX09 have been posted. Check out the speakers here and the session list (and registration link) here.
My session, the &#8220;Silverlight 3 Super Session&#8221; is first up, so come along and check it out!
REMIX09 is on June 11 at Star City in Sydney.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=292&subd=jakkaj&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The speaker and session lists for REMIX09 have been posted. Check out the speakers <a href="http://www.microsoft.com/australia/remix/agenda/speakers.aspx" title="Speaker list">here</a> and the session list (and registration link) <a href="https://www.microsoft.com.au/events/register/home.aspx?levent=725411&amp;linvitation" title="Session list and registration">here</a>.</p>
<p>My session, the &#8220;Silverlight 3 Super Session&#8221; is first up, so come along and check it out!</p>
<p>REMIX09 is on June 11 at Star City in Sydney.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jakkaj.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jakkaj.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jakkaj.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jakkaj.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jakkaj.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jakkaj.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jakkaj.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jakkaj.wordpress.com/292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jakkaj.wordpress.com/292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jakkaj.wordpress.com/292/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.webjak.net&blog=1986956&post=292&subd=jakkaj&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blog.webjak.net/2009/05/02/remix09-australia-session-list-and-speakers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/310d76b78db597d9c9d0066df9654e51?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jordan</media:title>
		</media:content>
	</item>
	</channel>
</rss>