Archive for November, 2009

Tuple in C# 4.0

Posted: November 29, 2009 in .NET, C#
Tags: ,

Tuple provides us with a way to group elements of disparate data types together.This is present in functional languages like Haskell and also dynamic languages like Python.A common example of a tuple is a pair of coordinates defining a point in two dimensional space.In Haskell a tuple storing name and age of person is defined [...]

My TweetCloud Over An Year

Posted: November 29, 2009 in Others
Tags:

Today I generated my tweet cloud over my tweets of past one year using http://tweetcloud.icodeforlove.com. This can be accessed at http://tweetcloud.icodeforlove.com/sankarsan. Nice concept.It gives you a cool snapshot about what you have tweeted in a time span.  

Dynamic Reception in C#

Posted: November 22, 2009 in .NET, C#
Tags: ,

In my last couple of posts I had discussed about the new dynamic keyword introduced in C# 4.0 and the how the DLR integrates with CLR to provide the dynamic programming services.In this post I will discuss about the System.Dynamic.DynamicObject class and how we can implement dynamic receivers in C#.Dynamic Receivers allows the client code [...]

The term “Cloud Computing” has gained a lot of attention by now and the momentum seems to be rising even in 2010.Cloud Computing appears in Gartner’s list of Top 10 Strategic Technologies for 2010 and as per the report: Cloud computing is a style of computing that characterizes a model in which providers deliver a [...]