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

<channel>
	<title>Programming Ideas, Logics, Tips and Tricks &#187; internet</title>
	<atom:link href="http://www.sajithmr.me/tag/internet/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sajithmr.me</link>
	<description></description>
	<lastBuildDate>Mon, 23 Jan 2012 15:44:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Check website in different browsers</title>
		<link>http://www.sajithmr.me/check-website-in-different-browsers</link>
		<comments>http://www.sajithmr.me/check-website-in-different-browsers#comments</comments>
		<pubDate>Sun, 22 Mar 2009 01:01:28 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[alignment]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=396</guid>
		<description><![CDATA[Last day i got a good website in which we can test the rendering of a particular website through different versions of interenet explorer. From a designer&#8217;s view, internet explorer is a life long head ache due its different alignment, floating problem, iframe problem, script execution problem and all. Here , http://ipinfo.info/netrenderer/index.php , You can [...]]]></description>
			<content:encoded><![CDATA[<p>Last day i got a good website in which we can test the rendering of a particular website through different versions of interenet explorer. From a designer&#8217;s view, internet explorer is a life long head ache due its different alignment, floating problem, iframe problem, script execution problem and all.</p>
<p><a href="http://www.sajithmr.com/wp-content/uploads/2009/03/epath-ie-comparison.jpg"><img class="alignnone size-full wp-image-398" title="epath-ie-comparison" src="http://www.sajithmr.com/wp-content/uploads/2009/03/epath-ie-comparison.jpg" alt="" width="200" height="100" /></a></p>
<p>Here , <a href="http://ipinfo.info/netrenderer/index.php" target="_blank">http://ipinfo.info/netrenderer/index.php</a> , You can check your website through different internet explorer version. It will be useful for linux developers to test the website via internet explorer.No need to boot windows operating system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/check-website-in-different-browsers/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Internet Explorer Float &#8211; Margin Problem</title>
		<link>http://www.sajithmr.me/internet-explorer-float-margin-problem</link>
		<comments>http://www.sajithmr.me/internet-explorer-float-margin-problem#comments</comments>
		<pubDate>Thu, 16 Oct 2008 14:22:10 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[webworld]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[margin]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[white space]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/internet-explorer-float-margin-problem/</guid>
		<description><![CDATA[If you are a web designer, who designs using css  properties, perhaps you get in struck with different browser&#8217;s compatibility. In these case Internet explorer would be your most headache, especially IE 6 or former versions . Mozilla shows contents as we expect while the design phase. The web browser arrived recently, Chrome also shows [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/10/internet-explorer-logo-with-pins.jpg" alt="Internet Explorer Float - Margin Problem" /></p>
<p>If you are a web designer, who designs using css  properties, perhaps you get in struck with different browser&#8217;s compatibility. In these case Internet explorer would be your most headache, especially IE 6 or former versions .</p>
<p><a href="http://www.sajithmr.com/why-i-like-mozilla/" title="Mozilla" target="_blank">Mozilla</a> shows contents as we expect while the design phase. The web browser arrived recently, <a href="http://www.sajithmr.com/google-chrome/" title="Google Chrome" target="_blank">Chrome</a> also shows things like what we put in our designs. When we check with Internet explorer, the veteran in this field, a lots of problems with aligns , extra white space , floating  etc.</p>
<p>I already posed about <a href="http://www.sajithmr.com/ie-internet-explorer-form-tag-problem/" title="Internet Explorer Form Tag " target="_blank">internet explorer form tag problem</a>. Here, recently i faced a different problem with IE, when we use float values say float:left for a particular div, and if we apply left-margin:10px (or whatever value), IE displays it with doubled marginal length (in this case around 20px)</p>
<p>When i googled it , and finally got a solution. What you have to do is, add <strong>display:inline </strong>value to the div which shows this extra white space or extra length</p>
<p>eg:</p>
<p><font color="#993300">#rightDiv<br />
{<br />
width:279px;<br />
height:40px;</font></p>
<p><font color="#993300">float:left;<br />
display:inline;</font></p>
<p><font color="#993300">}</font></p>
<p>I got this precious solution from <a href="http://www.positioniseverything.net/explorer/floatIndent.html" target="_blank">http://www.positioniseverything.net/explorer/floatIndent.html</a></p>
<p>If you want to get the updations in these article, enter your email address below:</p>
<form action="http://www.feedburner.com/fb/a/emailverify" method="post" target="popupwindow" onsubmit="window.open('http://www.feedburner.com/fb/a/emailverifySubmit?feedId=1221113', 'popupwindow', 'scrollbars=yes,width=550,height=520');return true">Enter your email address:&nbsp;<br />
<input type="text" style="color:#666;border:1px solid #cbcbcb;background:#fcfcfc; width:120px;"  name="email"/>
<input type="hidden" value="http://feeds.feedburner.com/~e?ffid=1221113" name="url"/>
<input type="hidden" value="Sajithmr.com" name="title"/>
<input type="hidden" name="loc" value="en_US"/>&nbsp;<br />
<input type="submit" value="Submit" /></form>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/internet-explorer-float-margin-problem/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mozilla is slow ??</title>
		<link>http://www.sajithmr.me/mozilla-is-slow</link>
		<comments>http://www.sajithmr.me/mozilla-is-slow#comments</comments>
		<pubDate>Wed, 16 Apr 2008 07:55:33 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[memory usage]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[speed]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/mozilla-is-slow/</guid>
		<description><![CDATA[Mozilla uses more memory space. It becomes slow when i open more tabs Page cannot be found error makes the whole browser hang It crashes sometimes and restore session is the only resort to regain The above complaints are very common about mozilla. But still i like mozilla But there are some hidden truths regarding [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/04/modern_navigation-1-small.jpg" alt="Mozilla is Slow" height="336" width="448" /></p>
<ul>
<li>Mozilla uses more memory space.</li>
<li>It becomes slow when i open more tabs</li>
<li>Page cannot be found error makes the whole browser hang</li>
<li>It crashes sometimes and restore session is the only resort to regain</li>
</ul>
<p>The above complaints are very common about mozilla. But  <a href="http://www.sajithmr.com/why-i-like-mozilla/" title="Why i like mozilla" target="_blank">still  i like mozilla</a> <img src='http://www.sajithmr.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But there are some hidden truths regarding mozilla&#8217;s configuration. The Basic or <strong>Default configuration of mozilla is for Dial-up-connection</strong>.</p>
<blockquote><p> You can go on with your default mozilla if you are using a dial-up connection. If you have a <strong>Broadband Internet Connection</strong>, you can make your mozilla more powerful than usual.</p></blockquote>
<p><u>Do the following things:</u></p>
<ol>
<li>Open a new tab in your mozilla.</li>
<li>Type <strong>about:config</strong> in your address bar and press Enter</li>
</ol>
<p>This is the configuration page for mozilla. Dont edit all the fields .</p>
<p><u>For reducing memory usage of firefox do this</u>:</p>
<p>Right click on the resulting window, <strong>New &gt;  Boolean </strong></p>
<p>It prompt for &#8220;Enter the preference name&#8221;</p>
<p>Type<font color="#ff6600"> </font><strong><em><font color="#ff6600">config.trim_on_minimize</font> </em></strong>and press ok.  Select <strong> true</strong>  value  after that</p>
<p><u>For adding more speed for browsing and downloading:</u></p>
<p>On the about:config page , find the string <em><font color="#ff6600"><strong>network.http.pipelining</strong></font> </em> (you can use the filter given for easy searching)</p>
<p>Change its value from false to true (Just double click on the line, it will toggle the true/ false values, or right click and click toggle)</p>
<p>Also change <em><font color="#ff6600"><strong>network.http.proxy.pipelining</strong></font> </em> value true.</p>
<p>Now you have to change <em>network.http.pipelining.maxrequests </em> value . (Double click or right click and modify)</p>
<p>By default it will be 5 . Set its value from 10 to 30 depending on your internet connection speed.</p>
<p>Final Step: Right click on that window (about:config)  and Click <strong>New  &gt; Integer</strong> and type:<font color="#ff6600"> </font><strong><em><font color="#ff6600">nglayout.initialpaint.delay</font> </em></strong> and set its value to 0 (zero)</p>
<p>Done, restart your mozilla. Now you will get faster mozilla, faster internet. Happy Browsing.</p>
<p>If you want to know more regarding mozilla configuration, see this link: <a href="http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries" target="_blank">http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries</a></p>
<p><u>Interesting Tip:</u></p>
<p>like<strong> http:// </strong>or <strong>ftp://</strong> prompts you saw <strong>about</strong>: prompt. <strong>about:blank</strong> is a very familiar prompt right ?  So another prompt here ; it is <strong>chrome://</strong></p>
<p>Type:  chrome://browser/content/browser.xul  in your browsers address bar to see your mozilla browser inside itself.</p>
<p>Interesting !!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/mozilla-is-slow/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
	</channel>
</rss>

