October 2012
1 post
Best way to share bookmarks and favorites across...
In today’s day and age we no longer keep our files and resources on one computer. I have 3 laptops, 2 smart phone and tablet. I have been looking for a good intuitive service which can share all my bookmarks across all these devices. Finally I found pocket, this app is amazing. These guys were previously known as “Read it later”. They have amazing iphone, ipad app and very cool...
Oct 20th
August 2012
1 post
1 tag
Visual studio 2012 releases, its all about Windows...
http://blogs.msdn.com/b/jasonz/archive/2012/08/15/visual-studio-2012-and-net-framework-4-5-released-to-the-web.aspx Inbuilt support for Windows 8 development Windows 8 App development Azure development AJILE process development like sprint methods 3d game development Code enhancement support Responsive UI development
Aug 15th
July 2012
6 posts
1 tag
Jul 15th
4 tags
Jul 8th
3 notes
3 tags
“A ‘no’ uttered from the deepest conviction is better than a...”
– (Good read in the words of his grand son Arun Gandhi)
Jul 6th
1 note
4 tags
Jul 2nd
4 tags
SSRS and Columns from Dynamic SQL
In SSRS when you bind a stored proc, it does not always auto populate the column headers. You may end up adding all the columns manually. There is a quick work around for this. In your stored proc, use EXEC(” your sql query”) instead of storing the text in Variable and then executing the variable. SSRS plays nice if all your columns are laid out in your EXEC statment. For example...
Jul 2nd
3 tags
Left hand comparison: Better way to write your IF...
In my daily routine, I use C# as the main language to code. Those from C or C++ world may know what I am talking about. Try this in your C# code bool flag1 = true; if(flag1 = false) { Console.WriteLine(flag1); } Technically this should give you error (Tested in VS 2010, Framework 4.0) but it does not. Instead of comparing flag1 to false , code will assign false value to flag1. This will always...
Jul 2nd
June 2012
3 posts
5 tags
Jun 19th
1 note
4 tags
Deploy changes in SQL Server using sqlcmd utility
Note: This is mainly for small to mid level team and project systems which does not need complex build and deployment processes. Recently I learned about SQLCMD utility which started shipping with SQL Server 2005 version. IMO you can use this tool and establish a very easy process to deploy database changes from one database to another.  Lets take an example of deploying 20 stored procedures to...
Jun 15th
1 note
1 tag
jsfiddle: Test CSS,HTML and JavaScript in browser
http://jsfiddle.net/ JsFiddle is a playground for web developers, a tool which may be used in many ways. One can use it as an online editor for snippets build from HTML, CSS and JavaScript. The code can then be shared with others, embedded on a blog, etc. Using this approach, JavaScript developers can very easily isolate bugs. We aim to support all actively developed frameworks - it helps with...
Jun 14th
1 note
May 2012
1 post
The "Me, Too" Startup Syndrome
funtrepreneur: Twas the night before YC deadline, when all through the valley Creatures were stirring with excitement for the big night in Cali Thousands of applications were typed with care In hopes that the golden ticket will soon be there And a few girlfriends slept alone in their beds While visions of exits danced in their boyfriends’ heads when out of the blues my iPhone lets out a...
May 1st
33 notes
April 2012
2 posts
3 tags
Meteor  →
These days I see more and more updates coming to java script world, it is hard to catch up with the list. Here is a new kid on the block Meteor (Write entire app in pure JavaScript). I think these 7 principal mentioned in their document pretty  much sums it all up. Looking forward to learning it… 7 Principal of Meteor  Data on the Wire. Don’t send HTML over the network. Send data...
Apr 11th
1 note
4 tags
Kill blocked process in SQL Server 2008
http://amitchandnz.wordpress.com/2010/08/29/kill-process-sp_who2/ Run sp_who2; To kill a process just enter the word kill followed by the SPID: kill SPID; The field Blkby will identify the SPID that is causing any blocks.
Apr 10th