20th January 2008, 03:44 am
Introduction
For many years, parallel computing is an important area for research in high performance computing. Super computers dominated the industry all the time. However with the cost of obtaining a fast computer and a fast network, cluster computing considered as a good alternative. High Performance Computing market grew rapidly, mainly because of the clusters intensified. […]
Tags:
.Net,
Concurrency,
dll,
Functional Programming,
interop,
mpi,
mpich Category:
Articles,
Concurrency,
Distributed,
F#,
Functional Programming,
Tools |
2 Comments
12th September 2007, 08:29 pm
Although I am extremely busy this month, I can’t stop reading those wonderful articles about parallelism on October’s MSDN Magazine. Here are the articles, a very first gentle introduction to PLINQ (Parallel LINQ) by Joe Duffy,Ed Essey, Parallel Performance using System.Concurrency namespace and a ThreadPool article. Apparently in the near future we will have some […]
23rd August 2007, 04:44 pm
Creating a class from a string might be crucial for some very dynamic projects. It’s a single line of code that I wanted to share but I think it has a lot of power.
Simply get the executing assembly and call the GetType method. If your assembly is one of the linked assembly or even a […]
14th January 2007, 08:10 pm
WebDD , a free confence in Reading for web developers and web designers, registration is open. It is organized by community and hosted by Microsoft. It is on Saturday 3rd February 2007 at Microsoft Reading, UK. Scott Guthrie will be there. You can find the speakers list and sessions.
There will be also a Geek Dinner […]
8th January 2007, 11:55 pm
Lastly I posted about the coolest exception while working with System.Reflection.Dynamicmethod class. I found the solution for my bug, and now it works like a charm. There are two classes for accessing properties or fields, one with the generic implementations and one with object implementation. Using the reflection with dynamicmethod reflection we can get 80% more […]
30th December 2006, 04:15 am
I posted an article to The Code Project for an image control. The basic idea for developing that is to write e-mail addresses as images using various formatting options on web applications.
Labels are generated as images instead of text, to have more privacy without any configurations and without HttpHandlers
ImageLabel is an ASP.NET web control […]
Tags:
.Net,
ASP.Net,
C#,
code,
codeproject,
control,
Projects,
webcontrol Category:
.Net,
ASP.Net,
C#,
General,
Projects |
1 Comment
28th December 2006, 02:59 am
I was just willing to write .Net 1.1 applications from Visual Studio 2005. Maybe you may already know but I found that great utility MsBee. You need also .Net Framework 1.1 SDK to make it install and work if you don’t have and surprisingly 1.1 SDK has a size of more than 100Mb.
Anyway, it is good […]
10th December 2006, 04:28 am
Installation of Microsoft Sharepoint Services or Microsoft Sharepoint Portal Server requires a Windows Server computer. However it is possible to develop in Windows XP’s. For deployment you definitely need windows server. Since Sharepoint 2003 is based on asp.net 1.1 you can’t use Visual Studio 2005 for developing, you need to have Visual Studio .Net 2003.
One […]
31st August 2006, 12:51 am
I am just downloading it. Download it too. You also need to download Visual Studio C# Express as the documentation says. Also for audio you might need Directx SDK, So downloading all of them.
XNA Game Studio Express
Visual Studio C# Express
Directx SDK (August 2006)
Useful Links
XNA ReadmeXNA Team BlogXNA Forums
28th August 2006, 06:50 pm
Nullable types are instances of Nullable structure. This Nullable structure is a generic struct type in base class library. It behaves like value type when it has a value which means that boxing or unboxing occurs. However when it does not have a value, it is null instead of the value types default value, and boxind […]