<?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>Think It Dynamically</title>
	<atom:link href="http://pollobcse05.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pollobcse05.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Oct 2009 21:23:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pollobcse05.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Think It Dynamically</title>
		<link>http://pollobcse05.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pollobcse05.wordpress.com/osd.xml" title="Think It Dynamically" />
	<atom:link rel='hub' href='http://pollobcse05.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Security Code Verification Using PHP</title>
		<link>http://pollobcse05.wordpress.com/2009/10/29/security-code-verification-using-php/</link>
		<comments>http://pollobcse05.wordpress.com/2009/10/29/security-code-verification-using-php/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 21:23:16 +0000</pubDate>
		<dc:creator>Zaman-A-Piri Pasa</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Validation]]></category>

		<guid isPermaLink="false">http://pollobcse05.wordpress.com/?p=32</guid>
		<description><![CDATA[Security code Verification is used for security test to determine whether or not the user is human. Here is a simple security code Verification Script that Generate the code Dynamically. &#60;?php $im = ImageCreate(120, 30);  //create image $white = ImageColorAllocate($im, 255, 255, 255);  //Allocate color for  image $black = ImageColorAllocate($im, 50, 50, 50); $string = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=32&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Security code Verification is used for security test to determine whether or not the user is human. Here is a simple security code Verification Script that Generate the code Dynamically.</p>
<p>&lt;?php<br />
$im = ImageCreate(120, 30);  //create image<br />
$white = ImageColorAllocate($im, 255, 255, 255);  //Allocate color for  image<br />
$black = ImageColorAllocate($im, 50, 50, 50);<br />
$string = md5(rand(0,9999));  //Generate a random value and Calculate the md5 hash of the string<br />
//echo $string;<br />
$string=substr($string,1,7); //Return part of a string<br />
$verification = $string;<br />
ImageFill($im, 0, 0, $black); //Fill the Image<br />
ImageString($im, 5, 30, 10, $verification, $white); //Draw the string<br />
Imagejpeg($im, &#8220;verify.png&#8221;); //Create the Image as &#8216;png&#8217; format<br />
ImageDestroy($im);  //Destroy the image<br />
?&gt;<br />
&lt;form method=&#8221;post&#8221; action=&#8221;image_verification.php&#8221;&gt;<br />
&lt;input type=&#8217;hidden&#8217; name=&#8217;secretcode&#8217; value=&#8217;&lt;?=$verification?&gt;&#8217;&gt;<br />
Type Code from Image:<br />
&lt;input type=&#8217;text&#8217; name=&#8217;code&#8217;&gt;<br />
&lt;img src=&#8217;verify.png&#8217; border=&#8217;1&#8242;&gt;<br />
&lt;input type=&#8217;submit&#8217; name=&#8217;submit&#8217; value=&#8217;Submit&#8217;&gt;<br />
&lt;/form&gt;</p>
<p>&lt;?php<br />
if(isset($_POST['submit']))<br />
{<br />
$code = $_POST['code'];<br />
$secretcode = $_POST['secretcode'];</p>
<p>if($code!=$secretcode){<br />
print &#8220;&lt;font color=&#8217;red&#8217;&gt;Verification failed&lt;/font&gt;&#8221;;<br />
}<br />
else{<br />
print &#8220;&lt;font color=&#8217;green&#8217;&gt;Verification Success&lt;/font&gt;&#8221;;<br />
}<br />
}<br />
?&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pollobcse05.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pollobcse05.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pollobcse05.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pollobcse05.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pollobcse05.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pollobcse05.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pollobcse05.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pollobcse05.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pollobcse05.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pollobcse05.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pollobcse05.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pollobcse05.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pollobcse05.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pollobcse05.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=32&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pollobcse05.wordpress.com/2009/10/29/security-code-verification-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f123331ef00ca43e11c57eff5057c323?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pollob</media:title>
		</media:content>
	</item>
		<item>
		<title>Connecting MySql With Java</title>
		<link>http://pollobcse05.wordpress.com/2009/06/09/connecting-mysql-with-java/</link>
		<comments>http://pollobcse05.wordpress.com/2009/06/09/connecting-mysql-with-java/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 17:39:48 +0000</pubDate>
		<dc:creator>Zaman-A-Piri Pasa</dc:creator>
				<category><![CDATA[JAVA]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://pollobcse05.wordpress.com/?p=24</guid>
		<description><![CDATA[Download MYSQL and install it. Instructions for installing MySQL can also be found in Chapter 2 of the MySQL Manual at http://dev.mysql.com/doc/mysql/en/index.html. To use MySQL with JDBC, you also need to install MySQL Connector/Ja JDBC driver that allows programs to access MySQL databases via JDBC. MySQL Connector/J can also be downloaded from http://www.mysql.com/products/connector/j/. To install MySQL Connector/J: 1. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=24&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Download</strong> <a href="http://www.mysql.com">MYSQL</a> and install it. Instructions for installing MySQL can also be found in Chapter 2 of the MySQL Manual at <a href="http://dev.mysql.com/doc/mysql/en/index.html">http://dev.mysql.com/doc/mysql/en/index.html.</a><br />
To use MySQL with JDBC, you also need to install MySQL Connector/Ja JDBC driver that allows programs to access MySQL databases via JDBC. MySQL Connector/J can also be downloaded from <a href="http://www.mysql.com/products/connector/j/">http://www.mysql.com/products/connector/j/</a>.<br />
<strong>To install MySQL Connector/J:</strong><br />
1. Copy <em><strong>mysql-connector-java-5.1.7.zip</strong></em> to your hard disk.<br />
2. Open <em><strong>mysql-connector-java-5.1.7.zip</strong></em> with a file extractor. Extract its      content to the <strong>C:\ drive</strong>. This will create a directory named<br />
<strong> mysql-connector-java-5.1.7</strong>.<br />
3. Copy the <strong><em>mysql-connector-java-5.1.7-bin.jar</em></strong>. file to the JRE&#8217;s <strong>lib\ext</strong> directory, <strong>e.g</strong>., <strong>C:\Program Files\Java\jdk1.5.0\jre\lib\ext</strong>. After doing so, you could run the application</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pollobcse05.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pollobcse05.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pollobcse05.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pollobcse05.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pollobcse05.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pollobcse05.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pollobcse05.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pollobcse05.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pollobcse05.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pollobcse05.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pollobcse05.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pollobcse05.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pollobcse05.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pollobcse05.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=24&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pollobcse05.wordpress.com/2009/06/09/connecting-mysql-with-java/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f123331ef00ca43e11c57eff5057c323?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pollob</media:title>
		</media:content>
	</item>
		<item>
		<title>My First WordPress Template</title>
		<link>http://pollobcse05.wordpress.com/2008/11/29/my-first-wordpress-template/</link>
		<comments>http://pollobcse05.wordpress.com/2008/11/29/my-first-wordpress-template/#comments</comments>
		<pubDate>Sat, 29 Nov 2008 18:36:23 +0000</pubDate>
		<dc:creator>Zaman-A-Piri Pasa</dc:creator>
				<category><![CDATA[Template]]></category>

		<guid isPermaLink="false">http://pollobcse05.wordpress.com/?p=20</guid>
		<description><![CDATA[Today I develop a wordpress template, which is my first wordpress template. I named this template BlackWhite. You can see this template by  Clicking the screenshot below. Please don&#8217;t forget to comment.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=20&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I develop a wordpress template, which is my first wordpress template. I named this template <strong>BlackWhite.</strong> You can see this template by  Clicking the screenshot below.</p>
<p><a href="http://pollobcse05.ueuo.com/wp/"><img class="aligncenter size-full wp-image-21" title="screenshot" src="http://pollobcse05.files.wordpress.com/2008/11/screenshot.png?w=600" alt="screenshot"   /></a></p>
<p>Please don&#8217;t forget to comment.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pollobcse05.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pollobcse05.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pollobcse05.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pollobcse05.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pollobcse05.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pollobcse05.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pollobcse05.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pollobcse05.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pollobcse05.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pollobcse05.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pollobcse05.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pollobcse05.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pollobcse05.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pollobcse05.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=20&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pollobcse05.wordpress.com/2008/11/29/my-first-wordpress-template/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f123331ef00ca43e11c57eff5057c323?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pollob</media:title>
		</media:content>

		<media:content url="http://pollobcse05.files.wordpress.com/2008/11/screenshot.png" medium="image">
			<media:title type="html">screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Earn Money Using AlertPay.com</title>
		<link>http://pollobcse05.wordpress.com/2008/10/20/earn-money-using-alertpaycom/</link>
		<comments>http://pollobcse05.wordpress.com/2008/10/20/earn-money-using-alertpaycom/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 18:19:31 +0000</pubDate>
		<dc:creator>Zaman-A-Piri Pasa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pollobcse05.wordpress.com/?p=18</guid>
		<description><![CDATA[I am inviting you to join AlertPay.com. It&#8217;s an alternative to PayPal. There&#8217;s no harm in using two services/companies in transacting money. There are a lot of opportunities on both method that&#8217;s why I registered myself to both of them. Advantages of AlertPay are: 1.) You can earn from referring someone to them. It&#8217;s easy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=18&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am inviting you to join <a href="http://en.support.wordpress.com/affiliate-links/">AlertPay.com</a>. It&#8217;s an alternative to PayPal. There&#8217;s no harm in using two services/companies in transacting money. There are a lot of opportunities on both method that&#8217;s why I registered myself to both of them.</p>
<p>Advantages of <a href="http://en.support.wordpress.com/affiliate-links/">AlertPay</a> are:</p>
<p>1.) You can earn from referring someone to them. It&#8217;s easy to start earning. Here&#8217;s how:</p>
<p>Step 1: Login to your <a href="http://en.support.wordpress.com/affiliate-links/">AlertPay</a> account<br />
Step 2: Click on the &#8220;Referral Program&#8221; Tab<br />
Step 3: Select your personalized referral link that you can use in your emails, website, banners and so on.<br />
Step 4: Each time someone you refer makes <a href="http://en.support.wordpress.com/affiliate-links/">AlertPay</a> their way to pay, they will pay you $5.00. When you refer more then 10 qualified friends, they will pay you $10 for each referral.<br />
Step 5: Your referral bonus will be paid to your account 10 days after successful qualifications.</p>
<p>2.) There&#8217;s a new way of earning money popping out in the Internet that pays solely in <a href="http://en.support.wordpress.com/affiliate-links/">AlertPay</a>.</p>
<p>The later makes it more interesting to sign-in. In my next post (possibly tommorrow), I will reveal to you how to make extra dollars everyday with <a href="http://en.support.wordpress.com/affiliate-links/">AlertPay</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pollobcse05.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pollobcse05.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pollobcse05.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pollobcse05.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pollobcse05.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pollobcse05.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pollobcse05.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pollobcse05.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pollobcse05.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pollobcse05.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pollobcse05.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pollobcse05.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pollobcse05.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pollobcse05.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=18&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pollobcse05.wordpress.com/2008/10/20/earn-money-using-alertpaycom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f123331ef00ca43e11c57eff5057c323?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pollob</media:title>
		</media:content>
	</item>
		<item>
		<title>Router Configuration in CLI mode(CISCO)</title>
		<link>http://pollobcse05.wordpress.com/2008/09/08/router-configuration-in-cli-modecisco/</link>
		<comments>http://pollobcse05.wordpress.com/2008/09/08/router-configuration-in-cli-modecisco/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 22:39:04 +0000</pubDate>
		<dc:creator>Zaman-A-Piri Pasa</dc:creator>
				<category><![CDATA[Networking(CISCO)]]></category>

		<guid isPermaLink="false">http://pollobcse05.wordpress.com/?p=14</guid>
		<description><![CDATA[//First sub_netting the IP address &#38; Enter into “configuration mode”: Router &#62;enable Router #configure terminal //Enter configuration commands, one per line.  End with CNTL/Z. Router (config)# //configure the ip address for firstEnthernet  0/0 port: Router(config)#interface fastEthernet 0/0 Router(config-if)#ip address 172.16.1.254 255.255.255.0 //ip address and subnet mask Router(config-if)#no shutdown Router(config-if)#exit //configure the ip address of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=14&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<address><span style="color:#ff6600;">//First sub_netting the IP address &amp; Enter into “configuration mode”:</span></address>
<p>Router &gt;enable</p>
<p>Router #configure terminal</p>
<address><span style="color:#ff6600;">//Enter configuration commands, one per line.  End with CNTL/Z.</span></address>
<p>Router (config)#</p>
<address><span style="color:#ff6600;">//configure the ip address for firstEnthernet  0/0 port:</span></address>
<p>Router(config)#interface fastEthernet 0/0</p>
<p>Router(config-if)#ip address 172.16.1.254 255.255.255.0 <span style="color:#008000;">//ip address and subnet mask</span></p>
<p>Router(config-if)#no shutdown</p>
<p>Router(config-if)#exit</p>
<address><span style="color:#ff6600;">//configure the ip address of the serial port 0/0/0 port:</span></address>
<p>Router(config)#interface serial 0/0/0</p>
<p>Router(config-if)#ip address 172.16.3.1 255.255.255.0 <span style="color:#008000;">//ip address and subnet mask</span></p>
<p>Router(config-if)#clock rate 64000</p>
<p>Router(config-if)#no shutdown</p>
<address><span style="color:#ff6600;">//now keep the router passward protecteed:</span></address>
<address><span style="color:#008000;">//To change hostname</span></address>
<p>Router(config)#hostname R1-ISP</p>
<p>R1-ISP (config)#enable password cisco</p>
<p>R1-ISP (config)#line console 0</p>
<p>R1-ISP (config-line)#password cisco</p>
<p>R1-ISP (config-line)#login</p>
<p>R1-ISP (config-line)#exit</p>
<address><span style="color:#ff6600;">// now enable the Telnet service:</span></address>
<p>R1-ISP (config)#line vty 0 4</p>
<p>R1-ISP (config-line)#password class</p>
<p>R1-ISP (config-line)#login</p>
<p>R1-ISP (config-line)#exit</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pollobcse05.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pollobcse05.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pollobcse05.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pollobcse05.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pollobcse05.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pollobcse05.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pollobcse05.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pollobcse05.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pollobcse05.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pollobcse05.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pollobcse05.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pollobcse05.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pollobcse05.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pollobcse05.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pollobcse05.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pollobcse05.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=14&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pollobcse05.wordpress.com/2008/09/08/router-configuration-in-cli-modecisco/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f123331ef00ca43e11c57eff5057c323?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pollob</media:title>
		</media:content>
	</item>
		<item>
		<title>My 5th Semester Project</title>
		<link>http://pollobcse05.wordpress.com/2008/07/21/my-5th-semester-project/</link>
		<comments>http://pollobcse05.wordpress.com/2008/07/21/my-5th-semester-project/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 15:48:16 +0000</pubDate>
		<dc:creator>Zaman-A-Piri Pasa</dc:creator>
				<category><![CDATA[Java Script]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://pollobcse05.wordpress.com/?p=6</guid>
		<description><![CDATA[My Project advisor Md. Boshir Ahmed (Assistant Professor, Dept. of CSE ) advice me to develop our rental library&#8217;s website. Then I start my work and finaly I complete this project. I have developed this Site using HTML, PHP, Mysql and Java Script. Here is the Link: http://pollobcse05.ueuo.com/project1<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=6&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My Project advisor <strong>Md. Boshir Ahmed (Assistant Professor, Dept. of CSE )</strong> advice me to develop our rental library&#8217;s website. Then I start my work and finaly I complete this project. I have developed this Site using HTML, PHP, Mysql and Java Script.</p>
<p>Here is the Link:<br />
<a href="http://pollobcse05.ueuo.com/project1/">http://pollobcse05.ueuo.com/project1</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pollobcse05.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pollobcse05.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pollobcse05.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pollobcse05.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pollobcse05.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pollobcse05.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pollobcse05.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pollobcse05.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pollobcse05.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pollobcse05.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pollobcse05.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pollobcse05.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pollobcse05.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pollobcse05.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pollobcse05.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pollobcse05.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=6&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pollobcse05.wordpress.com/2008/07/21/my-5th-semester-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f123331ef00ca43e11c57eff5057c323?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pollob</media:title>
		</media:content>
	</item>
		<item>
		<title>Login Script</title>
		<link>http://pollobcse05.wordpress.com/2008/05/14/login-script/</link>
		<comments>http://pollobcse05.wordpress.com/2008/05/14/login-script/#comments</comments>
		<pubDate>Wed, 14 May 2008 19:40:16 +0000</pubDate>
		<dc:creator>Zaman-A-Piri Pasa</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://pollobcse05.wordpress.com/?p=5</guid>
		<description><![CDATA[//Create Table CREATE TABLE `login` ( `username` varchar(16) NOT NULL, `password` varchar(100) NOT NULL, PRIMARY KEY (`username`) ) ENGINE=MyISAM; INSERT INTO `login` VALUES (&#8216;alamin&#8217;, md5(&#8217;053038&#8242;)), INSERT INTO `login` VALUES (&#8216;pollob&#8217;, md5(&#8217;053031&#8242;)); //login.php &#60;center&#62; &#60;table border=&#8217;1&#8242;&#62; &#60;form method=&#8221;POST&#8221; action=&#8221;authenticate.php&#8221;&#62; &#60;tr&#62;&#60;td colspan=&#8221;2&#8243; align=&#8221;center&#8221;&#62;Log In&#60;/td&#62;&#60;/tr&#62; &#60;tr&#62; &#60;td&#62;&#60;b&#62;Username:&#60;/b&#62;&#60;/td&#62; &#60;td&#62;&#60;input type=&#8221;text&#8221; name=&#8221;username&#8221; size=&#8221;15&#8243;&#62;&#60;/td&#62; &#60;/tr&#62; &#60;tr&#62; &#60;td&#62;&#60;b&#62;Password:&#60;/b&#62;&#60;/td&#62; &#60;td&#62;&#60;input type=&#8221;password&#8221; name=&#8221;password&#8221; size=&#8221;15&#8243;&#62;&#60;/td&#62; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=5&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>//Create Table</p>
<p>CREATE TABLE `login` (<br />
`username` varchar(16) NOT NULL,<br />
`password` varchar(100) NOT NULL,<br />
PRIMARY KEY  (`username`)<br />
) ENGINE=MyISAM;</p>
<p>INSERT INTO `login` VALUES (&#8216;alamin&#8217;, md5(&#8217;053038&#8242;)),<br />
INSERT INTO `login` VALUES (&#8216;pollob&#8217;, md5(&#8217;053031&#8242;));</p>
<p>//login.php<br />
&lt;center&gt;<br />
&lt;table border=&#8217;1&#8242;&gt;<br />
&lt;form method=&#8221;POST&#8221; action=&#8221;authenticate.php&#8221;&gt;<br />
&lt;tr&gt;&lt;td colspan=&#8221;2&#8243; align=&#8221;center&#8221;&gt;Log In&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;b&gt;Username:&lt;/b&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type=&#8221;text&#8221; name=&#8221;username&#8221; size=&#8221;15&#8243;&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;&lt;b&gt;Password:&lt;/b&gt;&lt;/td&gt;<br />
&lt;td&gt;&lt;input type=&#8221;password&#8221; name=&#8221;password&#8221; size=&#8221;15&#8243;&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td colspan=&#8221;2&#8243; align=&#8221;center&#8221;&gt;<br />
&lt;input type=&#8221;submit&#8221; value=&#8221;submit&#8221; name=&#8221;submit&#8221;&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/form&gt;<br />
&lt;/table&gt;<br />
&lt;/center&gt;</p>
<p>//authenticate.php<br />
&lt;?php<br />
ob_start();</p>
<p>mysql_connect(&#8220;localhost&#8221;, &#8220;root&#8221;) or die (&#8220;Couldn&#8217;t Connect to the server&#8221;);<br />
mysql_select_db(&#8220;db_name&#8221;) or die (&#8220;Couldn&#8217;t Connect to database&#8221;);</p>
<p>// Define username and password<br />
$username=$_POST['username'];<br />
$password=$_POST['password'];<br />
$crypt_pwd = md5($password);</p>
<p>$sql=&#8221;SELECT * FROM login WHERE username=&#8217;$username&#8217; and password=&#8217;$crypt_pwd&#8217;&#8221;;<br />
$result=mysql_query($sql);</p>
<p>$count=mysql_num_rows($result);</p>
<p>if($count==1){<br />
session_register(&#8220;username&#8221;);<br />
session_register(&#8220;password&#8221;);<br />
$_SESSION['username'] = $username;</p>
<p>print &#8220;&lt;center&gt;&#8221;;<br />
print &#8220;&lt;font face=&#8217;Arial&#8217; size=&#8217;4&#8242; color=&#8217;red&#8217;&gt;logged in successfully.&#8221;;<br />
print &#8220;Redirecting &#8230;.. &lt;META HTTP-EQUIV = &#8216;Refresh&#8217; Content = &#8217;2; URL=sucess.php&#8217;&gt;&#8221;;<br />
print &#8220;&lt;/font&gt;&lt;/center&gt;&#8221;;<br />
}<br />
else {<br />
print &#8220;&lt;center&gt;&#8221;;<br />
print &#8220;&lt;font face=&#8217;Arial&#8217; size=&#8217;4&#8242; color=&#8217;red&#8217;&gt;Wrong username or password, redirecting back to login page&#8230;..<br />
&lt;META HTTP-EQUIV = &#8216;Refresh&#8217; Content = &#8217;2; URL =login.php&#8217;&gt;&lt;/font&gt;&lt;/center&gt;&#8221;;<br />
}</p>
<p>ob_end_flush();<br />
?&gt;<br />
//sucess.php</p>
<p>&lt;?php<br />
session_start();<br />
$get = $_SESSION['username'];<br />
print &#8220;&lt;center&gt;&#8221;;<br />
print &#8220;&lt;font face=&#8217;Arial&#8217; size=&#8217;4&#8242; color=&#8217;red&#8217;&gt;Welcome $get&lt;/font&gt;&#8221;;<br />
print &#8220;&lt;/center&gt;&#8221;;<br />
?&gt;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pollobcse05.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pollobcse05.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pollobcse05.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pollobcse05.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pollobcse05.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pollobcse05.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pollobcse05.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pollobcse05.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pollobcse05.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pollobcse05.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pollobcse05.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pollobcse05.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pollobcse05.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pollobcse05.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pollobcse05.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pollobcse05.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=5&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pollobcse05.wordpress.com/2008/05/14/login-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f123331ef00ca43e11c57eff5057c323?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pollob</media:title>
		</media:content>
	</item>
		<item>
		<title>Comment BOX</title>
		<link>http://pollobcse05.wordpress.com/2008/05/14/comment-box/</link>
		<comments>http://pollobcse05.wordpress.com/2008/05/14/comment-box/#comments</comments>
		<pubDate>Wed, 14 May 2008 19:20:30 +0000</pubDate>
		<dc:creator>Zaman-A-Piri Pasa</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://pollobcse05.wordpress.com/?p=4</guid>
		<description><![CDATA[//Create Table CREATE TABLE `comments` ( `id` int(11) auto_increment, `name` varchar(30) NOT NULL, `email` varchar(30) NOT NULL, `comment` varchar(200) NOT NULL, `date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM; //comment.php &#60;?php if(isset($_POST['posted'])){ $coment = add_to_database(); if(!$coment){ print &#8220;Eror: Databases Error&#8221;; } } //show get data to browser mysql_connect(&#8220;localhost&#8221;,&#8221;root&#8221;) or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=4&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>//Create Table</p>
<p>CREATE TABLE `comments` (<br />
`id` int(11) auto_increment,<br />
`name` varchar(30) NOT NULL,<br />
`email` varchar(30) NOT NULL,<br />
`comment` varchar(200) NOT NULL,<br />
`date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,<br />
PRIMARY KEY  (`id`)<br />
) ENGINE=MyISAM;</p>
<p>//comment.php</p>
<p>&lt;?php<br />
if(isset($_POST['posted'])){<br />
$coment = add_to_database();<br />
if(!$coment){<br />
print &#8220;Eror: Databases Error&#8221;;<br />
}<br />
}</p>
<p>//show get data to browser<br />
mysql_connect(&#8220;localhost&#8221;,&#8221;root&#8221;) or die(&#8220;Could not Connect&#8221;);<br />
mysql_select_db(&#8220;cse_rental&#8221;) or die(&#8220;Could not Select Datadase&#8221;);</p>
<p>$result = mysql_query(&#8220;SELECT * FROM comments&#8221;);<br />
$count = mysql_num_rows($result);<br />
print &#8220;There R Currently $count Comments&#8221;;<br />
while($q = mysql_fetch_array($result)){<br />
?&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
* {<br />
font-family:Verdana, Sans-serif;<br />
color; #000000;<br />
font-size: 12px<br />
}<br />
input,textarea{<br />
color : #000000;<br />
font: normal 12px;<br />
border-collapse: collapse; border: 1px solid #000000;<br />
}<br />
&lt;/style&gt;<br />
&lt;table width=&#8221;50%&#8221;&gt;<br />
&lt;tr&gt;<br />
&lt;td rowspan=&#8217;3&#8242; valign=&#8217;top&#8217; width=&#8221;1%&#8221;&gt;<br />
&lt;?php echo $q[id]; ?&gt;.<br />
&lt;/td&gt;<br />
&lt;td bgcolor=&#8221;#009966&#8243;&gt;Comments:&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td bgcolor=&#8221;#FFFFCC&#8221;&gt;<br />
&lt;?php echo $q[comment]; ?&gt;<br />
&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td bgcolor=&#8221;#CCCCCC&#8221;&gt;This Comment is posted by &lt;b&gt;&lt;?php echo $q[name]; ?&gt;&lt;/b&gt; on &lt;?php echo $q[date]; ?&gt;&lt;/td&gt;&lt;/tr&gt;<br />
&lt;/table&gt;</p>
<p>&lt;?php<br />
}<br />
mysql_close();<br />
?&gt;</p>
<p>&lt;!&#8211; Input from user &#8211;&gt;<br />
&lt;form action=&#8221;comment.php&#8221; method=&#8221;post&#8221; enctype=&#8221;multipart/form-data&#8221;&gt;<br />
&lt;input type=&#8221;hidden&#8221; name=&#8221;posted&#8221;&gt;<br />
&lt;b&gt;Add Your Comments&lt;/b&gt;&lt;br /&gt;<br />
Name:&lt;br /&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;name&#8221;  maxlength=&#8221;30&#8243; size=&#8221;32&#8243;&gt;&lt;br /&gt;<br />
Email:&lt;br /&gt;<br />
&lt;input type=&#8221;text&#8221; name=&#8221;email&#8221; maxlength=&#8221;30&#8243; size=&#8221;32&#8243;&gt;&lt;br /&gt;<br />
Comments:&lt;br /&gt;<br />
&lt;textarea cols=&#8221;40&#8243; rows=&#8221;6&#8243; name=&#8221;comment&#8221;&gt;&lt;/textarea&gt;&lt;br /&gt;</p>
<p>&lt;input type=&#8221;submit&#8221; value=&#8221;Add Comments&#8221;&gt;&lt;input type=&#8221;reset&#8221; value=&#8221;Reset&#8221;&gt;<br />
&lt;/form&gt;</p>
<p>&lt;?php<br />
//add to database<br />
function add_to_database()<br />
{<br />
$name = trim($_POST['name']);<br />
$email = trim($_POST['email']);<br />
$comment = trim($_POST['comment']);</p>
<p>mysql_connect(&#8220;localhost&#8221;,&#8221;root&#8221;) or die(&#8220;Could not Connect&#8221;);<br />
mysql_select_db(&#8220;cse_rental&#8221;) or die(&#8220;Could not Select Datadase&#8221;);</p>
<p>$sql = &#8220;INSERT INTO comments (`id`,`name`,`email`,`comment`)<br />
VALUES(&#8221;,&#8217;$name&#8217;,'$email&#8217;,'$comment&#8217;)&#8221;;<br />
mysql_query($sql);<br />
mysql_close();<br />
return true;<br />
}</p>
<p>?&gt;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/pollobcse05.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/pollobcse05.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pollobcse05.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pollobcse05.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pollobcse05.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pollobcse05.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pollobcse05.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pollobcse05.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pollobcse05.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pollobcse05.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pollobcse05.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pollobcse05.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pollobcse05.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pollobcse05.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pollobcse05.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pollobcse05.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pollobcse05.wordpress.com&amp;blog=2906421&amp;post=4&amp;subd=pollobcse05&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pollobcse05.wordpress.com/2008/05/14/comment-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f123331ef00ca43e11c57eff5057c323?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pollob</media:title>
		</media:content>
	</item>
	</channel>
</rss>
