Wednesday, July 14, 2010

Twitterizer

Twitterizer  is a .NET library designed for quick and easy Twitter integration.
http://www.twitterizer.net/

Friday, July 9, 2010

Linq to Entity framework

LINQ to Entities provides Language-Integrated Query (LINQ) support that enables developers to write queries against the Entity Framework conceptual model using Visual Basic or Visual C#. Queries against the Entity Framework are represented by command tree queries, which execute against the object context. LINQ to Entities converts Language-Integrated Queries (LINQ) queries to command tree queries, executes the queries against the Entity Framework, and returns objects that can be used by both the Entity Framework and LINQ.


http://msdn.microsoft.com/en-us/library/bb386964.aspx

Friday, February 19, 2010

Serial and Parallel Bucket Sort

The bucket sort algorithm is inherently parallelization friendly. Here i have given the code for both the serial and parallel versions of the algorithm. both are in a eclipse project which can be found here.

Serial and Parallel Sample Sort

I constructed both serial and parallel algorithms of sample sort in java for the concurrent computing module that i took last semester. Just thought that i should share the code. Here is a link which contains an eclipse project with two classes, one for the serial version and one for he parallel version.