Archive for June, 2008

Windows Workflow Foundation - Tutorials

Here is a good link from JoeOn.net which is a series of tutorials on Windows Workflow Foundation

http://joeon.net/post/2008/02/Windows-Workflow-Foundation-Tutorial-Series.aspx
Another good link is (always from :)) ScottGu’s Blog:
http://weblogs.asp.net/scottgu/archive/2006/08/31/Windows-Workflow-Foundation.aspx
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

kidoos.net - coming soon

kidoos.net, an initiative from me - which will be a technology portal - will be launched soon for public
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Code Name: “Velocity”

Microsoft project code named “Velocity” is a distributed in-memory caching platform that provides .NET applications with high-speed access, scaling, and high availability to application data.
“Velocity” is a distributed in-memory application cache platform for developing scalable, available, and high-performance applications. Using “Velocity,” applications can store any serializable CLR object without concern for where the object gets [...]

Leave a Comment

C# 3.0 New Features

Here is a useful link on “C# 3.0 New Features” - by Dhaval Faria (Microsoft MVP).

URL: http://www.learnitonweb.com/Articles/ReadArticle.aspx?contId=4&page=1
Following is the list of new features that he explained in this article:
1 - Automatic Properties
2 - Object Initializers
3 - Collection Initializers
4 - Implicitly Typed Local Variables and Implicitly Typed Arrays
5 - Extension Methods
6 - Lambda Expressions and Expression [...]

Leave a Comment

A simple ISAPI extension with C#

using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.Write(”Content-type: text/htmlnn”);
[...]

Leave a Comment

Parallel Extensions to the .NET Framework 3.5 has been released

Parallel Extensions simplifies development by providing library-based support for introducing concurrency into applications written with any .NET language, including C# and Visual Basic. It includes the Task Parallel Library (TPL), which provides imperative data and task parallelism; Parallel LINQ (PLINQ), which provides declarative data parallelism; and all new Coordination Data Structures (CDS), which provide support [...]

Leave a Comment

Parallel Computing Development Center

Microsoft’s Parallel Computing developer center is dedicated to providing information, ideas, community, and technology to developers to make it easier to write programs that perform and scale well on parallel hardware.
URL: http://msdn.microsoft.com/hi-in/concurrency/default(en-us).aspx
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Coder or Programmer?

“A coder is always a coder unless he start thinking about the architecture.
But such coders are called Programmers.”

–PraVeeN

VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment