<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>TheChetan's Blog</title>
	<atom:link href="http://thechetans.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thechetans.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sat, 03 Oct 2009 11:26:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='thechetans.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/03e82c5d95686ae53f5881b142f83a98?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>TheChetan's Blog</title>
		<link>http://thechetans.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://thechetans.wordpress.com/osd.xml" title="TheChetan&#039;s Blog" />
	<atom:link rel='hub' href='http://thechetans.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SpeedUp Webpages Using gzip compression</title>
		<link>http://thechetans.wordpress.com/2009/10/03/speedup-webpages-using-gzip-compression/</link>
		<comments>http://thechetans.wordpress.com/2009/10/03/speedup-webpages-using-gzip-compression/#comments</comments>
		<pubDate>Sat, 03 Oct 2009 11:25:22 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[fast loading]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[speed up]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=80</guid>
		<description><![CDATA[It is one of the important point to attract web traffic and maintain the level of the website by its speed.Google is gold medalist in this.Dont want to know why ? .Yeah ! But not only due to there bursty servers but also very minute changes and proper arrangements of HTML and proper compression used [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=80&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="padding-left:30px;">It is one of the important point to attract web traffic and maintain the level of the website by its speed.Google is gold medalist in this.Dont want to know why ? .Yeah ! But not only due to there bursty servers but also very minute changes and proper arrangements of HTML and proper compression used while transfer of data from server to user.</p>
<p style="padding-left:30px;">Google uses a gzip compression for transfer of web pages.That means the data which is to be transferred is compressed by gzip compression and then sent to the user.The browser decompress the gzip data and show to the user as usual data.But if the browser dont support gzip ? Yeah , Google Verify before the gzip compression that the browser supports gzip compression or not else it will send data or html in normal way.</p>
<p style="padding-left:30px;">How much is the efficiency of this system ?</p>
<p style="padding-left:30px;">I have done some experiments on gzip compression.I made two php files one supporting gzip and other not.The duration of loading of php file without gzip compression was ~128 ms [It was hosted on local host] and when I clicked on php file with gzip compression , I was amazed to see the results it was about ~ 56 ms .So this really worth.</p>
<p style="padding-left:30px;">How is this technically possible ?</p>
<p style="padding-left:30px;">It is very easy with PHP , I will post the code which is to be pasted above the php file you want to compress.</p>
<p style="padding-left:30px;"><strong>&lt;?php<br />
ob_start(&#8220;ob_gzhandler&#8221;);<br />
?&gt;</strong></p>
<p style="padding-left:30px;">
<p style="padding-left:30px;">This will speed up your loading speed of a web page.But this code is incomplete without validation that the browser supports gzip or not .</p>
<p style="padding-left:30px;">Browser sends the header to the server named &#8220;Accept-Encoding&#8221; , If the gzip is listed in that means you can use it else normal encoding will used which is by default.</p>
<p style="padding-left:30px;">&lt;?php</p>
<p style="padding-left:30px;">if(preg_match(&#8216;/gzip/&#8217;,$_SERVER['Accept-Encoding']))</p>
<p style="padding-left:30px;">{</p>
<p style="padding-left:30px;"><strong>ob_start(&#8216;ob_gzhandler&#8217;);</strong></p>
<p style="padding-left:30px;">}</p>
<p style="padding-left:30px;">?&gt;</p>
<p style="padding-left:30px;">So this way you will able to add this system to your PHP pages , But what about others like asp , cgi etc.Using same logic you can add in other programming language also as the gzip and Accept-Encoding will be the common terms throughout the web .</p>
<p style="padding-left:30px;">
<p style="padding-left:30px;">Cheer</p>
<p style="padding-left:30px;">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/80/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/80/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/80/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=80&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/10/03/speedup-webpages-using-gzip-compression/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>
	</item>
		<item>
		<title>Most dangerous computer viruses!</title>
		<link>http://thechetans.wordpress.com/2009/07/27/most-dangerous-computer-viruses/</link>
		<comments>http://thechetans.wordpress.com/2009/07/27/most-dangerous-computer-viruses/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 18:07:14 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=70</guid>
		<description><![CDATA[Computer viruses have a relatively short history by the damages caused by some of the most dangerous viruses pushed cyber-experts to open a chapter that includes a huge database on computer viruses and the cost of damages caused along with companies, government and universities highly affected by malware. Here are some of the most dangerous [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=70&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#000000;">Computer viruses have a relatively short history by the damages caused by some of the most dangerous viruses pushed cyber-experts to open a chapter that includes a huge database on computer viruses and the cost of damages caused along with companies, government and universities highly affected by malware. </span></p>
<p><strong><span style="color:#000000;">Here are some of the most dangerous computer viruses in history: </span></strong></p>
<dl>
<dt><img class="aligncenter" title="Virus" src="http://img119.imageshack.us/img119/2758/30comp.jpg" alt="Virus" width="300" height="300" /></dt>
</dl>
<p><em><span style="font-size:medium;">Jerusalem &#8211; 1988</span></em></p>
<p><span style="color:#000000;">This is one of the first MS-DOS viruses in history that caused enormous destructions, affecting many countries, universities and company worldwide. On Friday 13, 1988 the computer virus managed to infect a number of institutions in Europe, America and the Middle East. The name was given to the virus after one of the first places that got &#8220;acquainted&#8221; with it &#8211; the Jerusalem University.</span></p>
<p>Along with a number of other computer viruses, including &#8220;Cascade&#8221;, &#8220;Stoned&#8221;, &#8220;Vienna&#8221; the Jerusalem virus managed to infect thousands of computers while still remaining unnoticed. Back then the anti-virus programs were not as advanced as they are today and a lot of users had little belief of the existence of computer viruses.<br />
<a title="Read More" href="http://www.viruslist.com/en/viruses/encyclopedia?chapter=153311158" target="_blank">Read more </a></p>
<p><em><span style="font-size:medium;">Morris (a.k.a. Internet Worm) &#8211; November 1988<br />
</span></em></p>
<p><span style="color:#000000;">This computer virus infected over 6,000 computer systems in the United States, including the famous NASA research Institute, which for some time remained completely paralyzed. Due to erratic code, the worm managed to send millions of copies of itself to different network computers, being able to entirely paralyze all network resources. The damages caused by the Morris computer virus were estimated at $96 millions.</span></p>
<p>To be able to spread the computer virus used errors in such operating systems as Unix for VAX and Sun Microsystems. There were a number of other interesting ideas used by the virus &#8211; for example it could pick user passwords.</p>
<p><span style="color:#000000;"><img class="aligncenter" title="Virus " src="http://img37.imageshack.us/img37/817/494vir4.jpg" alt="" width="319" height="260" /></span><em><span style="font-size:medium;">Solar Sunrise &#8211; 1998</span></em></p>
<p><span style="color:#000000;">A decade later the situation didn&#8217;t change, it might have gotten even got worse. Using a computer virus, hackers, in 1998, penetrated and took control of over 500 computers systems that belonged to the army, government and private sector of the United States. The whole situation was dubbed Solar Sunrise after the popular vulnerabilities in computers that run on the operating system called Sun Solaris. Initially it was believed that the attacks were planed by the operatives in Iraq. It was later revealed that the incidents represented the work of two American teenagers from California. After the attacks, the Defense Department took drastic actions to prevent future incidents of this kind. </span></p>
<p><span style="color:#000000;"><img class="aligncenter" title="Virus" src="http://img37.imageshack.us/img37/2425/187vir3.jpg" alt="" width="199" height="319" /></span></p>
<p><em><span style="font-size:medium;">Melissa &#8211; 1999</span></em></p>
<p><span style="color:#000000;">For the first time computers got acknowledged with Melissa computer virus on March 26, 1999, when the virus shut down Internet mail system, which got blocked with e-mails infected by the worm. It is worth mentioning that at first Melissa was not meant to cause any harm, but after it overloaded servers the virus led to unpredictable problems. For the first time it spread in the Usenet discussion group alt.sex. Melissa was hidden within a file called &#8220;List.DiC&#8221;, which featured passwords that served as keys to unlocking 80 pornographic websites. The original form of the virus was sent through e-mail to different users.</span></p>
<p>Melissa computer virus was developed by David L. Smith in Aberdeen Township, New Jersey. Its name comes from a lap dancer that the programmer got acknowledged with while in Florida. After being caught, the creator of the virus was sentenced to 20 months in federal prison and ordered to pay a fine of $5,000. The arrest represented a collaboration of FBI, New Jersey State Police and Monmouth Internet.</p>
<p>Melissa had the ability to multiply on Microsoft Word 97 and Word 2000, as well as Microsoft Excel 97, 2000 and 2003. In addition, the virus had the ability to mass-mail itself from Microsoft Outlook 97 or Outlook 98.</p>
<p><span style="color:#000000;"><img class="aligncenter" title="Virus" src="http://img37.imageshack.us/img37/4480/900virus.gif" alt="" width="200" height="200" /></span></p>
<p><span style="color:#000000;"><br />
</span></p>
<p><em><span style="font-size:medium;">I Love You &#8211; May 2000</span></em></p>
<p>Using a similar method as the Melissa, the computer virus dubbed <strong><em>&#8220;I Love You&#8221;</em></strong> managed to infect millions of computers around the world in just one night. Just like Melissa this computer virus sent passwords and usernames, which were stored on the attacked computers, back to the developer of the virus. After authorities traced the virus they found that a young Filipino student was behind the attack. The young man was released due to the fact that the <strong>Philippines</strong> did not have any law that would prevent hacking and spreading malware. This situation served as one of the premises for creating the <strong>European Union&#8217;s global Cybercrime Treaty</strong>.<br />
<img class="aligncenter" title="Virus" src="http://img37.imageshack.us/img37/4094/686computervirusalert1.jpg" alt="" width="300" height="225" /><br />
<em><span style="font-size:medium;">The Code Red worm &#8211; July 2001</span></em><br />
<span style="color:#000000;">This 21st century computer virus managed to penetrate tens of thousands of systems that ran Microsoft Windows NT as well as Windows 2000 server software. The damages caused by the Code Red computer virus were estimated at a total of $2 billion. Core Red was developed to use the power of all computers it infected against the official website of the White House at a predetermined date. In collaboration with different virus hunters and tech firms, the White House managed to decipher the code of the Code Red virus and stop traffic as the malware started its attacks. </span></p>
<p><span style="color:#000000;"><img class="aligncenter" title="Virus" src="http://img37.imageshack.us/img37/6691/986vir1.jpg" alt="" width="320" height="265" /><br />
</span></p>
<p><em><span style="font-size:medium;">Nimda &#8211; 2001</span></em></p>
<p><span style="color:#000000;">Shortly after the September 11 tragedy this computer virus infected hundreds of thousands of computers worldwide. Nimda was considered to be one of the most complicated viruses, having up to 5 different methods of infecting computers systems and duplicating itself. </span></p>
<p><span style="font-size:medium;"><a href="http://en.wikipedia.org/wiki/Nimda" target="_blank"></a></span><br />
<img class="aligncenter" title="Virus" src="http://img37.imageshack.us/img37/8537/379vir2.jpg" alt="" width="319" height="239" /></p>
<p><em><span style="font-size:medium;">Downadup &#8211; 2009</span></em></p>
<p><span style="color:#000000;">The latest and most dangerous virus is the &#8220;downadup&#8221; worm, which was also called &#8220;Conficker&#8221;. The computer security company F-Secure stated that the computer virus has infected 3.5 million computers worldwide. This malicious program was able to spread using a patched Windows flaw. Downadup was successful in spreading across the Web due to the fact that it used a flaw that Microsoft patched in October in order to distantly compromise computers that ran unpatched versions of Microsoft&#8217;s operating system. But the greatest power of the worm is believed to be the ability of computers, infected with the worm, to download destructive code from a random drop point. F-Secure stated that three of the most affected countries were China, Brazil and Russia.</span><br />
^_^<br />
<span style="color:#000000;"><br />
</span></p>
<p><em><span style="font-size:medium;"><br />
</span></em></p>
<p style="text-align:center;">
<p style="text-align:center;">
<p><span style="color:#000000;"><br />
</span><a href="http://polldaddy.com/poll/1815306/">View This Poll</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=70&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/07/27/most-dangerous-computer-viruses/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>

		<media:content url="http://img119.imageshack.us/img119/2758/30comp.jpg" medium="image">
			<media:title type="html">Virus</media:title>
		</media:content>

		<media:content url="http://img37.imageshack.us/img37/817/494vir4.jpg" medium="image">
			<media:title type="html">Virus </media:title>
		</media:content>

		<media:content url="http://img37.imageshack.us/img37/2425/187vir3.jpg" medium="image">
			<media:title type="html">Virus</media:title>
		</media:content>

		<media:content url="http://img37.imageshack.us/img37/4480/900virus.gif" medium="image">
			<media:title type="html">Virus</media:title>
		</media:content>

		<media:content url="http://img37.imageshack.us/img37/4094/686computervirusalert1.jpg" medium="image">
			<media:title type="html">Virus</media:title>
		</media:content>

		<media:content url="http://img37.imageshack.us/img37/6691/986vir1.jpg" medium="image">
			<media:title type="html">Virus</media:title>
		</media:content>

		<media:content url="http://img37.imageshack.us/img37/8537/379vir2.jpg" medium="image">
			<media:title type="html">Virus</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox 3.5 Vulnerability Rated &#8216;Highly Critical&#8217;</title>
		<link>http://thechetans.wordpress.com/2009/07/15/firefox-3-5-vulnerability-rated-highly-critical/</link>
		<comments>http://thechetans.wordpress.com/2009/07/15/firefox-3-5-vulnerability-rated-highly-critical/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 04:44:39 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Vulnerability]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=64</guid>
		<description><![CDATA[Exploit code for a vulnerability in Firefox was posted online on Monday. Mozilla says it is working on a fix. US-CERT on Tuesday warned about vulnerability in the new Firefox 3.5 browser that could allow a remote attacker to execute malicious code.Proof-of-concept exploit code was posted Monday on Milw0rm.com, an exploit code aggregation site, so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=64&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Exploit code for a vulnerability in Firefox was posted online on Monday. Mozilla says it is working on a fix.</p>
<p><span>US-CERT on Tuesday warned about vulnerability in the new Firefox 3.5 browser that could allow a remote attacker to execute malicious code.Proof-of-concept exploit code was posted Monday on Milw0rm.com, an exploit code aggregation site, so it&#8217;s likely that the vulnerability is being actively exploited.</span></p>
<p>The vulnerability, discovered by Simon Berry-Byrne, is related to the way Firefox 3.5 processes JavaScript code.Mozilla has acknowledged the vulnerability and has a fix that&#8217;s being tested. &#8220;The vulnerability can be exploited by an attacker who tricks a victim into viewing a malicious Web page containing the exploit code,&#8221; the company said on its security blog. &#8220;The vulnerability can be mitigated by disabling the JIT in the JavaScript engine.</p>
<p>To do this:</p>
<p>1) Enter <code>about:config</code> in the browser&#8217;s location bar.</p>
<p>2) Type <code>jit</code> in the Filter box at the top of the config editor.</p>
<p>3) Double-click the line containing <code>javascript.options.jit.content</code> setting the value to false.</p>
<p>As an alternative, the NoScript plug-in, which disables all JavaScript in the browser, should also offer protection.</p>
<p>Secunia, a computer security company based in Denmark, rates the vulnerability &#8220;highly critical&#8221; and notes that older versions of Firefox may be affected as well.</p>
<p>F-Secure, a computer security company based in Finland, said in a blog post that its Exploit Shield security software blocks the exploit.</p>
<p>In an interview on Monday about a bug in Google&#8217;s Chrome browser, Robert &#8220;RSnake&#8221; Hansen, CEO of SecTheory, a computer security consulting firm, criticized Firefox&#8217;s security process as being less rigorous than Microsoft (NSDQ: MSFT)&#8217;s. &#8220;For the most part, it&#8217;s just a bunch of random dudes who are contributing to it,&#8221; he said.</p>
<p>Nevertheless, Hansen said that Firefox, rather than Internet Explorer, was his browser of choice because it was better for hacking.</p>
<p>Johnathan Nightingale, whose business card says &#8220;human shield&#8221; &#8212; he manages the front-end team for Firefox and security issues &#8212; says he&#8217;s proud of the work Mozilla does and that he can&#8217;t compare Mozilla&#8217;s efforts to Microsoft&#8217;s because Microsoft&#8217;s security process isn&#8217;t open.</p>
<p>He notes that Mozilla devotes significant resources to security and that the company&#8217;s security team has been growing. He welcomes those who want to contribute to Mozilla to make it more secure.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=64&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/07/15/firefox-3-5-vulnerability-rated-highly-critical/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>
	</item>
		<item>
		<title>How to skip registration for forums and websites</title>
		<link>http://thechetans.wordpress.com/2009/07/05/how-to-skip-registration/</link>
		<comments>http://thechetans.wordpress.com/2009/07/05/how-to-skip-registration/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 05:01:59 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[google bot]]></category>
		<category><![CDATA[skip registration]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=53</guid>
		<description><![CDATA[It is always a head ache when we search for our information in google and when google send us to the forums  or any text oriented website where registration is compulsory.But I have found out a way to cheat the registration system.When google  can cache there information without registration than why not us :p .There [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=53&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="Registration" src="http://img161.imageshack.us/img161/3200/622registration.jpg" alt="" width="135" height="133" /></p>
<p>It is always a head ache when we search for our information in google and when <a href="http://www.google.com" target="_blank">google</a> send us to the forums  or any text oriented website where registration is compulsory.But I have found out a way to cheat the registration system.When google  can cache there information without registration than why not us :p .There are setting in the forum script that if the visitor is <a href="http://en.wikipedia.org/wiki/Googlebot" target="_blank">google bot</a> they wont ask for registration and allow it to crawl through out the  pages,as it will help them to gain traffic.If we act like a google bot we can also get such privileges.</p>
<hr />
<p style="padding-left:90px;">
<p style="padding-left:30px;">•   Switch to the <a href="http://www.mozilla.com/en-US/firefox/upgrade.html" target="_blank">Mozilla Firefox</a> and Install the Add on   <a href="https://addons.mozilla.org/en-US/firefox/addon/59" target="_blank">User Agent Switcher</a></p>
<p style="text-align:center;"><img class="aligncenter" title="Mozilla Firefox Agent Switcher Add-on" src="http://img6.imageshack.us/img6/8784/200agentswitcher.png" alt="" width="173" height="150" /></p>
<p style="text-align:left;padding-left:30px;">•  Now In Tools-&gt; User Agent Switcher -&gt; <strong>Edit User Agents<br />
</strong></p>
<p style="text-align:left;padding-left:30px;"><strong><img class="aligncenter" title="How to open User Agent Switcher In Mozilla Firefox" src="http://img161.imageshack.us/img161/3855/804as1.png" alt="" width="359" height="212" /><br />
</strong></p>
<p style="text-align:left;padding-left:30px;">•  Now Fill The Following fields properly</p>
<p style="text-align:left;padding-left:60px;">Description :  <strong>Googlebot 2.1 (New version)</strong></p>
<p style="text-align:left;padding-left:60px;">User-Agent : <strong>Googlebot/2.1 (+http://www.googlebot.com/bot.html)</strong></p>
<p style="text-align:left;padding-left:60px;"><strong><br />
</strong></p>
<p style="padding-left:60px;text-align:center;"><img class="aligncenter" title="Adding Google bot as user agent in mozilla firefox" src="http://img34.imageshack.us/img34/5662/860as2.png" alt="" width="400" height="376" /></p>
<p style="padding-left:30px;">
<p style="text-align:left;padding-left:30px;">
<p style="text-align:left;padding-left:30px;">• Now Goto Tools &#8211; &gt; Default User Agent &#8211; &gt; GoogleBot 2.1(New Version)</p>
<p style="text-align:left;padding-left:30px;"><img class="aligncenter" title="How to enable google bot mode" src="http://img198.imageshack.us/img198/860/110as3.png" alt="" width="407" height="238" /></p>
<p style="text-align:left;padding-left:30px;">
<p style="text-align:left;padding-left:30px;">
<p style="text-align:left;padding-left:30px;">That&#8217;s over <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Now Browse like a Google without any barriers.</p>
<p style="text-align:left;padding-left:30px;">
<p style="text-align:left;padding-left:30px;">
<p style="text-align:left;padding-left:30px;">^_^</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=53&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/07/05/how-to-skip-registration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>

		<media:content url="http://img161.imageshack.us/img161/3200/622registration.jpg" medium="image">
			<media:title type="html">Registration</media:title>
		</media:content>

		<media:content url="http://img6.imageshack.us/img6/8784/200agentswitcher.png" medium="image">
			<media:title type="html">Mozilla Firefox Agent Switcher Add-on</media:title>
		</media:content>

		<media:content url="http://img161.imageshack.us/img161/3855/804as1.png" medium="image">
			<media:title type="html">How to open User Agent Switcher In Mozilla Firefox</media:title>
		</media:content>

		<media:content url="http://img34.imageshack.us/img34/5662/860as2.png" medium="image">
			<media:title type="html">Adding Google bot as user agent in mozilla firefox</media:title>
		</media:content>

		<media:content url="http://img198.imageshack.us/img198/860/110as3.png" medium="image">
			<media:title type="html">How to enable google bot mode</media:title>
		</media:content>
	</item>
		<item>
		<title>How Google Got the Name Google</title>
		<link>http://thechetans.wordpress.com/2009/06/26/how-google-got-the-name-google/</link>
		<comments>http://thechetans.wordpress.com/2009/06/26/how-google-got-the-name-google/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 17:07:09 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=46</guid>
		<description><![CDATA[Google began life in January 1996, not as an internet search engine and online advertising corporation as it was destined to become, but as the thesis project of Larry Page, later joined in his endeavors by Sergey Brin, both PhD students at Stanford University, California. The name &#8216;Google&#8217; itself was derived from a misspelling of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=46&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-47" title="thechetan google style" src="http://thechetans.files.wordpress.com/2009/06/googlelogo.jpg?w=150&#038;h=38" alt="thechetan google style" width="150" height="38" /></p>
<p>Google began life in January 1996, not as an internet search engine and online advertising corporation as it was destined to become, but as the thesis project of Larry Page, later joined in his endeavors by Sergey Brin, both PhD students at Stanford University, California.</p>
<p>The name &#8216;Google&#8217; itself was derived from a misspelling of &#8216;googol&#8217; (ten raised to the power of a hundred) but the original name for the search engine was BackRub&#8217;, paying homage to the theory of the importance of back linking, or citation, which was the cornerstone of the project.</p>
<p>Page had hypothesized that if he could find a way to count and analyze the value of each back link on the web then a search engine using this qualitative data would necessarily yield more useful results than other engines which just counted keywords, Google&#8217;s mission statement, to organize the world&#8217;s information and make it universally accessible and useful,&#8217; reflects this original, core aim.</p>
<p>The project was highly complex and ambitious and these factors drew in Sergey Brin who began working on the project with Page. They created an algorithm that encompassed the number of links to a particular site and also the number of links into each of the sites linked. This algorithm was named PageRank&#8217;, after Page.</p>
<p>The verb &#8216;Google,&#8217; was added to the Merriam Webster Collegiate Dictionary and the Oxford English Dictionary in 2006 and Google has become integrated into society as a noun in its own right. The practice of searching for information on the web has come to be referred to simply as &#8216;Googling&#8217;, a tribute to the success and effectiveness of the project&#8217;s aims.</p>
<p>Google has spawned various internet practices such as to Google yourself&#8217;, a process of typing your own name into Google and seeing what comes up, on certain forums and on-line communities some innovative people post the names of friends they have lost contact with in the hope that these friends will Google themselves, find the post and make contact.</p>
<p>Another internet term that has been spawned is Google bomb&#8217; (also known as a link bomb&#8217;), this came about in the realms of net slang to describe the practice of attempting to get a large number of sites to link to a web-site using specific terms, usually with mischievous intentions, the result of such bombs can for example be that a derogatory word or phrase entered into Google will bring up a specific person&#8217;s homepage.</p>
<p>Google stated in early 2007 via their official bog that they had created &#8216;an algorithm that minimizes the impact of many Google bombs,&#8217; but whilst Google have publicly stated that they do not condone the practice of Google bombing it&#8217;s likely that the extent to which their project has become so integral to the web and it&#8217;s users overrides any annoyances that come with such broad territory.<br />
TRIVIA: Google&#8217;s headquarters in Mountain View, California is known as &#8220;the Googleplex&#8221;, this is a further play on googol&#8217; as googolplex means equivalent to ten raised to the power of a googol.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=46&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/06/26/how-google-got-the-name-google/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>

		<media:content url="http://thechetans.files.wordpress.com/2009/06/googlelogo.jpg?w=150" medium="image">
			<media:title type="html">thechetan google style</media:title>
		</media:content>
	</item>
		<item>
		<title>Grab free .ws domains</title>
		<link>http://thechetans.wordpress.com/2009/06/21/grab-free-ws-domains/</link>
		<comments>http://thechetans.wordpress.com/2009/06/21/grab-free-ws-domains/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 06:53:07 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[domains]]></category>
		<category><![CDATA[free ws domains]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=32</guid>
		<description><![CDATA[Here is a special link for guys who need free domains with some nice TLD .Register you freee ws domains from http://landrush.ws . And take a one domain for you ,or even more :p.Yeah offcourse you dont have full control on domain They have there own flash based webbuilder you need to build content oriented [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=32&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here is a special link for guys who need free domains with some nice TLD .Register you freee ws domains from <a href="http://landrush.ws">http://landrush.ws</a> .</p>
<p>And take a one domain for you ,or even more :p.Yeah offcourse you dont have full control on domain They have there own flash based webbuilder you need to build content oriented website throw that and you get email access too,its just similar to <a href="http://chi.mp" target="_blank">chi.mp</a> <img src="http://img4.orkut.com/img/smiley/i_bigsmile.gif" border="0" alt="" /> i grabbed <a href="http://chetan.ws" target="_blank">chetan.ws</a> , It includes affilimate programmes also so you can also earn $ aswell as get free domain <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<p>^_^</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=32&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/06/21/grab-free-ws-domains/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>

		<media:content url="http://img4.orkut.com/img/smiley/i_bigsmile.gif" medium="image" />
	</item>
		<item>
		<title>7 Essential SEO Cheat Sheets</title>
		<link>http://thechetans.wordpress.com/2009/06/13/7-essential-seo-cheat-sheets/</link>
		<comments>http://thechetans.wordpress.com/2009/06/13/7-essential-seo-cheat-sheets/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 16:40:09 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[seo cheat]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=27</guid>
		<description><![CDATA[You can’t remember everything especially with that huge amount of new information we consume daily. It is always great to have a few sheets that list most essential data we often need to deal with (along with SEO tools). Below I am listing a few cool cheat sheets most SEOs will find useful: SEO Cheat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=27&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You can’t remember everything especially with that huge amount of new information we consume daily. It is always great to have a few sheets that list most essential data we often need to deal with (along with <a title="seo tools" href="http://www.searchenginejournal.com/seo-tools/7299/">SEO tools</a>). Below I am listing a few cool cheat sheets most SEOs will find useful:</p>
<h3>SEO Cheat Sheet</h3>
<p align="center"><img src="http://www.searchenginejournal.com/wp-content/uploads/2009/02/seo-cheat-sheet.jpg" alt="seo cheat sheet" width="450" height="203" /></p>
<p><a href="http://www.seomoz.org/blog/the-web-developers-seo-cheat-sheet" target="_blank">The Web Developers SEO Cheat Sheet</a> (or preview it <a href="http://www.scribd.com/doc/2976807/The-Web-Developers-SEO-Cheat-Sheet" target="_blank">on Scribd</a>) include:</p>
<ul>
<li>Important SEO HTML tags;</li>
<li>Search engine indexing limits (common indexing limits imposed by search engines on sites that don’t hold a lot of authority);</li>
<li>Recommended title tag syntax;</li>
<li>Common canonical issues;</li>
<li>Important search engine robot user-agents;</li>
<li>Common robot traps to avoid (how webmasters might unintentionally stop spiders from crawling their sites);</li>
<li>Robots Meta tag syntax;</li>
<li>Robots.txt syntax;</li>
<li>Sitemap syntax.</li>
</ul>
<p><span> </span></p>
<h3>HTML Cheat Sheets</h3>
<p align="center"><img src="http://www.searchenginejournal.com/wp-content/uploads/2009/02/html-cheat-sheet.jpg" alt="html cheat sheet" width="450" height="199" /></p>
<p><a href="http://www.scottklarr.com/topic/94/html-and-xhtml-cheat-sheets/" target="_blank">Html and Xhtml cheat sheets</a> &#8211; this page contains a number of must-have PDF documents to quickly remind you of proper tag. All of them are very well designed and contain huge amounts of data on one page. For more basic info on HTML you might also want to bookmark or print <a href="http://www.killersites.com/HTML_CODES/index.jsp" target="_blank">this page</a>.</p>
<h3>Search Cheat Sheet</h3>
<p align="center"><img src="http://www.searchenginejournal.com/wp-content/uploads/2009/02/search-cheat-sheet.jpg" alt="search cheat sheet" width="450" height="171" /></p>
<p><a href="http://www.e3internet.com/tools/search-engine-query-cheatsheets/" target="_blank">Search Engine Operators</a>: this cheat sheet contains all essential advanced search operators for Google, Yahoo and MSN. Besides that, it lists some sample queries to search for backlink opportunities, forums and directories (Note: it hasn’t been updated since 2007, so some data can be outdated, e.g. the hack for supplemental results does not work any more).</p>
<p>Here is also a decent <a href="http://www.googleguide.com/advanced_operators_reference.html" target="_blank">Google advanced search sheet</a> and (on the side note) <a href="http://r.evhead.com/hodgepodge/gmail-shortcuts.html" target="_blank">Gmail shortcuts sheet</a>.</p>
<h3>Usability Cheat Sheet:</h3>
<p align="center"><img src="http://www.searchenginejournal.com/wp-content/uploads/2009/02/usability-cheat-sheet.jpg" alt="usability cheat sheet" width="450" height="207" /></p>
<p><a href="http://www.usereffect.com/topic/25-point-website-usability-checklist" target="_blank">25 point Website Usability Checklist</a>: keep this list at hand when planning a new website or evaluating an existing one. It lists most traditional usability and accessibility issues and basic recommendations. It is both important and measurable. The list is split into 4 roughly equal sections, (I) Accessibility, (II) Identity, (III) Navigation, and (IV) Content with 3 basic ratings: (1) Green Check = Good/Pass, (2) Red Check = Needs work, but no disaster, (3) Red X = Bad/Fail. Not all points are necessarily applicable to all sites.</p>
<h3>WordPress Cheat Sheet</h3>
<p align="center"><img src="http://www.searchenginejournal.com/wp-content/uploads/2009/02/wp-cheat-sheet.jpg" alt="Wordpress Cheat Sheet" width="450" height="183" /></p>
<p><a href="http://wpcandy.com/wp-content/uploads/WordPress-Help-Sheet.pdf" target="_blank">WordPress Cheat Sheet</a> (pdf) lists some essential php  hacks to customize your theme (if you can’t do that with a plugin of course).</p>
<h3>Mod_rewrite Cheat Sheet</h3>
<p align="center"><img src="http://www.searchenginejournal.com/wp-content/uploads/2009/02/mod_rewrite-cheat-sheet.jpg" alt="mod_rewrite cheat sheet " width="450" height="185" /></p>
<p>The <a href="http://www.addedbytes.com/apache/mod_rewrite-cheat-sheet/" target="_blank">mod_rewrite cheat sheet</a> is a one-page reference sheet, listing flags for the RewriteRule and RewriteCond directives, list of server variables, a regular expression guide and several examples of common rules.</p>
<h3>htaccess Cheat sheet</h3>
<p align="center"><img src="http://www.searchenginejournal.com/wp-content/uploads/2009/02/htaccess-cheatsheet.jpg" alt="htaccess Cheatsheet" width="449" height="240" /></p>
<p><a href="http://www.thejackol.com/htaccess-cheatsheet/" target="_blank">htaccess cheatsheet</a> lists some very basic but frequently-used htaccess hacks.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=27&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/06/13/7-essential-seo-cheat-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>

		<media:content url="http://www.searchenginejournal.com/wp-content/uploads/2009/02/seo-cheat-sheet.jpg" medium="image">
			<media:title type="html">seo cheat sheet</media:title>
		</media:content>

		<media:content url="http://www.searchenginejournal.com/wp-content/uploads/2009/02/html-cheat-sheet.jpg" medium="image">
			<media:title type="html">html cheat sheet</media:title>
		</media:content>

		<media:content url="http://www.searchenginejournal.com/wp-content/uploads/2009/02/search-cheat-sheet.jpg" medium="image">
			<media:title type="html">search cheat sheet</media:title>
		</media:content>

		<media:content url="http://www.searchenginejournal.com/wp-content/uploads/2009/02/usability-cheat-sheet.jpg" medium="image">
			<media:title type="html">usability cheat sheet</media:title>
		</media:content>

		<media:content url="http://www.searchenginejournal.com/wp-content/uploads/2009/02/wp-cheat-sheet.jpg" medium="image">
			<media:title type="html">Wordpress Cheat Sheet</media:title>
		</media:content>

		<media:content url="http://www.searchenginejournal.com/wp-content/uploads/2009/02/mod_rewrite-cheat-sheet.jpg" medium="image">
			<media:title type="html">mod_rewrite cheat sheet </media:title>
		</media:content>

		<media:content url="http://www.searchenginejournal.com/wp-content/uploads/2009/02/htaccess-cheatsheet.jpg" medium="image">
			<media:title type="html">htaccess Cheatsheet</media:title>
		</media:content>
	</item>
		<item>
		<title>China&#8217;s computers at hacking risk</title>
		<link>http://thechetans.wordpress.com/2009/06/12/chinas-computers-at-hacking-risk/</link>
		<comments>http://thechetans.wordpress.com/2009/06/12/chinas-computers-at-hacking-risk/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 05:27:23 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=18</guid>
		<description><![CDATA[Every PC in China could be at risk of being taken over by malicious hackers because of flaws in compulsory government software. The potential faults were brought to light by Chinese computer experts who said the flaw could lead to a &#8220;large-scale disaster&#8221;. The Chinese government has mandated that all computers in the country must [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=18&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="text-align:left;"><img src="http://newsimg.bbc.co.uk/media/images/45900000/jpg/_45900462_2-2.jpg" border="0" alt="Screen grab of blocked website" hspace="0" vspace="0" width="226" height="170" /></div>
<p style="text-align:left;"><strong>Every PC in China could be at risk of being taken over by malicious hackers because of flaws in compulsory government software.</strong></p>
<p style="text-align:left;">The potential faults were brought to light by Chinese computer experts who said the flaw could lead to a &#8220;large-scale disaster&#8221;.</p>
<p style="text-align:left;">The Chinese government has mandated that all computers in the country must have the screening software installed.</p>
<p style="text-align:left;">It is intended to filter out offensive material from the net.</p>
<p><!-- E SF --></p>
<p style="text-align:left;">The Chinese government said that the Green Dam Youth Escort software, as it is known, was intended to push forward the &#8220;healthy development of the internet&#8221; and &#8220;effectively manage harmful material for the public and prevent it from being spread.&#8221;</p>
<p style="text-align:left;">&#8220;We found a series of software flaws,&#8221; explained Isaac Mao, a blogger and social entrepreneur in China, as well as a research fellow at Harvard University&#8217;s Berkman Center for Internet and Society.</p>
<p style="text-align:left;">For example, he said, tests had shown that communications between the software and the servers at the company that developed the program were unencrypted.</p>
<p style="text-align:left;">Mr Mao told BBC News that this could allow hackers to &#8220;steal people&#8217;s private information&#8221; or &#8220;place malicious script&#8221; on computers in the network to &#8220;affect [a] large scale disaster.&#8221;</p>
<p style="text-align:left;">For example, a hacker could use malicious code to take control of PCs using the software.</p>
<p style="text-align:left;">&#8220;Then you have every computer in China potentially as part of a botnet,&#8221; Colin Maclay, also of Harvard, told BBC News.</p>
<p style="text-align:left;">A botnet is the name given to a network of hijacked computers that can then be used to pump out spam or launch concerted attacks on commercial or government websites.</p>
<p style="text-align:left;">No one from Jinhui Computer System Engineering, the company that developed Green Dam, was available for comment.</p>
<p style="text-align:left;"><strong>&#8216;Naked pig&#8217;</strong></p>
<p style="text-align:left;">The software has also caused a backlash amongst privacy experts, academics and some Chinese citizens. It has also raised the scorn of the blogosphere inside the country who feel the system is no match for tech-savvy teenagers.</p>
<p><!-- S IIMA --></p>
<table style="text-align:left;" border="0" cellspacing="0" cellpadding="0" width="226">
<tbody>
<tr>
<td>
<div><img src="http://newsimg.bbc.co.uk/media/images/45891000/jpg/_45891657_-4.jpg" border="0" alt="internet bar in Beijing on June 3, 2009" hspace="0" vspace="0" width="226" height="170" /></p>
<div>Every new computer in China will have the software installed</div>
</div>
</td>
</tr>
</tbody>
</table>
<p><!-- E IIMA --></p>
<p style="text-align:left;">One blogger posted a screenshot of the software purportedly blocking an attempt to visit a porn site using Microsoft&#8217;s Internet Explorer.</p>
<p style="text-align:left;">But, he said, there was no problem accessing the site using the Firefox web browser.</p>
<p style="text-align:left;">Others have reported that the system only runs on Microsoft Windows, allowing Mac and Linux users to bypass the software.</p>
<p style="text-align:left;">It is thought that at least 3m computer users have already downloaded the software, opening them up to potential security problems.</p>
<p style="text-align:left;">Another formal study by the Open Network Initiative into the risks posed by the software is expected soon. However, many people in China who have been forced to use the software are already reporting other problems.</p>
<p style="text-align:left;">For example, the system reportedly blocks legitimate as well as banned content. For example, it designed to identify the proportion of skin colour in a picture to determine whether it is pornography.</p>
<p style="text-align:left;">But comments on a bulletin board run by the software company that designed the system, suggest the system does not work perfectly.</p>
<p><!-- S IBOX --></p>
<table style="text-align:left;height:18px;" border="0" cellspacing="0" cellpadding="0" width="31">
<tbody>
<tr>
<td width="5"></td>
<td></td>
</tr>
</tbody>
</table>
<p><!-- E IBOX --></p>
<table style="text-align:left;height:162px;" border="0" cellspacing="0" cellpadding="0" width="459">
<tbody>
<tr>
<td>
<div>
<div><img src="http://newsimg.bbc.co.uk/nol/shared/img/v3/start_quote_rb.gif" border="0" alt="" width="24" height="13" /> <strong>Once you&#8217;ve got government-mandated software installed on each machine, the software has the keys to the kingdom</strong> &#8220;</div>
</div>
<div>
<div>Professor Jonathan Zittrain</div>
</div>
</td>
</tr>
</tbody>
</table>
<p style="text-align:left;">&#8220;I went on the internet to check out some animal photos. A lovely little naked pig was sent onto the black list. Pitiful little pig!,&#8221; read one comment.</p>
<p style="text-align:left;">&#8220;I was curious, so I looked up some photos of naked African women. Oh, they were not censored!&#8221;</p>
<p style="text-align:left;">Another message read: &#8220;We were ordered to install the software. So I have to come to this website and curse. After we installed the software, many normal websites are banned.&#8221;</p>
<p style="text-align:left;">The forum was taken down after it was seemingly flooded with complaints. A message on the site said says it is being &#8220;upgraded&#8221;.</p>
<p style="text-align:left;">Mr Mao told BBC News that they believed there was a new guideline from the country&#8217;s central propaganda department &#8220;to comb all media and online forums to block critics and discussion over the issue.&#8221;</p>
<p style="text-align:left;"><strong>Firewall flaw</strong></p>
<p style="text-align:left;">The government may be keen to shut down discussion to quell rumours that the system could be used to monitor its citizens.</p>
<p style="text-align:left;">&#8220;Once you&#8217;ve got government-mandated software installed on each machine, the software has the keys to the kingdom &#8211; anything can be logged or affected,&#8221; said Professor Jonathan Zittrain, also of Harvard&#8217;s Berkman Center.</p>
<p><!-- S IBOX --></p>
<table style="text-align:left;height:210px;" border="0" cellspacing="0" cellpadding="0" width="750">
<tbody>
<tr>
<td width="5"><img src="http://newsimg.bbc.co.uk/shared/img/o.gif" border="0" alt="" hspace="0" vspace="0" width="5" height="1" /></td>
<td>
<div><img src="http://newsimg.bbc.co.uk/media/images/45900000/jpg/_45900490_policer2908_468x289.jpg" border="0" alt="Virtual Police" hspace="0" vspace="0" width="226" height="170" /></div>
</td>
</tr>
</tbody>
</table>
<p><!-- E IBOX --></p>
<p style="text-align:left;">&#8220;While the justification may be pitched as protecting children and mostly concerning pornography, once the architecture is set up it can be used for broader purposes, such as the filtering of political ideas.&#8221;</p>
<p style="text-align:left;">In particular, the system could be used to report citizens&#8217; web habits.</p>
<p style="text-align:left;">&#8220;It creates log file of all of the pages that the users tries to access,&#8221; Mr Maclay told BBC News.</p>
<p style="text-align:left;">&#8220;At the moment it&#8217;s unclear whether that is reported back, but it could be.&#8221;</p>
<p style="text-align:left;">A twitter user in China claims that the software transmits reports to Jinhui &#8211; the maker of the software &#8211; when the user tries to access blacklisted websites.</p>
<p style="text-align:left;">However, Zhang Chenmin, general manager of the developer of Green Dam, told the China Daily newspaper last year: &#8220;Our software is simply not capable of spying on internet users, it is only a filter.&#8221;</p>
<p style="text-align:left;">Although many countries around the world routinely block and filter net content, China&#8217;s regime is regarded as particularly severe.</p>
<p style="text-align:left;">&#8220;There is no transparency about what they are blocking,&#8221; said Mr Maclay.</p>
<p style="text-align:left;">Free speech campaigners are concerned that the list could be tweaked to suits the government&#8217;s aims.</p>
<p style="text-align:left;">Recently, there has been a web black out across China in advance of the 20th anniversary of the Tiananmen Square massacre.</p>
<p style="text-align:left;">Website such as Twitter and the photo-sharing site Flickr were blocked in an attempt by the government to prevent online discussion on the subject.</p>
<p style="text-align:left;">However, some users were able to bypass the filters to distribute pictures and commentary including links to photos of plain-clothes policemen blocking the lenses of foreign journalists with their umbrellas.</p>
<p style="text-align:left;">The country is able to take action like this because it already has a sophisticated censorship regime, including the so-called Great Firewall of China. However, it is known to have some flaws.</p>
<p style="text-align:left;">A 2007 study by US researchers showed that the system was much more porous than previously thought.</p>
<p style="text-align:left;">It found that the technology often failed to block content banned by the Chinese government, allowing web users to browse unencumbered at least some of the time.</p>
<p style="text-align:left;">Filtering and blocking was &#8220;particularly erratic&#8221;, they said, when large numbers of people were online in China.</p>
<p style="text-align:left;">Despite the failures, the researchers said, the idea of the firewall was more effective than the technology at discouraging talk about banned subjects.</p>
<p style="text-align:left;">This kind of social pressure was also key to another tactic used by the Chinese government to make sure its citizens only use sanitised portions of the web.</p>
<p style="text-align:left;">In 2007, the government introduced virtual policemen that pop-up onscreen when web surfers visit many of China&#8217;s popular website to remind them to stay away from illicit content.</p>
<p style="text-align:left;">In addition, the government expects internet service providers in China to actively monitor and censor published content, such as blogs.</p>
<p style="text-align:left;">Experiments have suggested that this approach is hit-and-miss, with some organisations more proactive than others.</p>
<p style="text-align:left;">However, these systems, combined with the new software, will allow the Chinese government to sanitise the web for most of the 300m of China&#8217;s population of 1.3bn have access to the net.</p>
<p style="text-align:left;">&#8220;I think this is intended as a sort of belt-and-braces approach, said Professor Zittrain.</p>
<p><!-- E BO --></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=18&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/06/12/chinas-computers-at-hacking-risk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>

		<media:content url="http://newsimg.bbc.co.uk/media/images/45900000/jpg/_45900462_2-2.jpg" medium="image">
			<media:title type="html">Screen grab of blocked website</media:title>
		</media:content>

		<media:content url="http://newsimg.bbc.co.uk/media/images/45891000/jpg/_45891657_-4.jpg" medium="image">
			<media:title type="html">internet bar in Beijing on June 3, 2009</media:title>
		</media:content>

		<media:content url="http://newsimg.bbc.co.uk/nol/shared/img/v3/start_quote_rb.gif" medium="image" />

		<media:content url="http://newsimg.bbc.co.uk/shared/img/o.gif" medium="image" />

		<media:content url="http://newsimg.bbc.co.uk/media/images/45900000/jpg/_45900490_policer2908_468x289.jpg" medium="image">
			<media:title type="html">Virtual Police</media:title>
		</media:content>
	</item>
		<item>
		<title>WordPress 2.8 Now Available for Download</title>
		<link>http://thechetans.wordpress.com/2009/06/11/wordpress-2-8-now-available-for-download/</link>
		<comments>http://thechetans.wordpress.com/2009/06/11/wordpress-2-8-now-available-for-download/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 13:51:47 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=14</guid>
		<description><![CDATA[WordPress has just released the newest version of their installable blog software: WordPress 2.8 – Baker. The most notable addition would seem to be the ability to browse themes from within the WordPress Dashboard. With the Theme Browser, you can specify the color you want, how many columns there should be, and fixed or flexible [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=14&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>WordPress<a rel="http://www.blippr.com/apps/336657-WordPress.whtml" href="http://www.blippr.com/apps/336657-WordPress" target="_blank"><span> </span></a> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  has <a href="http://wordpress.org/development/2009/06/wordpress-28/" target="_blank">just released</a> the newest version of their installable blog software: WordPress 2.8 – Baker.</p>
<p>The most notable addition would seem to be the ability to browse themes from within the WordPress Dashboard. With the Theme Browser, you can specify the color you want, how many columns there should be, and fixed or flexible width. You can then select and install themes that match those criteria on-the-fly, without leaving the Dashboard.</p>
<p>WordPress 2.8 also offers a re-designed widgets interface, improved speed, and has fixed a reported 790 bugs.</p>
<h3>WordPress 2.8 Highlights</h3>
<ul>
<li>Theme Browser and Installer</li>
<li>Ability to add Custom Headers</li>
<li>New drag-and-drop widgets admin interface and new Widgets API</li>
<li>New ways to customize dashboard widgets</li>
<li>Syntax highlighting and function lookup built into plugin and theme editors.</li>
<li>Configurable Views on Management Pages.</li>
<li>Faster Loading Admin Pages</li>
</ul>
<h3>Theme Browser and Installer</h3>
<p>The earlier versions of WordPress made it much more easier to install and update plugins, WordPress 2.8 adds a feature to allow users to easily install and upgrade themes.</p>
<p><img style="border:0 none;display:block;float:none;margin-left:auto;margin-right:auto;" title="wp28_theme_installer" src="http://weblogtoolscollection.com/b2-img/2009/06/wp28-theme-installer.png" border="0" alt="wp28_theme_installer" width="395" height="214" /></p>
<p>The theme browser provides users with a variety of options to search themes, the options provided are colors, number of columns width, features and more. In addition to that you can also search themes by keywords.</p>
<p><img style="border:0 none;display:block;float:none;margin-left:auto;margin-right:auto;" title="wp28_theme_search_results" src="http://weblogtoolscollection.com/b2-img/2009/06/wp28-theme-search-results.png" border="0" alt="wp28_theme_search_results" width="396" height="213" /></p>
<p>WordPress 2.8 also adds the ability to install themes with a single click, much like it does for plugins, you can also preview the themes without first installing them.</p>
<h3>Custom Headers</h3>
<p>Many themes come with custom headers that are included by default, changing them would require the users manually editing the theme, or in some cases using the theme options.</p>
<p><img style="border:0 none;display:block;float:none;margin-left:auto;margin-right:auto;" title="wp28_custom_headers" src="http://weblogtoolscollection.com/b2-img/2009/06/wp28-custom-headers.png" border="0" alt="wp28_custom_headers" width="396" height="104" /></p>
<p>However with WordPress 2.8 users can now add their own custom headers, you can upload a image and crop it before applying it as the header image.</p>
<p>The custom headers feature will only work if the theme author has configured the theme to allow this capability, you can read more about the <a href="http://codex.wordpress.org/Appearance_Header_Image_and_Color_SubPanel">customizing headers feature</a>.</p>
<h3>New Drag and Drop Widgets and Widgets API</h3>
<p>Widgets play a big role in allowing users to customize their themes without the need to manually edit the theme, WordPress 2.8 has done a huge overhaul of how widgets work, allowing users to easily move widgets between different widget areas with ease.</p>
<p><img style="border:0 none;display:block;float:none;margin-left:auto;margin-right:auto;" title="wp28_widgets" src="http://weblogtoolscollection.com/b2-img/2009/06/wp28-widgets.png" border="0" alt="wp28_widgets" width="381" height="154" /></p>
<p>Users can now also use the same widgets on multiple widget areas, something that was not possible in the earlier versions of WordPress.</p>
<p>Along with the added flexibility WordPress 2.8 also includes a widget API that will make developing widgets much more easier than before.</p>
<h3>Customize Dashboard Widgets</h3>
<p>The Admin Dashboard in WordPress is a place where you get the most information about tons of things, however earlier versions of WordPress only allowed users to rearrange the widgets.</p>
<p><img style="border:0 none;display:block;float:none;margin-left:auto;margin-right:auto;" title="wp28_dashboard_are" src="http://weblogtoolscollection.com/b2-img/2009/06/wp28-dashboard-are.png" border="0" alt="wp28_dashboard_are" width="371" height="241" /></p>
<p>With WordPress 2.8 users can now specify the number of columns they want to see in the dashboard area, at present users can customize the view up to 4 columns.</p>
<h3>Syntax Highlighting for Plugins and Theme editor</h3>
<p>If you have ever taken a look the plugin and theme editors in previous versions of WordPress, it has been almost like you are viewing the code in a plain text editor.</p>
<p><img style="border:0 none;display:block;float:none;margin-left:auto;margin-right:auto;" title="wp28_plugin_editor" src="http://weblogtoolscollection.com/b2-img/2009/06/wp28-plugin-editor.png" border="0" alt="wp28_plugin_editor" width="342" height="262" /></p>
<p>However that is about to change in WordPress 2.8, as it adds syntax highlighting which resembles a proper code editor and also a easy way to lookup functions that are used.</p>
<h3>Configurable Views on Management Pages</h3>
<p>WordPress by default displays a host of information to the users when managing the content or comments, however not all users may find those information useful to them.</p>
<p><img style="border:0 none;display:block;float:none;margin-left:auto;margin-right:auto;" title="wp28_confiurable_mgmt_pages" src="http://weblogtoolscollection.com/b2-img/2009/06/wp28-confiurable-mgmt-pages.png" border="0" alt="wp28_confiurable_mgmt_pages" width="355" height="170" /></p>
<p>WordPress 2.8 allows users to easily configure what information should be displayed by using the Screen options on different management pages.</p>
<h3>Faster Loading Admin Pages</h3>
<p>The admin pages in WordPress 2.8 load much more faster than the earlier versions thanks to various script compression and concatenation that are used.</p>
<p>I did see a considerable increase in speed when compared to WordPress 2.7.1.</p>
<h3>Other Interesting Highlights</h3>
<p>Download WordPress 2.8 now http://wordpress.org/download/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=14&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/06/11/wordpress-2-8-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>

		<media:content url="http://weblogtoolscollection.com/b2-img/2009/06/wp28-theme-installer.png" medium="image">
			<media:title type="html">wp28_theme_installer</media:title>
		</media:content>

		<media:content url="http://weblogtoolscollection.com/b2-img/2009/06/wp28-theme-search-results.png" medium="image">
			<media:title type="html">wp28_theme_search_results</media:title>
		</media:content>

		<media:content url="http://weblogtoolscollection.com/b2-img/2009/06/wp28-custom-headers.png" medium="image">
			<media:title type="html">wp28_custom_headers</media:title>
		</media:content>

		<media:content url="http://weblogtoolscollection.com/b2-img/2009/06/wp28-widgets.png" medium="image">
			<media:title type="html">wp28_widgets</media:title>
		</media:content>

		<media:content url="http://weblogtoolscollection.com/b2-img/2009/06/wp28-dashboard-are.png" medium="image">
			<media:title type="html">wp28_dashboard_are</media:title>
		</media:content>

		<media:content url="http://weblogtoolscollection.com/b2-img/2009/06/wp28-plugin-editor.png" medium="image">
			<media:title type="html">wp28_plugin_editor</media:title>
		</media:content>

		<media:content url="http://weblogtoolscollection.com/b2-img/2009/06/wp28-confiurable-mgmt-pages.png" medium="image">
			<media:title type="html">wp28_confiurable_mgmt_pages</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Trace Your Emails Back To The Source</title>
		<link>http://thechetans.wordpress.com/2009/06/05/how-to-trace-your-emails-back-to-the-source/</link>
		<comments>http://thechetans.wordpress.com/2009/06/05/how-to-trace-your-emails-back-to-the-source/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 08:11:02 +0000</pubDate>
		<dc:creator>Chetan</dc:creator>
				<category><![CDATA[Emails]]></category>
		<category><![CDATA[email ip]]></category>
		<category><![CDATA[trace email]]></category>

		<guid isPermaLink="false">http://thechetan.in/?p=8</guid>
		<description><![CDATA[Most people won’t notice this, but emails actually arrive in your inbox with a ‘receipt’, which contains a lot of information about the sender. In order to find the sender’s identity, we only need to retrieve an IP address, but inside the email header we can also find the originating domain, reply-to address and sometimes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=8&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div></div>
<p><img src="http://www.makeuseof.com/wp-content/uploads/2009/05/mailsource.png" alt="" align="left" />Most people won’t notice this, but emails actually arrive in your inbox with a ‘receipt’, which contains a lot of information about the sender. In order to find the sender’s identity, we only need to retrieve an IP address, but inside the email header we can also find the originating domain, reply-to address and sometimes even the email client, for example <a href="http://www.makeuseof.com/tags/thunderbird/">Thunderbird</a>.</p>
<p>Why would you want to find out the identity of the sender? Well, you may have heard of shady email scams or emails supposedly from Paypal inviting you to re-enter your personal information. Now, you can determine if an email is truly from the authentic source.</p>
<p>Accessing the email header is different for every email provider or email application, and sometimes, it is even hidden. In most of the cases however, the option to reveal the full header will be somewhere in the area where the subject and sender name are provided.<br />
<span> </span></p>
<p><img style="border:0 none;display:inline;" title="mai11" src="http://www.makeuseof.com/wp-content/uploads/2009/05/mai112.png" alt="" /></p>
<p>For example, the Yahoo! Mail header is in the upper right corner of the sender box, which is pointed out in the screenshot above. When you click Show Original, a text file will open in a new tab. This file contains all the necessary headers at the start. They are highlighted in screenshots.</p>
<p>And this is how the full email header appears in Yahoo! Mail:</p>
<p><img style="border:0 none;display:inline;" title="mai111" src="http://www.makeuseof.com/wp-content/uploads/2009/05/mai1111.png" alt="" /></p>
<p>For Gmail, the header is hidden under ‘Show Original’ – which will show you the complete email in plain text, including the header.</p>
<p><img style="border:0 none;display:inline;" title="mair1" src="http://www.makeuseof.com/wp-content/uploads/2009/05/mair11.png" alt="" /></p>
<p>The example below is the header from an email I received in GMail.</p>
<p><img style="border:0 none;display:inline;" title="mai333" src="http://www.makeuseof.com/wp-content/uploads/2009/05/mai3331-2.png" alt="" /></p>
<p>In order to find out the IP address of the original sender, we need to look closely at the first half of the header. Somewhere in there, you’ll find a domain name and an IP address. Particularly, take a closer look at the term ‘Received: from’:</p>
<p>The first <strong>‘Received: from’</strong> line gives us the IP address of the server which forwarded the email to my Gmail address.</p>
<blockquote><p>Received: from smtp110.biz.mail.mud.yahoo.com(smtp110.biz.mail.mud.yahoo.com [68.142.201.179])</p></blockquote>
<p>If we continue our search, the second <strong>‘Received: from’</strong> line gives us the <strong>originating IP address</strong>.</p>
<blockquote><p>Received: from unknown (HELO ?192.168.0.100?) (chaz@68.108.204.242 with plain)</p></blockquote>
<p>This means that Chaz, located at 68.108.204.242 sent me an email.</p>
<p>The next line will only appear if the email was sent using an email application residing on the sender’s computer, like Thunderbird or Apple Mail. In our case:</p>
<blockquote><p>X-Mailer: Apple Mail (2.753.1)</p></blockquote>
<p>If the user sent the email using the web interface, the string would have looked like this:</p>
<blockquote><p>Received: from [158.143.189.83] by web56706.mail.re3.yahoo.com via HTTP</p></blockquote>
<p>We have the originating IP address 68.108.204.242 . To find out who’s behind that IP address we need to do a reverse DNS lookup using a web service like <a href="http://whois.domaintools.com/">DomainTools</a>, the command line or from ‘Network Tools’ in Ubuntu.</p>
<p>In our case, we know that someone called Chaz from Atlanta, using Cox Communications – with an IP address 68.108.204.242, depending on the subnet mask, sent that email.</p>
<p>Alternatively, you could use a tool called <a href="http://www.ip-adress.com/trace_email/">Email Trace</a>, that does the whole operation for you after inputing the full email header into the text box. It might not always work, so knowing how to do it the old fashion way might come in handy.</p>
<p>This proves useful if you’re trying to report a spammer to your ISP, find out where a certain person is located at the moment, or help you spot phishing emails. For example, PayPal couldn’t have sent an email from an IP address in China.</p>
<p>If you know other good uses for this procedure, please share it with us in the comments.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thechetans.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thechetans.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thechetans.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thechetans.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thechetans.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thechetans.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thechetans.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thechetans.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thechetans.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thechetans.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thechetans.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thechetans.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thechetans.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thechetans.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thechetans.wordpress.com&amp;blog=7693701&amp;post=8&amp;subd=thechetans&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thechetans.wordpress.com/2009/06/05/how-to-trace-your-emails-back-to-the-source/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/961050179367797b92e9809047c7dc2b?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Chetan</media:title>
		</media:content>

		<media:content url="http://www.makeuseof.com/wp-content/uploads/2009/05/mailsource.png" medium="image" />

		<media:content url="http://www.makeuseof.com/wp-content/uploads/2009/05/mai112.png" medium="image">
			<media:title type="html">mai11</media:title>
		</media:content>

		<media:content url="http://www.makeuseof.com/wp-content/uploads/2009/05/mai1111.png" medium="image">
			<media:title type="html">mai111</media:title>
		</media:content>

		<media:content url="http://www.makeuseof.com/wp-content/uploads/2009/05/mair11.png" medium="image">
			<media:title type="html">mair1</media:title>
		</media:content>

		<media:content url="http://www.makeuseof.com/wp-content/uploads/2009/05/mai3331-2.png" medium="image">
			<media:title type="html">mai333</media:title>
		</media:content>
	</item>
	</channel>
</rss>
