I was installing a set of templates on a sharepoint server I’m setting up for work, and I came accross these great instruction on how to install them, since I had the same problem as Matthew in the comments. I even learned that the command line has for-loops. I always assumed this shell had absolutely nothing. Now I just believe it’s very limited. :-) zsh for Windows? (without Cygwin?)


Macrumors reports that AppleTV Take Two includes airtunes support! Yay! Finally some light in this dark tunnel. And here I was thinking that Apple had abandoned the technology after leaving it out of new Airports. I’m looking forward to hearing just what it will do. :-) Stream? Play back? Both ways? Bridge?


ETE had a little note in Jyske Vestkysten today


Reading more in The Dashboard Spy I found this great table of questions users ask and how you should answer them when it comes to designing dashboard:

Questions Dashboard Users ask
Check out the reference whitepaper by PureShare on Best Practices in Dashboard Design. And for that next great UI design, check out 175+ Data and Information Visualization Examples and Resources


Just a quick note on Name Calculations in SSAS, they need to be written in whatever SQL dialect the underlying DB engine (probably MS-SQL) understands. I wanted to make a Sales Margin calculation, and to avoid a Divide by Zero where sale price was zero, my code for this was:
<br /> CASE<br /> WHEN Sale<>0 THEN (Sale-Cost)/Sale<br /> ELSE 0<br /> END<br />
Never before have I needed four lines to do a simple IF. ;-)