<?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>Abhishek Shukla</title>
	<atom:link href="http://www.abhishekshukla.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.abhishekshukla.com</link>
	<description>This is one stop shop for technology and gadget information</description>
	<lastBuildDate>Wed, 22 May 2013 11:09:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>HTML 5 Datalist Knockout  Auto Complete Text Box</title>
		<link>http://www.abhishekshukla.com/javascript/html-5-datalist-knockout-auto-complete-text-box-2/</link>
		<comments>http://www.abhishekshukla.com/javascript/html-5-datalist-knockout-auto-complete-text-box-2/#comments</comments>
		<pubDate>Wed, 22 May 2013 10:42:54 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Knockout]]></category>
		<category><![CDATA[Auto Complete]]></category>
		<category><![CDATA[Datalist]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[TextBox]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3732</guid>
		<description><![CDATA[Hi Guys, &#160; In this post i am going to talk about how we could create an auto complete text box in HTML5 using DataList. Also we will see how we could use knockout to bind an observable array to the auto complete list. Then we will populate the data depending upon the selection of [...]]]></description>
				<content:encoded><![CDATA[<p>Hi Guys,</p>
<p>&nbsp;</p>
<p>In this post i am going to talk about how we could create an auto complete text box in HTML5 using DataList. Also we will see how we could use knockout to bind an observable array to the auto complete list. Then we will populate the data depending upon the selection of a user.</p>
<p>The first thing that we need to do is add a Scripts folder and then download the <a target="_blank" href="http://knockoutjs.com/">knockout.js</a> into that folder. Then we will include the knockout.js script file into our html page.</p>
<div class="woo-sc-hr"></div>
<p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;HTML 5 Datalist Knockout Auto Complete Text Box&lt;/title&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;Scripts/knockout-2.2.1.js&#8221; &gt;&lt;/script&gt;</p>
<p>&lt;/body&gt;</p>
<p><em id="__mceDel">&lt;/html&gt;</em></p>
<div class="woo-sc-hr"></div>
<p>Now just below the script tag add another script tag. In this script tag we will define our view model with which we will bind our html view.</p>
<div class="woo-sc-hr"></div>
<p>&lt;script type=&#8221;text/javascript&#8221; &gt;<br />
function userViewModel () {<br />
this.users = ko.observableArray();<br />
this.username = ko.observable(&#8221;);</p>
<p>this.users.push(&#8220;Abhishek Shukla&#8221;); this.users.push(&#8220;user 1&#8243;); this.users.push(&#8220;user 11&#8243;);<br />
this.users.push(&#8220;user 2&#8243;); this.users.push(&#8220;user 22&#8243;);</p>
<p>this.currentUser = {<br />
firstName: ko.observable(&#8221;),<br />
lastName: ko.observable(&#8221;),<br />
address: ko.observable(&#8221;)<br />
};</p>
<p>this.setUser = function () {<br />
if (this.username() !== &#8221;) {<br />
this.setCurrentUser(this.username());<br />
}<br />
}.bind(this);</p>
<p>this.setCurrentUser = function (username) {<br />
var userFullName = username.split(&#8216; &#8216;);<br />
this.currentUser.firstName(userFullName[0]);<br />
this.currentUser.lastName(userFullName[1]);<br />
this.currentUser.address(&#8220;Gurgaon, India&#8221;);<br />
}.bind(this);<br />
};<br />
ko.applyBindings(new userViewModel());<br />
&lt;/script&gt;</p>
<div class="woo-sc-hr"></div>
<p>Now that our ViewModel is ready we will create a view and bind it to the ViewModel properties and events.</p>
<p>&lt;p&gt;Type User Name :<br />
&lt;input list=&#8221;Employees1&#8243; data-bind=&#8221;value: username, onchange: setUser()&#8221; type=&#8221;text&#8221; /&gt;<br />
&lt;datalist id=&#8221;Employees1&#8243; data-bind=&#8221;foreach: users&#8221;&gt;<br />
&lt;option data-bind=&#8221;text: $data&#8221;&gt;&lt;/option&gt;<br />
&lt;/datalist&gt;<br />
&lt;/p&gt;<br />
&lt;p&gt;First Name : &lt;span data-bind=&#8221;text: currentUser.firstName&#8221; /&gt;&lt;/p&gt;<br />
&lt;p&gt;Last Name : &lt;span data-bind=&#8221;text: currentUser.lastName&#8221; /&gt; &lt;/p&gt;<br />
&lt;p&gt;Address : &lt;span data-bind=&#8221;text: currentUser.address&#8221; /&gt; &lt;/p&gt;</p>
<div class="woo-sc-hr"></div>
<p>Any questions, comments, feedback are most welcome.</p>
<p>The complete source code can downloaded from <a target="_blank" href="https://skydrive.live.com/redir?resid=588C14136FADC416!260">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/javascript/html-5-datalist-knockout-auto-complete-text-box-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Collections in .NET</title>
		<link>http://www.abhishekshukla.com/net-2/working-with-collections-in-net/</link>
		<comments>http://www.abhishekshukla.com/net-2/working-with-collections-in-net/#comments</comments>
		<pubDate>Sun, 28 Apr 2013 04:53:58 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[ArrayList]]></category>
		<category><![CDATA[Dictionary]]></category>
		<category><![CDATA[Enumerator]]></category>
		<category><![CDATA[Generic Classes]]></category>
		<category><![CDATA[Generic Methods]]></category>
		<category><![CDATA[Hashtable]]></category>
		<category><![CDATA[ICollection]]></category>
		<category><![CDATA[IDictionary]]></category>
		<category><![CDATA[IEnumerable]]></category>
		<category><![CDATA[IList]]></category>
		<category><![CDATA[List]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3719</guid>
		<description><![CDATA[Hi, In the session we will have a look at how to what are the various collections available in  .NET. And how could we use them. We will be covering the following topics o List and Dictionary o ArrayList and HashTable o Generic Classes &#38; Methods o IEnumerable and IEnumerator Apparently the guys did not [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>In the session we will have a look at how to what are the various collections available in  .NET. And how could we use them. We will be covering the following topics</p>
<p>o List and Dictionary<br />
o ArrayList and HashTable<br />
o Generic Classes &amp; Methods<br />
o IEnumerable and IEnumerator</p>
<p>Apparently the guys did not pay me for the job they hired me for so i am sharing the video for free with everyone out there.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='385' src='http://www.youtube.com/embed/3zFyeS00-Tg?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>The full source code of the module is available here.</p>
<p>Any questions, comments and feedback are most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/net-2/working-with-collections-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Phone App : Truth or Dare</title>
		<link>http://www.abhishekshukla.com/windows-phone-7-2/windows-phone-app-truth-or-dare/</link>
		<comments>http://www.abhishekshukla.com/windows-phone-7-2/windows-phone-app-truth-or-dare/#comments</comments>
		<pubDate>Sun, 21 Apr 2013 19:53:40 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[Mango]]></category>
		<category><![CDATA[My Works]]></category>
		<category><![CDATA[Windows Phone 7 Development]]></category>
		<category><![CDATA[WP7 App]]></category>
		<category><![CDATA[WP7 Apps]]></category>
		<category><![CDATA[Accelerometer]]></category>
		<category><![CDATA[Windows Phone 7]]></category>
		<category><![CDATA[WP7]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3711</guid>
		<description><![CDATA[Hi, &#160; Have a look at latest windows phone application that i developed for a client. &#160; This application makes uses of Accelerometer feature available on Windows Phone. &#160; &#160; The source code of the application will be made available on demand and could also be customized if needed. &#160; Any comments and feedback are most [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>&nbsp;</p>
<p>Have a look at latest windows phone application that i developed for a client.</p>
<p>&nbsp;</p>
<p>This application makes uses of Accelerometer feature available on Windows Phone.</p>
<p>&nbsp;</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='385' src='http://www.youtube.com/embed/uCmNMVaE6s8?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>&nbsp;</p>
<p>The source code of the application will be made available on demand and could also be customized if needed.</p>
<p>&nbsp;</p>
<p>Any comments and feedback are most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/windows-phone-7-2/windows-phone-app-truth-or-dare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Developing Console Application &#8211; .NET Video Training Series</title>
		<link>http://www.abhishekshukla.com/net-2/developing-console-application-net-video-training-series/</link>
		<comments>http://www.abhishekshukla.com/net-2/developing-console-application-net-video-training-series/#comments</comments>
		<pubDate>Sun, 10 Mar 2013 22:02:02 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Building Project]]></category>
		<category><![CDATA[Command Line Parameters]]></category>
		<category><![CDATA[Compiling Project]]></category>
		<category><![CDATA[Main method]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3696</guid>
		<description><![CDATA[Hi, In the session we will have a look at how to develop console applications using .NET. We will be covering the following topics o Entry point method – Main o Command Line Parameters o Compiling and Building Projects Apparently the guys did not pay me for the job they hired me for so i [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>In the session we will have a look at how to develop console applications using .NET. We will be covering the following topics</p>
<p>o	Entry point method – Main<br />
o	Command Line Parameters<br />
o	Compiling and Building Projects </p>
<p>Apparently the guys did not pay me for the job they hired me for so i am sharing the video for free with everyone out there.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='385' src='http://www.youtube.com/embed/I6zLFfV6pCs?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>The full source code of the module is available here.</p>
<p>Any questions, comments and feedback are most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/net-2/developing-console-application-net-video-training-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with Classes and Objects &#8211; .NET Video Training Series</title>
		<link>http://www.abhishekshukla.com/net-2/working-with-classes-and-objects-in-net/</link>
		<comments>http://www.abhishekshukla.com/net-2/working-with-classes-and-objects-in-net/#comments</comments>
		<pubDate>Sun, 10 Mar 2013 19:34:28 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Anonymous Methods]]></category>
		<category><![CDATA[Anonymous Types]]></category>
		<category><![CDATA[Attributes]]></category>
		<category><![CDATA[Constructors]]></category>
		<category><![CDATA[Destructors]]></category>
		<category><![CDATA[Extension Methods]]></category>
		<category><![CDATA[Garbage Collection]]></category>
		<category><![CDATA[Indexers]]></category>
		<category><![CDATA[Inner Classes]]></category>
		<category><![CDATA[Memory Management]]></category>
		<category><![CDATA[Method Overloading]]></category>
		<category><![CDATA[Methods]]></category>
		<category><![CDATA[Operator Overloading]]></category>
		<category><![CDATA[Partial Classes]]></category>
		<category><![CDATA[Partial Methods]]></category>
		<category><![CDATA[Properties]]></category>
		<category><![CDATA[Static Members]]></category>
		<category><![CDATA[Type Initialize]]></category>
		<category><![CDATA[Variables]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3684</guid>
		<description><![CDATA[Hi, In the session we will have a look at how to Work with Classes and Objects using .NET. We will be covering the following topics o Adding Variables and Methods o Properties and Indexers o Constructors and Destructors o Type Initialize o Extension Methods o Anonymous Types o Memory Management and Garbage Collection o [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>In the session we will have a look at how to Work with Classes and Objects using .NET. We will be covering the following topics</p>
<p>o Adding Variables and Methods<br />
o Properties and Indexers<br />
o Constructors and Destructors<br />
o Type Initialize<br />
o Extension Methods<br />
o Anonymous Types<br />
o Memory Management and Garbage Collection<br />
o Shared / Static Members<br />
o Method Overloading<br />
o Anonymous Methods<br />
o Partial Classes &amp; Methods<br />
o Operator Overloading<br />
o Inner Classes<br />
o Attributes and their Usage</p>
<p><strong>Apparently the guys did not pay me for the job they hired me for so i am sharing the video for free with everyone out there.</strong></p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='385' src='http://www.youtube.com/embed/JsMeA64321o?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>The full source code of the module is available here.</p>
<p>Any questions, comments and feedback are most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/net-2/working-with-classes-and-objects-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essentials of Object-Oriented Programming &#8211; .NET Video Training Series</title>
		<link>http://www.abhishekshukla.com/net-2/essentials-of-object-oriented-programming-using-net/</link>
		<comments>http://www.abhishekshukla.com/net-2/essentials-of-object-oriented-programming-using-net/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 22:07:00 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Behavior]]></category>
		<category><![CDATA[Class Definition]]></category>
		<category><![CDATA[Encapsulation]]></category>
		<category><![CDATA[Identity]]></category>
		<category><![CDATA[Inheritance]]></category>
		<category><![CDATA[Object]]></category>
		<category><![CDATA[OOPS]]></category>
		<category><![CDATA[Polymorphism]]></category>
		<category><![CDATA[State]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3675</guid>
		<description><![CDATA[Hi, In the session we will have a look at Object-Oriented Programming using .NET. We will be covering the following topics o Object and Class Definition o Understanding Identity, State, and Behavior o Using encapsulation to combine methods and data in a single class o Inheritance and Polymorphism. Apparently the guys did not pay me [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>In the session we will have a look at Object-Oriented Programming using .NET. We will be covering the following topics</p>
<p>o Object and Class Definition<br />
o Understanding Identity, State, and Behavior<br />
o Using encapsulation to combine methods and data in a single class<br />
o Inheritance and Polymorphism.</p>
<p><strong>Apparently the guys did not pay me for the job they hired me for so i am sharing the video for free with everyone out there.</strong></p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='385' src='http://www.youtube.com/embed/FLm063JBEqs?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>The full source code of the module is available here.</p>
<p>Any questions, comments and feedback are most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/net-2/essentials-of-object-oriented-programming-using-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Language Basics &#8211; .NET Video Training Series</title>
		<link>http://www.abhishekshukla.com/net-2/net-language-basics/</link>
		<comments>http://www.abhishekshukla.com/net-2/net-language-basics/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 05:12:08 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Arrays]]></category>
		<category><![CDATA[Boxing]]></category>
		<category><![CDATA[Data Types]]></category>
		<category><![CDATA[Functions]]></category>
		<category><![CDATA[Operators]]></category>
		<category><![CDATA[Procedures]]></category>
		<category><![CDATA[Statements]]></category>
		<category><![CDATA[StringBuilder]]></category>
		<category><![CDATA[Strings]]></category>
		<category><![CDATA[Unboxing]]></category>
		<category><![CDATA[Variables]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3673</guid>
		<description><![CDATA[Hi, In the session we will have a look at .NET Language Basics. We will be covering the following topics - Variables and Data Types - String &#38; StringBuilder - Boxing and Unboxing - Operators - Statements - Arrays and Strings - Procedures and Functions Apparently the guys did not pay me for the job [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>In the session we will have a look at .NET Language Basics. We will be covering the following topics</p>
<p>- Variables and Data Types<br />
- String &amp; StringBuilder<br />
- Boxing and Unboxing<br />
- Operators<br />
- Statements<br />
- Arrays and Strings<br />
- Procedures and Functions</p>
<p><strong>Apparently the guys did not pay me for the job they hired me for so i am sharing the video for free with everyone out there.</strong></p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='385' src='http://www.youtube.com/embed/OW8GZ_pLUVY?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>The full source code of the module is available here.</p>
<p>Any questions, comments and feedback are most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/net-2/net-language-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft .NET Framework &#8211; .NET Video Training Series</title>
		<link>http://www.abhishekshukla.com/net-2/microsoft-net-framework-net-video-training-series/</link>
		<comments>http://www.abhishekshukla.com/net-2/microsoft-net-framework-net-video-training-series/#comments</comments>
		<pubDate>Sun, 17 Feb 2013 14:22:41 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[My Works]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Architecture of .NET Framework]]></category>
		<category><![CDATA[CardSpace]]></category>
		<category><![CDATA[Common Language Specification (CLS)]]></category>
		<category><![CDATA[Common Type System (CTS)]]></category>
		<category><![CDATA[MS.NET Assemblies and Modules]]></category>
		<category><![CDATA[MS.NET Base Classes Framework]]></category>
		<category><![CDATA[MS.NET Memory Management / Garbage Collection]]></category>
		<category><![CDATA[MSIL / Metadata and PE files]]></category>
		<category><![CDATA[Security Manager]]></category>
		<category><![CDATA[The .NET Framework - an Overview]]></category>
		<category><![CDATA[The Common Language Runtime (CLR)]]></category>
		<category><![CDATA[Types of Applications which can be developed using MS.NET]]></category>
		<category><![CDATA[Types of JIT Compilers]]></category>
		<category><![CDATA[Windows Communication Framework [WCF]]]></category>
		<category><![CDATA[Windows Presentation Framework [WPF]]]></category>
		<category><![CDATA[Windows Workflow Framework [WF]]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3660</guid>
		<description><![CDATA[Hi, In the session we will have a look at the following topics - The .NET Framework &#8211; an Overview - Architecture of .NET Framework - Types of Applications which can be developed using MS.NET - MSIL / Metadata and PE files - The Common Language Runtime (CLR) - Common Type System (CTS) - Common [...]]]></description>
				<content:encoded><![CDATA[<p>Hi,</p>
<p>In the session we will have a look at the following topics</p>
<p>- The .NET Framework &#8211; an Overview<br />
- Architecture of .NET Framework<br />
- Types of Applications which can be developed using MS.NET<br />
- MSIL / Metadata and PE files<br />
- The Common Language Runtime (CLR)<br />
- Common Type System (CTS)<br />
- Common Language Specification (CLS)<br />
- Types of JIT Compilers<br />
- Security Manager<br />
- MS.NET Memory Management / Garbage Collection<br />
- MS.NET Base Classes Framework<br />
- MS.NET Assemblies and Modules<br />
- Windows Workflow Framework [WF]<br />
- Windows Presentation Framework [WPF]<br />
- Windows Communication Framework [WCF]<br />
- CardSpace</p>
<p><strong>Apparently the guys did not pay me for the job they hired me for so i am sharing the video for free with everyone out there.</strong></p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='385' src='http://www.youtube.com/embed/_DiAChgIcNg?version=3&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent' frameborder='0'></iframe></span>
<p>The full source code of the module is available here.</p>
<p>Any questions, comments and feedback are most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/net-2/microsoft-net-framework-net-video-training-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# : CSharp Simple Typing Accuracy Improver Application</title>
		<link>http://www.abhishekshukla.com/codesample/c-csharp-simple-typing-accuracy-improver-application/</link>
		<comments>http://www.abhishekshukla.com/codesample/c-csharp-simple-typing-accuracy-improver-application/#comments</comments>
		<pubDate>Sun, 07 Oct 2012 17:08:23 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[My Works]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[typing app]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3614</guid>
		<description><![CDATA[Hey Guys, I have developed a simple CSharp application that gives you random characters to type and records the key presses and also increases the speed of the letters that come for typing. Have a look at the sceenshot of the app and also the video below. &#160; &#160; &#160; Have a look at the demo [...]]]></description>
				<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://www.abhishekshukla.com/wp-content/uploads/2012/10/3-1024x512.png" width="240" title="C# : CSharp Simple Typing Accuracy Improver Application" alt="3 1024x512 C# : CSharp Simple Typing Accuracy Improver Application" />
		</p><p>Hey Guys,</p>
<p>I have developed a simple CSharp application that gives you random characters to type and records the key presses and also increases the speed of the letters that come for typing.</p>
<p>Have a look at the sceenshot of the app and also the video below.</p>
<p>&nbsp;</p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/10/1.png"><img class="alignnone size-medium wp-image-3617" title="1" src="http://www.abhishekshukla.com/wp-content/uploads/2012/10/1-300x150.png" alt="1 300x150 C# : CSharp Simple Typing Accuracy Improver Application" width="300" height="150" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/10/2.png"><img class="alignnone size-medium wp-image-3618" title="2" src="http://www.abhishekshukla.com/wp-content/uploads/2012/10/2-300x148.png" alt="2 300x148 C# : CSharp Simple Typing Accuracy Improver Application" width="300" height="148" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/10/3.png"><img class="alignnone size-medium wp-image-3619" title="3" src="http://www.abhishekshukla.com/wp-content/uploads/2012/10/3-300x150.png" alt="3 300x150 C# : CSharp Simple Typing Accuracy Improver Application" width="300" height="150" /></a></p>
<p>Have a look at the demo video</p>
<div class='video'><object width='532' height='325'><param name='movie' value='http://www.youtube.com/v/S-v-eU6QoxU'></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='never'></param><embed src='http://www.youtube.com/v/S-v-eU6QoxU' type='application/x-shockwave-flash' allowscriptaccess='never' allowfullscreen='true' width='532' height='325'></embed></object></div>
<p>The source code of the application can be found <a target="_blank" href="https://skydrive.live.com/redir?resid=588C14136FADC416!257">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/codesample/c-csharp-simple-typing-accuracy-improver-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connect to facebook from your Windows Phone (WP7) App</title>
		<link>http://www.abhishekshukla.com/codesample/connect-to-facebook-from-your-windows-phone-wp7-app/</link>
		<comments>http://www.abhishekshukla.com/codesample/connect-to-facebook-from-your-windows-phone-wp7-app/#comments</comments>
		<pubDate>Sun, 30 Sep 2012 21:47:39 +0000</pubDate>
		<dc:creator>Abhishek</dc:creator>
				<category><![CDATA[My Works]]></category>
		<category><![CDATA[WP7 App]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Windows Phone 7]]></category>
		<category><![CDATA[WP7]]></category>

		<guid isPermaLink="false">http://www.abhishekshukla.com/?p=3594</guid>
		<description><![CDATA[Hey guys, I made a simple app using which we can login to our facebook account and add and delete posts. Have a look at the video below to see the features of this WP7 app. Connect to Facebook from your Windows Phone App You can also follow the images below to follow its functionality [...]]]></description>
				<content:encoded><![CDATA[<p style="float:right; margin:0 0 10px 15px; width:240px;">
		<img src="http://www.abhishekshukla.com/wp-content/uploads/2012/09/62.png" width="240" title="Connect to facebook from your Windows Phone (WP7) App" alt="62 Connect to facebook from your Windows Phone (WP7) App" />
		</p><p>Hey guys,</p>
<p>I made a simple app using which we can login to our facebook account and add and delete posts.</p>
<p>Have a look at the video below to see the features of this WP7 app.</p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/09/part1.mp4">Connect to Facebook from your Windows Phone App</a></p>
<p>You can also follow the images below to follow its functionality</p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/09/13.png"><img class="alignnone size-medium wp-image-3600" title="1" src="http://www.abhishekshukla.com/wp-content/uploads/2012/09/13-165x300.png" alt="13 165x300 Connect to facebook from your Windows Phone (WP7) App" width="165" height="300" /></a></p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/09/22.png"><img class="alignnone size-medium wp-image-3601" title="2" src="http://www.abhishekshukla.com/wp-content/uploads/2012/09/22-170x300.png" alt="22 170x300 Connect to facebook from your Windows Phone (WP7) App" width="170" height="300" /></a></p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/09/32.png"><img class="alignnone size-medium wp-image-3602" title="3" src="http://www.abhishekshukla.com/wp-content/uploads/2012/09/32-168x300.png" alt="32 168x300 Connect to facebook from your Windows Phone (WP7) App" width="168" height="300" /></a></p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/09/42.png"><img class="alignnone size-medium wp-image-3603" title="4" src="http://www.abhishekshukla.com/wp-content/uploads/2012/09/42-168x300.png" alt="42 168x300 Connect to facebook from your Windows Phone (WP7) App" width="168" height="300" /></a></p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/09/52.png"><img class="alignnone size-medium wp-image-3604" title="5" src="http://www.abhishekshukla.com/wp-content/uploads/2012/09/52-168x300.png" alt="52 168x300 Connect to facebook from your Windows Phone (WP7) App" width="168" height="300" /></a></p>
<p><a href="http://www.abhishekshukla.com/wp-content/uploads/2012/09/62.png"><img class="alignnone size-medium wp-image-3605" title="6" src="http://www.abhishekshukla.com/wp-content/uploads/2012/09/62-167x300.png" alt="62 167x300 Connect to facebook from your Windows Phone (WP7) App" width="167" height="300" /></a></p>
<p>The souce code for the app can be downloaded <a target="_blank" href="https://skydrive.live.com/redir?resid=588C14136FADC416!256">here</a>.</p>
<p>Any feedback or comments are most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.abhishekshukla.com/codesample/connect-to-facebook-from-your-windows-phone-wp7-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.abhishekshukla.com/wp-content/uploads/2012/09/part1.mp4" length="247558" type="video/mp4" />
		</item>
	</channel>
</rss>
