<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:georss="http://www.georss.org/georss" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0"><id>tag:blogger.com,1999:blog-4130027664831941194</id><updated>2009-10-22T14:31:38.273-04:00</updated><title type="text">Flare Kit</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://flarekit.blogspot.com/" /><link rel="hub" href="http://pubsubhubbub.appspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default?start-index=26&amp;max-results=25" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>28</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><link rel="self" href="http://feeds.feedburner.com/FlareKit" type="application/atom+xml" /><feedburner:emailServiceId>FlareKit</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-5195365665438569396</id><published>2008-10-10T10:42:00.006-04:00</published><updated>2008-10-10T18:37:28.439-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="web.config" /><category scheme="http://www.blogger.com/atom/ns#" term="formsauthentication.authenticate" /><category scheme="http://www.blogger.com/atom/ns#" term="response.redirect" /><category scheme="http://www.blogger.com/atom/ns#" term="asp web.config" /><category scheme="http://www.blogger.com/atom/ns#" term="web.config for authentication" /><category scheme="http://www.blogger.com/atom/ns#" term="asp .net web.config" /><title type="text">Using Web.Config for Authentication - ASP .NET Web Application</title><content type="html">&lt;blockquote&gt;&lt;/blockquote&gt;&lt;strong&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;u&gt;&lt;blockquote&gt;&lt;/blockquote&gt;IDE Used: Visual Web Developer 2008&lt;/u&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;  I think for small web application with a few number of application users, storing login credentials in Web.Config file of the web application should be okay, this may not adhere to .Net Web Application best practices but using a database doesn't make sense. I tried reading encrypted login data from a file but it didn't seem like very portable. For some reason, storing login data in Web.Config looks perfect. So here is how you do it:&lt;br /&gt;&lt;br /&gt;1- Open up the Web.Config file of your ASP .Net Web Application&lt;br /&gt;2- Scroll down until you see the xml &lt;em&gt;Authencation &lt;/em&gt;tag.&lt;br /&gt;&lt;span style="color:#000000;"&gt;3- Change that to XML below, please use the valid "&lt;" "&gt;" for xml tags. I have used "[" "]" because blogger wouldn't allow me to display XML on pages.&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;      [authentication mode="Forms"]&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;        [forms loginUrl="default.aspx"]&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;          [credentials passwordFormat="Clear"]&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;            [user name="familyguy" password="peter" /]&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;          [/credentials]&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;        [/forms]&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;      [/authentication]&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;span style="color:#000000;"&gt;But for this work, you need to make some more changes to your .Net Class code which controls the behavior of your Login page. But before I go ahead and show the authentication code, the:&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;&lt;strong&gt;username is : familyguy&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;password is  : peter&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Following is what I added to my C# code that controls the ASP Login page&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;if (FormsAuthentication.Authenticate(usernametextbox.Text, passwordtextbox.Text))           &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt; {                &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;    Response.Redirect("profile.aspx");           &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;  }          &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;The first line of the C# code is the method call which returns a boolean. The method takes in username and password entered by the user in the textboxes (input controls) on the login pages, as input parameters.&lt;/span&gt;&lt;br /&gt;If the correct username / password, &lt;strong&gt;familyguy /  peter&lt;/strong&gt;, is entered, user will gain access to the next page which is "profile.aspx" in my application. Response.Redirect("profile.aspx") in the body of the IF condition of the C# code is responsible for loading the next page in the browser.&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-5195365665438569396?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=MfCabVLxCZQ:0mZtpy0D8xw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=MfCabVLxCZQ:0mZtpy0D8xw:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=MfCabVLxCZQ:0mZtpy0D8xw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=MfCabVLxCZQ:0mZtpy0D8xw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=MfCabVLxCZQ:0mZtpy0D8xw:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=MfCabVLxCZQ:0mZtpy0D8xw:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/5195365665438569396/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=5195365665438569396" title="7 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/5195365665438569396" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/5195365665438569396" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/MfCabVLxCZQ/using-webconfig-for-authentication-asp.html" title="Using Web.Config for Authentication - ASP .NET Web Application" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">7</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/10/using-webconfig-for-authentication-asp.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-4454660644024859180</id><published>2008-10-09T12:40:00.004-04:00</published><updated>2008-10-09T12:48:34.537-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ASP Web application" /><category scheme="http://www.blogger.com/atom/ns#" term="ASP C# Web application" /><category scheme="http://www.blogger.com/atom/ns#" term="Asp c# web application authorized user" /><category scheme="http://www.blogger.com/atom/ns#" term="asp logout" /><category scheme="http://www.blogger.com/atom/ns#" term="asp Request.IsAuthenticated" /><category scheme="http://www.blogger.com/atom/ns#" term="authenticate users in ASP C#" /><category scheme="http://www.blogger.com/atom/ns#" term="asp login" /><title type="text">ASP .NET – Allowing Authenticated users to see web application pages only</title><content type="html">&lt;p class="MsoNormal"&gt;If you have implemented log-in, log-out capability in your ASP based Web Application then one of the main goals is to make sure unauthorized users do not get access to the pages within your web application. In other words, they must first login in order to get access to any information contained in the rest of the pages of the web application&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="mso-tab-count:1"&gt;                &lt;/span&gt;To make my point clear, lets assume we have a web application which is composed of 3 aspx pages:&lt;/p&gt;  &lt;p class="MsoListParagraphCxSpFirst" style="text-indent:-.25in;mso-list:l0 level1 lfo1"&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="mso-bidi-mso-bidi-theme-font:minor-latin;font-family:Calibri;"&gt;&lt;span style="mso-list:Ignore"&gt;&lt;span style="font:7.0pt &amp;quot;Times New Roman&amp;quot;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Login.asp&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Profile.aspx&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Preferences.aspx&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;/p&gt;      &lt;p class="MsoNormal"&gt;And we want user to land on Login.aspx first, enter their username and password and then get redirected to Profile.aspx and after filling out all the fields on Profile.aspx, Preferences.aspx is displayed in the users’ browser.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;Web Server can be configured to take the users directly to my Login.aspx page when they type in the URL of the website, but I noticed that if the users want, then they can directly go to Profile.aspx and Preferences.aspx, something which I do not want to happen.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;How to overcome this problem (assuming your Log-in and Log-out components are implemented correctly). The following piece of code is in C# (c sharp).&lt;/p&gt;  &lt;p class="MsoNormal"&gt;In the&lt;span style="mso-spacerun:yes"&gt;        &lt;/span&gt;&lt;b style="mso-bidi-font-weight:normal"&gt;Page_Load(object sender, EventArgs e) &lt;/b&gt;&lt;span style="mso-spacerun:yes"&gt;       &lt;/span&gt;method in C Sharp Code file associated with your ASPX page, embed your entire logic (code) in the following &lt;b style="mso-bidi-font-weight:normal"&gt;IF&lt;/b&gt; Condition:&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="mso-spacerun:yes"&gt;            &lt;/span&gt;if (Request.IsAuthenticated)&lt;span style="mso-spacerun:yes"&gt;    &lt;/span&gt;//checking if the user trying to access the page is authorized&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left:.5in"&gt;{&lt;br /&gt;&lt;span style="mso-tab-count:2"&gt;       &lt;/span&gt;//your entire Page_Load ( …. ) logic goes here in this IF condition&lt;br /&gt;}&lt;/p&gt;  &lt;p class="MsoNormal" style="text-indent:.5in"&gt;else&lt;/p&gt;  &lt;p class="MsoNormal" style="text-indent:.5in"&gt;{&lt;span style="mso-tab-count:1"&gt;              &lt;/span&gt;&lt;br /&gt;&lt;span style="mso-tab-count:1"&gt;                &lt;/span&gt;&lt;span style="mso-tab-count: 1"&gt;       &lt;/span&gt;Response.Redirect(“login.aspx”) ;&lt;span style="mso-spacerun:yes"&gt;     &lt;/span&gt;//This will take the user to your Login page&lt;br /&gt;&lt;span style="mso-tab-count:1"&gt;             &lt;/span&gt;}&lt;/p&gt;  &lt;span style="line-height:115%;font-family:&amp;quot;Calibri&amp;quot;,&amp;quot;sans-serif&amp;quot;; mso-ascii-theme-font:minor-latin;mso-fareast-font-family:Calibri;mso-fareast-theme-font: minor-latin;mso-hansi-theme-font:minor-latin;mso-bidi-Times New Roman&amp;quot;; mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language: EN-US;mso-bidi-language:AR-SAfont-family:&amp;quot;;font-size:11.0pt;"&gt;If the user is not authenticated, not authorized, then the user will be taken to your default Login.aspx page to enter username/password before accessing any other pages of the application. The “else” condition in the above code snippet is responsible for taking the user to youlogin page, login.aspx&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-4454660644024859180?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=a3-oXi9hViY:LmoMZ6Wxsc0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=a3-oXi9hViY:LmoMZ6Wxsc0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=a3-oXi9hViY:LmoMZ6Wxsc0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=a3-oXi9hViY:LmoMZ6Wxsc0:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=a3-oXi9hViY:LmoMZ6Wxsc0:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/4454660644024859180/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=4454660644024859180" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/4454660644024859180" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/4454660644024859180" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/a3-oXi9hViY/asp-net-allowing-authenticated-users-to.html" title="ASP .NET – Allowing Authenticated users to see web application pages only" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/10/asp-net-allowing-authenticated-users-to.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-6591905675592066168</id><published>2008-10-04T18:27:00.005-04:00</published><updated>2008-10-04T21:28:31.728-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="folliculitis cure" /><category scheme="http://www.blogger.com/atom/ns#" term="Folliculitis" /><category scheme="http://www.blogger.com/atom/ns#" term="Folliculitis medicine" /><category scheme="http://www.blogger.com/atom/ns#" term="Folliculitis alum" /><title type="text">Folliculitis - Found a cure that atleast works for me</title><content type="html">I don't think describing and going into the details of Folliculitis is important, as it's sufferers know exactly what it is and are probably sick and tired of reading the same info on folliculitis again and again.&lt;div&gt;I am suffering with Folliculitis for the past 10 years. The initial area that was affected by Folliculitis were the hair on the back of my head. It was isolated for many years to the left side of the back of the head and that was it. Although it was very mild but persistent, I never really paid much attention to it and occasionally went to my dermatologist who always prescribed antibiotics which always cleared up the infection quickly and prevented re-infection for the next 30 - 40 days and then folliculitis would come back again. What I failed to realize was that everytime it was coming back, it was coming back with a little more force. In other words, it started spreading and its severity was increasing. &lt;/div&gt;&lt;div&gt;That is when I started taking it seriously and started visiting different doctors to see if anyone can come up a with a miracle drug and make my folliculitis go away. Every doctor suggested different antibiotics, some worked, others didn't, the ones that worked eventually stopped working. And after 10 years with folliculitis and taking antibiotics continiously for the past 5 years, my doctor refused to prescribe any more antibiotics and suggested I use topical antibiotics instead. I went to another doctor, who after listening to my story, refused to prescribe any antibiotics also and suggested topical antibiotics. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I dont like the idea of topical antibiotics and never bought the medications they prescribed. My folliculitis was severe than ever, pretty much affecting my entire head. It became very difficult to put my head on the pillow because of the pain.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I would like to mention that I have kept on trying different products such as garlic, honey, vitamins, flax seed, many things to fight folliculitis but nothing ever worked and I would admit, I was not consistent. I would try something for a week or 10 days and if I didnt see any positive results or improvement in the condition, I would run to my doctor and get some antibiotics again to clear up the infection.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;But after 5 years on antibiotics, the doctors I knew and who knew me refused to give any more antibiotics. &lt;/div&gt;&lt;div&gt;So I started asking my self this question: What is something natural that I havent tried yet that may fix my problem? And the answer that I got was, "&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;ALUM, Shaving Alum&lt;/span&gt;". I think it is also known as &lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;Potash Alum (please verify)&lt;/span&gt;. &lt;/div&gt;&lt;div&gt;I went to a store, and bought two small rectangular blocks of Shaving Alum from them, paid about $5 including taxes.&lt;/div&gt;&lt;div&gt;Started rubbing Shaving Alum on my head after taking shower every morning and within 2 - 3 days, I started feeling the difference. My folliculitis was fading, going away, the bacteria seemed weak, disappointed and unhappy. I kept on applying Shaving Alum continuously for the next three weeks. The only problem with Alum is that it has a drying affect on the skin and since I was rubbing it too much on the scalp, it left powdery residue in my hair and my hair looked more like an extremely bad case of dandruff. &lt;/div&gt;&lt;div&gt;I kept on applying it without worrying too much about what people would think. In three weeks, the affected area was folliculitis free. I was happy but since I am not consistent with anything, I stopped rubbing Shaving Alum every single morning. But its been four week now since I stopped using Alum every morning and seems like Alum is still working or maybe folliculitis has packed up and left for ever (i hope so).&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I do not know if Shaving Alum has any negative side effects on hair or skin. My goal was to get rid of Folliculitis and I achieved that. I do not think that Shaving Alum  (Potash Alum) has any harmful effects as people use it on skin after shaving. But to avoid any problem arising due to shaving alum, instead of applying it every morning, I now apply it once or twice a week. And I will admit it has done what antibiotics were not able to do. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Note: Applying Alum on the folliculitis affected area has helped me but it may not work for everyone. The reason for writing this article was to let other folliculitis sufferers know that there is something out there that has atleast helped one folliculitis sufferer. But I am not in anyway trying to say that this is a definite cure. Please consult your dermatologist and know about all the risks and harmful effects of Alum before you give it a try.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-6591905675592066168?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=VIr-Wge7mXk:OJBPp3n-DiU:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=VIr-Wge7mXk:OJBPp3n-DiU:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=VIr-Wge7mXk:OJBPp3n-DiU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=VIr-Wge7mXk:OJBPp3n-DiU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=VIr-Wge7mXk:OJBPp3n-DiU:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=VIr-Wge7mXk:OJBPp3n-DiU:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/6591905675592066168/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=6591905675592066168" title="7 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/6591905675592066168" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/6591905675592066168" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/VIr-Wge7mXk/folliculitis-found-cure-that-atleast.html" title="Folliculitis - Found a cure that atleast works for me" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">7</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/10/folliculitis-found-cure-that-atleast.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-8839200517553949548</id><published>2008-10-03T19:15:00.008-04:00</published><updated>2008-10-03T22:34:49.048-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term=".NET" /><category scheme="http://www.blogger.com/atom/ns#" term="protected" /><category scheme="http://www.blogger.com/atom/ns#" term=".net compiler error message" /><category scheme="http://www.blogger.com/atom/ns#" term="compiler error message: cs0122" /><category scheme="http://www.blogger.com/atom/ns#" term="C#" /><category scheme="http://www.blogger.com/atom/ns#" term="private" /><title type="text">Compiler Error Message: CS0122</title><content type="html">&lt;span class="Apple-style-span" style="text-decoration: underline;"&gt;Complete Error Message:&lt;/span&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;Compiler Error Message: CS0122: 'xxxxxxxxxxxxxxxxxxxxxxxxxxx' is inaccessible&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;In my case, Button's "onclick" event was actually calling a method which I made "private" by mistake. Changing the method to "protected" took care of the error.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The error is implying that the method, or object that you are trying to access is inaccessible due to its protection level. In other words, in order to access the object/method, you need to relax the level of protection on the object. So, if the object is "private", make it "protected" and see if that makes the compiler error CS0122 go away.&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0); font-weight: bold;"&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;Compiler Error Message: CS0122: ' ' &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="Apple-style-span" style="font-weight: bold; "&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style=""&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 204, 255);"&gt;due to its protection level&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-8839200517553949548?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=CAuNnuupHeU:Z1I4SXBuftI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=CAuNnuupHeU:Z1I4SXBuftI:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=CAuNnuupHeU:Z1I4SXBuftI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=CAuNnuupHeU:Z1I4SXBuftI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=CAuNnuupHeU:Z1I4SXBuftI:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=CAuNnuupHeU:Z1I4SXBuftI:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/8839200517553949548/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=8839200517553949548" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/8839200517553949548" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/8839200517553949548" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/CAuNnuupHeU/compiler-error-message-cs0122.html" title="Compiler Error Message: CS0122" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/10/compiler-error-message-cs0122.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-2748493316303464076</id><published>2008-10-01T02:07:00.003-04:00</published><updated>2008-10-01T02:36:10.651-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="life of mars" /><category scheme="http://www.blogger.com/atom/ns#" term="water on mars" /><category scheme="http://www.blogger.com/atom/ns#" term="life on other planets" /><category scheme="http://www.blogger.com/atom/ns#" term="water on planet" /><title type="text">Life On Other Planets</title><content type="html">I don't understand why outer space experts and scientists think that presence of water is the only indicator of life anywhere in the universe. It is true that life on earth is mainly due to the presence of water but I don't think water is the only pre-requisite for life.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;And by the way, what is LIFE?&lt;/div&gt;&lt;div&gt;Our definition of life is based solely upon our understanding of Life. In other words, we are very biased. &lt;/div&gt;&lt;div&gt;What if there is Life everywhere but we just dont have the ability or capability to detect it? What if there is life on Mars that doesn't need water for existence? What if Mars inhabitants consider water to be the deadliest poison and are trying their best to get rid of it? &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I think we should stop spending millions and billions on space exploration as it not really going to solve any of the problem we are facing here at home.&lt;/div&gt;&lt;div&gt;Spending so much just to find water on planet X and to find out if it is inhabitable or was inhabitable in the past, is just BS!&lt;/div&gt;&lt;div&gt;Lets take care of the people on this planet who "really exist" and "really need water" but are dying just because they don't have to clean water supplies.&lt;/div&gt;&lt;div&gt;I think space agencies should be turned into water purification companies to bring bottled water prices down by creating more competition.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-2748493316303464076?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=wv1HKBb6_QU:qXVoZw0NnnA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=wv1HKBb6_QU:qXVoZw0NnnA:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=wv1HKBb6_QU:qXVoZw0NnnA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=wv1HKBb6_QU:qXVoZw0NnnA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=wv1HKBb6_QU:qXVoZw0NnnA:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=wv1HKBb6_QU:qXVoZw0NnnA:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/2748493316303464076/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=2748493316303464076" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/2748493316303464076" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/2748493316303464076" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/wv1HKBb6_QU/life-on-other-planets.html" title="Life On Other Planets" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/10/life-on-other-planets.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-3875822741298911190</id><published>2008-10-01T01:29:00.002-04:00</published><updated>2008-10-01T02:05:10.269-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="iron man on dell" /><category scheme="http://www.blogger.com/atom/ns#" term="dell iron man" /><category scheme="http://www.blogger.com/atom/ns#" term="dell with iron" /><title type="text">Computer pre-loaded with movies? Whats this?</title><content type="html">I was reading on Washington Post's tech-crunch that Dell in partnership with Paramount Pictures will be offering some computer models with pre-loaded movies. See the link below to read the details of the story:&lt;div&gt;&lt;a href="http://www.washingtonpost.com/wp-dyn/content/article/2008/09/30/AR2008093001647.html"&gt;http://www.washingtonpost.com/wp-dyn/content/article/2008/09/30/AR2008093001647.html&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Is this a joke? &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;It may help Paramount pictures because they have an additional way of selling their movies. But how is it going to help Dell? I think Dell is being run by some really stupid people. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;Okay, so, I like Iron-Man, lets buy a Dell XPS and get it pre-loaded with Iron-Man by paying an additional $20 - woohooooo!&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;OR&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;When buying a new Dell Computer, I will also see the following upgrade options:&lt;/div&gt;&lt;div&gt;- Additional 2 GBs of RAM&lt;/div&gt;&lt;div&gt;- Extra 200GB of HDD&lt;/div&gt;&lt;div&gt;- Microsoft Office&lt;/div&gt;&lt;div&gt;-&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt; Iron Man (YES!!!! - only $20)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;I think this is enough to get an idea of the sad situation of the company, Dell.&lt;/div&gt;&lt;div&gt;As of this writing, Iron Man is the only movie you can get (pre-installed) on your new Dell System.&lt;/div&gt;&lt;div&gt;Is this supposed to make people buy Dell computers?&lt;/div&gt;&lt;div&gt;Or, is this supposed to make movie collectors into Dell buyers? Maybe movie collectors will also become "Dell Collectors". &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Maybe Apple should do this also because this gimmick may work very well with MAC lovers, who are nothing but stupid people, totally out of touch with the reality. Actually MAC buyers are so stupid that they would get the same movie pre-installed more than once thinking that it may help them look more "COOL".&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;May God help Dell&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="color: rgb(255, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-3875822741298911190?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=BMnhdk7TgTg:eH9geDeeBQM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=BMnhdk7TgTg:eH9geDeeBQM:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=BMnhdk7TgTg:eH9geDeeBQM:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=BMnhdk7TgTg:eH9geDeeBQM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=BMnhdk7TgTg:eH9geDeeBQM:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=BMnhdk7TgTg:eH9geDeeBQM:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/3875822741298911190/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=3875822741298911190" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/3875822741298911190" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/3875822741298911190" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/BMnhdk7TgTg/computer-pre-loaded-with-movies-whats.html" title="Computer pre-loaded with movies? Whats this?" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/10/computer-pre-loaded-with-movies-whats.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-3495375607279620282</id><published>2008-09-29T17:31:00.001-04:00</published><updated>2008-09-29T17:33:21.469-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Bernardi Acura Boston MA" /><category scheme="http://www.blogger.com/atom/ns#" term="Bernardi Boston" /><category scheme="http://www.blogger.com/atom/ns#" term="Bernardi Acura of Boston" /><title type="text">My Experience With Bernardi Acura of Boston</title><content type="html">Buying a used car from Bernardi was a hoooooooooorible experience; it was like going through torture. All I got was broken promises, lies and more lies. Bernardi says, “We believe honesty is the ONLY policy”; and I think DISHONESTY is the only policy they know.&lt;br /&gt;&lt;br /&gt;Here are few broken promises or lies they told me:&lt;br /&gt;&lt;br /&gt;Lie 1:  Bernardi promised the car will be ready in 1 day after the payment is made. I needed the car right way to commute to work. It took them 12 days to get the car ready and serviced. I had to take bus to get to work which was 4 hours of commute everyday. Moreover, I had to call atleast 3 or 4 times before they would call me back. Every single time, they would tell me your car will be ready tomorrow; and we are Bernardi Acura, we deliver our promises. THE BIGGEST LIE.&lt;br /&gt;&lt;br /&gt;Lie 2:  They offered me 2 yr/ 24,000 miles warranty on the car, which I bought from them. A week later, I got a call from Bernardi telling me they can’t offer 2yr/24,000 miles warranty because my car is a 2001 model. If they couldn’t commit then why did they make a promise at the first place????&lt;br /&gt;&lt;br /&gt;Lie 3:  We offer 90-day warranty on all our used cars. Guess what!!! They don’t and I found it after buying the car that my car had only 30-day warranty.&lt;br /&gt;&lt;br /&gt;I would never go back to any of the Bernardi’s dealerships, even if I have to buy a brand new car. For Broken Promises and Lies, WELCOME TO BERNARDI!!!!!!!!&lt;br /&gt;&lt;br /&gt;Review contributed by : MAT&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-3495375607279620282?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=IE2CeJMz1DM:pdamJerIigE:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=IE2CeJMz1DM:pdamJerIigE:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=IE2CeJMz1DM:pdamJerIigE:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=IE2CeJMz1DM:pdamJerIigE:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=IE2CeJMz1DM:pdamJerIigE:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/3495375607279620282/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=3495375607279620282" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/3495375607279620282" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/3495375607279620282" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/IE2CeJMz1DM/my-experience-with-bernardi-acura-of.html" title="My Experience With Bernardi Acura of Boston" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/09/my-experience-with-bernardi-acura-of.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-4445408632462711108</id><published>2008-09-19T00:56:00.003-04:00</published><updated>2008-09-19T01:19:23.134-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DLL Global assembly cache" /><category scheme="http://www.blogger.com/atom/ns#" term="Installing a DLL file in GAC" /><category scheme="http://www.blogger.com/atom/ns#" term="c# dll install" /><category scheme="http://www.blogger.com/atom/ns#" term="GAC" /><category scheme="http://www.blogger.com/atom/ns#" term="DLL GAC" /><title type="text">Register / Unregister a DLL file with GAC (Global Assembly Cache)</title><content type="html">In order to use a DLL (Dynamic Link Library) in your C# .NET code, you need to register the DLL file with the Global Assembly Cache (GAC). Since I am new to .NET and I do not know much about GAC myself, to me GAC is just a folder containing all your DLLs. If the desired DLL file is not in GAC folder, you cannot use it in your .NET code, in my case, C# .NET code.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Location of GAC:&lt;/u&gt;     C:/Windows/Assembly      &lt;-- This is your GAC Folder&lt;br /&gt;&lt;br /&gt;You cannot "Drag &amp;amp; Drop" or "Copy Paste" your desired DLL file in the GAC folder. Atleast it didn't work in my case.  You need to "register" or "install" your desired DLL file using a utility named "gacutil"&lt;br /&gt;&lt;br /&gt;So, for example, you have a DLL file named "mylib.dll", this is how you would register your DLL file with GAC using "gacutil".&lt;br /&gt;&lt;br /&gt;1- Open up Command Prompt or type "cmd" in the Run Dialog box, windows Command Prompt&lt;br /&gt;    will pop-up&lt;br /&gt;2- Type in this command to register or install the DLL file "mylib.dll"&lt;br /&gt;     &lt;span style="color:#cc0000;"&gt;gacutil /i c:\myfiles\mylib.dll&lt;/span&gt;&lt;br /&gt;3- Now go to the GAC folder (c:\windows\assembly) and look for the DLL file you registered using using the command in Step 2. The DLL file should now appear in the GAC folder.&lt;br /&gt;4- You are ready to reference your new installed DLL file in your C# Code via "using" keyword.&lt;br /&gt;5- To uninstall any DLL file you need to run the following command&lt;br /&gt;     &lt;span style="color:#cc0000;"&gt;gacutil /u c:\myfiles\mylib.dll&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;6- Switch "/i" in the command stands for "INSTALL" and switch "/u" in command stands "UNINSTALL", obviously.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Hope this helps!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-4445408632462711108?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=1LgSD09a9yc:NK0Jmo8_CAA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=1LgSD09a9yc:NK0Jmo8_CAA:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=1LgSD09a9yc:NK0Jmo8_CAA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=1LgSD09a9yc:NK0Jmo8_CAA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=1LgSD09a9yc:NK0Jmo8_CAA:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=1LgSD09a9yc:NK0Jmo8_CAA:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/4445408632462711108/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=4445408632462711108" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/4445408632462711108" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/4445408632462711108" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/1LgSD09a9yc/register-unregister-dll-file-with-gac.html" title="Register / Unregister a DLL file with GAC (Global Assembly Cache)" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/09/register-unregister-dll-file-with-gac.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-6091521194292950448</id><published>2008-09-11T11:19:00.003-04:00</published><updated>2008-09-11T11:28:04.872-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="windows vista system beep" /><category scheme="http://www.blogger.com/atom/ns#" term="windows 2003 server system beep" /><category scheme="http://www.blogger.com/atom/ns#" term="system beep" /><category scheme="http://www.blogger.com/atom/ns#" term="Turning off system beep" /><category scheme="http://www.blogger.com/atom/ns#" term="windows xp system beep" /><title type="text">Turning off System Beep on Windows XP, Windows Vista, and Windows Server 2003</title><content type="html">How to turn off System Beep on Windows XP, Vista and Server 2003:&lt;br /&gt;&lt;br /&gt;1- Click on &lt;strong&gt;Start&lt;/strong&gt; and click on &lt;strong&gt;Run&lt;/strong&gt;&lt;br /&gt;2- Type "regedit" in the textbox and click &lt;strong&gt;OK&lt;/strong&gt; button or press &lt;strong&gt;Enter&lt;/strong&gt;&lt;br /&gt;3- Click on &lt;strong&gt;HKEY_CURRENT_USER -&gt; Control Panel -&gt; Sound&lt;/strong&gt;&lt;br /&gt;4- On the right hand side of the screen, you will see &lt;strong&gt;BEEP&lt;/strong&gt;&lt;br /&gt;5- Right click on &lt;strong&gt;Beep&lt;/strong&gt; and click on &lt;strong&gt;Modify&lt;/strong&gt;&lt;br /&gt;6- Type in &lt;strong&gt;No&lt;/strong&gt; in the &lt;strong&gt;Value Data&lt;/strong&gt; field, default value is &lt;strong&gt;Yes&lt;/strong&gt;&lt;br /&gt;7- Click &lt;strong&gt;Ok&lt;/strong&gt; and Restart&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-6091521194292950448?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Z7gJM-wCt-Y:tEGZEqFt3wQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Z7gJM-wCt-Y:tEGZEqFt3wQ:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Z7gJM-wCt-Y:tEGZEqFt3wQ:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Z7gJM-wCt-Y:tEGZEqFt3wQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Z7gJM-wCt-Y:tEGZEqFt3wQ:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Z7gJM-wCt-Y:tEGZEqFt3wQ:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/6091521194292950448/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=6091521194292950448" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/6091521194292950448" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/6091521194292950448" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/Z7gJM-wCt-Y/turning-off-system-beep-on-windows-xp.html" title="Turning off System Beep on Windows XP, Windows Vista, and Windows Server 2003" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/09/turning-off-system-beep-on-windows-xp.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-5541809620411712626</id><published>2008-09-02T03:04:00.008-04:00</published><updated>2008-09-02T06:47:12.946-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="xomba works" /><category scheme="http://www.blogger.com/atom/ns#" term="xomba really splits ad revenue" /><title type="text">Xomba claims are 100% accurate - According to one Xomba Member - Xomba really splits adsense revenue!</title><content type="html">According to one Xomba member, Xomba does exactly what they promise and has asked me not to spread negative comments about Xomba before doing proper research. Her Xomba name is "rownak" and this is her Xomba address: &lt;a href="http://www.xomba.com/user/rawnak"&gt;http://www.xomba.com/user/rawnak&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;So this is what she has posted on Xomba after reading my article "&lt;a href="http://flarekit.blogspot.com/2008/09/xomba-review.html"&gt;Xomba really splits ad revenue?"&lt;/a&gt; . Her comments actually tell step by step how to monitor ad revenue earned through articles posted on Xomba.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;&lt;span style="color:#ff0000;"&gt;Rawnak Comment Starts here:&lt;br /&gt;&lt;/span&gt;&lt;/u&gt;&lt;br /&gt;&lt;em&gt;hi, flarekit. I can see that you are new to this site. I checked out &lt;/em&gt;&lt;a class="kLink" oncontextmenu="return false;" id="KonaLink2" onmouseover="adlinkMouseOver(event,this,2);" style="POSITION: static; TEXT-DECORATION: underline! important" onclick="adlinkMouseClick(event,this,2);" onmouseout="adlinkMouseOut(event,this,2);" href="http://www.xomba.com/xomba_really_splits_ad_revenue#" target="_top"&gt;&lt;em&gt;your blog&lt;/em&gt;&lt;/a&gt;&lt;em&gt; too. I can't see how yo could have possibly made $5 out of it? I have a blog too and I can say that it is doing much better, still it took me a long time to make $5 out of it.&lt;br /&gt;I would advice you to first ask and clear your doubts before you go around posting negative comments about any site.&lt;br /&gt;There are many people here, and most of all Nick, who is the owner, himself, who would have cleared your doubts in a jiffy. Just send a private message to "Nick" and you'll get your answers.&lt;br /&gt;I have been an active member of this site for more than a year and have made more money on Xomba than any other site. The way to track your money is through the &lt;/em&gt;&lt;a class="kLink" oncontextmenu="return false;" id="KonaLink3" onmouseover="adlinkMouseOver(event,this,3);" style="POSITION: static; TEXT-DECORATION: underline! important" onclick="adlinkMouseClick(event,this,3);" onmouseout="adlinkMouseOut(event,this,3);" href="http://www.xomba.com/xomba_really_splits_ad_revenue#" target="_top"&gt;&lt;em&gt;Google Adsense&lt;/em&gt;&lt;/a&gt;&lt;em&gt; account. Here is how you go about it.&lt;br /&gt;1. Log in to your Google adsense account and Click on the "Adsense Setup" tab that's on top.&lt;br /&gt;2. Click on "Channels" tab that appears on the bottom tabs.&lt;br /&gt;3. You will find Adsense for content/Adsense for search written with options of "Customs Channels/URL channels.&lt;br /&gt;In Adsense for Content - Choose "URL Channels"&lt;br /&gt;4. A box opens up with "Add &lt;/em&gt;&lt;a class="kLink" oncontextmenu="return false;" id="KonaLink4" onmouseover="adlinkMouseOver(event,this,4);" style="POSITION: static; TEXT-DECORATION: underline! important" onclick="adlinkMouseClick(event,this,4);" onmouseout="adlinkMouseOut(event,this,4);" href="http://www.xomba.com/xomba_really_splits_ad_revenue#" target="_top"&gt;&lt;em&gt;New URL&lt;/em&gt;&lt;/a&gt;&lt;em&gt; Channels" written next to it.&lt;br /&gt;Click on :"Add New URL Channels"&lt;br /&gt;Here in the box that is provided, you should add your content, bytes or blurbs individually (Copy and paste the url channels into the box) like this:&lt;/em&gt;&lt;a href="http://www.xomba.com/xomba_really_splits_ad_revenue" trdan="0" niej8="0"&gt;&lt;em&gt;http://www.xomba.com/xomba_really_splits_ad_revenue&lt;/em&gt;&lt;/a&gt;&lt;br /&gt;&lt;em&gt;You can add a total of 200 such URL channels.&lt;br /&gt;5. Once you have added all the channels that you want to track (they can be from any adsense sharing &lt;/em&gt;&lt;a class="kLink" oncontextmenu="return false;" id="KonaLink5" onmouseover="adlinkMouseOver(event,this,5);" style="POSITION: static; TEXT-DECORATION: underline! important" onclick="adlinkMouseClick(event,this,5);" onmouseout="adlinkMouseOut(event,this,5);" href="http://www.xomba.com/xomba_really_splits_ad_revenue#" target="_top"&gt;&lt;em&gt;website&lt;/em&gt;&lt;/a&gt;&lt;em&gt; pages, including your blog), you should click the "Add Channels" button below.&lt;br /&gt;6. Now check all the boxes in front of the URLs. You can do this by simply checking the box in front of "URL". Once that is done, Go to the window that says "Actions" next to "Add New URL Channels" and from the &lt;/em&gt;&lt;a class="kLink" oncontextmenu="return false;" id="KonaLink6" onmouseover="adlinkMouseOver(event,this,6);" style="POSITION: static; TEXT-DECORATION: underline! important" onclick="adlinkMouseClick(event,this,6);" onmouseout="adlinkMouseOut(event,this,6);" href="http://www.xomba.com/xomba_really_splits_ad_revenue#" target="_top"&gt;&lt;em&gt;drop down menu&lt;/em&gt;&lt;/a&gt;&lt;em&gt; select "Activate Checked".&lt;br /&gt;There. Now you are ready to track your adsense. See the money that each of your post is making in detail. all information is provided by Google Adsense. Xomba shares its revenue, like it says, 50/50. That means, 50% of the clicks go to Xomba and the rest 50% comes to you.&lt;br /&gt;Hope this will clear all your doubts. &lt;/em&gt;&lt;br /&gt;&lt;br /&gt;&lt;script type='text/javascript'&gt;&lt;!--&lt;br /&gt;google_ad_client = "pub-5872395148743342";&lt;br /&gt;google_ad_host = "pub-1556223355139109";&lt;br /&gt;/* 468x15, created 9/2/08 */&lt;br /&gt;google_ad_slot = "9153705814";&lt;br /&gt;google_ad_width = 468;&lt;br /&gt;google_ad_height = 15;&lt;br /&gt;//--&gt;&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;script src='http://pagead2.googlesyndication.com/pagead/show_ads.js' type='text/javascript'&gt;&lt;br /&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-5541809620411712626?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=kngcOml3VMs:LAe6bH5yQ-w:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=kngcOml3VMs:LAe6bH5yQ-w:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=kngcOml3VMs:LAe6bH5yQ-w:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=kngcOml3VMs:LAe6bH5yQ-w:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=kngcOml3VMs:LAe6bH5yQ-w:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=kngcOml3VMs:LAe6bH5yQ-w:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/5541809620411712626/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=5541809620411712626" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/5541809620411712626" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/5541809620411712626" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/kngcOml3VMs/xomba-claims-are-100-accurate-according.html" title="Xomba claims are 100% accurate - According to one Xomba Member - Xomba really splits adsense revenue!" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/09/xomba-claims-are-100-accurate-according.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-6932814778606050839</id><published>2008-09-02T01:17:00.004-04:00</published><updated>2008-09-02T01:45:25.441-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Xomba adsense revenue" /><category scheme="http://www.blogger.com/atom/ns#" term="Xomba Review" /><category scheme="http://www.blogger.com/atom/ns#" term="Xomba make money by writing" /><title type="text">Xomba really splits ad revenue?</title><content type="html">Xomba is a free community that allows writers to write about anything that they know and make some money by doing so. It utilizes Google Adsense for generating revenues which it splits with the writer of the article. Write writes about something on Xomba and Xomba places Adsense ads above, below and in the middle of the article. According to them, it is not get rich quick scheme (I totally believe them on this one).&lt;br /&gt;&lt;br /&gt;I created an account on Xomba myself when I started this blog but I don't think Xomba has helped me at all. This blog has atleast made me $5.71 ever since it started. Not a big amount but I can say that whatever I have written is atleast worth $5.71. Anyway, there is no way to find out whether the content/material/articles I wrote on Xomba generated me any adsense revenue, atleast I haven't found any tools on Xomba. They also don't have any daily, weekly or monthly reports, letting people know if they made any money posting on Xomba.&lt;br /&gt;&lt;br /&gt;I have seen other people posting alot on Xomba so they must be benefitting from Xomba in someway. I guess Xomba helps in bringing readers to your blog. I do think that Xomba should add some statistics or some tools to let their content contributors know how well are they doing and if Xomba is able to help them at all. I suspect that Xomba never splits the revenue with their content contributors and probably pockets the entire ad revenue. But I could be totally wrong. I will put this article on Xomba and get some feedback from the people who post alot on Xomba.&lt;br /&gt;&lt;br /&gt;I know that I have given Xomba my adsense account ID, so that makes me think that probably Xomba is fair but how it all works, I frankly do not understand. I don't know how Xomba and Google Adsense take care of splitting the ad revenue. Maybe someone can clarify and I hope I don't get grilled by Xomba content contributors on writing this nonsense.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;BTW, I never found any article on Wikipedia talking about Xomba.&lt;br /&gt;&lt;br /&gt;Another writer who seems a little concerned: &lt;a href="http://www.someuseless.info/108/xomba/"&gt;http://www.someuseless.info/108/xomba/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-6932814778606050839?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=KXkAtwbL5R0:AZR7zUz6X5Y:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=KXkAtwbL5R0:AZR7zUz6X5Y:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=KXkAtwbL5R0:AZR7zUz6X5Y:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=KXkAtwbL5R0:AZR7zUz6X5Y:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=KXkAtwbL5R0:AZR7zUz6X5Y:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=KXkAtwbL5R0:AZR7zUz6X5Y:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/6932814778606050839/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=6932814778606050839" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/6932814778606050839" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/6932814778606050839" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/KXkAtwbL5R0/xomba-review.html" title="Xomba really splits ad revenue?" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/09/xomba-review.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-8894473359831598762</id><published>2008-08-31T07:23:00.004-04:00</published><updated>2008-08-31T07:40:46.794-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="how can feedburner help" /><category scheme="http://www.blogger.com/atom/ns#" term="feedburner helpful" /><category scheme="http://www.blogger.com/atom/ns#" term="what is feedburner" /><category scheme="http://www.blogger.com/atom/ns#" term="feedburner" /><title type="text">Feedburner - What the hell is this?</title><content type="html">What the hell is feedburner? and why do we need to use it? What's the benefit of using feedburner. I think it is used to publicize one's blog and to send alerts to subscribers informing them of new posts. But what if you do not have any subscribers? How is it going to help in that case? This feedburner thing is stupid and nonsense. I am sure it is helping many bloggers who already have a alot of readers and who produce quality content. I don't have a lot of readers and I do not write quality content so FEEDBURNER is not going to help me.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-8894473359831598762?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=M4Rs6c2bJS0:yEKfG5SmTjA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=M4Rs6c2bJS0:yEKfG5SmTjA:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=M4Rs6c2bJS0:yEKfG5SmTjA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=M4Rs6c2bJS0:yEKfG5SmTjA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=M4Rs6c2bJS0:yEKfG5SmTjA:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=M4Rs6c2bJS0:yEKfG5SmTjA:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/8894473359831598762/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=8894473359831598762" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/8894473359831598762" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/8894473359831598762" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/M4Rs6c2bJS0/feedburner-what-hell-is-this.html" title="Feedburner - What the hell is this?" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/08/feedburner-what-hell-is-this.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-75176542621937765</id><published>2008-08-29T23:23:00.005-04:00</published><updated>2008-08-30T03:02:44.550-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Travelodge review" /><category scheme="http://www.blogger.com/atom/ns#" term="travelodge reviews" /><category scheme="http://www.blogger.com/atom/ns#" term="travelodge union new jersey review" /><category scheme="http://www.blogger.com/atom/ns#" term="travelodge 2735 us route 22 west union new jersey review" /><title type="text">Travelodge on 2735 US Route 22 West, Union, New Jersey</title><content type="html">I went to see a friend staying at this particular Travelodge located at:&lt;br /&gt;&lt;br /&gt;2735 US Route 22 West&lt;br /&gt;Union, New Jersey&lt;br /&gt;&lt;br /&gt;Please do not stay at this place. I know that it is one of the cheap motels one can stay at and I have stayed at other "economical" motels and everyone knows how bad some of these economical motels are. But this place, Travelodge, was the worst place one could stay at. Not because it was a bad smelling, dirty motel in an old building but because the place seemed like it was dedicated to prostitutes and prostitution. I could be totally wrong but that is what I felt. I am also not saying that the motel's owner/operator/franchisee is involved in any such activities but I would say that they seem unwilling to do anything about it.&lt;br /&gt;&lt;br /&gt;Two incidents that happened in 4 days of my stay there:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Three female motel employees entered my room for room service at 11 in the morning and started singing shouting in the room as if they were in a night club on a weekend night. They were well aware that I was there and was sleeping when they entered the room. I had to ask them to leave the room immediately.&lt;/li&gt;&lt;li&gt;The second time only one female motel employee entered the room for room service at around 11 again and I was sleeping again. She asked if I need any service and then asked me "Why are you sleeping so much, are you pregnant?"  - Now let me tell you all at this point that I am a "MALE" and an ugly one! Making a mistake is not possible but anyway, that is not the point I am trying to make.&lt;/li&gt;&lt;/ol&gt;After the two incidents, I started thinking about the type of people who come and stay at this particular motel. They have to be really "low-lifes" (i am sorry for using a word such as this), but just imagine, motel employees can come into a room and say whatever they want to the person staying in, laugh and leave!!!&lt;br /&gt;The reason why this is happening at that Travelodge is because even the employees know that the people staying at that motel are mostly characterless, low-lifes, sex addicts(probably) and indecent.&lt;br /&gt;&lt;br /&gt;I can't find any other explanation to all that I wrote above. I have stayed at places much cheaper than this Travelodge but employees would come-in for room-service, do their work quietly and leave.&lt;br /&gt;Another possible explanation:  Because it was a cheap motel, employees didn't treat people staying there respectfully just because they were staying at a terrible and cheap place. But I do not think this is the case. But if this was the case, then employees would have been rude or would show attitude instead of making fun and laughing at the motel clients/customers.&lt;br /&gt;&lt;br /&gt;I paid about $60 a day and stayed 4 days at this place.&lt;br /&gt;Long story short. Do not stay here unless you don't have any other option.&lt;br /&gt;&lt;br /&gt;Note: I have no intention to harm the reputation of this travelodge. This was the first time I stayed at a travelodge and my experience was horrible. I think that the motel owner/operator/franchisee and the brand franchisor (travelodge) should spend more time and efforts on training the motel employees. I don't know about prostitutes or prostitutions and I would say that it was based on my judgement which could be totally wrong. However, after the second incident, I did read about Travelodge on Wikipedia and I read something similar about another Travelodge in Atlanta, Georgia.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-75176542621937765?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=qN0txIvs_pw:HXmXUggVYfU:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=qN0txIvs_pw:HXmXUggVYfU:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=qN0txIvs_pw:HXmXUggVYfU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=qN0txIvs_pw:HXmXUggVYfU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=qN0txIvs_pw:HXmXUggVYfU:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=qN0txIvs_pw:HXmXUggVYfU:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/75176542621937765/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=75176542621937765" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/75176542621937765" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/75176542621937765" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/qN0txIvs_pw/travelodge-on-2735-us-route-22-west.html" title="Travelodge on 2735 US Route 22 West, Union, New Jersey" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/08/travelodge-on-2735-us-route-22-west.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-2360931064462505849</id><published>2008-08-20T03:54:00.003-04:00</published><updated>2008-08-20T04:09:30.575-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="making money online" /><category scheme="http://www.blogger.com/atom/ns#" term="paid survey reviews" /><category scheme="http://www.blogger.com/atom/ns#" term="Online paid surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="mindfieldonline surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="make money online review" /><category scheme="http://www.blogger.com/atom/ns#" term="make money online" /><title type="text">Making money online - MindFieldOnline Review - Part 3</title><content type="html">I checked my Mindfield account on August 13, 2008 and I actually did see that they have credited my account with $2.00 - Took them about 13 days to pay me for taking the survey. However, they won't be sending me the check until and unless I accumulate atleast $10.00 in my MindfieldOnline account. In the past 2 weeks, they have emailed me invitations to complete some more surveys, 4 surveys are worth $1 each, 1 survey is worth $2 and one another survey will pay me $4 if I complete it. I haven't completed those surveys but I will be taking some time out to complete them, possibly today, and that way I will have $11.00 in my MindfieldOnline account 15-20 days from now (I guess).&lt;br /&gt;I will update this blog again as soon as I accumulate $10.00 in my MindfieldOnline account and again when I will receive a check from MindfieldOnline.&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;Related Past Posts:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://flarekit.blogspot.com/2008/08/making-money-online-mindfieldonline.html"&gt;Making money online - MindFieldOnline Review - Part 2&lt;/a&gt;&lt;br /&gt;&lt;a href="http://flarekit.blogspot.com/2008/07/making-money-online-reviewing.html"&gt;Making money online - MindFieldOnline Review - Part 1&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-2360931064462505849?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=RiAxI2Vao9A:EHlcIuiBawg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=RiAxI2Vao9A:EHlcIuiBawg:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=RiAxI2Vao9A:EHlcIuiBawg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=RiAxI2Vao9A:EHlcIuiBawg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=RiAxI2Vao9A:EHlcIuiBawg:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=RiAxI2Vao9A:EHlcIuiBawg:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/2360931064462505849/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=2360931064462505849" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/2360931064462505849" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/2360931064462505849" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/RiAxI2Vao9A/making-money-online-mindfieldonline_20.html" title="Making money online - MindFieldOnline Review - Part 3" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/08/making-money-online-mindfieldonline_20.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-2020678393125076456</id><published>2008-08-20T03:30:00.003-04:00</published><updated>2008-08-20T03:47:36.737-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="burn iso image" /><category scheme="http://www.blogger.com/atom/ns#" term="burn iso image on a dvd" /><category scheme="http://www.blogger.com/atom/ns#" term="burn iso image on a cd" /><category scheme="http://www.blogger.com/atom/ns#" term="burn ISO image using NTI CD DVD-Maker 7" /><category scheme="http://www.blogger.com/atom/ns#" term="burn cd" /><category scheme="http://www.blogger.com/atom/ns#" term="burn iso" /><category scheme="http://www.blogger.com/atom/ns#" term="burn dvd" /><title type="text">Burn or Write ISO image to CD or DVD - NTI CD &amp; DVD-Maker</title><content type="html">&lt;strong&gt;&lt;span style="color:#ff0000;"&gt;&lt;u&gt;Steps involved in burning / writing an ISO image to a CD or DVD using NTI's CD &amp;amp; DVD-Maker 7:&lt;/u&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Start NTI CD &amp;amp; DVD-Maker by going to Start -&gt; Programs -&gt; NTI CD &amp;amp; DVD-Maker or by directly clicking on it's shortcut on your desktop (if it exists)&lt;/li&gt;&lt;li&gt;Click on "&lt;span style="color:#ff6666;"&gt;Data&lt;/span&gt;" (one of options available in the NTI CD &amp;amp; DVD-Maker)&lt;/li&gt;&lt;li&gt;A small popup menu will appear asking you to either click on "&lt;span style="color:#ff6666;"&gt;Data CD&lt;/span&gt;" or "Data &lt;span style="color:#ff6666;"&gt;DVD&lt;/span&gt;". Select "&lt;span style="color:#ff6666;"&gt;Data CD&lt;/span&gt;" if you are burning the ISO image on a blank CD&lt;br /&gt;                                       OR&lt;br /&gt;Select "&lt;span style="color:#ff6666;"&gt;Data DVD&lt;/span&gt;" if you are burning the ISO image on a blank DVD&lt;/li&gt;&lt;li&gt;Click on &lt;span style="color:#ff6666;"&gt;File&lt;/span&gt; and select "&lt;span style="color:#ff6666;"&gt;Create Disc from ISO disc image file&lt;/span&gt;"&lt;/li&gt;&lt;li&gt;You will be prompted to select the ISO image. Browse to the location on your HDD/External HDD etc and select the ISO image&lt;/li&gt;&lt;li&gt;You will then be prompted to insert a blank CD or DVD&lt;/li&gt;&lt;li&gt;Once a blank CD or DVD is inserted, click on the &lt;span style="color:#ff6666;"&gt;Start&lt;/span&gt; button and wait until the ISO image burning process is complete.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;NTI CD &amp;amp; DVD-Maker can be purchased or a free trial can be download from their website: &lt;a href="http://www.ntius.com/"&gt;http://www.ntius.com&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-2020678393125076456?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=3kV4aEX9uBY:ri20fWlw52Q:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=3kV4aEX9uBY:ri20fWlw52Q:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=3kV4aEX9uBY:ri20fWlw52Q:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=3kV4aEX9uBY:ri20fWlw52Q:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=3kV4aEX9uBY:ri20fWlw52Q:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=3kV4aEX9uBY:ri20fWlw52Q:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/2020678393125076456/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=2020678393125076456" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/2020678393125076456" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/2020678393125076456" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/3kV4aEX9uBY/burn-or-write-iso-image-to-cd-or-dvd.html" title="Burn or Write ISO image to CD or DVD - NTI CD &amp; DVD-Maker" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/08/burn-or-write-iso-image-to-cd-or-dvd.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-3352241186435647403</id><published>2008-08-10T09:06:00.005-04:00</published><updated>2008-08-10T09:55:54.171-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="C# prerequisites" /><category scheme="http://www.blogger.com/atom/ns#" term="Visual C# 2008 Express Edition" /><category scheme="http://www.blogger.com/atom/ns#" term="Visual C#" /><category scheme="http://www.blogger.com/atom/ns#" term="before you program in C#" /><category scheme="http://www.blogger.com/atom/ns#" term="C#" /><category scheme="http://www.blogger.com/atom/ns#" term="C# presrequisite" /><title type="text">Visual C# - Step 1</title><content type="html">After programming in Java for several years, I decided to learn something other than Java and find out if I can program in any language other than Java. So to test my learning abilities, I decided to learn how to program in C# ( pronounced "C Sharp"). I have heard that it is very similar to Java and maybe that is why I picked C# to learn. Lets see if I can ever become a decent C# programmer.&lt;br /&gt;I will update this blog everytime I will learn something new in C# and will share my experiences as they may help someone else.&lt;br /&gt;&lt;br /&gt;So, in order to begin programming in C#, I needed to download the ".Net Framwork", the SDK and Microsoft Visual Studio. I think these can be downloaded individually but I did not want to get into all of that since I am new to all this .Net, C# and Visual Studio stuff. and wanted to keep it all as simple as possible. So what I did was, I downloaded &lt;span style="color:#ff0000;"&gt;Microsoft Visual C# 2008 Express Edition&lt;/span&gt; from this page &lt;a href="http://www.microsoft.com/express/download/"&gt;http://www.microsoft.com/express/download/&lt;/a&gt; .&lt;br /&gt;&lt;span style="color:#ff6666;"&gt;Note: I just downloaded Visual C# Express Edition not Visual Studio.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;I ran the installed file and the installed App asked me several questions such as:&lt;br /&gt;- Do I want to install documentation&lt;br /&gt;- Do I need SQL Server Express Edition, etc etc.&lt;br /&gt;&lt;br /&gt;I chose to install each and every thing but you can refuse to download SQL Server if you think you will not need it right away.&lt;br /&gt;&lt;br /&gt;After selecting all of the optional components, further downloading and installation of components resumed. Another reason for choosing to install all of the components was to make sure that nothing is left out thereby leaving no reason for my first C# application not to compile and run.&lt;br /&gt;&lt;br /&gt;This is all for now, more on C# sometime later this afternoon&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-3352241186435647403?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=JnSl8ZV8LD0:dEmMrN0PbJI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=JnSl8ZV8LD0:dEmMrN0PbJI:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=JnSl8ZV8LD0:dEmMrN0PbJI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=JnSl8ZV8LD0:dEmMrN0PbJI:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=JnSl8ZV8LD0:dEmMrN0PbJI:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=JnSl8ZV8LD0:dEmMrN0PbJI:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/3352241186435647403/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=3352241186435647403" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/3352241186435647403" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/3352241186435647403" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/JnSl8ZV8LD0/visual-c-step-1.html" title="Visual C# - Step 1" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/08/visual-c-step-1.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-8593258810744791891</id><published>2008-08-02T05:00:00.004-04:00</published><updated>2008-08-02T05:07:14.795-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="paid online survey reviews" /><category scheme="http://www.blogger.com/atom/ns#" term="make money online reviews" /><category scheme="http://www.blogger.com/atom/ns#" term="paid survey reviews" /><category scheme="http://www.blogger.com/atom/ns#" term="mindfieldonline survey reviews" /><category scheme="http://www.blogger.com/atom/ns#" term="paid surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="make money online" /><title type="text">Making money online - MindFieldOnline Review - Part 2</title><content type="html">Finally, I received a survey to take from MindFieldOnline.com. The survey took 10 minutes to complete. However, after completing the survey, I went to mindfieldonline.com and entered my username and password to check if they paid me for completing the survey or not. They haven't done it so far and my account balance still shows $0.00&lt;br /&gt;&lt;br /&gt;I will update this blog as soon as I see my account balance going up on mindfieldonline.com&lt;br /&gt;&lt;br /&gt;&lt;a href="http://flarekit.blogspot.com/2008/07/making-money-online-reviewing.html"&gt;Click here to see the first part of MindFieldOnline Review&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-8593258810744791891?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Hg_Pw0RJjro:9dmllqscF_I:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Hg_Pw0RJjro:9dmllqscF_I:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Hg_Pw0RJjro:9dmllqscF_I:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Hg_Pw0RJjro:9dmllqscF_I:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Hg_Pw0RJjro:9dmllqscF_I:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Hg_Pw0RJjro:9dmllqscF_I:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/8593258810744791891/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=8593258810744791891" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/8593258810744791891" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/8593258810744791891" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/Hg_Pw0RJjro/making-money-online-mindfieldonline.html" title="Making money online - MindFieldOnline Review - Part 2" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/08/making-money-online-mindfieldonline.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-204384985912092394</id><published>2008-08-01T17:01:00.000-04:00</published><updated>2008-08-01T19:47:18.068-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Creating Invitation File" /><category scheme="http://www.blogger.com/atom/ns#" term="Windows Remote Assistance" /><category scheme="http://www.blogger.com/atom/ns#" term="remote assistance" /><category scheme="http://www.blogger.com/atom/ns#" term="windows vista invitation file" /><category scheme="http://www.blogger.com/atom/ns#" term="windows vista remote assitance" /><category scheme="http://www.blogger.com/atom/ns#" term="Email invitation file" /><title type="text">Using Windows Remote Assistance to Get Help</title><content type="html">&lt;div&gt;&lt;span style="color:#3333ff;"&gt;&lt;strong&gt;&lt;u&gt;Using Windows Remote Assistance - Saving Invitation as a file (Windows Vista)&lt;/u&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="color:#3333ff;"&gt;Click Start button (Windows logo in Windows Vista) and click on 'Help and Support'&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color:#3333ff;"&gt;Windows Help and Support window will appear on the screen&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;span style="color:#3333ff;"&gt;Under 'Ask Someone' choose the option &lt;/span&gt;&lt;span style="color:#009900;"&gt;"Use -&gt; Windows Remote Assistance to get help from a friend or to offer help" &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;                                            &lt;a href="http://bp1.blogger.com/_UFVClPM9Xl0/SJOaDol-ptI/AAAAAAAAABM/A3cDOcJ5-_s/s1600-h/AskSomeone.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5229692979534276306" style="CURSOR: hand" alt="" src="http://bp1.blogger.com/_UFVClPM9Xl0/SJOaDol-ptI/AAAAAAAAABM/A3cDOcJ5-_s/s320/AskSomeone.JPG" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;span style="color:#3333ff;"&gt;On the next window, click on the first option &lt;/span&gt;&lt;span style="color:#009900;"&gt;"Invite Someone you trust to help you"&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="color:#009900;"&gt;&lt;/span&gt;&lt;br /&gt;                                           &lt;a href="http://bp1.blogger.com/_UFVClPM9Xl0/SJOd8PGY-JI/AAAAAAAAABU/yd_vs3APMug/s1600-h/InviteSomeone.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5229697250478323858" style="CURSOR: hand" alt="" src="http://bp1.blogger.com/_UFVClPM9Xl0/SJOd8PGY-JI/AAAAAAAAABU/yd_vs3APMug/s320/InviteSomeone.JPG" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="color:#3333ff;"&gt;On the next window, click on the second option &lt;/span&gt;&lt;span style="color:#009900;"&gt;"Save this invitation as a file"&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;                                      &lt;a href="http://bp2.blogger.com/_UFVClPM9Xl0/SJOeRLd9SSI/AAAAAAAAABc/FoxG8DIE5Is/s1600-h/SaveInvite.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5229697610280683810" style="CURSOR: hand" alt="" src="http://bp2.blogger.com/_UFVClPM9Xl0/SJOeRLd9SSI/AAAAAAAAABc/FoxG8DIE5Is/s320/SaveInvite.JPG" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;&lt;span style="color:#3333ff;"&gt;The next screen that will appear will ask you to select a location to save the &lt;span style="color:#009900;"&gt;"Invitation File"&lt;/span&gt; you are about to create. You will also need to enter a password. Once you have selected the location for saving the Invitation File and provided a password, click on the "Finish" Button.&lt;br /&gt;&lt;span style="color:#ff0000;"&gt;Note:&lt;/span&gt; You will have to give the password to the person who will be remotely assisting you.&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;span style="color:#3333ff;"&gt;Invitation File created can be emailed to the person who will be providing you remote assistance&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;span style="color:#3333ff;"&gt;Person assisting you remotely will double click on the invitation file you have sent and the person will be prompted to enter the password. This is when that person would need to know the password you setup during the Invitation File creation process (First 7 steps)&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;span style="color:#3333ff;"&gt;Once the person assisting you enters the correct password, you will be notified that someone is trying to connect to your machine and you will be given the option either to allow or deny the remote connection.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-204384985912092394?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=u_yOs_z2fow:lV7CrSbiYIY:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=u_yOs_z2fow:lV7CrSbiYIY:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=u_yOs_z2fow:lV7CrSbiYIY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=u_yOs_z2fow:lV7CrSbiYIY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=u_yOs_z2fow:lV7CrSbiYIY:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=u_yOs_z2fow:lV7CrSbiYIY:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/204384985912092394/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=204384985912092394" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/204384985912092394" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/204384985912092394" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/u_yOs_z2fow/using-windows-remote-assistance-to-get.html" title="Using Windows Remote Assistance to Get Help" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp1.blogger.com/_UFVClPM9Xl0/SJOaDol-ptI/AAAAAAAAABM/A3cDOcJ5-_s/s72-c/AskSomeone.JPG" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/08/using-windows-remote-assistance-to-get.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-4525638755023721308</id><published>2008-07-31T18:32:00.000-04:00</published><updated>2008-07-31T18:47:11.624-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="making money online" /><category scheme="http://www.blogger.com/atom/ns#" term="online surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="zoompanel surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="Online paid surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="paid online surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="make money by taking surveys" /><title type="text">Making money online - Zoompanel.com paid surveys (Review)</title><content type="html">I unknowingly joined Zoompanel.com. They sent me an email with a link to confirm my registration with them. I followed the steps in their email and finalized my registration with them. They award points everytime you complete a survey and earned points can be redeemed for various products falling into different categories. For example, to get 10 free song downloads or to get a CD Scratch repair kit, I must earn atleast 1000 points by completing their surveys. So far I have earned 55 points. They awarded me 50 points just for completing the registration process and just 5 minutes ago, they sent me an invitation to take a questionairre which would help them identify if I am the right person for taking an available survey. I was not selected for the survey but they awarded me another 5 points just for completing the questionairre.&lt;br /&gt;Atleast I am seeing some activity and receiving emails from ZoomPanel.com. They look much better than MindFieldOnline.com.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-4525638755023721308?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=keTCnspPZ2g:qNwQGTiFkgA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=keTCnspPZ2g:qNwQGTiFkgA:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=keTCnspPZ2g:qNwQGTiFkgA:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=keTCnspPZ2g:qNwQGTiFkgA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=keTCnspPZ2g:qNwQGTiFkgA:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=keTCnspPZ2g:qNwQGTiFkgA:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/4525638755023721308/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=4525638755023721308" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/4525638755023721308" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/4525638755023721308" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/keTCnspPZ2g/making-money-online-zoompanelcom-paid.html" title="Making money online - Zoompanel.com paid surveys (Review)" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/07/making-money-online-zoompanelcom-paid.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-5596446351056440870</id><published>2008-07-31T18:01:00.001-04:00</published><updated>2008-08-02T05:08:37.786-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="making money online" /><category scheme="http://www.blogger.com/atom/ns#" term="paid survey reviews" /><category scheme="http://www.blogger.com/atom/ns#" term="Online paid surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="mindfieldonline surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="make money online review" /><category scheme="http://www.blogger.com/atom/ns#" term="make money online" /><title type="text">Making money online - MindfieldOnline.com Review - Part 1</title><content type="html">I joined MindFieldOnline.com two days, provided alot of personal details such as my address, day time phone, evening phone number etc. And then I was asked to complete 10-12 huge questionairres, the purpose was to give them some more information about myself so they can use that information and send me surveys that match my buying habits, online activities etc etc.&lt;br /&gt;According to their website MindfieldOnline.com, they can issue checks only when I have accumalated atleast $10 in my account by completing surveys. It has been 2 days now and I haven't heard anything from them so far. The good thing is that they haven't flooded my email with their junk mails. They haven't disclosed how much do they usually pay for completing surveys and how many surveys once can expect to receive in a week, month etc.&lt;br /&gt;I will wait and see if I receive any surveys and can really make some money by completing MindFieldOnline surveys.&lt;br /&gt;I will update this post as soon as I receive my first "paid survey" through them.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-5596446351056440870?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=k1fe_udFR4g:IR2DZlsvwWY:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=k1fe_udFR4g:IR2DZlsvwWY:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=k1fe_udFR4g:IR2DZlsvwWY:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=k1fe_udFR4g:IR2DZlsvwWY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=k1fe_udFR4g:IR2DZlsvwWY:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=k1fe_udFR4g:IR2DZlsvwWY:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/5596446351056440870/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=5596446351056440870" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/5596446351056440870" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/5596446351056440870" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/k1fe_udFR4g/making-money-online-reviewing.html" title="Making money online - MindfieldOnline.com Review - Part 1" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/07/making-money-online-reviewing.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-968659781613365097</id><published>2008-07-30T04:10:00.000-04:00</published><updated>2008-07-30T04:28:34.228-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="ads on car" /><category scheme="http://www.blogger.com/atom/ns#" term="advertising on car" /><category scheme="http://www.blogger.com/atom/ns#" term="display ads" /><category scheme="http://www.blogger.com/atom/ns#" term="Get paid to drive your car" /><title type="text">Get paid to drive your car - My experience</title><content type="html">I heard about Adsmart Outdoor Advertising (http://www.adsmartoutdoor.com) yesterday and decided to fill out their online application form. According to their website they wrap brand new Nissan Xterras and VW Beetles in pleasing advertisements and give the car to drive for free.&lt;br /&gt;If you agree then you own vehicle can be used for advertisement purposes and they pay you $350 a month if you want to use your own car instead of getting one from them.&lt;br /&gt;There are some conditions such as washing the car twice per month, driving the car an average of 1100 miles a month etc etc.&lt;br /&gt;They have a nice simple website with no POPUPS with good information. I have filled out their online Application/Contact form and now waiting to hear from them.&lt;br /&gt;As soon as I hear from them I will update this post but I am not sure if I will ever hear from them. Probably there are thousands of people like me in the wait list and not enough advertisers.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-968659781613365097?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=p7XjjcHrRZU:sDSFdF69tlg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=p7XjjcHrRZU:sDSFdF69tlg:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=p7XjjcHrRZU:sDSFdF69tlg:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=p7XjjcHrRZU:sDSFdF69tlg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=p7XjjcHrRZU:sDSFdF69tlg:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=p7XjjcHrRZU:sDSFdF69tlg:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/968659781613365097/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=968659781613365097" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/968659781613365097" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/968659781613365097" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/p7XjjcHrRZU/get-paid-to-drive-your-car-my.html" title="Get paid to drive your car - My experience" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/07/get-paid-to-drive-your-car-my.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-211939342619319755</id><published>2008-07-30T03:31:00.000-04:00</published><updated>2008-07-30T04:07:00.763-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="making money online" /><category scheme="http://www.blogger.com/atom/ns#" term="Online business" /><category scheme="http://www.blogger.com/atom/ns#" term="Home based business review" /><category scheme="http://www.blogger.com/atom/ns#" term="Online paid surveys" /><category scheme="http://www.blogger.com/atom/ns#" term="make money online" /><title type="text">Get paid to take online surveys - Review Part 1</title><content type="html">I found this link http://www.surveyjob.net on Craigslist and visited the website to see if it is really possible to make some money by taking online surveys. According to SurveyJob's website, it is possible to make $250+ an hour for completing online surveys and if I become a member of SurveyJob.net right away then&lt;br /&gt;&lt;ol&gt;&lt;li&gt;I can get paid to drive and expect to make $1500+ a month or Get a free car (Membership fee is $29.95 but totally free if I join them right away)&lt;/li&gt;&lt;li&gt;I can get paid to pass out free samples and expect to make $10 - $40 an hour. (Membership fee is $25.95 but totally free if I join ..... )&lt;/li&gt;&lt;li&gt;I can get paid to read emails (Membership fee $19.95 but free if I join .... )&lt;/li&gt;&lt;/ol&gt;Also SurveyJob.net advertised that online Surveys pay anywhere from $5 - $75 per survey.&lt;br /&gt;Participating in online focus groups can pay anywhere from $50 - $150 an hour!&lt;br /&gt;And I can also get paid to watch movie trailers.&lt;br /&gt;&lt;br /&gt;I decided to click on the "Sign up Now" button and clicking on the button took to me another page which informed that there are a total of 19,325 surveys and focus groups from 632 companies available in my area (they used my IP address to find out my geographical location).&lt;br /&gt;I was once again asked to click on a "Join Now" button if I wish to become a member of SurveyJob.net and make money by taking surveys. I clicked on the button and the next page asked me to pay $29.95 membership fee either using my credit card or using my paypal account. I was also informed that taking One or Two surveys will more than cover the registration and membership fee.  So after seeing and reading this, I decided not to continue with the registration/membership process because who knows what will happen once I pay them. Maybe I will not get any survey and what if I complete several surveys but the companies conducting those surveys never pay me anything. SurveyJob.net did not look right to me but if you have dealt with them in the past or are their current member and have some some good things to say about SurveyJob.net then please share.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-211939342619319755?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Yuli14PE-00:AGcMKXt0mJo:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Yuli14PE-00:AGcMKXt0mJo:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Yuli14PE-00:AGcMKXt0mJo:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Yuli14PE-00:AGcMKXt0mJo:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=Yuli14PE-00:AGcMKXt0mJo:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=Yuli14PE-00:AGcMKXt0mJo:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/211939342619319755/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=211939342619319755" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/211939342619319755" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/211939342619319755" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/Yuli14PE-00/get-paid-to-take-online-surveys-review.html" title="Get paid to take online surveys - Review Part 1" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/07/get-paid-to-take-online-surveys-review.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-725343078298820976</id><published>2008-07-26T19:49:00.000-04:00</published><updated>2008-07-26T20:17:14.450-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="GeForce 6 series" /><category scheme="http://www.blogger.com/atom/ns#" term="XP" /><category scheme="http://www.blogger.com/atom/ns#" term="Compaq Presario SR5130NX to XP" /><category scheme="http://www.blogger.com/atom/ns#" term="XP drivers on Compaq" /><category scheme="http://www.blogger.com/atom/ns#" term="Compaq Presario SR5130NX" /><category scheme="http://www.blogger.com/atom/ns#" term="Vista to XP" /><title type="text">Installing Windows XP on Compaq Presario SR5130NX</title><content type="html">This computer came with Microsoft Windows Vista Home Premium. Changed the boot drive sequence and set it to read CD/DVD drive before reading the hard disk drive. Inserted Windows XP CD in the CD/DVD drive and restarted the computer. Formatted the C: drive and removed Windows Vista Home Premium and selected the option to install Windows XP on the C: drive. After the installation of Windows XP was complete, it was time to istall the drivers. It was actually very hard to find XP drivers for all the installed hardware on this machine (Presario SR5130NX). The three important drivers that I needed for this machine were:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Driver for GeForce 6150SE nForce 430 (&lt;a href="http://www.nvidia.com/object/winxp_175.19_whql.html"&gt;http://www.nvidia.com/object/winxp_175.19_whql.html&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Realtek driver (&lt;a href="http://www.realtek.com.tw/Downloads/downloadsView.aspx?Langid=1&amp;amp;PNid=14&amp;amp;PFid=23&amp;amp;Level=4&amp;amp;Conn=3&amp;amp;DownTypeID=3&amp;amp;GetDown=false"&gt;http://www.realtek.com.tw/Downloads/downloadsView.aspx?Langid=1&amp;amp;PNid=14&amp;amp;PFid=23&amp;amp;Level=4&amp;amp;Conn=3&amp;amp;DownTypeID=3&amp;amp;GetDown=false&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;USB drivers&lt;/li&gt;&lt;/ul&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;It is important to have Windows XP Service Pack 2 installed on your machine before you can install Realtek Audio and GeForce 6150 nForce 430 drivers. Realtek would refuse to install and GeForce driver wouldn't make any difference if Windows XP Service Pack 2 isn't installed. So it is important to update your XP to XP Service Pack 2 if your XP isn't already XP SP2.&lt;br /&gt;The final step is to update your USB drivers. Use windows automatic Search and Install drivers utility to update USB drivers. Restart your computer once done with all of the steps and that is all you need to do to make this Presario SR5130NX work with Windows XP Service Pack 2&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-725343078298820976?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iW6lCbOrXjw:w8v7GkJeVFU:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iW6lCbOrXjw:w8v7GkJeVFU:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iW6lCbOrXjw:w8v7GkJeVFU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iW6lCbOrXjw:w8v7GkJeVFU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iW6lCbOrXjw:w8v7GkJeVFU:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iW6lCbOrXjw:w8v7GkJeVFU:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/725343078298820976/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=725343078298820976" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/725343078298820976" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/725343078298820976" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/iW6lCbOrXjw/installing-windows-xp-on-compaq.html" title="Installing Windows XP on Compaq Presario SR5130NX" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/07/installing-windows-xp-on-compaq.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-5424682859753128864</id><published>2008-07-25T04:35:00.001-04:00</published><updated>2008-07-25T04:54:57.424-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="websiteoutlook" /><category scheme="http://www.blogger.com/atom/ns#" term="Website valuation" /><category scheme="http://www.blogger.com/atom/ns#" term="website revenues" /><category scheme="http://www.blogger.com/atom/ns#" term="website networth" /><title type="text">Website Valuation</title><content type="html">Just found this interesting website: &lt;a href="http://www.websiteoutlook.com/"&gt;http://www.websiteoutlook.com&lt;/a&gt; where you can enter you website's address and find it's estimated value (supposed to help you when selling your website, I guess).&lt;br /&gt;&lt;br /&gt;It doesn't exactly reveal the formula it uses for estimation but does mention the following items that it considers before providing an estimate:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Traffic links&lt;/li&gt;&lt;li&gt;Google Pagerank&lt;/li&gt;&lt;li&gt;Backlinks&lt;/li&gt;&lt;li&gt;Directory Listings&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Upon entering the website address, websiteoutlook.com will provide information such as:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Site's networth&lt;/li&gt;&lt;li&gt;Pagerank&lt;/li&gt;&lt;li&gt;Number of backlinks&lt;/li&gt;&lt;li&gt;Daily pageviews&lt;/li&gt;&lt;li&gt;Daily Ad Revenues&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;There is also a "For Sale" section at websiteoutlook.com where websites can be bought and sold.&lt;/p&gt;&lt;p&gt;How accurate is it? I do not know. Obviously there are no guarantees, so do not take it seriously.&lt;br /&gt;It values Google.com at $1.2 billion USD and values Yahoo.com at $2.4 billion USD&lt;br /&gt;Go to &lt;a href="http://www.websiteoutlook.com/"&gt;http://www.websiteoutlook.com&lt;/a&gt; to estimate the value of your website and/or blog.&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-5424682859753128864?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=ltvg85zdNBg:dyorqRVUnaw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=ltvg85zdNBg:dyorqRVUnaw:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=ltvg85zdNBg:dyorqRVUnaw:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=ltvg85zdNBg:dyorqRVUnaw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=ltvg85zdNBg:dyorqRVUnaw:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=ltvg85zdNBg:dyorqRVUnaw:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/5424682859753128864/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=5424682859753128864" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/5424682859753128864" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/5424682859753128864" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/ltvg85zdNBg/website-valuation.html" title="Website Valuation" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/07/website-valuation.html</feedburner:origLink></entry><entry><id>tag:blogger.com,1999:blog-4130027664831941194.post-1430054784888088391</id><published>2008-07-24T21:00:00.000-04:00</published><updated>2008-07-25T05:37:06.980-04:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="DCTM" /><category scheme="http://www.blogger.com/atom/ns#" term="Interview" /><category scheme="http://www.blogger.com/atom/ns#" term="Documentum Interview Questions" /><category scheme="http://www.blogger.com/atom/ns#" term="Interview Questions" /><title type="text">Sample Documentum Interview Questions</title><content type="html">I am trying here to compile a list of basic questions that I have often faced during a documentum interview. I believe that these questions are very basic and most people who have worked with EMC's Documentum already know answers to most of the questions below. But taking out half an hour to review these concepts before the interview would help if the interviewer prefers to test your documentum basics.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Draw and explain ECM and WCM architecture&lt;/li&gt;&lt;li&gt;List as many native Documentum types as you can&lt;/li&gt;&lt;li&gt;List as many native Documentum attributes as you can&lt;/li&gt;&lt;li&gt;What can be done if base Documentum types and/or attributes cannot handle business specific data&lt;/li&gt;&lt;li&gt;Explain different ways new object types and attributes can be created&lt;/li&gt;&lt;li&gt;What is a lifecycle and how can we create lifecycles&lt;/li&gt;&lt;li&gt;What is a workflow and how can we create workflows in documentum&lt;/li&gt;&lt;li&gt;What is a Virtual Document&lt;/li&gt;&lt;li&gt;How can we implement security in documentum&lt;/li&gt;&lt;li&gt;Explain how Content Server and Docbase communicate with the Database&lt;/li&gt;&lt;li&gt;Explain the datatypes of some of the native documentum attributes&lt;/li&gt;&lt;li&gt;When customizing an action or creating a new action, what are some of the files types that you would modify or create&lt;/li&gt;&lt;li&gt;Explain how would you create a new workflow auto-activity&lt;/li&gt;&lt;li&gt;Explain the steps involved in making an auto-activity available to be used in a workflow template&lt;/li&gt;&lt;li&gt;Would you install Content Server, Database, Application server on one machine? &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;More coming soon ...&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4130027664831941194-1430054784888088391?l=flarekit.blogspot.com'/&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:TzevzKxY174"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=TzevzKxY174" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iSbx5ulzres:ZU9D6r_fTjs:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:l6gmwiTKsz0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=l6gmwiTKsz0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:KwTdNBX3Jqk"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iSbx5ulzres:ZU9D6r_fTjs:KwTdNBX3Jqk" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:qj6IDK7rITs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=qj6IDK7rITs" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iSbx5ulzres:ZU9D6r_fTjs:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iSbx5ulzres:ZU9D6r_fTjs:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/FlareKit?a=iSbx5ulzres:ZU9D6r_fTjs:4cEx4HpKnUU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/FlareKit?i=iSbx5ulzres:ZU9D6r_fTjs:4cEx4HpKnUU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://flarekit.blogspot.com/feeds/1430054784888088391/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="https://www.blogger.com/comment.g?blogID=4130027664831941194&amp;postID=1430054784888088391" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/1430054784888088391" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4130027664831941194/posts/default/1430054784888088391" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FlareKit/~3/iSbx5ulzres/what-should-you-know-before-your.html" title="Sample Documentum Interview Questions" /><author><name>Khan, S A</name><uri>http://www.blogger.com/profile/09404402620340154516</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd="http://schemas.google.com/g/2005" name="OpenSocialUserId" value="13155145976150798295" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://flarekit.blogspot.com/2008/07/what-should-you-know-before-your.html</feedburner:origLink></entry></feed>
