Translate

Thursday, March 25, 2010

Javascript Unleashed

A presentation which I gave in Ness Open House in the series of get your fundas right.


Source code is available at :
Javascript OOPS

To view the code create a New website using the visual web developer 2008. (Click on the Link to download it)

Saturday, March 13, 2010

Advanced Web Applications With Object-Oriented JavaScript

One of the articles which i could not resist leaving in between... Must read for anyone working Javascript especially on Jquery or Dojo or any lbrary related to javascript
...
Advanced Web Applications With Object-Oriented JavaScript

Thursday, July 02, 2009

FitNesse Installation

Touched base with FitNess after a year almost, hady link for installation of FitNesse:


Useful Link about building the FIT Library and FitNesse solution.


Cory Coy's Basic Tutorial about the FitNesse.

Monday, June 08, 2009

CodeRush vs Resharper

Was given a task to answer a million dollar question that which is better Code Rush or Resharper. I collected some information and yet to find a judgmental answer for the question. Just sharing the links of people who are Commenting on the same:
Resharper vs Code Rush

1. Scott Hanselman:

2. Ash Tewari:

3. Derik Whittaker:


4. Ian's Blog:


5. .Net Geeks Blog:


6. StackOverflow:


7. David Hayden: Professional Web Developer:


8. MSDN Plugin:


9. CodeRush Xpress for C#:


10. Accidental Technologists:


11. Community for Plugins for Code Rush:

Below is the presentation which I gave to the team on this debatable topic:



Thursday, May 07, 2009

NAnt - Fundamentals

For the Build Process NAnt is a handy tool which can be used. The link below offers the fundamental concepts:
NAnt - Fundamentals

FxCop Workflow

FxCop Workflow: "for testing, the assemblies should be analyzed by FxCop"

Monday, September 22, 2008

Cursors in SQL

Just an informative article about Cursors in SQL : http://www.mssqlcity.com/Articles/General/UseCursor.htm

Wednesday, July 30, 2008

Just for a change

मैं जिन्दाजी का साथ निभाता चला गया, मैं फिक्र तो धुंए में उडाता चला गया; बरबादियों का शोक मनाना फिजूल था, बरबादियों का जश्न मनाता चला गया

Monday, October 15, 2007

How to do Redim of an array in C#

Since there's no ReDim keyword in C# then what needs to be done is that we need to write a function which does the same using an array list, this would be type specific :

private ParameterValue[] ReDimArray(ref ParameterValue[] ParameterValue,int Index)
{
TempParameterValue= new ParameterValue[Index+1];
if (TempParameterValue !=null && ParameterValue!=null)
Array.Copy(ParameterValue,TempParameterValue,Math.Min(TempParameterValue.Length,Index));

ParameterValue = TempParameterValue;
return ParameterValue;
}