Archives for Language features, Development Methodologies - Page 12
WCF and AJAX
In VS2010 – you are provided with a template for AJAX enabled WCF Service. Basically, all you need to do is Add an AJAX-enabled endpoint to a WCF service 1.…
Windows Server–Adding Roles and Features Hangs
This seems to be a common occurrence. The workaround I have found invovles Powershell . Simply Export the Configuration Settings – into say c:\ Run the following command in a…
PC cleanup
Iolo System Mechanic – Comprehensive, License fee required – $39 SlimWare Utilities SlimCleaner Run Geekbench Score to check if performance truly improved after running these tools.
Using Git with Visual Studio 2013
All I wanted to do was look at some sample source code within a GIT ; For this, the repository exposes a Git URL . This URL is all that…
Multiple FROM statements in a LINQ expression
Multiple "from" statements are like nested foreach statements. MSDN example: var scoreQuery = from student in students from score in ; where score > 90 select new {…
SQL Server Passing parameters in VIEW
The short answer is that a VIEW is just a static representation of tabular data – and cannot accept a parameter. However, one can accomplish the same thing by doing…
Reshsharper equivalent for java ?
IntelliJ Idea – along with its many plugins – is the closest one can get to a resharper equivalent for java code.
Lost intellisense in Visual Studio
If you just lost intellisense in VS 2012 or 2013, you are not alone. These are the two most common culprits/fixes - RESET all settings - Tools > Import and…
SQL Server Consolidation–issues to consider
It is natural for an enterprise to end up with a large number of sql server databases – each hosted on its own silo server. This is an obvious waste…
Binary tree (count nodes) interview question
Given a LEFT and a RIGHT property that returns the underlying LEFT tree and the underlying RIGHT tree respectively, find the total count of the nodes in the BinaryTree<T>{ private…