Wednesday, June 06, 2012

People search engine Pipl's

API can be used to bring a variety of information about an individual, from social networks like Facebook and LinkedIn to government resources like the United States Patent and Trademark Office and county clerk offices, into any application

development,search

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