FixPicture is a nice little site that helped me with converting a PSF file (ArcSoft PhotoStudio format) to JPG. I had received this file as an attachment by a user who couldn't know this was a nonstandard format, and since I didn't have any software that could read it (as far as I know), this site was very ...
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 ...
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. ...
ETE had a little note in Jyske Vestkysten today
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 ...