Archives for Software Dev - Page 42
iTunes sharing content
I want to authorize another user to use my iTunes account (Basically, I want him to be able to purchase music on my behalf - my money - his music…
Exposing SOAP Header info to Client through the WSDL
The WSDL specification provides you with two different ways of specifying the use of SOAP header fields. In explicit headers, you add all of the header information to the portType…
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…
Quick way to print out generated sql
If you are working from an EF context, the context has its own LOG. This can be written out to your development console (see example below). = ;DataClassesDataContext context =…
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…
Bulk update (change) author in wordpress posts
I needed to update all posts in a certain CATEGORY. The update involved changing the author name for each of those posts. Here is what I had to do to…
WordPress display subcategories along with their titles and posts
All I wanted to do was display all the SUBCATEGORIES under a category (along with their titles) – and list the posts under each subcategory. With the power of wordpress…
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…