<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Firoz's Blog</title>
	<atom:link href="http://www.firozansari.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.firozansari.com</link>
	<description></description>
	<lastBuildDate>Mon, 27 Jun 2011 03:41:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Free Video Training on ASP.NET MVC</title>
		<link>http://www.firozansari.com/2011/06/27/free-video-training-on-asp-net-mvc/</link>
		<comments>http://www.firozansari.com/2011/06/27/free-video-training-on-asp-net-mvc/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 03:39:09 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.firozansari.com/?p=218</guid>
		<description><![CDATA[If you are looking for free online tutorials to learn ASP.NET MVC 3 basics then you should check out ASP.NET MVC site. Microsoft has made arrangements with Pluralsight to provide many on-demand videos free of charge. Link: ASP.NET MVC &#160; 1. Introduction 35 mins &#160; 2. Controllers 35 mins &#160; 3. Razor Views 45 mins [...]]]></description>
		<wfw:commentRss>http://www.firozansari.com/2011/06/27/free-video-training-on-asp-net-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quote</title>
		<link>http://www.firozansari.com/2010/11/07/quote/</link>
		<comments>http://www.firozansari.com/2010/11/07/quote/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 03:08:03 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.firozansari.com/?p=192</guid>
		<description><![CDATA[Walking on water and developing software from a specification are easy if both are frozen. &#8211; Edward V Berard]]></description>
		<wfw:commentRss>http://www.firozansari.com/2010/11/07/quote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop IE flickering between pages</title>
		<link>http://www.firozansari.com/2010/11/07/stop-ie-flickering-between-pages/</link>
		<comments>http://www.firozansari.com/2010/11/07/stop-ie-flickering-between-pages/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 02:58:09 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.firozansari.com/?p=188</guid>
		<description><![CDATA[If you hate that slight flicker in IE browser between page transitions then you will find this snippet useful. When user navigate from one page to another in IE, there is slight &#8220;white out&#8221; before this transition. Whereas in Firefox and other browsers this page transition is very smooth. IE browser will show blank page [...]]]></description>
		<wfw:commentRss>http://www.firozansari.com/2010/11/07/stop-ie-flickering-between-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementing Auto-Logout functionality</title>
		<link>http://www.firozansari.com/2009/05/15/implementing-auto-logout-functionality/</link>
		<comments>http://www.firozansari.com/2009/05/15/implementing-auto-logout-functionality/#comments</comments>
		<pubDate>Fri, 15 May 2009 16:09:17 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.firozansari.com/?p=139</guid>
		<description><![CDATA[Here is small javascript snippet you will find useful for your web application. It will automatically logout user after specific time of inactivity. &#60;script type=&#34;text/javascript&#34;&#62; var timer; var wait=10; document.onkeypress=resetTimer; document.onmousemove=resetTimer; function resetTimer&#40;&#41; &#123; clearTimeout&#40;timer&#41;; timer=setTimeout&#40;&#34;logout()&#34;, 60000*wait&#41;; &#125; &#160; function logout&#40;&#41; &#123; window.location.href='Logout.aspx'; &#125; &#60;/script&#62; Code is self explanatory. We are using setTimeout method which [...]]]></description>
		<wfw:commentRss>http://www.firozansari.com/2009/05/15/implementing-auto-logout-functionality/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Generating JSON from TSQL Query</title>
		<link>http://www.firozansari.com/2008/11/21/generating-json-from-tsql-query/</link>
		<comments>http://www.firozansari.com/2008/11/21/generating-json-from-tsql-query/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 17:48:27 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[JSON]]></category>

		<guid isPermaLink="false">http://www.firozansari.com/?p=137</guid>
		<description><![CDATA[I was looking for TSQL implementation which can build JSON payload directly from database. After couple of failed search, I decided to create my own stored procedure which can render JSON based for any query passed as parameter. After few keystrokes in SQL Server Management Studio, I have this semi-finish stored procedure which I thought [...]]]></description>
		<wfw:commentRss>http://www.firozansari.com/2008/11/21/generating-json-from-tsql-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting list of modified objects in SQL Server</title>
		<link>http://www.firozansari.com/2008/11/15/getting-list-of-modified-objects-in-sql-server/</link>
		<comments>http://www.firozansari.com/2008/11/15/getting-list-of-modified-objects-in-sql-server/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 03:27:08 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.firozansari.com/?p=134</guid>
		<description><![CDATA[Developers always want to have a list of modified tables or stored procedures while check-in the code or wrapping up the development at the end of the day. some usually keep this list in text file and they update this file every time they modify any table or stored procedure. Here are some handy SQL [...]]]></description>
		<wfw:commentRss>http://www.firozansari.com/2008/11/15/getting-list-of-modified-objects-in-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Released &#8211; TinySQL v2.0</title>
		<link>http://www.firozansari.com/2008/04/05/released-tinysql-v20/</link>
		<comments>http://www.firozansari.com/2008/04/05/released-tinysql-v20/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 00:19:22 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[Code Generation]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tinysql]]></category>

		<guid isPermaLink="false">http://www.firozansari.com/2008/04/05/release-tinysql-v20/</guid>
		<description><![CDATA[I just released TinySQL code generator v2.0 with few bug fixes and a new feature of using separator tag for loop statement. You can now use {sap}{/sap} tags to place your separators inside loop. Here is the example of using {sap}{/sap} tags in TinySQL template: ** Generate DATA Provider: UPDATE/v2.0 CREATE PROCEDURE &#91;dbo&#93;.&#91;usp_Update$table&#93;&#123;loop&#125; @$field = [...]]]></description>
		<wfw:commentRss>http://www.firozansari.com/2008/04/05/released-tinysql-v20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone &#8211; Scroll Bottom Bookmarklet</title>
		<link>http://www.firozansari.com/2008/04/03/iphone-scroll-bottom-bookmarklet/</link>
		<comments>http://www.firozansari.com/2008/04/03/iphone-scroll-bottom-bookmarklet/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 02:41:09 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.firozansari.com/2008/04/03/iphone-scroll-bottom-bookmarklet/</guid>
		<description><![CDATA[You can easily scroll to the top of the web page by just tapping on top bar (which has signal status, carrier name, time etc.) of iPhone but how about scrolling to the bottom of the page. If you are browsing any long web page then sometime it becomes really annoying to reach bottom of [...]]]></description>
		<wfw:commentRss>http://www.firozansari.com/2008/04/03/iphone-scroll-bottom-bookmarklet/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>TinySQL Code Generator</title>
		<link>http://www.firozansari.com/2007/09/13/tinysql-code-generator/</link>
		<comments>http://www.firozansari.com/2007/09/13/tinysql-code-generator/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 20:21:07 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Code Generation]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tinysql]]></category>

		<guid isPermaLink="false">http://www.firoz.name/2007/09/13/tinysql-code-generator/</guid>
		<description><![CDATA[TinySQL is small and handy SQL script which can quickly generate consistent code snippet that you can paste in your project. It basically operates by reading schema of provided table and applying template to each column of table in order to generate code snippet. With TinySQL, you can create complete or specific portion of business [...]]]></description>
		<wfw:commentRss>http://www.firozansari.com/2007/09/13/tinysql-code-generator/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>FlashCard v1.0</title>
		<link>http://www.firozansari.com/2007/03/30/flashcard-v10/</link>
		<comments>http://www.firozansari.com/2007/03/30/flashcard-v10/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 16:20:09 +0000</pubDate>
		<dc:creator>Firoz Ansari</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[delphi]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://www.firoz.name/2007/03/30/flashcard-v10/</guid>
		<description><![CDATA[I have developed a small window application called &#8220;FlashCard&#8221; which can be used as learning aid using response system. Flashcard or flash card is a piece of paper which has question on each card and an answer overleaf. Flashcard can be use to learn vocabulary, formulas, foreign languages, technical or domain terms etc. This system [...]]]></description>
		<wfw:commentRss>http://www.firozansari.com/2007/03/30/flashcard-v10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

