<?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"
	>

<channel>
	<title>Lab49 Blog</title>
	<atom:link href="http://blog.lab49.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.lab49.com</link>
	<description>Technology and industry insights from Lab49, Inc.</description>
	<pubDate>Sat, 06 Sep 2008 00:14:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Using PowerShell and World Data (now a public API) with Microsoft’s NetMap free graphing libraries</title>
		<link>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/384618767/</link>
		<comments>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/384618767/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 00:14:20 +0000</pubDate>
		<dc:creator>Doug Finke</dc:creator>
		
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dougfinke.com/blog/?p=468</guid>
		<description><![CDATA[The World Bank&#8217;s first API offers 114 indicators from key data sources and 12,000 development photos. We are releasing this API because we believe this information can be mapped, visualized and mashed up in an unlimited number of ways that will help develop a better understanding of trends and patterns around key development issues.

HERE
Visualize the [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>The World Bank&#8217;s first API offers 114 indicators from key data sources and 12,000 development photos. We are releasing this API because we believe this information can be mapped, visualized and mashed up in an unlimited number of ways that will help develop a better understanding of trends and patterns around key development issues.</p>
</blockquote>
<p><font color="#777777"><a href="http://developer.worldbank.org/page">HERE</a></font></p>
<h3>Visualize the Data with PowerShell and NetMap</h3>
<p>I posted on <a href="http://dougfinke.com/blog/?p=465">Microsoft Research .NetMap and PowerShell</a>. This script visualizes countries by Income Level, Lending Types and Regions.</p>
<pre>param(<span>$category</span>=<span>&quot;incomeLevel&quot;</span>)

. .Show-NetMap

<span>$wc</span> = <span>New-Object</span> net.webclient
<span>$url</span>=&quot;http://open.worldbank.org/rest.php?
method=wb.countries.get&amp;per_page=<span>250</span>&amp;api_key=&lt;your api key&gt;&quot;

([xml]<span>$wc</span>.DownloadString(<span>$url</span>)).rsp.countries.country |
  % {
   <span>if</span>(<span>$_</span>.iso2code -and <span>$_</span>.name) {
    <span>new-object</span> psobject |
     <span>add-member</span> -pass noteproperty source (<span>$_</span>.<span>$category</span>.<span>&#8216;#text&#8217;</span>) |
     <span>add-member</span> -pass noteproperty target (<span>$_</span>.name)
    }
  } | Show-NetMap -w <span>250</span> -l F</pre>
<h3>Income Level</h3>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image.png"><img height="272" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_thumb.png" width="522" border="0" /></a></p>
</p>
<p>&#160;</p>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_3.png"><img height="416" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_thumb_3.png" width="492" border="0" /></a> </p>
<h3>&#160;</h3>
<h3>&#160;</h3>
<h3>Lending Type</h3>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_4.png"><img height="269" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_thumb_4.png" width="516" border="0" /></a> </p>
<p>&#160;</p>
<p>&#160;</p>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_5.png"><img height="216" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_thumb_5.png" width="508" border="0" /></a> </p>
<p>&#160;</p>
</p>
<h3>Region</h3>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_6.png"><img height="268" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_thumb_6.png" width="515" border="0" /></a>&#160;</p>
<p>&#160;</p>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_7.png"><img height="287" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/0e560c81b39d_11285/image_thumb_7.png" width="465" border="0" /></a></p>
<img src="http://feeds.feedburner.com/~r/DevelopmentInABlink/~4/384618767" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/384618767/feed</wfw:commentRss>
		</item>
		<item>
		<title>Disco - Another map-reduce framework</title>
		<link>http://akknotes.blogspot.com/2008/09/disco-another-map-reduce-framework.html</link>
		<comments>http://akknotes.blogspot.com/2008/09/disco-another-map-reduce-framework.html#comments</comments>
		<pubDate>Fri, 05 Sep 2008 22:29:00 +0000</pubDate>
		<dc:creator>Karthik Kumar</dc:creator>
		
		<category><![CDATA[Functional Programming]]></category>

		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-153372856693746451.post-9060224860397952894</guid>
		<description><![CDATA[Highscalability.com discusses about Disco, a map-reduce framework here  .]]></description>
			<content:encoded><![CDATA[Highscalability.com discusses about Disco, a map-reduce framework <A href="http://highscalability.com/mapreduce-framework-disco">here </a> .]]></content:encoded>
			<wfw:commentRss>http://akknotes.blogspot.com/2008/09/disco-another-map-reduce-framework.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Scratched Chrome</title>
		<link>http://feeds.feedburner.com/~r/Cogitatio/~3/384479361/scratched-chrome.html</link>
		<comments>http://feeds.feedburner.com/~r/Cogitatio/~3/384479361/scratched-chrome.html#comments</comments>
		<pubDate>Fri, 05 Sep 2008 20:08:00 +0000</pubDate>
		<dc:creator>smangano</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-208437074950033830.post-4770730669050172316</guid>
		<description><![CDATA[Call me impatient and unreasonable but don't you think the features of Google Toolbar would be available in Google Chrome??? RSS
]]></description>
			<content:encoded><![CDATA[Call me impatient and unreasonable but don't you think the features of <a href="http://www.google.com/tools/firefox/toolbar/FT3/intl/en/index.html">Google Toolbar</a> would be available in <a href="http://www.google.com/chrome">Google Chrome</a>??? <div class="blogger-post-footer"><a href="http://semanticvector.blogspot.com/feeds/posts/default?alt=rss">RSS</a></div>
<p><a href="http://feeds.feedburner.com/~a/Cogitatio?a=NA38QV"><img src="http://feeds.feedburner.com/~a/Cogitatio?i=NA38QV" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Cogitatio/~4/384479361" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/Cogitatio/~3/384479361/scratched-chrome.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Worth Reading</title>
		<link>http://mdavey.wordpress.com/2008/09/04/worth-reading/</link>
		<comments>http://mdavey.wordpress.com/2008/09/04/worth-reading/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 21:06:01 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=1003</guid>
		<description><![CDATA[
Lawson’s Smart Office - check out the video.  Maybe Microsoft should hire these chaps to write a WPF shell for windows  
MVVM
MSDN Magazine:

Patterns For Building Composite Applications With WPF - nice article on Prism
Create Data-Centric Web Applications With Silverlight 2 - SOAP is dead, long live ADO.NET Data Services  
Understanding Routed Events [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul>
<li>Lawson’s Smart <a href="http://blogs.msdn.com/jaimer/archive/2008/09/02/great-wpf-applications-lawson-s-smart-office.aspx">Office</a> - check out the <a href="http://channel9.msdn.com/shows/Continuum/LawsonSmartOffice/">video</a>.  Maybe Microsoft should hire these chaps to write a WPF shell for windows <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li><a href="http://joshsmithonwpf.wordpress.com/2008/09/04/using-mvvm-to-work-with-checkboxes-in-xamdatagrid/">MVVM</a></li>
<li>MSDN <a href="http://msdn.microsoft.com/en-gb/magazine/default.aspx">Magazine</a>:
<ul>
<li>Patterns For Building Composite Applications With <a href="http://msdn.microsoft.com/en-gb/magazine/cc785479.aspx">WPF</a> - nice article on <a href="http://blogs.msdn.com/dphill/archive/2008/08/31/hello-prism-2-0.aspx">Prism</a></li>
<li>Create Data-Centric Web <a href="http://msdn.microsoft.com/en-gb/magazine/cc794279.aspx">Applications</a> With Silverlight 2 - SOAP is dead, long live ADO.NET Data Services <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=')' class='wp-smiley' /> </li>
<li>Understanding <a href="http://msdn.microsoft.com/en-gb/magazine/cc785480.aspx">Routed Events</a> and Commands In WPF</li>
<li>Unhandled <a href="http://msdn.microsoft.com/en-gb/magazine/cc793966.aspx">Exception</a> Processing In The CLR</li>
<li>Service-Driven <a href="http://msdn.microsoft.com/en-gb/magazine/cc794260.aspx">Apps</a> With Silverlight 2 And WCF</li>
<li>Confidence in the <a href="http://blogs.msdn.com/pathelland/archive/2008/09/01/confidence-in-the-cloud.aspx">Cloud</a> - interesting read on Amazon and clouds</li>
</ul>
</li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/1003/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/1003/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/1003/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/1003/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/1003/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/1003/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/1003/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/1003/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/1003/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/1003/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/1003/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/1003/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=1003&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/09/04/worth-reading/feed</wfw:commentRss>
		</item>
		<item>
		<title>Chrome’d</title>
		<link>http://mdavey.wordpress.com/2008/09/04/chromed/</link>
		<comments>http://mdavey.wordpress.com/2008/09/04/chromed/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 04:52:48 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=1001</guid>
		<description><![CDATA[So I finally joined the crowd and installed Google Chrome.  The application shortcuts are a very nice feature.  I suspect the Microsoft IE group have had a few things to think about over the last few days - process separation, performance etc
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So I finally joined the crowd and installed Google <a href="http://www.google.com/chrome">Chrome</a>.  The application shortcuts are a very nice feature.  I suspect the <a href="http://www.wired.com/techbiz/it/magazine/16-10/mf_chrome">Microsoft IE</a> group have had a few things to think about over the last few days - process separation, performance etc</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/1001/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/1001/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/1001/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/1001/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/1001/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=1001&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/09/04/chromed/feed</wfw:commentRss>
		</item>
		<item>
		<title>LSE Latency</title>
		<link>http://mdavey.wordpress.com/2008/09/03/lse-latency/</link>
		<comments>http://mdavey.wordpress.com/2008/09/03/lse-latency/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 20:42:09 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Finance]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=999</guid>
		<description><![CDATA[The London Stock Exchange (LSE) continues its quest for low latency with the launched of Exchange Hosting.  Back office latency/transaction throughput is often in the quest for low trade latency.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The London Stock Exchange (<a href="http://www.thetradenews.com/trading/exchanges/2242">LSE</a>) continues its quest for low latency with the launched of Exchange Hosting.  Back office latency/transaction throughput is often in the quest for low trade latency.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/999/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/999/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/999/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/999/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/999/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=999&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/09/03/lse-latency/feed</wfw:commentRss>
		</item>
		<item>
		<title>Real World Functional Programming With examples in F# and C#</title>
		<link>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/381816981/</link>
		<comments>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/381816981/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:58:50 +0000</pubDate>
		<dc:creator>Doug Finke</dc:creator>
		
		<category><![CDATA[.Net]]></category>

		<category><![CDATA[Functional Programming]]></category>

		<guid isPermaLink="false">http://dougfinke.com/blog/?p=467</guid>
		<description><![CDATA[Tomas Petricek, who interned under the supervision of Don Syme, is publishing.

“Thinking differently about problems&#34; is available for free.
Parallelization of functional programs
Imagine that we&#8217;re writing a computer game and we have a list of characters controlled by the computer. In a single step of the game, we want to remove all characters that died since [...]]]></description>
			<content:encoded><![CDATA[<p>Tomas Petricek, who interned under the supervision of Don Syme, <a href="http://tomasp.net/blog/functional-programming-book.aspx">is publishing</a>.</p>
<p><img alt="Book cover" src="http://www.tomasp.net/img/cover_main.gif" /></p>
<p>“Thinking differently about problems&quot; <a href="http://www.manning.com/petricek/petricek_meapch1.pdf">is available for free</a>.</p>
<h3>Parallelization of functional programs</h3>
<p>Imagine that we&#8217;re writing a computer game and we have a list of characters controlled by the computer. In a single step of the game, we want to remove all characters that died since the last step and we want to calculate new state of the game character (such as new location). Also a character can perform some operation with the world (for example picking an item from the world).</p>
<h3>Imperative Solution</h3>
<pre>List&lt;GameCharacter&gt; dead = <span>new</span> List&lt;GameCharacter&gt;();

<span>foreach</span>(GameCharacter ch <span>in</span> Characters) {
  <span>if</span> (!CharacterIsAlive(ch))
    dead.Add(ch);
  <span>else</span>
    ch.PerformStep(<span>this</span>.World);
}

Characters.RemoveAll(dead);</pre>
</p>
<h3>Functional Version</h3>
<pre><span>  1</span> Characters = Characters.Filter(CharacterIsAlive);
<span>  2</span> Characters = Characters.Select(PerformStep);
<span>  3</span> <span>this</span>.World = Characters.Aggregate(<span>this</span>.World, ModifyWorld);</pre>
<ol>
<li>Filter out dead characters</li>
<li>Calculate new state for each character</li>
<li>Calculate new state of the world</li>
</ol>
<img src="http://feeds.feedburner.com/~r/DevelopmentInABlink/~4/381816981" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/381816981/feed</wfw:commentRss>
		</item>
		<item>
		<title>icomasoft startup integrates PowerShell into VMWare Virtual Infrastructure</title>
		<link>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/380647550/</link>
		<comments>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/380647550/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 17:46:10 +0000</pubDate>
		<dc:creator>Doug Finke</dc:creator>
		
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dougfinke.com/blog/?p=466</guid>
		<description><![CDATA[Earlier this year VMWare, global leader in virtualization solutions, opened the beta for its Powershell-based VMware Infrastructure Toolkit (VI Toolkit).
icomasoft is providing, in beta, VI PowerScripter which provides users with an unprecedented ease-of-use and simplification of many administrative tasks around VirtualCenter ESX and i3.


Reduction of required resources for administrative tasks 
Easy monitoring and analysis of [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this year VMWare, global leader in virtualization solutions, <a href="http://www.virtualization.info/2008/03/vmware-will-launch-powershell-powered.html">opened the beta</a> for its Powershell-based VMware Infrastructure Toolkit (VI Toolkit).</p>
<p><a href="http://www.icomasoft.com/index.php">icomasoft</a> is providing, in beta, VI PowerScripter which provides users with an unprecedented ease-of-use and simplification of many administrative tasks around VirtualCenter ESX and i3.</p>
</p>
<ul>
<li>Reduction of required resources for administrative tasks </li>
<li>Easy monitoring and analysis of the virtual infrastructure behavior </li>
<li>Mass configuration and individual configuration can be executed with one single script </li>
<li>Almost unlimited extension of the basic functionality of VMware infrastructures and free ESXi</li>
</ul>
<p>We’ll continue to watch the <a href="http://www.codeplex.com/PSHyperv">PowerShell management Library for Hyper-V on CodePlex</a> currently at 66 cmdlets and counting.</p>
<img src="http://feeds.feedburner.com/~r/DevelopmentInABlink/~4/380647550" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/380647550/feed</wfw:commentRss>
		</item>
		<item>
		<title>Prism 2.0 to support Silverlight</title>
		<link>http://mdavey.wordpress.com/2008/09/01/prism-20-to-support-silverlight/</link>
		<comments>http://mdavey.wordpress.com/2008/09/01/prism-20-to-support-silverlight/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 04:14:52 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[.Net]]></category>

		<category><![CDATA[Advanced Visualization]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=996</guid>
		<description><![CDATA[Finally it sounds like somebody at Microsoft has seen the light, with Prism 2.0 offering Silverlight support.  More interesting is the hint that binary compatability between WPF and Silverlight is on the cards -madness if this doesn&#8217;t happen.  &#8220;We&#8217;d like to get to the point where views, styles and themes can all be [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Finally it sounds like <a href="http://blogs.msdn.com/dphill/archive/2008/08/31/hello-prism-2-0.aspx">somebody</a> at Microsoft has seen the light, with Prism 2.0 offering Silverlight support.  More interesting is the hint that binary compatability between WPF and Silverlight is on the cards -madness if this doesn&#8217;t happen.  &#8220;We&#8217;d like to get to the point where views, styles and themes can all be re-used across WPF and Silverlight&#8221; - so would we all!  &#8220;Code that is shared is linked between two projects so that it is automatically compiled into each target&#8221; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt='(' class='wp-smiley' />  Painful!</p>
<p><a href="http://silverlightspy.com/silverlightspy/download-silverlight-spy/">Silverlight Spy</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/996/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/996/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/996/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/996/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/996/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/996/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/996/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/996/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/996/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/996/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/996/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/996/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=996&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/09/01/prism-20-to-support-silverlight/feed</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft Research .NetMap and PowerShell</title>
		<link>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/380043493/</link>
		<comments>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/380043493/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 00:53:30 +0000</pubDate>
		<dc:creator>Doug Finke</dc:creator>
		
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dougfinke.com/blog/?p=465</guid>
		<description><![CDATA[Microsoft Research released .NetMap. A free Open Source tool for creating and viewing network graphs. Included is a set of .Net libraries to add network graphs to custom applications.

Out of the box the tool supports some great features. One feature is the support for automatic layout of the vertices like Circular, Grid and Sinusoid Horizontal [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.codeplex.com/NetMap">Microsoft Research released .NetMap</a>. A free Open Source tool for creating and viewing network graphs. Included is a set of .Net libraries to add network graphs to custom applications.
</p>
<p>Out of the box the tool supports some great features. One feature is the support for automatic layout of the vertices like Circular, Grid and Sinusoid Horizontal to name a few.</p>
<p>Interactive features I like are the ability to drag the resulting nodes around on the drawing surface and clicking on a node to highlight the edges in and out of the node.</p>
<h3>Excel Integration</h3>
<p>A unique feature is the VSTO component for Excel. In a spreadsheet you can specify Vertex 1 and Vertex 2. The associated task pane lets you read the spreadsheet and layout the graph with different options.</p>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image.png"><img height="136" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_thumb.png" width="510" border="0" /></a> </p>
<h3>PowerShell Integration</h3>
<p>I worked up a few PowerShell scripts so I could produce graphs from different sources by: </p>
<ol>
<li>Importing a comma separated values file </li>
<li>Importing an Excel Spreadsheet </li>
<li>Running commands against the system </li>
</ol>
<p>Here’s are the commands and their results. The csv file and excel file contain the same vertex information for the graph.</p>
<p>Contents of test.csv</p>
<p><font face="Courier New" size="2">source,target      <br />a,b       <br />a,c       <br />c,a       <br />d,a       <br />e,h       <br />f,i       <br />g,j       <br />a,f</font></p>
<h3><span>Import-Csv</span> test.csv | Show-NetMap</h3>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_3.png"><img height="240" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_thumb_3.png" width="240" border="0" /></a> </p>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_4.png"><img height="240" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_thumb_4.png" width="240" align="left" border="0" /></a> Same graph as above. Clicking on node “a” highlights all in and out edges.</p>
<h3>&#160;</h3>
<h3>&#160;</h3>
<h3>&#160;</h3>
<h3>&#160;</h3>
<h3>&#160;</h3>
<h3>&#160;</h3>
<h3>.\Import-ExcelSheet -File test -SheetName Test | Show-NetMap</h3>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_5.png"><img height="240" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_thumb_5.png" width="240" border="0" /></a> </p>
<h3>&#160;</h3>
<h3>.\Graph-Object (Get-Process powershell, moe*)</h3>
<p>&#160;<a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_6.png"><img height="354" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_thumb_6.png" width="354" border="0" /></a> </p>
<h3>&#160;</h3>
<h3>.\Graph-Object (Get-Service net*p*)</h3>
<p><a href="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_7.png"><img height="362" alt="image" src="http://dougfinke.com/blog/wp-content/uploads/WindowsLiveWriter/76adce2292dc_1093C/image_thumb_7.png" width="362" border="0" /></a> </p>
<h3>Notes</h3>
<ul>
<li>Import-Excel is a wrapper a around Lee Holmes Invoke-SqlCommand found in his book <a href="http://oreilly.com/catalog/9780596528492/">Windows PowerShell Cookbook</a> </li>
<li>Graph-Object is re-worked from two sources
<ul>
<li>My post on <a href="http://dougfinke.com/blog/?p=291">PowerShell + (GLEE - Graph Layout Execution Engine)</a> </li>
<li>Jeffery Snover’s great additions <a href="http://blogs.msdn.com/powershell/archive/2007/11/27/graphing-with-glee.aspx">Graphing with Glee</a> </li>
</ul>
</li>
</ul>
<h3>Download Here</h3>
<p> 
</p>
<img src="http://feeds.feedburner.com/~r/DevelopmentInABlink/~4/380043493" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/380043493/feed</wfw:commentRss>
		</item>
		<item>
		<title>Dresdner Kleinwort Takeover</title>
		<link>http://mdavey.wordpress.com/2008/08/31/dresdner-kleinwort-takeover/</link>
		<comments>http://mdavey.wordpress.com/2008/08/31/dresdner-kleinwort-takeover/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 21:45:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Finance]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=994</guid>
		<description><![CDATA[Commerzbank is in the final stages of negotiating the acquisition of Dresdner Bank from the German insurance giant Allianz
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Commerzbank is in the final stages of negotiating the acquisition of Dresdner Bank from the German insurance giant <a href="http://business.timesonline.co.uk/tol/business/industry_sectors/banking_and_finance/article4641142.ece">Allianz</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/994/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/994/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/994/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/994/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/994/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/994/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/994/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/994/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/994/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/994/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/994/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/994/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=994&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/31/dresdner-kleinwort-takeover/feed</wfw:commentRss>
		</item>
		<item>
		<title>F#: CTP, Solver Foundation, F# for Scientists</title>
		<link>http://mdavey.wordpress.com/2008/08/29/f-ctp-solver-foundation-f-for-scientists/</link>
		<comments>http://mdavey.wordpress.com/2008/08/29/f-ctp-solver-foundation-f-for-scientists/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 22:07:45 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=992</guid>
		<description><![CDATA[C# CTP is available here, Solver Foundation here:
&#8220;Solver Foundation is a framework of solvers and modeling services enabling planning, risk modeling, and scheduling for .NET developers. It is integrated with the full power of the NETfx 3.5+ platform including LINQ for declarative binding to enterprise databases. Solver Foundation is delivered in a single, compact, CLS-compliant [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>C# CTP is available <a href="http://blogs.msdn.com/dsyme/archive/2008/08/29/the-f-september-2008-ctp-is-now-available.aspx">here</a>, Solver Foundation <a href="http://code.msdn.microsoft.com/solverfoundationfs1">here</a>:</p>
<p>&#8220;Solver Foundation is a framework of solvers and modeling services enabling planning, risk modeling, and scheduling for .NET developers. It is integrated with the full power of the NETfx 3.5+ platform including LINQ for declarative binding to enterprise databases. Solver Foundation is delivered in a single, compact, CLS-compliant library. This managed code library may be used from any modern CLS-compatible language (F#, C#, C++, IronPython, etc.). It aides quantitative analysts, modelers, and programmers in making feasible, near-optimal, and optimal decisions in business critical settings via applications or Office-based solutions. Solver Foundation ships with several production grade solvers and provides easy third party solver integration. </p>
<p>A Solver Foundation program is a declarative model embedded in familiar NETfx design patterns and development environments (Visual Studio 2008). The model is solved by application of numerical and symbolic solvers, meta-heuristics, constraint processing algorithms, and advanced local search techniques. Included in this release are model pre-solve and validity checking. These Solver Foundation services may be leveraged by any of the solvers and provide a rich set of tools to aide to modeling, solving, and post-optimality analysis. Solver Foundation provides these scalable and performance-driven solvers and services while supporting integration with industry standard modeling and serialization formats. This permits users to leverage existing modeling investments directly within Solver Foundation-based solutions.&#8221;</p>
<p>You might also want to buy <a href="http://blogs.msdn.com/dsyme/archive/2008/08/28/f-for-scientists-now-available.aspx">F# for Scientists</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/992/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/992/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/992/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/992/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/992/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/992/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/992/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/992/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/992/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/992/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/992/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/992/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=992&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/29/f-ctp-solver-foundation-f-for-scientists/feed</wfw:commentRss>
		</item>
		<item>
		<title>Explorative scripting</title>
		<link>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/378346644/</link>
		<comments>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/378346644/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 19:42:25 +0000</pubDate>
		<dc:creator>Doug Finke</dc:creator>
		
		<category><![CDATA[Functional Programming]]></category>

		<guid isPermaLink="false">http://dougfinke.com/blog/?p=464</guid>
		<description><![CDATA[
A fundamental part of Don Syme’s day.
Our aim here is to put nothing between you and your ability to explore a problem space with F#.

The new F# CTP is available at the Microsoft F# Developer Center.
]]></description>
			<content:encoded><![CDATA[</p>
<p>A fundamental part of Don Syme’s day.</p>
<blockquote><p>Our aim here is to <b>put nothing between you and your ability to explore a problem space with F#</b>.</p>
</blockquote>
<p>The new F# CTP is available at the <a href="http://msdn.microsoft.com/en-gb/fsharp/default.aspx">Microsoft F# Developer Center</a>.</p>
<img src="http://feeds.feedburner.com/~r/DevelopmentInABlink/~4/378346644" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/378346644/feed</wfw:commentRss>
		</item>
		<item>
		<title>Tan of the Kitchen Sink</title>
		<link>http://feeds.feedburner.com/~r/Cogitatio/~3/378180005/tan-of-kichen-sink.html</link>
		<comments>http://feeds.feedburner.com/~r/Cogitatio/~3/378180005/tan-of-kichen-sink.html#comments</comments>
		<pubDate>Fri, 29 Aug 2008 15:29:00 +0000</pubDate>
		<dc:creator>smangano</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-208437074950033830.post-361246587251697204</guid>
		<description><![CDATA[In a post on MathForum I made the mistake of doubting Mathematica could compute the Tan of the Kitchen Sink. It is always a mistake to doubt Mathematica's prowess as Daniel Lichtblau of Wolfram pointed out to me:In[1]:= Tan[Khinchin//Sinc] // NOut[1]= ...]]></description>
			<content:encoded><![CDATA[In a post on <a href="http://mathforum.org/kb/forum.jspa?forumID=79">MathForum</a> I made the mistake of doubting Mathematica could compute the Tan of the Kitchen Sink. It is always a mistake to doubt Mathematica's prowess as <a href="http://www.linkedin.com/pub/4/698/133">Daniel Lichtblau </a>of Wolfram pointed out to me:<br /><br /><br />In[1]:= Tan[Khinchin//Sinc] // N<br />Out[1]= 0.165514<br /><br />I stand corrected!<br /><br /><br />p.s.<br /><br />It sort of spoils the joke/pun to explain but to non-Mathematca users...<br /><br /><a href="http://mathworld.wolfram.com/KhinchinsConstant.html">Khinchin's constant </a>is aprox. 2.68545<br />Sinc[x] = Sin[x]/x<br />N means "give numeric value"<br />and // means "use postix" so<br />this computes N[Tan[Sin[Khinchin]/Khinchin]]<div class="blogger-post-footer"><a href="http://semanticvector.blogspot.com/feeds/posts/default?alt=rss">RSS</a></div>
<p><a href="http://feeds.feedburner.com/~a/Cogitatio?a=Rl5ahd"><img src="http://feeds.feedburner.com/~a/Cogitatio?i=Rl5ahd" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Cogitatio/~4/378180005" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/Cogitatio/~3/378180005/tan-of-kichen-sink.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Silverlight 2.0 RTM? Silverlight vNext</title>
		<link>http://mdavey.wordpress.com/2008/08/28/silverlight-20-rtm-silverlight-vnext/</link>
		<comments>http://mdavey.wordpress.com/2008/08/28/silverlight-20-rtm-silverlight-vnext/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 20:42:09 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[.Net]]></category>

		<category><![CDATA[Advanced Visualization]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=990</guid>
		<description><![CDATA[By my reckoning we are due for Silverlight 2.0 RTM sometime shortly given that beta 2 was released in June.  Having played with beta 2 I still think Microsoft has some way to go to catch Adobe.  Specifically I think they need to consider the following for vNext:

More controls - at a mininum [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>By my reckoning we are due for Silverlight 2.0 RTM sometime shortly given that beta 2 was released in <a href="http://weblogs.asp.net/scottgu/archive/2008/06/06/silverlight-2-beta2-released.aspx">June</a>.  Having played with beta 2 I still think Microsoft has some way to go to catch Adobe.  Specifically I think they need to consider the following for vNext:</p>
<ul>
<li>More controls - at a mininum the equivalent controls that are available in Flex 3 e.g accordian</li>
<li>Full commanding support</li>
<li>Better parity with WPF
<ul>
<li>Triggers</li>
<li>Richer data-binding</li>
<li>3D support</li>
<li>Bitmap Effects</li>
<li>FlowDocument</li>
<li>Better rendering control (e.g. WPF SnapsToDevicePixel)</li>
</ul>
</li>
<li>A sensible push service in IIS, not this silly <a href="http://weblogs.asp.net/dwahlin/archive/2008/06/19/pushing-data-to-a-silverlight-client-with-a-wcf-duplex-service-part-ii.aspx">polling</a> implementation! Think Lightstream, Liberator&#8230;..</li>
<li>DataGrid and LINQ select anonymous types in your queries <a href="http://blog.lab49.com/archives/2306">support</a></li>
</ul>
<p>Interesting Silverlight reading:</p>
<ul>
<li>How to Scale your entire App and its Elements to your Browsers <a href="http://silverlight.net/blogs/msnow/archive/2008/08/26/silverlight-tip-of-the-day-33-how-to-scale-your-entire-app-and-its-elements-to-your-browsers-size.aspx">Size</a></li>
<li>ViewModel <a href="http://ironpython-urls.blogspot.com/2008/08/viewmodel-pattern-extended-with-dynamic.html">Pattern</a></li>
<li><a href="http://michaelsync.net/2008/08/08/unity-for-silverlight-two-samples-and-test-projects-are-on-codeplex-now">SLUnity</a></li>
<li>Silverlight <a href="http://www.nikhilk.net/Silverlight-Behaviors.aspx">Behaviors</a></li>
</ul>
<p>Off-topic stuff:</p>
<ul>
<li>iPhone GUI <a href="http://www.teehanlax.com/blog/?p=447">PSD</a></li>
<li>10 Futuristic User <a href="http://www.smashingmagazine.com/2008/08/17/10-futuristic-user-interfaces">Interfaces</a></li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/990/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/990/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/990/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/990/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/990/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/990/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/990/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/990/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/990/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/990/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/990/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/990/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=990&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/28/silverlight-20-rtm-silverlight-vnext/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to mess with Comp Sci Students</title>
		<link>http://feeds.feedburner.com/~r/Cogitatio/~3/377239977/how-to-mess-with-comp-sci-students.html</link>
		<comments>http://feeds.feedburner.com/~r/Cogitatio/~3/377239977/how-to-mess-with-comp-sci-students.html#comments</comments>
		<pubDate>Thu, 28 Aug 2008 15:14:00 +0000</pubDate>
		<dc:creator>smangano</dc:creator>
		
		<category><![CDATA[Computer Science]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-208437074950033830.post-8802780727454247374</guid>
		<description><![CDATA[Assignment: Write a compiler that compiles all programs that can't compile themselves.Extra Credit: Use the compiler to compile assignment.RSS
]]></description>
			<content:encoded><![CDATA[Assignment: Write a compiler that compiles all programs that can't compile themselves.<br />Extra Credit: Use the compiler to compile assignment.<div class="blogger-post-footer"><a href="http://semanticvector.blogspot.com/feeds/posts/default?alt=rss">RSS</a></div>
<p><a href="http://feeds.feedburner.com/~a/Cogitatio?a=IRij2o"><img src="http://feeds.feedburner.com/~a/Cogitatio?i=IRij2o" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Cogitatio/~4/377239977" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/Cogitatio/~3/377239977/how-to-mess-with-comp-sci-students.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Silverlight 2.0 FireStarter – NYC September 13</title>
		<link>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/377084766/</link>
		<comments>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/377084766/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 12:26:46 +0000</pubDate>
		<dc:creator>Doug Finke</dc:creator>
		
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://dougfinke.com/blog/?p=463</guid>
		<description><![CDATA[
Microsoft is offering a free full day dive into Silverlight.   
Register Here
More details HERE and agenda to follow.
]]></description>
			<content:encoded><![CDATA[</p>
<p>Microsoft is offering a free full day dive into Silverlight.   <br /><font size="4"></font></p>
<p><a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032386412&amp;culture=en-US"><font size="4">Register Here</font></a></p>
<p>More details <a href="http://blogs.msdn.com/peterlau/archive/2008/08/25/silverlight-2-fire-starter-coming-to-nyc-september-13th.aspx">HERE</a> and agenda to follow.</p>
<img src="http://feeds.feedburner.com/~r/DevelopmentInABlink/~4/377084766" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/377084766/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ordering a Microsoft Surface</title>
		<link>http://mdavey.wordpress.com/2008/08/28/ordering-a-microsoft-surface/</link>
		<comments>http://mdavey.wordpress.com/2008/08/28/ordering-a-microsoft-surface/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 04:24:50 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=988</guid>
		<description><![CDATA[I got an email from the Microsoft Surface team today with an attached Surface order form which would allow me to order a commercial surface hardware in metal, black or white for $12,500.  Developer hardware and software costs $15,000 and includes five SDK licenses.  Shipping specified continental US only 
    [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I got an email from the Microsoft Surface team today with an attached Surface order form which would allow me to order a commercial surface hardware in metal, black or white for $12,500.  Developer hardware and software costs $15,000 and includes five SDK licenses.  Shipping specified continental US only <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt='(' class='wp-smiley' /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/988/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/988/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/988/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/988/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/988/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=988&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/28/ordering-a-microsoft-surface/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Value of a Millisecond</title>
		<link>http://mdavey.wordpress.com/2008/08/27/the-value-of-a-millisecond/</link>
		<comments>http://mdavey.wordpress.com/2008/08/27/the-value-of-a-millisecond/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 22:06:42 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Finance]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=986</guid>
		<description><![CDATA[We all know that latency matters in a trading system.  Jim over on the GigaSpace&#8217;s blog has an interesting posting that fully rams home the latency issue.  If Amazon found every 100ms of latency cost them 1% in sales, imagine what latency could cost db autobahn or BARX.  Autobahn appear to have [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We all know that <a href="http://www.tabbgroup.com/PublicationDetail.aspx?PublicationID=346">latency</a> matters in a trading system.  <a href="http://blog.gigaspaces.com/2008/08/27/amazon-found-every-100ms-of-latency-cost-them-1-in-sales/">Jim</a> over on the GigaSpace&#8217;s blog has an interesting posting that fully rams home the latency issue.  If Amazon found every 100ms of latency cost them 1% in sales, imagine what latency could cost <a href="http://www.autobahn.db.com/">db autobahn</a> or <a href="http://www.barx.com/">BARX</a>.  Autobahn appear to have the lead today in the <a href="http://waratah.wordpress.com/2008/01/27/db-autobahn/">SDP</a> space, hence I wonder what 100ms latency does to the Deutsche bank e-trading revenue?  1% of $1bn?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/986/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/986/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/986/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/986/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/986/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=986&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/27/the-value-of-a-millisecond/feed</wfw:commentRss>
		</item>
		<item>
		<title>F# For Scientists Misses the Boat On Mathematica Performance</title>
		<link>http://feeds.feedburner.com/~r/Cogitatio/~3/375782354/f-for-scientists-misses-boat-on.html</link>
		<comments>http://feeds.feedburner.com/~r/Cogitatio/~3/375782354/f-for-scientists-misses-boat-on.html#comments</comments>
		<pubDate>Wed, 27 Aug 2008 01:40:00 +0000</pubDate>
		<dc:creator>smangano</dc:creator>
		
		<category><![CDATA[.Net]]></category>

		<category><![CDATA[Functional Programming]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-208437074950033830.post-1899117474148239255</guid>
		<description><![CDATA[I recently purchased F# For Scientists by Dr. Jon Harrop after the author mentioned it on the Mathematica Mailing List. According to Dr. Harrop,Mathematica's .NET-Link technology allows Mathematica and .NET programs to interoperate seamlessly. Moreover...]]></description>
			<content:encoded><![CDATA[I recently purchased <a href="http://www.ffconsultancy.com/products/fsharp_for_scientists/index.html">F# For Scientists </a>by Dr. Jon Harrop after the author mentioned it on the <a href="http://mathforum.org/kb/message.jspa?messageID=6346420">Mathematica Mailing List</a>. According to Dr. Harrop,<br /><blockquote><p>Mathematica's .NET-Link technology allows Mathematica and .NET programs to interoperate seamlessly. Moreover, Microsoft's new functional programming language F# provides many familiar benefits to Mathematica programmers:<br />The marriage of Mathematica with F# can greatly improve productivity for a wide variety of tasks.</p></blockquote>I am a big fan of Mathematica and functional programming and have been wanting to check out F# for some time so I decided to give the book a shot. It just arrived today so I can't post a full review but I did jump directly to the <em>small</em> section (<strong>5 pages</strong>) on using F# with Mathematica.<br /><br />What did I learn? Well this section rightly claims that Mathematica has awesome symbolic math capabilities (it does). But then it goes on to claim that F# can beat the pants off of Mathematica on raw calculation. Thus it suggested F# programmers should call out to Mathematica for symbolic integration but then evaluate the result in F# for speed (to the tune of 3.4 times Mathematica's speed). <strong>I was naturally dubious.</strong> The explanation of this speed up is give as<br /><br /><blockquote></blockquote><blockquote></blockquote><blockquote>The single most important reason for this speed boost is the specialization of the F# code compared to Mathematica's own general purpose term rewriter. ... Moreover, the F# programming language also excels at compiler writing and the JIT-compilation capabilities of the .NET platform make it ideally suited to the construction of custom evaluators that are compiled down to native code before being executed. This approach is typically <strong>orders of magnitude faster</strong> than evaluation in a standalone generic term rewriting system like Mathematica.<br /></blockquote><br /><br />Okay, hold the phone! First off, I did not know the F# language could write compilers. I'll forgive this as poetic use of language. I guess I sort of know what he meant to say. More interesting is that we have gone from 3.7 times to "orders of magnitude". Now, I don't take anything away from the brilliant folks at Microsoft, but the equally brilliant folks at Wolfram have been focusing exclusively on mathematics software for <a href="http://www.wolfram.com/company/scrapbook/">20 years</a> and you might think they learned a thing or two about computational speed!<br /><br />Here is the example from the book...<br /><br />First, he uses Mathematica to integrate a function.<br /><br /><br /><span>Integrate[Sqrt[Tan[x]],x]</span><br /><br /><span>(-2*ArcTan[1 - Sqrt[2]*Sqrt[Tan[x]]] +<br />2*ArcTan[1 + Sqrt[2]*Sqrt[Tan[x]]] +<br />Log[-1 + Sqrt[2]*Sqrt[Tan[x]] - Tan[x]] -<br />Log[1 + Sqrt[2]*Sqrt[Tan[x]] + Tan[x]])/(2*Sqrt[2])</span><br /><span></span><br />He then goes to show that Mathematica takes 26 secondsto evaluate this function in loop for 360,000 iterations.<br /><br />He then shows a translator that converts the Mathematica to F# and the F# code does the same work in 7.595 seconds.<br /><br />So far Dr. Harrop is correct but like some many others who are in a rush to show their new favorite language superior to another's, he forgets to read the manual! Particularly, the section on optimization! If he had he would have found a handy little Mathematica function called <strong>Compile. </strong>Hmm, sounds promising. And in fact....<br /><br /><br /><span>cf = Compile[{{x, _Complex}}, Evaluate[Integrate[Sqrt[Tan[x]],x]]]</span><br /><span>Timing[Do[cf[x + y I],{x,-3.0,3.0,0.01},{y,-3.0,3.0,0.01}]]<br /></span><br /><span>{5.281,Null}</span><br /><span></span><br />That's <strong>5.281 seconds</strong> on my relatively underpowered laptop (Thinkpad X60) !<br /><br />Some might feel I'm being a bit harsh on Dr. Harrop but after all he made me layout bucks for a book that promised me "many familiar benefits" only to deliver 5 measly pages of half truth. F# programmers may benefit from Mathematica but the jury is still out as to whether the reverse is true.<div class="blogger-post-footer"><a href="http://semanticvector.blogspot.com/feeds/posts/default?alt=rss">RSS</a></div>
<p><a href="http://feeds.feedburner.com/~a/Cogitatio?a=XLOH4B"><img src="http://feeds.feedburner.com/~a/Cogitatio?i=XLOH4B" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Cogitatio/~4/375782354" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/Cogitatio/~3/375782354/f-for-scientists-misses-boat-on.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Managers</title>
		<link>http://mdavey.wordpress.com/2008/08/26/managers/</link>
		<comments>http://mdavey.wordpress.com/2008/08/26/managers/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 23:25:28 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=984</guid>
		<description><![CDATA[I see there have been a number of postings recently on the subject of managers. kintya explores how to become a manager.  Over on the TechLeaders blog, Brad has some advice for new managers - listen, communicate.  Izzy is also spot on about letting go when you become a manager.
This posting made me [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I see there have been a number of postings recently on the subject of managers. <a href="http://www.kintya.com/blog/2008/08/how-to-become-a.html">kintya</a> explores how to become a manager.  Over on the TechLeaders blog, Brad has some <a href="http://blogs.msdn.com/techleaders/archive/2008/07/16/brad-s-advice-to-new-managers.aspx">advice</a> for new managers - listen, communicate.  <a href="http://blogs.msdn.com/techleaders/archive/2008/07/23/izzy-s-advice-to-new-managers.aspx">Izzy</a> is also spot on about letting go when you become a manager.</p>
<p>This <a href="http://blogs.msdn.com/techleaders/archive/2008/08/03/making-moral-decisions-as-responsible-leaders.aspx">posting</a> made me smile given certain projects I&#8217;ve come across over the years&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/984/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/984/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/984/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/984/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/984/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=984&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/26/managers/feed</wfw:commentRss>
		</item>
		<item>
		<title>FlexUnit, Silverlight and other Random Thoughts</title>
		<link>http://mdavey.wordpress.com/2008/08/26/flexunit-silverlight-and-other-random-thoughts/</link>
		<comments>http://mdavey.wordpress.com/2008/08/26/flexunit-silverlight-and-other-random-thoughts/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 23:10:08 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[.Net]]></category>

		<category><![CDATA[Advanced Visualization]]></category>

		<category><![CDATA[C++]]></category>

		<category><![CDATA[HPC]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=981</guid>
		<description><![CDATA[
FlexUnit is now out in Open Source land.  Hopefully Adobe can begin to provide more enterprise development tools.  The one downside of FlexUnit is that there appears to be no console mode, which is unfortunate is your running on an enterprise build plant  
No surprises in this list of Silverlight RIA applications. [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul>
<li><a href="http://weblogs.macromedia.com/amcleod/archives/2008/08/flexunit_on_ado.html">FlexUnit</a> is now out in Open Source land.  Hopefully Adobe can begin to provide more enterprise development tools.  The one downside of FlexUnit is that there appears to be no console mode, which is unfortunate is your running on an enterprise build plant <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt='(' class='wp-smiley' /> </li>
<li>No surprises in this <a href="http://blogs.msdn.com/swiss_dpe_team/archive/2008/08/26/cool-ria-silverlight-demo-applications.aspx">list</a> of Silverlight RIA applications.  It&#8217;s unfortunate that the RIA I was instrumental in building last year isn&#8217;t in this list <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt='(' class='wp-smiley' /> </li>
<li><a href="http://channel9.msdn.com/posts/rojacobs/endpointtv-The-Road-to-Oslo/">Oslo</a> insights</li>
<li>Looks like Steve had to pull the <a href="https://blogs.msdn.com/stevecla01/archive/2008/08/21/bmw-playing-with-microsoft-surface.aspx">BWM</a> surface video :(, but at least there are a number of other Vectorform <a href="http://www.vectorform.com/surface/">Surface</a> video&#8217;s still online - Mercedes-Benz etc</li>
<li>REST with <a href="http://blogs.msdn.com/dotnetinterop/archive/2008/08/22/how-to-build-rest-apps-on-net-using-wcf.aspx">WCF</a> - way to much REST in my life these days</li>
<li>C++0x: Interview with Bjarne <a href="http://www.devx.com/SpecialReports/Article/38813/0/page/1">Stroustrup</a></li>
<li>With Amazon continuing to add to the <a href="http://insidehpc.com/2008/08/21/amazon-adds-persistent-storage-to-ec2/">cloud</a>, one has to ask if Oslo will provide the Microsoft Cloud?</li>
<li><a href="http://www.nvision2008.com/">NVISION 2008</a> has some impressive <a href="http://www.nvision2008.com/Enthusiasts/nvscene_demoscene.cfm">video&#8217;s</a>.  CPU&#8217;s continue to play to <a href="http://www.nvision2008.com/Professionals/emerging-companies-summit.cfm">&#8220;financial market analyses&#8221;</a></li>
<li>Are <a href="http://panamap.com/">Panamaps</a> (A <a href="http://radar.oreilly.com/2008/08/urban-mapping-panamaps.html">Multi-Layered Map</a>) useful in finance?</li>
<li><a href="http://www.danielmoth.com/Blog/2008/08/make-object-id.html">Moth</a> on <a href="http://blogs.msdn.com/jimgries/archive/2005/11/16/493431.aspx">Make Object ID</a></li>
<li>As blogged elsewhere, <a href="http://blogs.msdn.com/prophoto/archive/2008/08/20/photosynth-for-the-world.aspx">Photosynth</a> is <a href="http://blogs.msdn.com/virtualearth/archive/2008/08/20/photosynth-released-now-let-s-mash-it-with-virtual-earth.aspx">Released</a>.</li>
<li>Kind of cool to see that <a href="http://tirania.org/blog/archive/2008/Aug-20-2.html">Linden</a> is rolling out <a href="http://wiki.secondlife.com/wiki/Mono">Mono</a> servers</li>
<li>Google <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=324097">mojo?</a></li>
</ul>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/981/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/981/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/981/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/981/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/981/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/981/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/981/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/981/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/981/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/981/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/981/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/981/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=981&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/26/flexunit-silverlight-and-other-random-thoughts/feed</wfw:commentRss>
		</item>
		<item>
		<title>Debugging Silverlight with Windbg and SOS</title>
		<link>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/374700617/</link>
		<comments>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/374700617/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 23:22:02 +0000</pubDate>
		<dc:creator>Doug Finke</dc:creator>
		
		<category><![CDATA[PowerShell]]></category>

		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://dougfinke.com/blog/?p=462</guid>
		<description><![CDATA[If you have hangs, performance, memory issues, exceptions or crashes in Silverlight applications you can debug them using windbg and sos just like you would if the issues occurred in other .net applications. 

http://blogs.msdn.com/tess/archive/2008/08/21/debugging-silverlight-applications-with-windbg-and-sos-dll.aspx
Maybe this works with Automated Debugging using WinDbg and PowerShell.
]]></description>
			<content:encoded><![CDATA[<blockquote><p>If you have hangs, performance, memory issues, exceptions or crashes in Silverlight applications you can debug them using windbg and sos just like you would if the issues occurred in other .net applications. </p>
</blockquote>
<p><a title="http://blogs.msdn.com/tess/archive/2008/08/21/debugging-silverlight-applications-with-windbg-and-sos-dll.aspx" href="http://blogs.msdn.com/tess/archive/2008/08/21/debugging-silverlight-applications-with-windbg-and-sos-dll.aspx">http://blogs.msdn.com/tess/archive/2008/08/21/debugging-silverlight-applications-with-windbg-and-sos-dll.aspx</a></p>
<p>Maybe this works with <a href="http://dougfinke.com/blog/?p=461">Automated Debugging using WinDbg and PowerShell</a>.</p>
<img src="http://feeds.feedburner.com/~r/DevelopmentInABlink/~4/374700617" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/DevelopmentInABlink/~3/374700617/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to Survive the Multicore Revolution</title>
		<link>http://mdavey.wordpress.com/2008/08/25/how-to-survive-the-multicore-revolution/</link>
		<comments>http://mdavey.wordpress.com/2008/08/25/how-to-survive-the-multicore-revolution/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 22:22:45 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[HPC]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=979</guid>
		<description><![CDATA[e-Book available here
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>e-Book available <a href="http://www.cilk.com/ebook/download5643">here</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/979/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/979/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/979/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/979/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/979/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=979&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/25/how-to-survive-the-multicore-revolution/feed</wfw:commentRss>
		</item>
		<item>
		<title>Drilling Square Holes</title>
		<link>http://feeds.feedburner.com/~r/Cogitatio/~3/374456673/drilling-square-holes.html</link>
		<comments>http://feeds.feedburner.com/~r/Cogitatio/~3/374456673/drilling-square-holes.html#comments</comments>
		<pubDate>Mon, 25 Aug 2008 17:37:00 +0000</pubDate>
		<dc:creator>smangano</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-208437074950033830.post-8493549247734684167</guid>
		<description><![CDATA[One of the fringe benefits of working on a book is all the tidbits of knowledge you come across while doing research. While working on the graphics chapters I cam across a shape known as a Reuleaux triangle.It turns out that this shape is the key to do...]]></description>
			<content:encoded><![CDATA[One of the fringe benefits of working on a book is all the tidbits of knowledge you come across while doing research. While working on the graphics chapters I cam across a shape known as a <a href="http://mathworld.wolfram.com/ReuleauxTriangle.html">Reuleaux triangle</a>.<br /><br /><br /><a href="http://2.bp.blogspot.com/_hjRAumdIEoA/SLLvY3ue9RI/AAAAAAAAACI/35hxI6reUL8/s1600-h/ReuleauxTriangle.png"><img alt="" src="http://2.bp.blogspot.com/_hjRAumdIEoA/SLLvY3ue9RI/AAAAAAAAACI/35hxI6reUL8/s320/ReuleauxTriangle.png" border="0" /></a><br /><a href="http://3.bp.blogspot.com/_hjRAumdIEoA/SLLvGwJL-VI/AAAAAAAAACA/FRlJTPRvJJU/s1600-h/ReuleauxTriangle.png"></a><div></div><br /><div></div><div>It turns out that this shape is the key to doing what on the surface may seem impossible, <a href="http://upper.us.edu/faculty/smith/reuleaux.htm">Drilling a nearly square hole</a>.<br /></div><div><br /></div><br /><div></div><div class="blogger-post-footer"><a href="http://semanticvector.blogspot.com/feeds/posts/default?alt=rss">RSS</a></div>
<p><a href="http://feeds.feedburner.com/~a/Cogitatio?a=zP4FWu"><img src="http://feeds.feedburner.com/~a/Cogitatio?i=zP4FWu" border="0"></img></a></p><img src="http://feeds.feedburner.com/~r/Cogitatio/~4/374456673" height="1">]]></content:encoded>
			<wfw:commentRss>http://feeds.feedburner.com/~r/Cogitatio/~3/374456673/drilling-square-holes.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Elastic Block Store</title>
		<link>http://akknotes.blogspot.com/2008/08/elastic-book-store.html</link>
		<comments>http://akknotes.blogspot.com/2008/08/elastic-book-store.html#comments</comments>
		<pubDate>Fri, 22 Aug 2008 03:44:00 +0000</pubDate>
		<dc:creator>Karthik Kumar</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-153372856693746451.post-4876172594174502160</guid>
		<description><![CDATA[Amazon comes up with another *potential* low-margin - high volume business by announcing Elastic  Block Store today. The most interesting feature is of course the facility to provide block level storage. The S3 service is already extremely popular - th...]]></description>
			<content:encoded><![CDATA[Amazon comes up with another *potential* low-margin - high volume business by announcing <a href="http://www.amazon.com/gp/browse.html?node=689343011">Elastic  Block Store</a> today. <br />The most interesting feature is of course the facility to provide block level storage. The S3 service is already extremely popular - thanks to getting away from the relational model (which sometimes could end up being an overkill ) and reducing the headache of IT management for a potential entrepreneur .<br /><br />EC2  service, no doubt - is much better to create your own instance of an image from scratch and use it. In spite of having free REST requests to the S3 service , the absence of persistence as such on the image instance was a drawback.<br /><br />EBS provides us with block-level storage volumes that could be attached to an EC2 instance. As opposed to the other tools that has a much stepper adoption curve ( s3 needs some sort of wrapper around REST - the popular being <a href="https://jets3t.dev.java.net/">JetS3t</a> ) - this is probably as simple as it could get and hence it might increase the adoption rate compared to the rest. <br /><br />I have not got the time to compare the pricing of EBS against the rest, but my guess is that people probably would not mind paying up for this given the level of comfort it gives to making the EC2 instances more usable.<br /><br />Update 9/23: Changed the typo on the blog. Blogging late in the night is probably a bad idea after all :)]]></content:encoded>
			<wfw:commentRss>http://akknotes.blogspot.com/2008/08/elastic-book-store.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Rotor 2.0</title>
		<link>http://mdavey.wordpress.com/2008/08/20/rotor-20/</link>
		<comments>http://mdavey.wordpress.com/2008/08/20/rotor-20/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 22:42:04 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=976</guid>
		<description><![CDATA[Joel and Ted have release a draft of Shared Source CLI Essentials.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://callvirt.net/blog/entry.aspx?entryid=b9a94d0c-761a-4d6b-bc2f-d6a5f8c1a4a7">Joel</a> and <a href="http://blogs.tedneward.com/2008/08/20/Rotor+V2+Book+Draft+Available.aspx">Ted</a> have release a draft of <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8c09fd61-3f26-4555-ae17-3121b4f51d4d&amp;displaylang=en">Shared Source CLI</a> Essentials.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/976/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/976/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/976/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/976/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/976/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/976/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/976/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/976/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/976/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/976/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/976/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/976/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=976&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/20/rotor-20/feed</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft Surface in the UK?</title>
		<link>http://mdavey.wordpress.com/2008/08/20/microsoft-surface-in-the-uk/</link>
		<comments>http://mdavey.wordpress.com/2008/08/20/microsoft-surface-in-the-uk/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 22:29:00 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=974</guid>
		<description><![CDATA[Australia has it&#8217;s first.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Australia has it&#8217;s <a href="http://amnesiablog.wordpress.com/2008/08/19/unboxing-australias-first-microsoft-surface-table/">first</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/974/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/974/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/974/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/974/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/974/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=974&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/20/microsoft-surface-in-the-uk/feed</wfw:commentRss>
		</item>
		<item>
		<title>Intersoft’s Silverlight Controls Demo</title>
		<link>http://mdavey.wordpress.com/2008/08/20/intersofts-silverlight-controls-demo/</link>
		<comments>http://mdavey.wordpress.com/2008/08/20/intersofts-silverlight-controls-demo/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 22:21:54 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=972</guid>
		<description><![CDATA[Here
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://sirius2.intersoftpt.com/">Here</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/972/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/972/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/972/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/972/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/972/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=972&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/20/intersofts-silverlight-controls-demo/feed</wfw:commentRss>
		</item>
		<item>
		<title>GaaS: OTOY</title>
		<link>http://mdavey.wordpress.com/2008/08/20/gaas-otoy/</link>
		<comments>http://mdavey.wordpress.com/2008/08/20/gaas-otoy/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 00:03:05 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
		
		<category><![CDATA[Advanced Visualization]]></category>

		<guid isPermaLink="false">http://mdavey.wordpress.com/?p=970</guid>
		<description><![CDATA[3D rendering in the cloud. City Space is very cool.  OTOY + iPhone + real time fiancial data = &#8230;
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>3D <a href="http://www.techcrunch.com/2008/07/09/otoy-developing-server-side-3d-rendering-technology/">rendering</a> in the cloud. <a href="http://www.techcrunch.com/2008/08/11/liveplace-to-launch-photo-realistic-virtual-world-rendered-in-the-cloud/">City Space</a> is very cool.  OTOY + iPhone + real time fiancial data = &#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mdavey.wordpress.com/970/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mdavey.wordpress.com/970/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mdavey.wordpress.com/970/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mdavey.wordpress.com/970/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mdavey.wordpress.com/970/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mdavey.wordpress.com/970/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mdavey.wordpress.com/970/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mdavey.wordpress.com/970/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mdavey.wordpress.com/970/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mdavey.wordpress.com/970/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mdavey.wordpress.com/970/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mdavey.wordpress.com/970/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mdavey.wordpress.com&amp;blog=18454&amp;post=970&amp;subd=mdavey&amp;ref=&amp;feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://mdavey.wordpress.com/2008/08/20/gaas-otoy/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
