Thursday, May 31, 2012

My first FireFox plugin released

Here are few screen shots of this

clip_image002clip_image002[4]

clip_image001clip_image002[6]

imageimage

Wednesday, May 30, 2012

Cast<DataRow>

the following code will load top 5 rows Order in ascending row filter rows based on current date 

   1: return rows.Count() > 0 ? dt.Rows.Cast<DataRow>()
   2: .OrderByDescending(r => r["StartDate"]).
   3: Where(j => (DateTime)j["StartDate"] >= DateTime.Now).
   4: Take(5).CopyToDataTable() ;

Discover who’s tracking you online

Collusion is an experimental add-on for Firefox and allows you to see all the third parties that are tracking your movements across the Web. It will show, in real time, how that data creates a spider-web of interaction between companies and other trackers

more info