<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
<title>Samprada's Digital Home (Best viewed in Firefox)</title>
<link>http://infoinquisitv.multiply.com/</link>
<description>&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;center&gt;&lt;b&gt;Visitors&lt;/b&gt;
&lt;img src="http://www.easycounter.com/counter.php?sampradan" alt="Web Counters" border="0"&gt;
&lt;b&gt;&lt;i&gt;"Smile is a Curve that can set a lot of things straight" 
So... Keep smiling and life will smile back at you.&lt;/i&gt;&lt;/b&gt;&lt;/center&gt;
&lt;p&gt;&lt;/p&gt;&lt;center&gt;&lt;a target="_blank" href="http://feeds.feedburner.com/%7Er/SampradaN/%7E6/2"&gt;&lt;img src="http://feeds.feedburner.com/SampradaN.2.gif" alt="Samprada N (Best viewed using Firefox)" style="border: 0pt none;"&gt;&lt;/a&gt;
&lt;right&gt;&lt;a href="http://feeds.feedburner.com/SampradaN" title="Subscribe to my feed" rel="alternate" type="application/rss+xml"&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://feeds.feedburner.com/SampradaN" rel="alternate" type="application/rss+xml"&gt;&lt;img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" alt="" style="vertical-align: middle;border: 0pt none;"&gt;&lt;/a&gt;&lt;a href="http://feeds.feedburner.com/SampradaN" rel="alternate" type="application/rss+xml"&gt;Subscribe&lt;/a&gt;&lt;a target="_blank" href="http://feeds.feedburner.com/%7Er/SampradaN/%7E6/1"&gt;&lt;/a&gt;&lt;/right&gt;&lt;a target="_blank" href="http://feeds.feedburner.com/%7Er/SampradaN/%7E6/1"&gt;&lt;br&gt;&lt;/a&gt; &lt;/center&gt;

&lt;center&gt;&lt;b&gt;&lt;i&gt;&lt;font color="Green"&gt;Guestbook: Non-multiply Users&lt;/font&gt;&lt;/i&gt;&lt;/b&gt;&lt;br&gt;&lt;a href="http://infoinquisitv.multiply.com/feed.rss"&gt;&lt;img src="http://images.infoinquisitv.multiply.com/image/2/photos/13/500x500/1/SampradaMultiplyRSS.JPG?et=vUV2LPo%2CxCOZoFZs93YHGg&amp;amp;nmid=342333734" width="90px" border="none" height="40px"&gt;&lt;/a&gt;
&lt;div&gt;&lt;embed allowscriptaccess="never" src="http://widget-3f.slide.com/widgets/slidemap.swf" type="application/x-shockwave-flash" quality="high" scale="noscale" salign="l" wmode="transparent" flashvars="cy=h5&amp;amp;il=1&amp;amp;channel=2738188573476512319&amp;amp;site=widget-3f.slide.com" style="width: 450px;height: 425px;" name="flashticker" align="middle"&gt;&lt;div style="width: 450px;text-align: left;"&gt;&lt;/div&gt;&lt;/div&gt;&lt;/center&gt;&lt;p&gt;&lt;/p&gt;&lt;center&gt;&lt;div style="border: 2px solid rgb(255, 191, 0);width: 215px;"&gt;&lt;div style="padding: 10px;"&gt;&lt;a href="http://www.akshayapatra.org/"&gt;&lt;img src="http://www.akshayapatra.org/images/akp%20logo%20%281%29.png" alt="Unlimited Food for Education" width="192" border="0"&gt;&lt;/a&gt;&lt;br&gt; &lt;div class="mid-content"&gt;&lt;div align="center"&gt;&lt;strong&gt;&lt;img src="http://www.akshayapatra.org/sites/default/files/images/number.jpg"&gt;&lt;br&gt;Children are being fed everyday!&lt;br&gt;I donated and made a difference!&lt;br&gt;YOU can do it too.&lt;br&gt;&lt;/strong&gt;&lt;br&gt; &lt;/div&gt;  &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/center&gt;
</description>
<pubDate>Fri, 1 Jun 2012 19:19:20 -0000</pubDate>
<lastBuildDate>Fri, 1 Jun 2012 18:10:00 -0000</lastBuildDate>

<image><link>http://creativecommons.org/licenses/by/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SampradaN" /><feedburner:info uri="sampradan" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by/3.0/</creativeCommons:license><feedburner:emailServiceId>SampradaN</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
<title>Singleton Vs Static Classes</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/zPJBe_-2WmI/Singleton_Vs_Static_Classes</link>
<description>I've been asked by a lot people why not use Static Classes over the Singleton pattern.&lt;br&gt;There are a couple of reasons.&lt;br&gt;&lt;br&gt;Static classes are not that flexible and may not scale up with scope.&lt;br&gt;&lt;ul&gt;&lt;li&gt;Static classes must have static members&lt;/li&gt;&lt;li&gt;As far as performance is concerned, static classes are lazily initialized and static constructors are slower&lt;/li&gt;&lt;li&gt;As the system grows and you require to use polymorphism, derived classes and APIs, the problems of static classes start to show up.&lt;/li&gt;&lt;li&gt;Inheritance is not possible with static classes. Static methods cannot be overriden. Use of APIs is not possible as you cannot create static methods.&lt;/li&gt;&lt;li&gt;And all of this done to avoid creation of multiple instances of a class????&lt;/li&gt;&lt;/ul&gt;So does that mean we cannot use Static classes??&lt;br&gt;Did you know that System.Convert in .Net is a static class? There are several others in .Net which can be added to this list.&lt;br&gt;The question is when to use it?&lt;br&gt;It can be used to store global data, which may not get too complex when scaled up.&lt;br&gt;This decision is best tak...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=zPJBe_-2WmI:xU1jpxLoy2U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/zPJBe_-2WmI" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/139/Singleton_Vs_Static_Classes</guid>
<pubDate>Fri, 1 Jun 2012 18:10:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/139/Singleton_Vs_Static_Classes</feedburner:origLink></item>
<item>
<title>The Importance of API Based Development</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/Q4dlyUxFpjw/The_Importance_of_API_Based_Development</link>
<description>&lt;font color="#000099"&gt;&lt;font&gt;This(at the end of this blog) is a very good link for understanding why API based development is really important.&lt;/font&gt;&lt;/font&gt;&lt;font color="#000099"&gt;&lt;br&gt;&lt;/font&gt;&lt;font color="#000099"&gt;To give you the gist, lets assume that you have developed a game on Windows based environment.&lt;/font&gt;&lt;br&gt;&lt;font color="#000099"&gt;It works great, but now you wish to expand the scope and make it available&amp;nbsp;&lt;/font&gt;&lt;font color="#000099"&gt;1. As a web-based game&lt;/font&gt;&lt;font color="#000099"&gt;2. Make it compatible with Iphone, Windows Phone, Andriod&lt;/font&gt;&lt;br&gt;&lt;font color="#000099"&gt;&lt;br&gt;&lt;/font&gt;&lt;font color="#000099"&gt;Think about it, would you actually re-code the entire application?? This is where API (Application Programming Interface) shows its magic!&lt;/font&gt;&lt;br&gt;&lt;font color="#000099"&gt;There's a lot to it, which you would find in the following link, before actually starting implementation. The better the architecture, the more robust the application becomes.&lt;/font&gt;&lt;br&gt;&lt;a href="http://www.makeuseof.com/tag/api-good-technology-explained/"&gt;http://www.makeuseof.com/tag/api-good-technology-explained/&lt;/a&gt;&lt;br&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=Q4dlyUxFpjw:EpNn0gKwX9w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/Q4dlyUxFpjw" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/138/The_Importance_of_API_Based_Development</guid>
<pubDate>Mon, 16 Apr 2012 11:21:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/138/The_Importance_of_API_Based_Development</feedburner:origLink></item>
<item>
<title>Target Framework: .Net 4 Client Profile Vs .Net Framework (Full)</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/wEtdxoeRmEk/Target_Framework_.Net_4_Client_Profile_Vs_.Net_Framework_Full</link>
<description>&lt;font color="#000099"&gt;Just started using VS 2010 Framework.&lt;/font&gt;&lt;font color="#000099"&gt;&lt;br&gt;&lt;/font&gt;&lt;font color="#000099"&gt;There's one important thing I found. Here I was creating a console application and trying to add the System.Web reference.&lt;/font&gt;&lt;br&gt;&lt;font color="#000099"&gt;I was amazed to not find this as a part of default .Net references provided by VS 2010.&lt;/font&gt;&lt;font color="#000099"&gt;&lt;br&gt;&lt;/font&gt;&lt;font color="#000099"&gt;While I was troubleshooting this issue, I&amp;nbsp;suddenly&amp;nbsp;noticed that the Target framework was .Net 4 Client Profile.&lt;/font&gt;&lt;br&gt;&lt;font color="#000099" face="Arial, &amp;#39;Liberation Sans&amp;#39;, &amp;#39;DejaVu Sans&amp;#39;, sans-serif"&gt;&lt;b&gt;What is .Net 4 &lt;i&gt;Client Profile&lt;/i&gt;&lt;/b&gt;:&amp;nbsp;&lt;/font&gt;&lt;br&gt;&lt;font color="#000099" face="Arial, &amp;#39;Liberation Sans&amp;#39;, &amp;#39;DejaVu Sans&amp;#39;, sans-serif"&gt;It is a subset of the .Net 4 Framework. It is optimized for developing client applications&lt;/font&gt;&lt;br&gt;&lt;br&gt;BTW, this is the default target framework when you create a project (not &lt;a href="http://asp.net"&gt;asp.net&lt;/a&gt; website).&lt;br&gt;&lt;font color="#000099" face="Arial, &amp;#39;Liberation Sans&amp;#39;, &amp;#39;DejaVu Sans&amp;#39;, sans-serif"&gt;&lt;br&gt;&lt;/font&gt;&lt;font color="#000099" face="Arial, &amp;#39;Liberation Sans&amp;#39;, &amp;#39;DejaVu Sans&amp;#39;, sans-serif"&gt;Now, &lt;b&gt;Why was this difference introduced?&lt;/b&gt;&lt;/font&gt;&lt;br&gt;&lt;font color="#000099" face="Arial, &amp;#39;Liberation Sans&amp;#39;, &amp;#39;DejaVu Sans&amp;#39;, sans-serif"&gt;I can really come out with two of the following&lt;/font&gt;&lt;br&gt;&lt;ol&gt;&lt;li&gt;We create windows, console applications. We may want to explicitly deny some of the .Net features such as Asp.Net on the client machines,&amp;nbsp;maybe due to some security reasons or some corporate policy.&lt;/li&gt;&lt;br&gt;&lt;li&gt;The difference is the size of these packages. The client profile package is obviously more compact and helps in a faster ...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=wEtdxoeRmEk:DbIZ-WXbL84:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/wEtdxoeRmEk" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/137/Target_Framework_.Net_4_Client_Profile_Vs_.Net_Framework_Full</guid>
<pubDate>Fri, 6 Apr 2012 06:07:29 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/137/Target_Framework_.Net_4_Client_Profile_Vs_.Net_Framework_Full</feedburner:origLink></item>
<item>
<title>Delegates Vs Lamba Expressions</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/BU3-nnwlMAg/Delegates_Vs_Lamba_Expressions</link>
<description>To put this post in the simplest form, this is how a Delegate and Lambda Expressions are related.&lt;br&gt;&lt;br&gt;This is one of the favourite interview questions for C#, .Net skills. Delegates Vs Events Vs Lambda Expressions. Please refer the following link for more details.&lt;br&gt;&lt;a href="http://morkalork.com/mork/article/128/How_and_why_to_use_delegates_in_C"&gt;http://morkalork.com/mork/article/128/How_and_why_to_use_delegates_in_C&lt;/a&gt;&lt;br&gt; &lt;br&gt;&lt;img src="http://admin.morkalork.com/uploads/images/csharp/DelegateToLamdba.png" alt="The difference between delegates and lambda" title="The difference between delegates and lambda"&gt; &lt;br&gt; &lt;br&gt;&lt;br&gt;&lt;img src="file:///C:/DOCUME%7E1/nagasubs/LOCALS%7E1/Temp/moz-screenshot-11.png" alt=""&gt;&lt;img src="file:///C:/DOCUME%7E1/nagasubs/LOCALS%7E1/Temp/moz-screenshot-12.png" alt=""&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=BU3-nnwlMAg:2RZDPMHUSV8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/BU3-nnwlMAg" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/135/Delegates_Vs_Lamba_Expressions</guid>
<pubDate>Thu, 29 Mar 2012 18:50:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/135/Delegates_Vs_Lamba_Expressions</feedburner:origLink></item>
<item>
<title>Understanding Events through the Observer Pattern</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/LQ8BWthB1Rw/Understanding_Events_through_the_Observer_Pattern</link>
<description>Delegates and Events have eventually evolved from the Observer Pattern.&lt;br&gt;The analogy given is movie (Object), person (Object). Where the person is interested in knowing the&lt;br&gt;1. Movie Start Time (Event. The person wants to subscribe to)&lt;br&gt;2. Interval (Event. The person wants to subscribe to)&lt;br&gt;3. Movie End Time (Event. The person wants to subscribe to)&lt;br&gt;&lt;br&gt;This is a recommended read.&lt;br&gt;&lt;br&gt;&lt;a href="http://www.c-sharpcorner.com/UploadFile/rmcochran/csharp_events01292006081130AM/csharp_events.aspx" target="_blank" rel="nofollow nofollow"&gt;http://www.c-sharpcorner.com/UploadFile/rmcochran/csharp_events01292006081130AM/csharp_events.aspx&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=LQ8BWthB1Rw:hz_KdGEWrCA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/LQ8BWthB1Rw" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/134/Understanding_Events_through_the_Observer_Pattern</guid>
<pubDate>Thu, 29 Mar 2012 18:41:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/134/Understanding_Events_through_the_Observer_Pattern</feedburner:origLink></item>
<item>
<title>Const Vs ReadOnly, one of the Best Explanations</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/5PAAqv0Xptc/Const_Vs_ReadOnly_one_of_the_Best_Explanations</link>
<description>Another favourite interview question. But this could be applicable to more than one skills.&lt;br&gt;Please refer the link.&lt;br&gt;&lt;a href="http://geekswithblogs.net/BlackRabbitCoder/archive/2010/07/01/c-fundamentals---what-is-the-difference-between-const-and.aspx" target="_blank" rel="nofollow nofollow"&gt;http://geekswithblogs.net/BlackRabbitCoder/archive/2010/07/01/c-fundamentals---what-is-the-difference-between-const-and.aspx&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=5PAAqv0Xptc:5ON487F3TVE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/5PAAqv0Xptc" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/136/Const_Vs_ReadOnly_one_of_the_Best_Explanations</guid>
<pubDate>Thu, 29 Mar 2012 17:00:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/136/Const_Vs_ReadOnly_one_of_the_Best_Explanations</feedburner:origLink></item>
<item>
<title>Asp.Net: Skin files Vs Css. Which to use?</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/f7Ja9W8LEes/Asp.Net_Skin_files_Vs_Css._Which_to_use</link>
<description>Themes, introduced in Asp.Net 2.0, for achieving a consistent look and feel throughout the website.&lt;br style="font-family: arial,helvetica;"&gt;There are some performance concerns which we must take into consideration before we decide to use skins or Css.&lt;br style="font-family: arial,helvetica;"&gt;&lt;br style="font-family: arial,helvetica;"&gt;Skin files: are used to define the markup of asp.net controls.&lt;br style="font-family: arial,helvetica;"&gt;CSS files: are used to define the html elements, although the asp.net controls ultimately get rendered as html elements.&lt;br style="font-family: arial,helvetica;"&gt;Eg: Using Css&lt;br style="font-family: arial,helvetica;"&gt;&lt;font style="font-family: arial,helvetica;" color="#ff0000"&gt;&lt;font color="#800000"&gt;&amp;lt;asp:Button&amp;nbsp; &lt;/font&gt;runat&lt;font color="#0000ff"&gt;="server" id="Button1"&lt;/font&gt; CssClass&lt;font color="#0000ff"&gt;="customButton"&lt;/font&gt; /&amp;gt;&lt;br&gt;This will be rendered as&lt;br&gt;&lt;/font&gt;&lt;pre style="font-family: arial,helvetica;" id="line18"&gt;&amp;lt;input type="submit" name="Button1" value="" id="Button1" class="customButton" /&amp;gt;&lt;br&gt;&lt;br&gt;Eg: Using Skins (In the skin file)&lt;br&gt;&lt;font color="#ff0000"&gt;&lt;font color="#800000"&gt;&amp;lt;asp:Button&amp;nbsp; &lt;/font&gt;SkinID&lt;font color="#0000ff"&gt;="customStyle"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; runat&lt;font color="#0000ff"&gt;="server"&lt;/font&gt; &lt;/font&gt;Height="35px" Width="75px"       &lt;br&gt;BorderStyle='Solid' BorderWidth='1px' Font-Names='Verdana' Font-Size='11px' ForeColor='White' Font-Bold='true' /&amp;gt;&lt;/font&gt;&lt;br&gt;&lt;br&gt;This will be rendered as,&lt;br&gt;&amp;lt;input type='submit' &lt;br style="font-family: arial,helvetica;"&gt;style='width:75px;height:35px;font-weight:bold;font-size:11px;font-family:Verdana;color:Whi...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=f7Ja9W8LEes:NvNMxuKDKFQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/f7Ja9W8LEes" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/133/Asp.Net_Skin_files_Vs_Css._Which_to_use</guid>
<pubDate>Fri, 9 Mar 2012 12:01:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/133/Asp.Net_Skin_files_Vs_Css._Which_to_use</feedburner:origLink></item>
<item>
<title>Did you Know: C# Generics does not allow parameter type definition in the constructor</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/rdrIbUlOsBI/Did_you_Know_C_Generics_does_not_allow_parameter_type_definition_in_the_constructor</link>
<description>Case: public class Car&amp;lt;T&amp;gt;{ public Car&amp;lt;T&amp;gt;(){}}. Will this compile?&lt;br&gt;&lt;br&gt;No. (Tested for .Net 2.0)&lt;br&gt;The constructor should not have the generic type specification. &lt;br&gt;I have not found a proper interpretation for this, though the following is my own understanding. Any corrections or suggestions are welcome.&lt;br&gt;&lt;br&gt;Imagine what it means when we say, &lt;br&gt;Car&amp;lt;Maruti&amp;gt; car = new Car&amp;lt;Hyundai&amp;gt;(); &lt;br&gt;&lt;br&gt;where,&lt;br&gt;public class Car&amp;lt;T&amp;gt;&lt;br&gt;{&lt;br&gt;&amp;nbsp;&amp;nbsp; //Constructor. &lt;br&gt;&amp;nbsp;&amp;nbsp; //The following definition is not allowed. Why??&lt;br&gt;&amp;nbsp;&amp;nbsp; //If C# allowed inclusion of Type parameters in the constructor as well, then..&lt;br&gt;&amp;nbsp;&amp;nbsp; public Car&amp;lt;U&amp;gt;()&lt;br&gt;&amp;nbsp;&amp;nbsp; {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp; }&lt;br&gt;}&lt;br&gt;This will happen if we add the generic type &amp;lt;T&amp;gt; to the constructor. The constructor generic type should be the same as the constructor generic type to create the object. &lt;br&gt;The parameterized constructor can include parameters of type T as defined at the class level.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=rdrIbUlOsBI:INiifu5Py6g:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/rdrIbUlOsBI" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/132/Did_you_Know_C_Generics_does_not_allow_parameter_type_definition_in_the_constructor</guid>
<pubDate>Tue, 6 Mar 2012 07:42:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/132/Did_you_Know_C_Generics_does_not_allow_parameter_type_definition_in_the_constructor</feedburner:origLink></item>
<item>
<title>Android phones price list</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/B9nNB3xAzSY/Android_phones_price_list</link>
<description>&lt;a href="http://www.mysmartprice.com/mobile/pricelist/android-mobile-price-list-in-india.html"&gt;http://www.mysmartprice.com/mobile/pricelist/android-mobile-price-list-in-india.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Check this out.. There are Android phones below 5k also&lt;br&gt;&lt;br&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=B9nNB3xAzSY:o7cZXR_hr9k:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/B9nNB3xAzSY" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/131/Android_phones_price_list</guid>
<pubDate>Wed, 23 Nov 2011 10:22:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/131/Android_phones_price_list</feedburner:origLink></item>
<item>
<title>"Select Distinct" in DataTable</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/fqI1Jwsx3aM/Select_Distinct_in_DataTable</link>
<description>&lt;a href="http://sampradan.blogspot.com/2011/10/fetching-distinct-values-from-datatable.html"&gt;http://sampradan.blogspot.com/2011/10/fetching-distinct-values-from-datatable.html&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=fqI1Jwsx3aM:iuuJlpwkfkw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/fqI1Jwsx3aM" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/130/Select_Distinct_in_DataTable</guid>
<pubDate>Fri, 7 Oct 2011 07:16:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/130/Select_Distinct_in_DataTable</feedburner:origLink></item>
<item>
<title>Converting a DataRow[] to DataTable</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/LJ0tpco56vk/Converting_a_DataRow_to_DataTable</link>
<description>&lt;a href="http://sampradan.blogspot.com/2011/10/conversion-datarow-to-datatable-without.html"&gt;http://sampradan.blogspot.com/2011/10/conversion-datarow-to-datatable-without.html&lt;/a&gt;&lt;br&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=LJ0tpco56vk:ek7NU7ZX_as:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/LJ0tpco56vk" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/128/Converting_a_DataRow_to_DataTable</guid>
<pubDate>Wed, 5 Oct 2011 03:03:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/128/Converting_a_DataRow_to_DataTable</feedburner:origLink></item>
<item>
<title>Brain Actuated Technology</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/sT4P2n2Npwg/Brain_Actuated_Technology</link>
<description>&lt;br&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=sT4P2n2Npwg:xafY7Y2YOvw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/sT4P2n2Npwg" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/127/Brain_Actuated_Technology</guid>
<pubDate>Mon, 12 Sep 2011 06:50:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/127/Brain_Actuated_Technology</feedburner:origLink></item>
<item>
<title>Visual Studio 2010 Coded UI Test User Guide</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/9U1ccWa3UDk/Visual_Studio_2010_Coded_UI_Test_User_Guide</link>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/links/item/11/Visual_Studio_2010_Coded_UI_Test_User_Guide</guid>
<pubDate>Thu, 8 Sep 2011 09:50:58 -0000</pubDate>
<description>&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=9U1ccWa3UDk:XTaUMbHmRFc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/9U1ccWa3UDk" height="1" width="1"/&gt;</description><feedburner:origLink>http://infoinquisitv.multiply.com/links/item/11/Visual_Studio_2010_Coded_UI_Test_User_Guide</feedburner:origLink></item>
<item>
<title>Just surpassed a terrific traffic jam.. A bunch of cranes moving back-n-forth, in the middle of the road.. as if they were to build all the metros of Bangalore in a day, with the traffic police whining his time, thinking all the time in the world was his own.. Felt like locking the traffic police in the dustbin, throwing off the key, and driving the crane out of the road.. I wonder why these guys pretend to work so much</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/h2C5pMf0E8o/9</link>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/notes/item/9</guid>
<pubDate>Wed, 3 Aug 2011 06:51:41 -0000</pubDate>
<description>&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=h2C5pMf0E8o:V3w06KZQQSY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/h2C5pMf0E8o" height="1" width="1"/&gt;</description><feedburner:origLink>http://infoinquisitv.multiply.com/notes/item/9</feedburner:origLink></item>
<item>
<title>Home | Random Hacks of Kindness</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/lU1RfhvLYRA/Home_Random_Hacks_of_Kindness</link>
<description>This site encourages hacking done for a good cause. Greatly appreciate the efforts of the&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=lU1RfhvLYRA:K_kAVMD7jWw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/lU1RfhvLYRA" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/links/item/10/Home_Random_Hacks_of_Kindness</guid>
<pubDate>Fri, 24 Jun 2011 07:17:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/links/item/10/Home_Random_Hacks_of_Kindness</feedburner:origLink></item>
<item>
<title>Gmail Priority Inbox</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/TIAfpMkVWMc/Gmail_Priority_Inbox</link>
<description>This is a nice new feature introduced by Google, especially if you fall in the category of people receiving loads of email&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=TIAfpMkVWMc:lRZkozH4yMk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/TIAfpMkVWMc" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/video/item/19/Gmail_Priority_Inbox</guid>
<pubDate>Thu, 16 Jun 2011 05:54:38 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/video/item/19/Gmail_Priority_Inbox</feedburner:origLink></item>
<item>
<title>Facebook, Youtube spam</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/Z4OjEwgu6JQ/Facebook_Youtube_spam</link>
<description>This is regarding the recent spam circulating on Facebook, Youtube.&lt;br&gt;Whenever a user clicks on a wall post containing status messages like "I can't believe you are in this vid", "Why do you look so stupid" and the likes, the user is redirected to a url containing the following javascipt.&lt;br&gt;&lt;br&gt;[Courtesy: &lt;a href="http://www.tech18.com/alert-facebook-youtube-spam.html"&gt;http://www.tech18.com/alert-facebook-youtube-spam.html&lt;/a&gt;]&lt;br&gt;Below is the screenshot of the file :&lt;p style="text-align: center;"&gt;&lt;img class="aligncenter size-full wp-image-5481" title="facebook youtube spam javascript" src="http://tech18.speedymirror.com/wp-content/uploads/2011/05/facebook-youtube-spam-javascript.jpg" alt="facebook youtube spam javascript Alert : Facebook Youtube Spam" width="500" height="490"&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Follow the below steps to get rid of this spam&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 1 &lt;/strong&gt;:  Delete that Facebook Wall post so that&amp;nbsp;at least&amp;nbsp;your friends who are  viewing your Facebook wall do not come across to this spam.&lt;/p&gt;&lt;p&gt;&lt;img class="aligncenter size-full wp-image-5483" title="facebook spam remove step 1" src="http://tech18.speedymirror.com/wp-content/uploads/2011/05/facebook-spam-remove-step-1.jpg" alt="facebook spam remove step 1 Alert : Facebook Youtube Spam" width="507" height="186"&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 2&lt;/strong&gt;: Restrict other people from posting on your disabling your friends to post on your wall as shown below. Browse to &lt;strong&gt;Account=&amp;gt;Privacy Settings -&amp;gt; Customize Settings -&amp;gt;&amp;nbsp;Things others share -&amp;gt; Friends can post on my Wall&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;img class="aligncenter size-full wp-image-5484" title="facebook spam remove step 2" src="http://tech18.speedymirror.com/wp-content/uploads/2011/05/facebook-spam-remove-step-2.jpg" alt="facebook spam remove step 2 Alert : Facebook Youtube Spam" width="538" height="278"&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;So friends share this with all your friends to&amp;nbsp;beware&amp;nbsp;of this spam. &lt;/strong&gt;&lt;/p&gt;&lt;/blockquote&gt;      &lt;a href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?username=sampradan&amp;amp;title=Facebook,%0AYoutube%20spam&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/125/Facebook_Youtube_spam&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/facebook.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?username=sampradan&amp;amp;title=Facebook,%0AYoutube%20spam&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/125/Facebook_Youtube_spam&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/twitter.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/forward/email/offer?username=sampradan&amp;amp;%0Atitle=Facebook,%20Youtube%20spam&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/125/Facebook_Youtube_spam&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/email.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?username=sampradan&amp;amp;%0Atitle=Facebook,%20Youtube%20spam&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/125/Facebook_Youtube_spam&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/digg.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?username=sampradan&amp;amp;%0Atitle=Facebook,%20Youtube%20spam&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/125/Facebook_Youtube_spam&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/stumbleupon.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/offer?username=sampradan&amp;amp;%0Atitle=Facebook,%20Youtube%20spam&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/125/Facebook_Youtube_spam&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/more.gif" border="none"&gt;Share&lt;/a&gt;&lt;br&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=Z4OjEwgu6JQ:zvHf0sXg2os:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/Z4OjEwgu6JQ" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/125/Facebook_Youtube_spam</guid>
<pubDate>Wed, 18 May 2011 14:09:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/125/Facebook_Youtube_spam</feedburner:origLink></item>
<item>
<title>Viral Apps/Spam in Facebook:
Please..You can't find out who saw your profile. You won't see what u'll look like in the future. You won't know what that man saw when he walked in on his daughter. There are no free iPads. You can't see the video of Osama's death on FB. And tht's not ME in that video.Please stop clicking the spam links, exposing yourself and friends to virus risks. If you agree re-post this and stop stupidity..get wel soon Facebook</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/-s2YnIndMAQ/8</link>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/notes/item/8</guid>
<pubDate>Wed, 18 May 2011 11:26:37 -0000</pubDate>
<description>&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=-s2YnIndMAQ:X_XCAkIjybQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/-s2YnIndMAQ" height="1" width="1"/&gt;</description><feedburner:origLink>http://infoinquisitv.multiply.com/notes/item/8</feedburner:origLink></item>
<item>
<title>Akshaya Patra:: Unlimited Food for education</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/5uobJpSD_Lw/Akshaya_Patra_Unlimited_Food_for_education</link>
<description>&lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.25&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/1jpg" width="640" height="312"&gt;&lt;br&gt;&lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;b&gt; The kitchen from the outside - &lt;br&gt; a three-storey building which uses Gravity Flow Mechanism developed in-house &lt;br&gt; by our team. Each kitchen has the capacity to cook between 50 000 to 100 000 &lt;br&gt; mid-day meals per day. Costing approximately 9 crores to set up, they are built with funds from public donations.&lt;/b&gt; &lt;br&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.24&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/2jpg" width="640" height="428"&gt;&lt;b&gt;&lt;br&gt; The kitchen from the inside, &lt;br&gt; consisting of rice cauldrons each of which &lt;br&gt; cooks up to 110kg of rice in 20 minutes. &lt;br&gt; Sambar cauldrons cook up to 1200 &lt;br&gt; litres of sambar in two hours.&lt;/b&gt; &lt;br&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.23&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/4jpg" width="640" height="428"&gt;&lt;b&gt;&lt;br&gt; It is washed thoroughly on the 2nd floor&lt;/b&gt; &lt;br&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.22&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/5.jpg" width="632" height="480"&gt;&lt;b&gt;&lt;br&gt; Washed rice is sent down the chute to the &lt;br&gt; 1st floor&lt;/b&gt; &lt;br&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.21&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/6jpg" width="640" height="428"&gt;&lt;b&gt;&lt;br&gt; Rice pours down into steam heated cauldrons &lt;br&gt; for cooking. The entire cooking process &lt;br&gt; takes place on the 1st floor&lt;/b&gt; &lt;br&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.20&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/7jpg" width="640" height="428"&gt;&lt;b&gt;&lt;br&gt; Super heated steam is used &lt;br&gt; to cook food instead of flame.&lt;/b&gt; &lt;br&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.19&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/8jpg" width="640" height="428"&gt;&lt;b&gt;&lt;br&gt; When cooking is finished, it is &lt;br&gt; loaded into trolleys&lt;/b&gt; &lt;br&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.18&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/9jpg" width="636" height="480"&gt;&lt;b&gt;&lt;br&gt; Cooked rice is sent down the chute &lt;br&gt; to the ground floor&lt;/b&gt; &lt;br&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.17&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/10.jpg" width="640" height="428"&gt;&lt;b&gt;&lt;br&gt; It flows down the pipe into containers&lt;/b&gt; &lt;br&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12fe3a9f49ab6f2b&amp;amp;attid=0.0.16&amp;amp;disp=emb&amp;amp;zw" alt="http://www.akshayapatra.org/Centralized1/data/images/11.jpg" width="640" height="428"&gt;&lt;b&gt;&lt;br&gt; Piping hot rice on its way to being &lt;br&gt; loaded into food vans. Around &lt;br&gt; 6000 kiloso...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=5uobJpSD_Lw:8bT38On4t4o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/5uobJpSD_Lw" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/124/Akshaya_Patra_Unlimited_Food_for_education</guid>
<pubDate>Thu, 12 May 2011 13:31:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/124/Akshaya_Patra_Unlimited_Food_for_education</feedburner:origLink></item>
<item>
<title>Caution:: Osama malware illustrations</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/GX0Z5mpaJRs/Caution_Osama_malware_illustrations</link>
<description>The cyber criminals have always taken media and news as a tool to intrude more and more systems accross the world.&lt;br&gt;&lt;br&gt;Osama's death though came out to be an element of surprise / shock, its no surprise that the bad cyber guys have used similar strategies that they used for the Japanese disaster or the calamities and news which have taken place lately.&lt;br&gt;&lt;br&gt;Each of them have used the Viral marketing strategy to tap more systems through social networks other than the legacy methods of email spamming, botnets.&lt;br&gt;&lt;br&gt;A request of caution to all users who may or have fallen prey to such attacks.&lt;br&gt;Do identify the pattern of these attacks. You can refer to the strategies that have been followed in the past in my &lt;a style="text-decoration: underline;font-weight: bold;" href="http://infoinquisitv.multiply.com/journal/item/120/Japanese_Disaster_-_How_cyber_criminals_misused_it"&gt;blog&lt;/a&gt;&lt;br&gt;&lt;br&gt;So, I would really not go through the same strategies again.&lt;br&gt;But to caution you with a few detected illustrations here.&lt;br&gt;&lt;br&gt;&lt;font size="3"&gt;Phishing attacks reported targeted on big brands like CNN (Mexico)&lt;/font&gt;&lt;br&gt;&lt;br&gt;The spam email contains a link to bogus "photos and uncensored videos" which redirects to the user to a phis...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=GX0Z5mpaJRs:6ZPShRDKA7M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/GX0Z5mpaJRs" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/123/Caution_Osama_malware_illustrations</guid>
<pubDate>Thu, 5 May 2011 11:24:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/123/Caution_Osama_malware_illustrations</feedburner:origLink></item>
<item>
<title>Tata pixel: Its out in European markets</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/TOr3Mnx7W0g/Tata_pixel_Its_out_in_European_markets</link>
<description>Tata pixel out in Europe??? Being an Indian company, why is it not in the Indian markets first??&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;  &lt;a href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?username=sampradan&amp;amp;title=Tata%0Apixel:%20Its%20out%20in%20European%20markets&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/122/&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/facebook.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?username=sampradan&amp;amp;title=Tata%0Apixel:%20Its%20out%20in%20European%20markets&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/122/&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/twitter.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/forward/email/offer?username=sampradan&amp;amp;%0Atitle=Tata%20pixel:%20Its%20out%20in%20European%20markets&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/122/&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/email.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/forward/digg/offer?username=sampradan&amp;amp;%0Atitle=Tata%20pixel:%20Its%20out%20in%20European%20markets&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/122/&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/digg.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/forward/stumbleupon/offer?username=sampradan&amp;amp;%0Atitle=Tata%20pixel:%20Its%20out%20in%20European%20markets&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/122/&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/stumbleupon.gif" border="none"&gt;&lt;/a&gt;&lt;a href="http://api.addthis.com/oexchange/0.8/offer?username=sampradan&amp;amp;%0Atitle=Tata%20pixel:%20Its%20out%20in%20European%20markets&amp;amp;url=http://infoinquisitv.multiply.com/journal/item/122/&amp;amp;" target="_blank"&gt;&lt;img src="http://cache.addthiscdn.com/icons/v1/thumbs/more.gif" border="none"&gt;Share&lt;/a&gt;&lt;br&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=TOr3Mnx7W0g:bSSiHi_QCrI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/TOr3Mnx7W0g" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/122/Tata_pixel_Its_out_in_European_markets</guid>
<pubDate>Mon, 2 May 2011 05:10:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/122/Tata_pixel_Its_out_in_European_markets</feedburner:origLink></item>
<item>
<title>Viral Facebook Techniques</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/ExQWTJhqEu4/Viral_Facebook_Techniques</link>
<description>&lt;img class="alignmiddleb" src="http://multiply.com/mu/infoinquisitv/image/tPzTyxS+SJhxr6kW02UJsw/photos/5M/300x300/144/fb-marketing.jpg?et=MnKJ6ZPKByIWtL%2CqKSoUBA&amp;amp;nmid=0" border="0"&gt;Facebook is a platform truly loyal to marketeers and companies / institutions involved in brand endorsement campaigns. It helps a business reach a vast number of audience with minimal manpower marketing effort in a very short span of time.&lt;br&gt;&lt;br&gt;Hey.. wait a moment.. "a very short span of time"?? How?&lt;br&gt;Here's where the viral facebook techniques pitch in.&lt;a href="http://infoinquisitv.multiply.com/photos/hi-res/5M/146"&gt;&lt;img class="alignmiddleb" src="http://multiply.com/mu/infoinquisitv/image/aBcwz8i72y+XEIDTUPxJiw/photos/5M/300x300/146/fb-app.jpg?et=4OZ2bYdsEq8xfQeaFKZALw&amp;amp;nmid=0" border="0"&gt;&lt;/a&gt;&lt;br&gt;Each facebook user has been caught by atleast one viral facebook technique.. mostly unknowingly,&lt;br&gt;You will learn for yourself how.&lt;br&gt;The following techniques could be found useful by marketing professionals trying to reach a target with minimum effort and time,&lt;a href="http://infoinquisitv.multiply.com/photos/hi-res/5M/145"&gt;&lt;img class="alignmiddleb" src="http://multiply.com/mu/infoinquisitv/image/KE27R+VsyHETKFFVOdmAPw/photos/5M/300x300/145/fb-we-build-viral-apps.jpg?et=HNeAAE4gO35A1f7%2CSIZgaA&amp;amp;nmid=0" border="0"&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;font style="font-weight: bold;text-decoration: underline;" size="3"&gt;Invite before Action&lt;/font&gt;&lt;br&gt;&lt;ul&gt;&lt;li&gt;This method forces the facebook user to send application invites to n number of users. &lt;br&gt;&lt;/li&gt;&lt;li&gt;Astonishingly, this technique worked well with a lot of Facebook users. There is an instance of the "Happy Hour" application which turned out to be Facebook's top 13 popular application.&lt;/li&gt;&lt;/ul&gt;&lt;a href="http://infoinquisitv.multiply.com/photos/hi-res/5M/130"&gt;&lt;img style="width: 84px;height: 60px;" class="alignleft" src="http://multiply.com/mu/infoinquisitv/image/BRkoqN+Xo80+xmxhwUZqpg/photos/5M/300x300/130/pin.jpg?et=7uzN2vvI9IPjHPeLKzPQyw&amp;amp;nmid=0" border="0"&gt;&lt;/a&gt;Naturally, the upcoming FB apps followed suite.&lt;br&gt;But, I really do not recommend this method. This may ...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=ExQWTJhqEu4:KrSf_K2I3vo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/ExQWTJhqEu4" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/121/Viral_Facebook_Techniques</guid>
<pubDate>Mon, 18 Apr 2011 17:44:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/121/Viral_Facebook_Techniques</feedburner:origLink></item>
<item>
<title>Lions sleep 18hrs a day!!
If hardwork is the secret to success, then donkey would have been the king of the jungle..
Its not how much you work, rather how you work that makes a difference.</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/DXhuVKBFpAA/7</link>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/notes/item/7</guid>
<pubDate>Mon, 18 Apr 2011 13:54:18 -0000</pubDate>
<description>&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=DXhuVKBFpAA:2fgY--Clz5U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/DXhuVKBFpAA" height="1" width="1"/&gt;</description><feedburner:origLink>http://infoinquisitv.multiply.com/notes/item/7</feedburner:origLink></item>
<item>
<title>Japanese Disaster - How cyber criminals misused it</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/jOediJkREG8/Japanese_Disaster_-_How_cyber_criminals_misused_it</link>
<description>The Japanese series of disasters, which has been one of the saddest starts of the year, and yes we find a bunch of international charitable institutions donating for the cause and requesting the same through social media. &lt;br&gt;Some though not all of them being genuine. Do take a walk-through of how these bad guys take advantage of this event to trouble your systems.&lt;br&gt;&lt;br&gt;These are some of the techniques used by cyber criminals.&lt;br&gt;&lt;ul&gt;&lt;li&gt;SEO poisoning&lt;/li&gt;&lt;li&gt;Rogue AV (anti-virus)&lt;/li&gt;&lt;li&gt;Phishing emails asking for donation&lt;/li&gt;&lt;li&gt;Malicious files attached to emails claiming to be legitimate documents&lt;/li&gt;&lt;li&gt;Facebook apps with CPA (cost per action)&amp;nbsp;lead surveys&lt;/li&gt;&lt;/ul&gt;Though Websense confirms that its customers are protected by the &lt;a style="text-decoration: underline;" href="http://www.websense.com/content/websense-advanced-classification-engine.aspx"&gt;Advanced Classification Engine&lt;/a&gt; analytics.&lt;br&gt;&lt;br&gt;&lt;font size="3"&gt;SEO Poisoning&lt;/font&gt;&lt;br&gt;&lt;br&gt;Its a term for a complex black-hat method of attacking your  computer by using websites that selectively “poison” or infect users  with spyware, viruses, or other malware. SEO Poisoning is different from  other such attacks because it is hard for a search engi...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=jOediJkREG8:8nc7caT5yAQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/jOediJkREG8" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/120/Japanese_Disaster_-_How_cyber_criminals_misused_it</guid>
<pubDate>Wed, 30 Mar 2011 11:55:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/120/Japanese_Disaster_-_How_cyber_criminals_misused_it</feedburner:origLink></item>
<item>
<title>Japan.....What a nation!!!!!!!!!</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/Qcl-HrZfywM/Japan.....What_a_nation</link>
<description>&lt;p class="MsoNormal"&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="text-align: center;line-height: 15pt;background: none repeat scroll 0% 0% white;" align="center"&gt; &lt;img src="https://mail.google.com/mail/?ui=2&amp;amp;ik=09f1c178c0&amp;amp;view=att&amp;amp;th=12f05f0c29a598c0&amp;amp;attid=0.0.1&amp;amp;disp=emb&amp;amp;realattid=a063985b79cba044_0.0.2&amp;amp;zw" width="620" height="260"&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 7.5pt;line-height: 15pt;background: none repeat scroll 0% 0% white;"&gt; The  Picture of gaping chasms in a Japanese road demonstrated the power of  the March 11 earthquake. Now the astonishing speed of reconstruction  highlights Japan’s ability to get back  on its feet.&lt;/p&gt; &lt;p class="MsoNormal" style="margin-bottom: 7.5pt;line-height: 15pt;background: none repeat scroll 0% 0% white;"&gt; Work  began on March 17 and six days later, the cratered section of the Great  Kanto Highway in Naka was as good as new and ready to re- open to  traffic.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=Qcl-HrZfywM:TBaiCHIyIpA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/Qcl-HrZfywM" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/119/Japan.....What_a_nation</guid>
<pubDate>Wed, 30 Mar 2011 09:46:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/119/Japan.....What_a_nation</feedburner:origLink></item>
<item>
<title>Implement File Preview in C#</title>
<link>http://feedproxy.google.com/~r/SampradaN/~3/weKWuQfZ8hI/Implement_File_Preview_in_C</link>
<description>Windows Explorer view in C#..... My first thoughts were of a set of APIs provided by .Net to implement the same.&lt;br&gt;&lt;br&gt;Well, I did check my thought with the web, and yes, a lot of people came to be of the same opinion. I went through one code, which used some shellScript, and the other one was a tool by the name of GhostScript.&lt;br&gt;&lt;br&gt;Sorry to say, that none of them impressed me. Now, there was one project that I found on codeProject.com. Unfortunately, I just lost that link. But, nevertheless let me share this project with you readers. Once I find the link, I shall update it here.&lt;br&gt;&lt;br&gt;The original project comes with the feature that mimics the Windows Vista Explorer view with a preview. Here's the sample output of this project. You can find the project attached with this blog as "FilePreview From CodeProject.zip".&lt;br&gt;&lt;br&gt;&lt;a href="http://infoinquisitv.multiply.com/photos/hi-res/5M/143"&gt;&lt;img style="width: 507px;height: 273px;" class="alignmiddleb" src="http://multiply.com/mu/infoinquisitv/image/enyLVNhmPcnBdKO1Q42dkw/photos/5M/300x300/143/DocExpOutput.JPG?et=2v%2CsylY6d6M5%2Bq%2BUcZtlWQ&amp;amp;nmid=0" border="0"&gt;&lt;/a&gt; &lt;br&gt;&lt;br&gt;I have modified the code so that it can be plugged to an existing application. It would be a single line code-integration, once the properties are correctly set. You can fin...&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/SampradaN?a=weKWuQfZ8hI:3jenj6eLHYE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/SampradaN?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/SampradaN/~4/weKWuQfZ8hI" height="1" width="1"/&gt;</description>
<guid isPermaLink="false">http://infoinquisitv.multiply.com/journal/item/118/Implement_File_Preview_in_C</guid>
<pubDate>Tue, 29 Mar 2011 18:34:00 -0000</pubDate>
<feedburner:origLink>http://infoinquisitv.multiply.com/journal/item/118/Implement_File_Preview_in_C</feedburner:origLink></item>
</channel>
</rss>

