Video
Primary focus technology and software development related topics which I learn and keep here for self reference.
Translate
Thursday, April 22, 2010
Saturday, April 10, 2010
SQL Server 2008 Connection String Samples - ConnectionStrings.com
SQL Server 2008 Connection String Samples - ConnectionStrings.com
Quick reference for the connection string.
Thanks
Dibyendu
Quick reference for the connection string.
Thanks
Dibyendu
Design Patterns: Model View Presenter
Design Patterns: Model View Presenter
Just to demistify the ASP.Netdeveloper, will add few more points on how to make the demo work.
Thanks
Dibyendu
Just to demistify the ASP.Netdeveloper, will add few more points on how to make the demo work.
Thanks
Dibyendu
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 :
To view the code create a New website using the visual web developer 2008. (Click on the Link to download it)
Java script unleashed
View more presentations from dibyendutiwary.
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
...
Advanced Web Applications With Object-Oriented JavaScript
Thursday, March 11, 2010
Sunday, March 07, 2010
cr-documentor - Project Hosting on Google Code
cr-documentor - Project Hosting on Google Code
Cool tool to see the preview of XML Documentation a must for all the hands on developers
Cool tool to see the preview of XML Documentation a must for all the hands on developers
Thursday, December 17, 2009
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 22, 2009
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:
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:
Friday, May 15, 2009
Creating a Class Factory with C# and .NET. Free source code and programming help
To get a proper understanding of the Class factory and Abstract Factory Pattern, Click on the Link and Go through the Article:
CodeProject: Creating a Class Factory with C# and .NET. Free source code and programming help
CodeProject: Creating a Class Factory with C# and .NET. Free source code and programming help
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
NAnt - Fundamentals
Monday, April 13, 2009
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
मैं जिन्दाजी का साथ निभाता चला गया, मैं फिक्र तो धुंए में उडाता चला गया; बरबादियों का शोक मनाना फिजूल था, बरबादियों का जश्न मनाता चला गया
Wednesday, December 19, 2007
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;
}
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;
}
Subscribe to:
Posts (Atom)