moeen49

Stories kicked by moeen49

What if Visual Studio had Achievements?(blog.whiletrue.com)

submitted by bh213bh213(255) 1 year, 4 months ago

Maybe in Visual Studio 2012 with XBox Live integration? read more...

5 comments |category: |Views: 694

tags: another

7 Freely available E-Books/Guides I found essential for .NET Programme(amazedsaint.blogspot.com)

submitted by BognitBognit(2125) 1 year, 8 months ago

Freely available E-Books/Guides I found essential for .NET Programme read more...

3 comments |category: |Views: 914

tags: another

Find the Most Time Consuming Code in your SQL Server Database(www.sqlservercurry.com)

submitted by mopenmopen(3596) 1 year, 10 months ago

This post will demonstrate how to find T-SQL code (SQL Server 2005/2008) that takes the most time to execute. Note that a time consuming code may not necessarily be inefficient; it also depends on the volume of data being processed. read more...

add a comment |category: |Views: 123

tags: another

Popular .NET Web Content Management Systems (CMS) - Open Source(www.devcurry.com)

submitted by mopenmopen(3596) 1 year, 10 months ago

Here are some good Open Source ASP.NET Web CMS that are popular in the community read more...

2 comments |category: |Views: 672

tags: another

Visual Studio 2010 Keyboard Shortcuts Poster(www.devcurry.com)

submitted by mopenmopen(3596) 2 years, 1 month ago

You can now download the reference cards (available as print ready pdf’s) for the default keybindings in Visual Studio 2010 for Visual Basic, Visual C#, Visual C++ and Visual F# over here read more...

add a comment |category: |Views: 705

tags: another

Distance Calculation using Latitude and Longitude in C#(www.zipcodeworld.com)

submitted by hexahowhexahow(55) 2 years, 2 months ago

ZIPCodeWorld.com provides this routine to calculate the distance between two points (given the latitude/longitude of those points) in C#. It is being used to calculate distance between two points lat1, long1 and lat2, long2 and uses radius of earth in kilometers or miles as an arguments using our ZIPCodeWorld(TM) and PostalCodeWorld(TM) products which offer the United States ZIP codes, Canadian Postal Codes, Mexican Postal Codes and North American Area Codes database subscription and solution services. read more...

1 comment |category: |Views: 547

tags: another

Stored Procedure Optimization Tips – Best Practices(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 2 years, 3 months ago

Key Points discussed in the articles are : 1. Include SET NOCOUNT ON statement 2. Use schema name with object name 3. Do not use the prefix “sp_” in the stored procedure name 4. Use IF EXISTS (SELECT 1) instead of (SELECT *) 5. Try to avoid using SQL Server cursors whenever possible 6. Keep the Transaction as short as possible 7. Use TRY-Catch for error handling read more...

2 comments |category: |Views: 779

tags: another

60+ .Net libraries every developer should know about(blog.webdistortion.com)

submitted by squiggssquiggs(585) 2 years, 3 months ago

Every good developer knows never to re-invent the wheel, especially if there is software out there that has been tested by others, and has an established track record. As a developer using the .NET framework I’ve found some of these libraries invaluable, so I’m sharing them for some of the other dev’s out there with a brief outline of how to use. read more...

2 comments |category: |Views: 2605

tags: another

Composition versus Inheritance(www.lostechies.com)

submitted by ChrisMissalChrisMissal(145) 2 years, 3 months ago

Discusses the benefit of Composition versus Inheritance. Touches on IoC Containers and how they can help you achieve more granular bits of code that make your applications more flexible and easier to maintain. read more...

add a comment |category: |Views: 636

tags: another

xVal v1.0 is now released(blog.codeville.net)

submitted by desmonddesmond(2014) 2 years, 8 months ago

In case you’re not aware, xVal is a validation helper for ASP.NET MVC that lets you use your own choice of server-side validation framework (e.g., Microsoft’s DataAnnotations attributes, or Castle Validator, or NHibernate Validaion) and dynamically generates client-side validation code from your rules. Version 1.0 adds new features including dynamic client-side validation summaries and remote (ajax) validation rules. read more...

add a comment |category: |Views: 218

tags: another

Top 5 SQL System stored procedures every developer should know(dotnetcube.com)

submitted by dncdudedncdude(1350) 3 years ago

There are a number of documented and undocumented system stored procedures in MS SQL Server that are helpful for every web developer working with databases. From the developer’s perspective, here’s a list of 5 System stored procedures that are my favorite. read more...

1 comment |category: |Views: 1037

tags: another

12+ open source projects for .NET you probably didn’t know about.(blog.webdistortion.com)

submitted by squiggssquiggs(585) 3 years, 2 months ago

Here’s a few of the better .NET open source projects which are making a difference to .NET developers worldwide, and it just shows that the open source .NET community is alive and well. read more...

1 comment |category: |Views: 1932

tags: another

23 amazing JQuery Photo/Gallery Plugins(blogrammierer.de)

submitted by blogrammiererblogrammierer(265) 3 years, 2 months ago

A collection of 23 JQuery Plugins to prepare your site for the use of photos. read more...

2 comments |category: |Views: 7449

tags: another

Sending Domain Objects Across the Wire(broloco.blogspot.com)

submitted by FlukeFanFlukeFan(279) 3 years, 3 months ago

or Using NHibernate and WCF read more...

3 comments |category: |Views: 386

tags: another

How to Calculate Network Utilization in .NET(nayyeri.net)

submitted by niikniik(365) 3 years, 4 months ago

How to calculate utilization of a particular network interface in .NET using performance counters and a bit of math. read more...

add a comment |category: |Views: 519

tags: another

Monitoring HTTP Output with Fiddler in .NET HTTP Clients and WCF Proxi(west-wind.com)

submitted by rstrahlrstrahl(7226) 3 years, 4 months ago

Http debugging is immensely useful and Fiddler is a nice tool that provides many options and an easy to use interface to monitor HTTP requests to get maximum information about each request. In order to monitor requests of .NET clients like WebClient, HttpWebRequest or WCF or Web Service proxies you need a little additional configuration to get Fiddler to monitor these requests. read more...

add a comment |category: |Views: 273

tags: another