<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.8.4" -->
<rss version="0.92">
<channel>
	<title>eighty eight percent nerd.</title>
	<link>http://www.eightyeightpercentnerd.dreamhosters.com</link>
	<description>My fumbling through silverlight... blogs are a nice way to jot down thoughts.</description>
	<lastBuildDate>Thu, 29 Oct 2009 23:31:17 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>[Silverlight 2, C#] How to tell if a Storyboard is currently running?</title>
		<description>To do this you can check the current ClockState of the animation.

[sourcecode language="csharp"]
bool isRunning = (MyStoryboard.GetCurrentState() == ClockState.Active);
[/sourcecode] </description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=333</link>
			</item>
	<item>
		<title>[C# 3.0+] Annonymous Types</title>
		<description>What Does it do?

Annonymous Types

[sourcecode language="csharp"]
var annon = new { name1 = var1, name2 = var2, ... };
// or
obj annon = new { name1 = var1, name2 = var2, ... };

// Example
obj results = new { OriginalRequest = myRequest, Data = foundData, Status = dataStatus };
// Now you can see ...</description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=326</link>
			</item>
	<item>
		<title>[Javascript] Time, timers and time differences</title>
		<description>This should be easy, and perhaps I'm making it harder then it should be... I'm used to using the DateTime object, which confuses me when I have to switch back to javascript.

Anyhoot... here is how I have created a pseudo-timer that will spit out the time difference in seconds from ...</description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=316</link>
			</item>
	<item>
		<title>Lack of updates :(</title>
		<description>Sorry for my lack of updates... I've been pulled off my Silverlight projects for the time and have been moved onto other tasks which involve jquery and Ext. Hopefully I'll be back on C# track again soon! </description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=314</link>
			</item>
	<item>
		<title>[Silverlight 2, C#] Datagrid Not Sorting?</title>
		<description>So I've been playing around with Siverlight datagrids.  I have an xml page stuffed with data which I read into a custom class I made to store an xml node and it's properties... I then databind a List of myClass to the datagrid itemsource and everything works fine - ...</description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=303</link>
			</item>
	<item>
		<title>[Silverlight 2] Great FAQ Page</title>
		<description>I just bumped into this FAQ page on the Silverlight forums and I think it is an excellent read to become familiarized with some of the most common pitfalls people encounter when coding with Silverlight.

Silverlight.net FAQ Page
[This link posted 6/4/2009 and may change in the future.  At time of ...</description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=300</link>
			</item>
	<item>
		<title>[Silverlight 2, C#] Writing to and Reading from an IsoStorage File at the Same Time!</title>
		<description>As I've mentioned in past posts, I have augmented the Silverlight Unit Test Framework to log errors it finds into a file in IsoStorage.  This file is then read by a python script and results are sent via email if need be.  

I ran into a problem today ...</description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=286</link>
			</item>
	<item>
		<title>[C#] My StreamWriter isn&#8217;t Writing Properly!</title>
		<description>I have a StreamWriter which is responsible for writing out to my test file, however, there is a chance that my test app may be killed before completed.  Whenever this occurred, it seemed that my test file was blank!  Even though I knew that I had written some ...</description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=277</link>
			</item>
	<item>
		<title>[C#] Using Reflection to Find a Function Name</title>
		<description>I have a test script which will run and log errors found into a file in isolated storage.  I wanted to be able to also log the name of the function that was being tested, and after a quick search I see that this can easily be found using ...</description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=269</link>
			</item>
	<item>
		<title>[Silverlight 2, C#] Implementing an Observable Collection [on a custom class]</title>
		<description>In order to improve some performance issues we were having, I needed to make a custom class that we were using become observable so that when we changed an item in the class the datagrid that the class was bound to would update automatically.

The datasource we were using was a ...</description>
		<link>http://www.eightyeightpercentnerd.dreamhosters.com/?p=247</link>
			</item>
</channel>
</rss>
