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

<channel>
	<title>williamweber.net</title>
	<atom:link href="http://williamweber.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://williamweber.net</link>
	<description></description>
	<lastBuildDate>Wed, 22 Feb 2012 18:12:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Named Set Sub-totals in Excel using VisualTotals()</title>
		<link>http://williamweber.net/named-set-sub-totals-in-excel-using-visualtotals/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=named-set-sub-totals-in-excel-using-visualtotals</link>
		<comments>http://williamweber.net/named-set-sub-totals-in-excel-using-visualtotals/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 18:12:43 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[BI]]></category>
		<category><![CDATA[MDX]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[SSAS]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=430</guid>
		<description><![CDATA[This is just a quick tip for fixing the default Analysis Services (SSAS) named set sub-total behavior in Excel 2010. Normally when you select a named set for the rows or columns of a pivot table you don&#8217;t get a sub-total. Which, for me, removes a lot of the usefulness of the named set. Thankfully it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a quick tip for fixing the default Analysis Services (SSAS) named set sub-total behavior in Excel 2010. Normally when you select a named set for the rows or columns of a pivot table you don&#8217;t get a sub-total. Which, for me, removes a lot of the usefulness of the named set. Thankfully it&#8217;s a relatively easy fix. It just takes a little additional MDX in your named set definition.</p>
<p>Enter: VisualTotals() (<a title="MSDN VisualTotals()" href="http://msdn.microsoft.com/en-us/library/ms145527.aspx">msdn function reference</a>)</p>
<p>The VisualTotals() function dynamically totals child members in a set. By adding the &#8220;All&#8221; member for whatever hierarchy you&#8217;re building your set from and wrapping the whole set in the VisualTotals() function you can get Excel to treat the named set just like any other group/hierarchy when it comes to sub-totals.</p>
<p>Typically if you created a set like this one (<em>all examples from Adventure Works</em>):</p>

<div class="wp_syntax"><div class="code"><pre class="mdx" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">WITH</span> <span style="color: #0000FF; font-weight: bold;">SET</span> <span style="color: #333333;">[Amasia]</span> <span style="color: #0000FF; font-weight: bold;">AS</span>
<span style="color: #003300; font-weight: bold;">&#123;</span>
	<span style="color: #333333;">[Geography]</span>.<span style="color: #333333;">[Country]</span>.&amp;amp;<span style="color: #333333;">[United States]</span>
	<span style="color: #66cc66;">,</span><span style="color: #333333;">[Geography]</span>.<span style="color: #333333;">[Country]</span>.&amp;amp;<span style="color: #333333;">[Canada]</span>
	<span style="color: #66cc66;">,</span><span style="color: #333333;">[Geography]</span>.<span style="color: #333333;">[Country]</span>.&amp;amp;<span style="color: #333333;">[Australia]</span>
<span style="color: #003300; font-weight: bold;">&#125;</span></pre></div></div>

<p>You&#8217;d see something like this:</p>
<div id="attachment_441" class="wp-caption aligncenter" style="width: 250px"><a href="http://williamweber.net/wp-content/uploads/2012/02/named-set-before.png"><img class="size-full wp-image-441" title="named-set-before" src="http://williamweber.net/wp-content/uploads/2012/02/named-set-before.png" alt="" width="240" height="122" /></a><p class="wp-caption-text">no sub-totals</p></div>
<p>If instead you create your set like so:</p>

<div class="wp_syntax"><div class="code"><pre class="mdx" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">WITH</span> <span style="color: #0000FF; font-weight: bold;">SET</span> <span style="color: #333333;">[Amasia]</span> <span style="color: #0000FF; font-weight: bold;">AS</span>
<span style="color: #0000FF;">VisualTotals</span><span style="color: #003300; font-weight: bold;">&#40;</span>
	<span style="color: #003300; font-weight: bold;">&#123;</span>
		<span style="color: #333333;">[Geography]</span>.<span style="color: #333333;">[Country]</span>.<span style="color: #333333;">[All Geographies]</span>
		<span style="color: #66cc66;">,</span><span style="color: #333333;">[Geography]</span>.<span style="color: #333333;">[Country]</span>.&amp;amp;<span style="color: #333333;">[United States]</span>
		<span style="color: #66cc66;">,</span><span style="color: #333333;">[Geography]</span>.<span style="color: #333333;">[Country]</span>.&amp;amp;<span style="color: #333333;">[Canada]</span>
		<span style="color: #66cc66;">,</span><span style="color: #333333;">[Geography]</span>.<span style="color: #333333;">[Country]</span>.&amp;amp;<span style="color: #333333;">[Australia]</span>
	<span style="color: #003300; font-weight: bold;">&#125;</span>
<span style="color: #003300; font-weight: bold;">&#41;</span></pre></div></div>

<p>You&#8217;ll get a nice little sub-total at the bottom.</p>
<div id="attachment_442" class="wp-caption aligncenter" style="width: 249px"><a href="http://williamweber.net/wp-content/uploads/2012/02/named-set-after.png"><img class="size-full wp-image-442" title="named-set-after" src="http://williamweber.net/wp-content/uploads/2012/02/named-set-after.png" alt="" width="239" height="121" /></a><p class="wp-caption-text">Yey! sub-totals</p></div>
<p>One thing to note is that you need to put the &#8220;All&#8221; member at the beginning of your VisualTotals set. Otherwise it won&#8217;t be correctly filtered by the children that follow and you&#8217;ll end up with a sub-total that is actually the full, unfiltered total of the &#8220;All&#8221; member.</p>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/named-set-sub-totals-in-excel-using-visualtotals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Camera Please. &#8211; Mirrorless ILC Goodness</title>
		<link>http://williamweber.net/new-camera-please-mirrorless-ilc-goodness/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-camera-please-mirrorless-ilc-goodness</link>
		<comments>http://williamweber.net/new-camera-please-mirrorless-ilc-goodness/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:37:16 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[cameras]]></category>
		<category><![CDATA[dslr]]></category>
		<category><![CDATA[mirrorless ilc]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=420</guid>
		<description><![CDATA[A few years ago my wife and I upgraded our intro-model DSLR camera for a mid-range one (Nikon D60 to the Nikon D90). We&#8217;ve really enjoyed the camera and looking at our picture catalog from the before we moved into the DSLR world it&#8217;s readily apparent how much better our pictures are using a quality [...]]]></description>
			<content:encoded><![CDATA[<p>A few years ago my wife and I upgraded our intro-model DSLR camera for a mid-range one (Nikon D60 to the Nikon D90). We&#8217;ve really enjoyed the camera and looking at our picture catalog from the before we moved into the DSLR world it&#8217;s readily apparent how much better our pictures are using a quality camera over a point-and-shoot.</p>
<p>That being said, I want a Mirrorless Interchangable Lens Camera (Mirrorless ILC or MILC) right now.</p>
<p>Trey Ratcliff (<a href="https://plus.google.com/105237212888595777019/posts">G+</a>, <a href="https://twitter.com/#!/treyratcliff">twitter</a>) over at <a href="http://www.stuckincustoms.com" class="autohyperlink" title="http://www.stuckincustoms.com" target="_blank">www.stuckincustoms.com</a> made a <a href="http://www.stuckincustoms.com/2012/01/04/dslrs-are-a-dying-breed-3rd-gen-cameras-are-the-future/">post</a> recently about the coming demise of the DSLR. It got me interested in the technology and after looking at some of the new cameras that are coming out, I can&#8217;t wait to upgrade.</p>
<p>This <a title="Olymput E-M5" href="http://www.olympusamerica.com/cpg_section/product.asp?product=1583&amp;utm_source=web&amp;utm_medium=global_site&amp;utm_campaign=global_microsite#/productViews">one</a> in particular caught my eye. It&#8217;s the Olympus OM-D E-M5. Stupid naming conventions aside, it looks sweet. The silver body model, with it&#8217;s throwback design is especially appealing. I reminds me of the my old film camera from high school. And although I have no particular love of my high school days I did love taking pictures and working in the dark room for hours on end.</p>
<div id="attachment_422" class="wp-caption aligncenter" style="width: 545px"><a href="http://williamweber.net/wp-content/uploads/2012/02/1583_slideshow_content_image01.jpg"><img class="size-full wp-image-422" title="olympusem5" src="http://williamweber.net/wp-content/uploads/2012/02/1583_slideshow_content_image01.jpg" alt="" width="535" height="266" /></a><p class="wp-caption-text">Olympus OM-D E-M5</p></div>
<p>Unfortunately an upgrade is a long way off. These new-fangled toys don&#8217;t come cheap and all my existing DSLR lenses don&#8217;t do me a lick of good. Yep, gotta buy new stuff there too.</p>
<p>On the upside by the time I can afford to upgrade I believe the vast majority of the &#8220;issues&#8221; people have with the new technology will be worked out. Sensors will be bigger, the electronic viewfinder will have improved in speed and performance, and most importantly, the prices will start to come down.</p>
<p>In the mean time I&#8217;ll just lust after all the pretty hardware from afar.</p>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/new-camera-please-mirrorless-ilc-goodness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Formatting Map Legends in SQL Server 2008 R2 Reporting Services</title>
		<link>http://williamweber.net/formatting-map-legends-in-sql-server-2008-r2-reporting-services/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=formatting-map-legends-in-sql-server-2008-r2-reporting-services</link>
		<comments>http://williamweber.net/formatting-map-legends-in-sql-server-2008-r2-reporting-services/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 04:39:34 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[SQL 2008 R2]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=409</guid>
		<description><![CDATA[Recently I needed to do some slightly more advanced formatting of a map legend in SQL Server 2008 R2 Reporting Services (SSRS). I love the map reports you can build with SSRS in 2008 R2 but if your legend needs to show anything other than whole numbers, like a percentage, or perhaps a decimal value, [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I needed to do some slightly more advanced formatting of a map legend in SQL Server 2008 R2 Reporting Services (SSRS). I love the map reports you can build with SSRS in 2008 R2 but if your legend needs to show anything other than whole numbers, like a percentage, or perhaps a decimal value, or maybe even display negative values using parentheses instead of dashes, well you might be thinking you&#8217;re out of luck.</p>
<p>Thankfully that&#8217;s not the case. There isn&#8217;t a convenient number format screen for the map legend but it is possible to do all of the fancy formatting you want; it just may not be apparent at first glance.</p>
<p>The first thing that might throw you is that formatting for the various values that you want in the legend is not done in the properties of the legend itself. Legends in SSRS maps are just containers. You can display the values for multiple pieces of data in a single legend, like showing both the color and the size of a bubble. This means that the number format for a particular data set is done on whichever layer contains that piece of data.</p>
<p>In the list of map layers click on the little down arrow to the right of the layer that contains the legend data you want to modify and then select either the color or the size rule that you want to display. In this example I&#8217;m changing the color rules for a point layer, but you&#8217;ll find the same options the center point of a polygon layer as well.</p>
<p style="text-align: center;"><a href="http://williamweber.net/wp-content/uploads/2012/01/maplegend1.png"><img class="size-full wp-image-410 aligncenter" title="formatting map legends - layer properties select" src="http://williamweber.net/wp-content/uploads/2012/01/maplegend1.png" alt="Layer Properties Select" width="323" height="420" /></a></p>
<p>Once in the properties dialog select the legend tab.</p>
<p style="text-align: center;"><a href="http://williamweber.net/wp-content/uploads/2012/01/maplegend2.png"><img class="size-full wp-image-411 aligncenter" title="formatting map legends - layer properties dialog" src="http://williamweber.net/wp-content/uploads/2012/01/maplegend2.png" alt="Layer Properties Dialog" width="577" height="530" /></a></p>
<p>Here you can select which legend container you want this legend to appear in and you can set the format in the &#8220;Legend text:&#8221; box.</p>
<p>Here&#8217;s a quick breakdown of the format string you see in that box:</p>
<pre>#FROMVALUE{N0} - #TOVALUE{N0}</pre>
<ul>
<li>#FROMVALUE (and #TOVALUE) &#8211; pretty self explanatory these are indicators for the values on either side of each range in your legend.</li>
<li>{N0} &#8211; This is the format of the value on either side of range.</li>
<li>If you&#8217;re so inclined you can even change the center &#8216;-&#8217; to some other character(s) to change how the range values are separated.</li>
</ul>
<p>On to the formatting itself. &#8220;N0&#8243; is the same formatting string you see elsewhere in your SSRS reports, meaning a number with 0 decimals. So by using rather typical Excel style formatting strings you can make the values in your legend look however you like. So</p>
<p>Showing 2 decimals</p>
<pre>#FROMVALUE{N2} - #TOVALUE{N2}</pre>
<p>Percent with a single decimal</p>
<pre>#FROMVALUE{P1} - #TOVALUE{P1}</pre>
<p>Or this way if you prefer</p>
<pre>#FROMVALUE{#.0%} - #TOVALUE{#.0%}</pre>
<p>Which means that if you want to get fancy and do something like, say, change negatives to use parentheses instead of a dash you can use a semicolon to delineate how a number looks when it&#8217;s positive or when it&#8217;s negative, like so: (I changed the separator to a || just for fun)</p>
<pre>#FROMVALUE{#.0%;(#.0%)} || #TOVALUE{#.0%;(#.0%)}</pre>
<p>I&#8217;ve been spending  a bit of time with map reports lately so I&#8217;ll some more mapping related stuff to post in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/formatting-map-legends-in-sql-server-2008-r2-reporting-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDX: Scope Statement For All Measures in Multiple Measure Groups</title>
		<link>http://williamweber.net/mdx-scope-statement-for-all-measures-in-multiple-measure-groups/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mdx-scope-statement-for-all-measures-in-multiple-measure-groups</link>
		<comments>http://williamweber.net/mdx-scope-statement-for-all-measures-in-multiple-measure-groups/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 18:38:01 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[BI]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Analysis Services]]></category>
		<category><![CDATA[MDX]]></category>
		<category><![CDATA[SSAS]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=399</guid>
		<description><![CDATA[This was irritating me today so I thought I would share. If you need to write a scope statement that will include all the measures in multiple measure groups; perhaps you&#8217;re implementing some Time Intelligence calculations and you want to have any new measures dynamically included, then the statement looks a little something like this: [...]]]></description>
			<content:encoded><![CDATA[<p>This was irritating me today so I thought I would share. If you need to write a scope statement that will include all the measures in multiple measure groups; perhaps you&#8217;re implementing some Time Intelligence calculations and you want to have any new measures dynamically included, then the statement looks a little something like this:</p>

<div class="wp_syntax"><div class="code"><pre class="mdx" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">SCOPE</span><span style="color: #003300; font-weight: bold;">&#40;</span><span style="color: #003300; font-weight: bold;">&#123;</span>MeasureGroupMeasures<span style="color: #003300; font-weight: bold;">&#40;</span><span style="color: #ff0000;">&quot;Internet Sales&quot;</span><span style="color: #003300; font-weight: bold;">&#41;</span><span style="color: #66cc66;">,</span> MeasureGroupMeasures<span style="color: #003300; font-weight: bold;">&#40;</span><span style="color: #ff0000;">&quot;Reseller Sales&quot;</span><span style="color: #003300; font-weight: bold;">&#41;</span><span style="color: #003300; font-weight: bold;">&#125;</span><span style="color: #003300; font-weight: bold;">&#41;</span>;</pre></div></div>

<p>I forgot the {} the first time around and was super confused by an error message when I attempted to deploy the MDX calculation to the cube that said that said &#8220;The END SCOPE statement does not match the opening SCOPE statement.&#8221; Because my SCOPE and END SCOPE statements looked just fine to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/mdx-scope-statement-for-all-measures-in-multiple-measure-groups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Startup Frenzy Is Out of Control</title>
		<link>http://williamweber.net/startup-frenzy-is-out-of-control/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=startup-frenzy-is-out-of-control</link>
		<comments>http://williamweber.net/startup-frenzy-is-out-of-control/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 14:45:19 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[startups]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=384</guid>
		<description><![CDATA[A recent, and refreshingly brief, article over on Business Insider about the inexplicable amount of hype that tech media lavishes on startup funding crystallized what&#8217;s got me so cynical about &#8220;the valley&#8221; and startups lately. What it comes down to is that I simply cannot understand how so many seemingly intelligent people think it&#8217;s a good idea to throw huge [...]]]></description>
			<content:encoded><![CDATA[<p>A recent, and refreshingly brief, article over on <a href="http://www.businessinsider.com/why-startups-praised-for-funding-2011-10?op=1">Business Insider</a> about the inexplicable amount of hype that tech media lavishes on startup funding crystallized what&#8217;s got me so cynical about &#8220;the valley&#8221; and startups lately. What it comes down to is that I simply cannot understand how so many seemingly intelligent people think it&#8217;s a good idea to throw huge sums of money at a &#8220;business&#8221; (if you can even call most startups a business) that has absolutely no revenue stream, and moreover has no viable plan for generating one.</p>
<p>It&#8217;s ludicrous (or is it <a title="bing search" href="http://www.bing.com/images/search?q=ludacris+&amp;qpvt=ludacris+&amp;FORM=Z7FD3#x0y0">Ludacris</a>, I get them mixed up).</p>
<p>And yet, I think I could conservatively estimate that about 98% of all the articles the show up on Tech Crunch and other tech blogs make some mention of some new funding round that Social-McGamify (totally trademarking that) has just managed to secure.</p>
<p>But when a startup announces that they&#8217;re going to focus on generating revenue instead of digging a hole of debt they get a polite golf-clap and whispers ripple through the audience of people trying to figure out what they could be thinking; &#8220;You&#8217;re never going to make it the front page of Techmeme with a viable business model, you fool.&#8221;</p>
<p>What they&#8217;re thinking is that wrapping your mouth around the VC funding exhaust pipe (or other metaphoric pipe-shaped thing) is, for lack of better phrase, retarded. Not only are you reinforcing the fact that you can&#8217;t make money, you&#8217;re spending your time whoring yourself to VCs rather than working on your business/product/service. Take that time and energy and put it toward making something that people will actually pay you for.</p>
<p>Listen, if your strategy is hovering anywhere near the &#8220;get a bunch of users and then monetize them with ads&#8221; model I&#8217;m going to clue you in on something:</p>
<p>No one wants your shit.</p>
<p>Users want more ads like they want to get shot in the face with Nerf darts dipped in feces. If you can&#8217;t come up with a product or service that people will give you actual money for, just stop. Stop what you&#8217;re doing and go beg for your job back stacking widgets at the widget factory. Besides people with good ideas need widgets and those widgets aren&#8217;t going to make themselves.</p>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/startup-frenzy-is-out-of-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Building Windows 8 Blog is Amazing!</title>
		<link>http://williamweber.net/the-building-windows-8-blog-is-amazing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-building-windows-8-blog-is-amazing</link>
		<comments>http://williamweber.net/the-building-windows-8-blog-is-amazing/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 16:10:48 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=354</guid>
		<description><![CDATA[Wow! The Building Windows 8 blog is amazing. And the most recent post, Reflecting on your comments on the Start screen, in which they respond to a number of the comments about the new Start Page design is pretty much mind-blowing in its transparency and detail. That a company with Microsoft&#8217;s history and with the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://williamweber.net/wp-content/uploads/2011/10/screenshot_startScreen_web1.jpg"><img class="alignleft size-thumbnail wp-image-356" title="screenshot_startScreen_web[1]" src="http://williamweber.net/wp-content/uploads/2011/10/screenshot_startScreen_web1-150x150.jpg" alt="Windows 8 Start Screen" width="150" height="150" /></a>Wow! The <a href="http://blogs.msdn.com/b/b8/">Building Windows 8</a> blog is amazing. And the most recent post, <a href="http://blogs.msdn.com/b/b8/archive/2011/10/11/reflecting-on-your-comments-on-the-start-screen.aspx">Reflecting on your comments on the Start screen</a>, in which they respond to a number of the comments about the new Start Page design is pretty much mind-blowing in its transparency and detail.</p>
<p>That a company with Microsoft&#8217;s history and with the negative perception that hangs over just about everything the company has done since their inception to fling the doors open on the entire design and development process for their flagship product borders on the insane.</p>
<p>But I love it.</p>
<p>Despite  its size and technical detail (or maybe &#8220;because of&#8221;, I can&#8217;t decide) the post below was one of the most interesting things I&#8217;ve read in months. I mean, holy shit, there&#8217;s a goddamned comparison heat map of mouse travel time for a user to get to their favorite applications between Windows 7 and Windows 8. Who exposes that level of detailed research to their users (at times overtly hostile users at that)? There&#8217;s even a mathematical formula for <a href="http://en.wikipedia.org/wiki/Fitts%27_law">Fitts&#8217; Law</a> (which I had never heard of) that I can&#8217;t imagine anyone cares about, but still it&#8217;s there and it made perfect sense to me to include it in the post.</p>
<p>Now granted, I work for a Microsoft Partner, and Microsoft technology has put food on the table and a roof over my family&#8217;s head for basically my entire working career, but in all that time I still often felt like I was working for the &#8220;bad guy.&#8221; Microsoft the unstoppable devil of the tech world that&#8217;s going to eat up all the little guys and squelch any and all innovation it can get its grubby mitts on.</p>
<p>But in the last two or three years, with a real ramp-up around the release of Windows Phone 7, my feelings have changed dramatically. Now I feel that Microsoft is doing more interesting and innovative work than the vast majority of the cookie-cutter startups in Silicon Value that <a href="https://plus.google.com/u/0/111091089527727420853#111091089527727420853/posts">Robert Scoble</a> likes to blather on about. I&#8217;m pretty sure I&#8217;m going to puke the next time I see &#8220;breaking&#8221; news about the latest location-based, app-discovery, picture-sharing, social-network, wunderkind that&#8217;s managed to convince a gaggle of jack-ass VCs (who all just happened to have started the last, now defunct, version of the very same thing) to give them a few million dollars.</p>
<p>Give me a company that&#8217;s making fundamental changes to the most widely used operating system on the planet and doing it completely out in the open. That&#8217;s who I want to work with.</p>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/the-building-windows-8-blog-is-amazing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My iPad Must Have App List</title>
		<link>http://williamweber.net/my-ipad-must-have-app-list/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-ipad-must-have-app-list</link>
		<comments>http://williamweber.net/my-ipad-must-have-app-list/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 17:57:23 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[lists]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=245</guid>
		<description><![CDATA[I was recently asked for a list of apps I would recommend for the iPad. I decided to do it up right, with links and some brief commentary and post it on the blog. Seemed the easiest way to share. I&#8217;d be curious to hear your suggestions for the list. News: Zite (excellent presentation and [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently asked for a list of apps I would recommend for the iPad. I decided to do it up right, with links and some brief commentary and post it on the blog. Seemed the easiest way to share.</p>
<p>I&#8217;d be curious to hear your suggestions for the list.</p>
<p>News:</p>
<ul>
<li><a href="http://itunes.apple.com/us/app/zite-personalized-magazine/id419752338?mt=8">Zite </a>(excellent presentation and very configurable)</li>
<li><a href="http://itunes.apple.com/us/app/flipboard/id358801284?mt=8">Flipboard </a>(also good for social networks and whatnot. I like Zite better for straight news)</li>
<li><a href="http://itunes.apple.com/us/app/huffington-post-for-ipad/id376304186?mt=8">Huffington Post</a></li>
<li><a href="http://itunes.apple.com/us/app/npr-for-ipad/id364183644?mt=8">NPR for iPad</a></li>
</ul>
<p>Games: (Side note: I like iPad board games, so this list is a little heavy with that type of game)</p>
<ul>
<li><a href="http://itunes.apple.com/us/app/small-world-for-ipad/id364165557?mt=8">Smallworld</a> (fantastic boardgame by <a href="http://www.daysofwonder.com/en/">Days of Wonder</a> &#8211; my favorite game company.)</li>
<li><a href="http://itunes.apple.com/us/app/ticket-to-ride/id432504470?mt=8">Ticket to Ride</a> (again by Days of Wonder &#8211; their most popular game)</li>
<li><a href="http://itunes.apple.com/us/app/conquist/id378872276?mt=8">Conquist </a>(this game is beautiful. There is a <a href="http://itunes.apple.com/us/app/conquist-2/id421205743?mt=8">sequel </a>that I haven&#8217;t played but it looks to be even better than the first.)</li>
<li><a href="http://itunes.apple.com/us/app/scrabble-for-ipad/id363306776?mt=8">Scrabble </a>(great iphone integration. Of course you have to like scrabble)</li>
<li><a href="http://itunes.apple.com/us/app/cut-the-rope-hd/id394610743?mt=8">Cut the Rope HD</a></li>
<li><a href="http://itunes.apple.com/us/app/steambirds/id400848046?mt=8">Steambirds </a>(there&#8217;s a free <a href="http://www.steambirds.com/">flash version </a>on the web you can try out to see if you like it)</li>
<li><a href="http://itunes.apple.com/us/app/crimson-steam-pirates/id438053238?mt=8">Crimson: Steam Pirates</a> (a rip off of Steambirds with higher production values, still good)</li>
<li>Puzzle Agent <a href="http://itunes.apple.com/us/app/puzzle-agent-hd/id383232240?mt=8">1</a> and <a href="http://itunes.apple.com/us/app/puzzle-agent-2-hd/id444526065?mt=8">2 </a>(I liked 2 better but both are great)</li>
<li><a href="http://itunes.apple.com/us/app/plants-vs.-zombies-hd/id363282253?mt=8">Plants vs. Zombies</a></li>
</ul>
<p>Kids: (I have a 3 year old girl, just for context on these picks)</p>
<ul>
<li><a href="http://itunes.apple.com/us/app/parachute-panic-hd/id317435143?mt=8">Parachute Panic HD</a> (fun game in its own right, but my little girl loves it)</li>
<li><a href="http://itunes.apple.com/us/app/doodle-find/id366791736?mt=8">Doodle Find</a></li>
<li><a href="http://itunes.apple.com/us/app/little-things/id382821388?mt=8">Little Things</a> (fun &#8220;find the item game.&#8221; Artistically quite nice.)</li>
<li><a href="http://itunes.apple.com/us/app/rapunzel-tangled/id386881510?mt=8">Rapunzel &#8211; Tangled</a> (animated story book. my daughter&#8217;s favorite)</li>
<li><a href="http://itunes.apple.com/us/app/pbs-kids-video-for-ipad/id435138734?mt=8">PBS Kids</a> (can be hit or miss, but I have found some good stuff for the kids)</li>
</ul>
<p>Productivity/Tools:</p>
<ul>
<li><a href="http://itunes.apple.com/us/app/springpad/id360116898?mt=8">Springpad </a>(a great <a href="http://www.springpadit.com">web service</a> for saving notes and all sorts of other stuff)</li>
<li><a href="http://itunes.apple.com/us/app/appshopper/id387037496?mt=8">AppShopper </a>(great for finding new and onsale stuff. I got just about every EA game over a few months for $0.99 because of this)</li>
<li><a href="http://itunes.apple.com/us/app/bing-for-ipad/id418435837?mt=8">Bing for iPad</a> (surprisingly awesome)</li>
<li><a href="http://itunes.apple.com/us/app/quickoffice-pro-hd/id376212724?mt=8">Quickoffice Pro HD</a> (spendy, but great if you want to use your iPad for work related stuff)</li>
<li><a href="http://itunes.apple.com/us/app/penultimate/id354098826?mt=8">Penultimate </a>(best handwriting app by far)</li>
<li><a href="http://itunes.apple.com/us/app/nightstand-central-for-ipad/id392480771?mt=8">Nightstand Central</a> (I use this for my alarm clock. Tons of options.)</li>
<li><a href="http://itunes.apple.com/us/app/wundermap/id364884105?mt=8">Wundermap </a>(my favorite weather app)</li>
</ul>
<p>Other Stuff:</p>
<ul>
<li><a href="http://itunes.apple.com/us/app/nfl-11-for-ipad/id396571962?mt=8">NFL &#8217;11 for iPad</a> (very well done if you&#8217;re a football fan. Must have.)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/my-ipad-must-have-app-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nook Color Price Drop &#8211; I Think They Want to Fail</title>
		<link>http://williamweber.net/nook-color-price-drop-i-think-they-want-to-fail/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nook-color-price-drop-i-think-they-want-to-fail</link>
		<comments>http://williamweber.net/nook-color-price-drop-i-think-they-want-to-fail/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 19:50:40 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[b&n]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[kindle fire]]></category>
		<category><![CDATA[nook]]></category>
		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=239</guid>
		<description><![CDATA[Barnes &#38; Noble is a little amusing with this price drop on their Nook Color. They dropped the price $25 after the Kindle Fire annoucement sent their stock in the toilet (via All Things D). So now it&#8217;s $225. That&#8217;s still $25 more than the Fire which appears to be a more full featured device [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://williamweber.net/wp-content/uploads/2011/09/BooksYouLove.jpg"><img class="alignleft size-medium wp-image-242" title="BooksYouLove" src="http://williamweber.net/wp-content/uploads/2011/09/BooksYouLove-200x300.jpg" alt="" width="120" height="180" /></a>Barnes &amp; Noble is a little amusing with this price drop on their Nook Color. They dropped the price $25 after the Kindle Fire annoucement sent their stock in the toilet (<a href="http://allthingsd.com/20110928/barnes-noble-25-off-the-nook-color-if-you-leave-our-stock-price-alone/">via All Things D</a>). So now it&#8217;s $225. That&#8217;s still $25 more than the Fire which appears to be a more full featured device from a service provided with more content and cheaper prices.</p>
<p>These are the decisions that baffle me. Android tablets like the Xoom that come in a at the same price as the iPad. Price drops that are essentially meaningless because you&#8217;re still more expensive than your competitor and that&#8217;s all that people care about. You could have dropped it to $200 even and still would have been idiotic because even $1 more than the Fire is way to much.</p>
<p>Now if they had done something interesting like say, dropped the price to $180 so they were closer to the price of the new B&amp;W Kindle Touch, that might make a difference to consumers. As it stands, unless they plan another significant price drop to coincide with the actual release of the Fire on Nov.15, B&amp;N is in for a world of hurt.</p>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/nook-color-price-drop-i-think-they-want-to-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Visual Studio Automatic Connect to Team Foundation Server (TFS)</title>
		<link>http://williamweber.net/disable-visual-studio-automatic-connect-to-team-foundation-server-tfs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=disable-visual-studio-automatic-connect-to-team-foundation-server-tfs</link>
		<comments>http://williamweber.net/disable-visual-studio-automatic-connect-to-team-foundation-server-tfs/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 15:58:25 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[BI]]></category>
		<category><![CDATA[team foundation server]]></category>
		<category><![CDATA[tfs]]></category>
		<category><![CDATA[visual studio]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=229</guid>
		<description><![CDATA[Recently I&#8217;ve run into an issue connecting Visual Studio into a number of TFS systems simultaneously and also wanting to use Visual Studio for my own development without connecting to TFS. By default Visual Studio tries to automatically connect to the last TFS environment that you were connected. When you don&#8217;t have access to that [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve run into an issue connecting Visual Studio into a number of TFS systems simultaneously and also wanting to use Visual Studio for my own development without connecting to TFS. By default Visual Studio tries to automatically connect to the last TFS environment that you were connected. When you don&#8217;t have access to that server Visual Studio takes forever to fail that connection and then allow you to either connect to a different server or just open without the connection at all.</p>
<p>To fix the problem I went out and grabbed the <a href="http://msdn.microsoft.com/en-us/vstudio/bb980963">Team Foundation Server Power Tools</a>.</p>
<p>After installing those tools. I opened up the Visual Studio Command Prompt:</p>
<p><code>Start -&gt; All Programs -&gt; Microsoft Visual Studio 2010 -&gt; Visual Studio Tools -&gt; Visual Studio Command Prompt</code></p>
<p>Then ran:</p>
<p><code>tfpt connections</code></p>
<p>That brings up the the TFS Connection dialog where you can uncheck:</p>
<p><strong>&#8220;Automatically reconnect to last server on startup.&#8221;</strong></p>
<p style="text-align: center;"><strong><a href="http://williamweber.net/wp-content/uploads/2011/08/TFS_Connections.png"><img class="size-full wp-image-233 aligncenter" title="TFS_Connections" src="http://williamweber.net/wp-content/uploads/2011/08/TFS_Connections.png" alt="" width="514" height="695" /></a><br />
</strong></p>
<p style="text-align: left;">And that allowed me to open Visual Studio and then choose my Team Server if I was in that environment or to develop locally without waiting for Visual Studio to fail it&#8217;s connection to the Team Server.</p>
<p style="text-align: left;">There may be other ways to deal with this but this worked for me and has greatly reduced my irritation when trying to develop in multiple environments.</p>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/disable-visual-studio-automatic-connect-to-team-foundation-server-tfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Goal for A New Life</title>
		<link>http://williamweber.net/a-new-goal-for-a-new-life/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-new-goal-for-a-new-life</link>
		<comments>http://williamweber.net/a-new-goal-for-a-new-life/#comments</comments>
		<pubDate>Wed, 19 Jan 2011 17:53:15 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[mvp]]></category>

		<guid isPermaLink="false">http://williamweber.net/?p=199</guid>
		<description><![CDATA[There&#8217;s nothing like drastic, violent change that can make you reevaluate your life and future. Five months ago (just about to the day) my second daughter was born. That caused my wife and me to reevaluate our lives together and we decided that it made a lot of sense for her to leave her job [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste"><span style="font-family: 'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif; color: #666666;"><span style="line-height: 18px;"></p>
<p class="MsoNormal">There&#8217;s nothing like drastic, violent change that can make you reevaluate your life and future. Five months ago (just about to the day) my second daughter was born. That caused my wife and me to reevaluate our lives together and we decided that it made a lot of sense for her to leave her job and stay at home with the girls. We&#8217;ve been very happy with the decision and wouldn&#8217;t change it in the least, but it&#8217;s certainly been a learning experience for the both of us. Then last month I left my job to join a great consulting firm in the Twin Cities. I&#8217;m extremely excited about the change but consulting is a new world to me which only adds to the anxiety of starting a new job.</p>
<p class="MsoNormal">
<p class="MsoNormal">All of this change has caused me to look at my personal and professional goals and really take stock of where I&#8217;m going. The end result is that I&#8217;m pretty much tossing everything out the window and starting fresh.<span id="more-199"></span></p>
<p class="MsoNormal">
<p class="MsoNormal">At my previous job I was starting to move on to a more management oriented career path. I found that I wasn&#8217;t getting the same joy out of going to work that I was when I was building cool stuff. As a consultant I&#8217;ve been able to get back to what I&#8217;m passionate about, which is creating elegant solutions to complex problems.</p>
<p class="MsoNormal">
<p class="MsoNormal">However, just getting back to doing what I like to do isn&#8217;t enough for me. I need to have a goal out there in the future that I can work toward or else I feel like I&#8217;m just slogging through the day for no reason at all. Sometimes I&#8217;ve been able to choose my goals for my own personal enrichment. Take, for example, my degree in Chinese Language. That was something I wanted to do for me. It didn&#8217;t matter to me that I didn&#8217;t have a 10 year plan in place to be an international business star. I just wanted to learn Chinese and immerse myself in the language and culture. Sometimes my goals have been goals of necessity, like &#8220;I need to make X amount of money in order to support my family.&#8221; In truth that specific goal has been my primary motivator since my first daughter was born. But whether out of necessity or just because I thought it would be fun it&#8217;s the end game that keeps me working from day to day.</p>
<p class="MsoNormal">
<p class="MsoNormal">So, where does this leave me? With the change in jobs I&#8217;ve finally managed to meet the financial goals that I&#8217;ve been setting for myself since I became a &#8220;family man.&#8221; In my efforts to meet those goals I&#8217;ve become very good at what I do and I&#8217;ve learned a ton about the field of business intelligence and SQL Server. But there&#8217;s always more to learn and I need a new goal that will push me to learn more and be as good as I can possibly be at what I love to do. And since I&#8217;ve read in many places (and happen to agree with) that the best way to hold yourself accountable for the goals you set for yourself is to tell someone else what your goals are I&#8217;ve decided to reboot my personal blog with a new goal in mind.</p>
<p class="MsoNormal">
<p class="MsoNormal">Microsoft has a program called the Most Valuable Professional Award program, or MVP program (<a href="http://blogs.msdn.com/b/mvpawardprogram/">MVP blog</a>). It&#8217;s an award for professionals in a number of different disciplines who shine in their respective communities.</p>
<p class="MsoNormal">
<p class="MsoNormal">I would like to be one.</p>
<p class="MsoNormal">
<p class="MsoNormal">It&#8217;s my hope that over the next 24 months I can learn enough, share enough with the community and hopefully have some fun along the way to find my way into the ranks of some pretty astounding people. Now, the MVP program isn&#8217;t something that you can just run down a check list and you&#8217;re in. It&#8217;s a peer nominated award with a rigorous review process. Ultimately it&#8217;s a subjective award. That means that I may not be able to join the program even if I do all of the things I want to do over the next 2 years. But, it&#8217;s my hope that by setting that goal in front of me, by letting it be known to more than just my inner egotist that it&#8217;s a place I want to be, that I&#8217;ll be able to hold myself accountable for the things that an MVP does throughout the year. Things like learning all of the little details of the technologies that I use every day, like sharing what I&#8217;ve learned with the community through my blog and twitter, like doing presentations for local user groups and really just getting my hands into every aspect of the SQL and BI community that I possibly can.</p>
<p class="MsoNormal">
<p class="MsoNormal">So this post is the start. The start of what I&#8217;m going to try and make regular updates to my blog, whether they be purely technical or just for fun. At the moment no one reads this blog so I&#8217;m sort of shouting at the wind, but hopefully over the next few months that changes. I&#8217;ve gotten some inspiration from recent posts by some very established bloggers in the SQL community, notably Paul Randal (<a href="http://www.sqlskills.com/blogs/paul/Default.aspx#p5">blog post</a> | <a href="http://twitter.com/PaulRandal">twitter</a>) and Kendra Little (<a href="http://www.littlekendra.com/2011/01/13/onblogging/">blog post</a> | <a href="http://twitter.com/Kendra_Little">twitter</a>), and I&#8217;m very excited about the future.</p>
<p class="MsoNormal">
<p class="MsoNormal">Here&#8217;s to the next two years.</p>
<p class="MsoNormal">
<p class="MsoNormal">Thanks for reading.</p>
<p></span></span></div>
]]></content:encoded>
			<wfw:commentRss>http://williamweber.net/a-new-goal-for-a-new-life/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

