Thursday, December 10, 2009
Monday, December 07, 2009
Wanna shop sample sales at Rue La La?
:Link to Article:
Here is how you get started with one of the best sites for sample sales: Rue La La
Happy Holidays!
Here is how you get started with one of the best sites for sample sales: Rue La La
Happy Holidays!
Wednesday, December 02, 2009
Describing EC2 instances using the AWS SDK for .NET
:Link to Article:
Here is some sample code that shows you how to enumerate the EC2 instances currently associated with your AWS account.
DescribeInstancesResponse resp = ec2.DescribeInstances(new DescribeInstancesRequest());
if (resp.IsSetDescribeInstancesResult())
{
DescribeInstancesResult result = resp.DescribeInstancesResult;
foreach (RunningInstance inst in result.RunningInstance)
{
Console.WriteLine(inst.InstanceId);
}
}
Watch this space for more snippets of code that will help you manage your AWS resources using the SDK for .NET.
Here is some sample code that shows you how to enumerate the EC2 instances currently associated with your AWS account.
DescribeInstancesResponse resp = ec2.DescribeInstances(new DescribeInstancesRequest());
if (resp.IsSetDescribeInstancesResult())
{
DescribeInstancesResult result = resp.DescribeInstancesResult;
foreach (RunningInstance inst in result.RunningInstance)
{
Console.WriteLine(inst.InstanceId);
}
}
Watch this space for more snippets of code that will help you manage your AWS resources using the SDK for .NET.
Monday, November 23, 2009
Chrome OS And The Microsoft Squeeze - Reaction
:Link to Article:
What utter bs - until Chrome OS and Mac OS X are adopted by the enterprise, they are always going to be the outsiders looking in. Techcrunch writers really need to get their head screwed straight so they see the light. Or go to PDC...
What utter bs - until Chrome OS and Mac OS X are adopted by the enterprise, they are always going to be the outsiders looking in. Techcrunch writers really need to get their head screwed straight so they see the light. Or go to PDC...
Friday, November 20, 2009
AWS for Windows Developers
:Link to Article:
If you are:
1. A Windows developer
2. Curious about AWS
3. Using AWS services but want to manage your infrastructure
Get the AWS SDK for .NET Development :here:
Getting started with AWS is simple using the built-in Visual Studio templates, project samples and AWS reference documentation is integrated into Visual Studio (hit F1). Post a message to the AWS Windows development forum and tell us about your experience with the SDK.
If you are:
1. A Windows developer
2. Curious about AWS
3. Using AWS services but want to manage your infrastructure
Get the AWS SDK for .NET Development :here:
Getting started with AWS is simple using the built-in Visual Studio templates, project samples and AWS reference documentation is integrated into Visual Studio (hit F1). Post a message to the AWS Windows development forum and tell us about your experience with the SDK.
Thursday, November 05, 2009
The Yankees - 27th Title
:Link to Article:
Many will attribute this latest addition to the Yankees trophy collection to the 1/2 Billion dollar acquisitions they made in the summer. I think more than the money spent, there is something to be said about the new set of individuals playing like a team. The big stars didn't bring this to the fray; it's the National League players they acquired that imbued in the "jaded" Yankees a oneness of cause and lightened the atmosphere in the staid locker-room.
Even if I am wrong, I am so happy that the Yankees won it all this year. The best team in baseball deserved to win. Alex Rodriguez can stop going to the therapist now - he played like a champion, albeit a tainted one. Everyone in baseball has considered or used steroids; I am sure football players use HGH as well. Players are going to cheat and us fans are going to find out eventually. Let's stop being petty and let the games continue...
Many will attribute this latest addition to the Yankees trophy collection to the 1/2 Billion dollar acquisitions they made in the summer. I think more than the money spent, there is something to be said about the new set of individuals playing like a team. The big stars didn't bring this to the fray; it's the National League players they acquired that imbued in the "jaded" Yankees a oneness of cause and lightened the atmosphere in the staid locker-room.
Even if I am wrong, I am so happy that the Yankees won it all this year. The best team in baseball deserved to win. Alex Rodriguez can stop going to the therapist now - he played like a champion, albeit a tainted one. Everyone in baseball has considered or used steroids; I am sure football players use HGH as well. Players are going to cheat and us fans are going to find out eventually. Let's stop being petty and let the games continue...
Thursday, October 29, 2009
MSVCR100.dll was not found. Reinstalling ... (FIX)
:Link to Article:
Searching the web for how to fix this will frustrate you to death. The fix is to download the latest .NET SDK (4.0 in this case) and run the installer. Download the redistributable exe, not the web downloader.
Download Link: http://www.microsoft.com/downloads/details.aspx?FamilyID=ded875c8-fe5e-4cc9-b973-2171b61fe982&displaylang=en#filelist
So much for the web, MSDN or Bing search on MSDN adding any value.
Searching the web for how to fix this will frustrate you to death. The fix is to download the latest .NET SDK (4.0 in this case) and run the installer. Download the redistributable exe, not the web downloader.
Download Link: http://www.microsoft.com/downloads/details.aspx?FamilyID=ded875c8-fe5e-4cc9-b973-2171b61fe982&displaylang=en#filelist
So much for the web, MSDN or Bing search on MSDN adding any value.

