Thursday, May 5, 2011

Balsamiq: Another mockup building tool for all kind of purpose.

Today I am going to share yet another mockup building tool with you guys. Before going in to more discussion, can you recall any good mockup tool free, i.e. either freeware or shareware three year back. We used Microsoft Visio for a long time. Until our designers made up there mind to do all sort of mockup using Photoshop. Again considering the price of the tool Photoshop was a good choice as it serve multiple purpose for the designers.

The tool or component that I want to share with you guys is Balsamiq. It is yet another mockup building tool and I must say a very good one. I have already talking about mockupbuilder.com where a silverlight component do all the thing for mockup. Here we can say that it’s a competitor for the mocupbuilder.com, Balsamiq is designed and developed via flex(Perhaps) and has runtime framework as adobe Air.

Its free if you use this by lunching from there site, and you can also buy the commercial version with $79 for a single license. Till now our designers are using this free version and They are pretty happy about it.

image

On thing I must mention here that not only designers are comfortable with it, stake holders like developers and product owners even customers understand the simple sketch like drawing. As our project manager said

“Even though the name sounds funny but the tool is awesome and we are liking it”

Until next time me signing our.

Between Extension method for double

This is a work in progress and can be used for only numeric data types. And also works with all the object that implements IComparable.

Works for almost every case and it is pretty handily.

/// <summary>
/// Extention method for between
/// </summary>
public static class SomeExtention
{
public static bool Between<T>(this T actual, T lower, T upper) where T : IComparable<T>
{
return actual.CompareTo(lower) >= 0 && actual.CompareTo(upper) <= 0;
}
}


Looking forward to share more about this stuff. Until next time bye bye.