Updated : Recommended Podcasts
Here is a list of podcast which I love to listen, this list I plan to update as an when I find good podcasts. Last Updated on : 03/10/2013 1. Hanselminutes 2. Stackoverflow Podcast 3. .NET Rocks! 4. This Developer’s…
An introduction to accounting.js, a javascript library for number, money and currency formatting
accounting.js is a tiny JavaScript library for number, money and currency formatting, with optional excel-style column rendering (to line up symbols and decimals). It’s lightweight, fully localisable and has zero dependencies. This JavaScript library can be downloaded from here Why…
How to set SmtpClient properties using web.config
SmtpClient Class allows applications to send e-mail by using the Simple Mail Transfer Protocol (SMTP). Instead of assigning properties of this class in C# , we can use the <system.net> element in the web.config as shown below : <system.net> <mailSettings>…
How to use if else statements in underscore.js template ?
There is always a need to have a condition check when populating your underscore.js tempalte. For instance in my case I had a model and few fields in the model had null values so when they were rendered with these…
Why Windows 8 Phone development sucks !
Earlier this month, I had started with my first Windows 8 Phone app development : Interview QA. This post is a summary of my experience with Windows 8 Phone development. HURDLE 1 : Windows 8 and Visual Studio 2012 :…
How to embed Youtube videos in WP Markdown Editor ?
I have been using this awesome WordPress plugin called WP-Markdown for over a year on this blog. So today again I came across this neatly explained tutorial on “Javascript Closures” by Mark Dalgleish which I decided to add as a…
How to check the created date and last modified date of a stored procedure in SQL ?
One often has a need to check the last modified date or the created date of a stored procedure in SQL. So, below is an SQL script that allows you to view the stored procedure name, created date and last…
Play, Pause and Stop an audio in HTML 5 by example
HTML 5′s audio tag has been around for a while now but, I never got a chance to try them. Today finally I got the chance, so here is what I created using jsfiddle. Live Demo HTML <input type=”button” value=”play”…
Google Reader alternative for Windows 8 Phone
A quick search at the Windows 8 Phone’s App Store, for a feed reader app gives the following result. After trying out most of these apps, I have found Nextgen Reader to be the best ! Nextgen Reader Nextgen Reader…
Download Windows 8 Phone SDK offline using a Download Manager
Windows 8 Phone SDK is available for download from here, but I need a offline download of this SDK. ( i.e I wanted to download the entire setup all at once and not use the online installer ) You can…