<?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>Alvanweb</title>
	<atom:link href="http://alvanweb.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://alvanweb.wordpress.com</link>
	<description>I will note it down</description>
	<lastBuildDate>Tue, 18 Oct 2011 20:03:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='alvanweb.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Alvanweb</title>
		<link>http://alvanweb.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://alvanweb.wordpress.com/osd.xml" title="Alvanweb" />
	<atom:link rel='hub' href='http://alvanweb.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Error messages for abnormal feeds in FeedBurner API and cURL functions</title>
		<link>http://alvanweb.wordpress.com/2009/02/18/error-messages-for-abnormal-feeds-in-feedburner-api-and-curl-functions/</link>
		<comments>http://alvanweb.wordpress.com/2009/02/18/error-messages-for-abnormal-feeds-in-feedburner-api-and-curl-functions/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 15:10:38 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[Feed]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Source Code]]></category>

		<guid isPermaLink="false">http://alvanweb.wordpress.com/2009/02/18/error-messages-for-abnormal-feeds-in-feedburner-api-curl-functions/</guid>
		<description><![CDATA[I used FeedBurner API in my last project (FeedRoll). I needed to know error number for abnormal feeds.&#160; FeedBurner API returns below error numbers: 1: Feed Not Found 2: This feed does not permit Awareness API access 5: Missing required parameter (URI) 6: Malformed parameter (DATES) I used cURL (Client URL Library Functions) for Perform [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=76&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I used <a href="http://code.google.com/apis/feedburner/">FeedBurner API</a> in my last project (<a href="http://feedroll.alvanweb.com/">FeedRoll</a>). I needed to know error number for abnormal feeds.&nbsp; FeedBurner API returns below error numbers:</p>
<p><b>1</b>: Feed Not Found<br />
<b>2</b>: This feed does not permit Awareness API access<br />
<b>5</b>: Missing required parameter (URI)<br />
<b>6</b>: Malformed parameter (DATES)</p>
<p>I used cURL (Client URL Library Functions) for Perform a cURL session and next Parsed XML via SimpleXML Class. But didn&#8217;t available data for feed that didn&#8217;t permit Awareness API access. Because cURL was Unauthorized.<br />
In this case we can use HTTP code that corresponding to &#8216;http_code&#8217; index of the array returned by curl_getinfo. I write below code for it:</p>
<pre class="brush: php;">
&lt; ?php
$twodayago = date('Y-m-d', strtotime('-2 days', time()));
$onedayago = date('Y-m-d', strtotime('-1 days', time()));
$today = date('Y-m-d');

$api = &quot;https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=$feedid&amp;dates=$twodayago,$onedayago&quot;;

//Initialize a cURL session
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $api);
$data = curl_exec($ch);
$base_code = curl_getinfo($ch);
curl_close($ch);

if ($base_code['http_code']=='401'){
	$burner_count_circulation = 'This feed does not permit Awareness API access';
	$burner_date = $today;
} else {

	$xml = new SimpleXMLElement($data); //Parse XML via SimpleXML Class
	$bis = $xml-&gt;attributes();  //Bis Contain first attribute, It usually is ok or fail in FeedBurner

	if ($bis=='ok'){
		foreach ($xml-&gt;feed as $feed) {
			if ($feed-&gt;entry[1]['circulation']=='0'){
				$burner_count_circulation = $feed-&gt;entry[0]['circulation'];
				$burner_date  =  $feed-&gt;entry[0]['date'];
			} else {
				$burner_count_circulation = $feed-&gt;entry[1]['circulation'];
				$burner_date  =  $feed-&gt;entry[1]['date'];
			}
		}
	}

	if ($bis=='fail'){
		switch ($xml-&gt;err['code']) {
			case 1:
				$burner_count_circulation = 'Feed Not Found';
				break;
			case 5:
				$burner_count_circulation = 'Missing required parameter (URI)';
				break;
			case 6:
				$burner_count_circulation = 'Malformed parameter (DATES)';
				break;
		}
		$burner_date = $today;
	}

}

echo $burner_count_circulation.' @ '.$burner_date;
 ?&gt;
</pre>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=de89e6fd-3071-4b87-b134-a089c0e9c118" /></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=76&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2009/02/18/error-messages-for-abnormal-feeds-in-feedburner-api-and-curl-functions/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/pixy.gif?x-id=de89e6fd-3071-4b87-b134-a089c0e9c118" medium="image" />
	</item>
		<item>
		<title>Rainy day</title>
		<link>http://alvanweb.wordpress.com/2008/01/08/rainy-day/</link>
		<comments>http://alvanweb.wordpress.com/2008/01/08/rainy-day/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 08:11:01 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Persoanal]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://alvanweb.wordpress.com/2008/01/08/rainy-day/</guid>
		<description><![CDATA[It is raining slightly, which must be a disappointment to the ladies who are probably wearing most beautiful dresses underneath their mackintoshes. However a strong wind is blowing and perhaps it will clear later in the afternoon. I am reading Basic econometrics for examination. My next is appraisal economic plans and at last will be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=55&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is raining slightly, which must be a disappointment to the ladies who are probably wearing most beautiful dresses underneath their mackintoshes. However a strong wind is blowing and perhaps it will clear later in the afternoon.</p>
<p>I am reading Basic econometrics for examination. My next is appraisal economic plans and at last will be industrial economic. They are important and essential lessons in industrial economic field. I must get ready in one week! It is next to impossible…</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alvanweb.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alvanweb.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=55&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2008/01/08/rainy-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Tired</title>
		<link>http://alvanweb.wordpress.com/2008/01/06/tired/</link>
		<comments>http://alvanweb.wordpress.com/2008/01/06/tired/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 22:25:44 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Persoanal]]></category>

		<guid isPermaLink="false">http://alvanweb.wordpress.com/2008/01/06/tired/</guid>
		<description><![CDATA[This days I am a little tired and impatient. I will write here coming soon…<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=54&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This days I am a little tired and impatient.<br />
I will write here coming soon…</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alvanweb.wordpress.com/54/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alvanweb.wordpress.com/54/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=54&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2008/01/06/tired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Marriage celebration and car decoration</title>
		<link>http://alvanweb.wordpress.com/2007/05/26/marriage-celebration-and-car-decoration/</link>
		<comments>http://alvanweb.wordpress.com/2007/05/26/marriage-celebration-and-car-decoration/#comments</comments>
		<pubDate>Sat, 26 May 2007 15:13:45 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Photo]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://alvanweb.wordpress.com/2007/05/26/marriage-celebration-and-car-decoration/</guid>
		<description><![CDATA[This funny photo creates by Mr. Hamid Barghamadi (one of my best friends) in university of Sistan &#38; Balochestan. The car is Paykan (one of old Irankhordro products that expired in last years) that decorated for marriage celebration.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=41&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> <a href="http://alvanweb.files.wordpress.com/2007/05/marriage-celebration-and-car-decoration.jpg" title="Marriage celebration and car decoration"><img src="http://alvanweb.files.wordpress.com/2007/05/marriage-celebration-and-car-decoration_small.jpg?w=450" alt="Marriage celebration and car decoration" /></a></p>
<p>This funny photo creates by Mr. Hamid Barghamadi (one of my best friends) in <a href="http://www.usb.ac.ir/">university of Sistan &amp; Balochestan</a>. The car is Paykan (one of old <a href="http://www.ikco.com">Irankhordro</a> products that expired in last years) that decorated for marriage celebration.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alvanweb.wordpress.com/41/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alvanweb.wordpress.com/41/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=41&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2007/05/26/marriage-celebration-and-car-decoration/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>

		<media:content url="http://alvanweb.files.wordpress.com/2007/05/marriage-celebration-and-car-decoration_small.jpg" medium="image">
			<media:title type="html">Marriage celebration and car decoration</media:title>
		</media:content>
	</item>
		<item>
		<title>Received Ubuntu CD&#8217;s</title>
		<link>http://alvanweb.wordpress.com/2007/05/15/received-ubuntu-cds/</link>
		<comments>http://alvanweb.wordpress.com/2007/05/15/received-ubuntu-cds/#comments</comments>
		<pubDate>Tue, 15 May 2007 22:25:39 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://alvanweb.wordpress.com/2007/05/17/received-ubuntu-cds/</guid>
		<description><![CDATA[I just received my Ubuntu 7.04 LTS CD&#8217;s today. To my surprise, the packet also includes several Ubuntu stickers. (Picture) You can get the free CD&#8217;s thru this website. After all, thank you very much Canonical Ltd.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=39&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just received my Ubuntu 7.04 LTS CD&#8217;s today. To my surprise, the packet also includes several Ubuntu stickers. (<a href="http://alvani.googlepages.com/Ubuntu_packet_lable2.jpg">Picture</a>)<br />
You can get the free CD&#8217;s thru <a href="https://shipit.ubuntu.com/">this website</a>.<br />
After all, thank you very much <a href="http://www.canonical.com/">Canonical Ltd</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alvanweb.wordpress.com/39/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alvanweb.wordpress.com/39/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=39&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2007/05/15/received-ubuntu-cds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Email Design Gallery</title>
		<link>http://alvanweb.wordpress.com/2007/01/20/email-design-gallery/</link>
		<comments>http://alvanweb.wordpress.com/2007/01/20/email-design-gallery/#comments</comments>
		<pubDate>Sat, 20 Jan 2007 22:28:45 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[(X)HTML]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://alvanweb.wordpress.com/2007/01/20/email-design-gallery/</guid>
		<description><![CDATA[Campaign Monitor launches a brand new email design gallery with more than 100 top notch HTML email designs tagged and categorized. see it here.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=36&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.campaignmonitor.com">Campaign Monitor</a> launches a brand new email design gallery with more than 100 top notch HTML email designs tagged and categorized. see it <a href="http://www.campaignmonitor.com/gallery/">here</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alvanweb.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alvanweb.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=36&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2007/01/20/email-design-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Imam Reza Shrine on google earth</title>
		<link>http://alvanweb.wordpress.com/2006/09/20/imam-reza-shrine-on-google-earth/</link>
		<comments>http://alvanweb.wordpress.com/2006/09/20/imam-reza-shrine-on-google-earth/#comments</comments>
		<pubDate>Wed, 20 Sep 2006 07:31:59 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">http://alvanweb.wordpress.com/2006/09/20/imam-reza-shrine-on-google-earth/</guid>
		<description><![CDATA[Download KMZ format here.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=33&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://alvanweb.files.wordpress.com/2006/09/21.jpg?w=450" alt="Imam Reza Shrine on google earth" /></p>
<p>Download KMZ format <a href="http://www.gigasize.com/get.php/75451/Imam_Reza_Shrine.kmz">here</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alvanweb.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alvanweb.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=33&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2006/09/20/imam-reza-shrine-on-google-earth/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>

		<media:content url="http://alvanweb.files.wordpress.com/2006/09/21.jpg" medium="image">
			<media:title type="html">Imam Reza Shrine on google earth</media:title>
		</media:content>
	</item>
		<item>
		<title>Irrelevant Bookmarks</title>
		<link>http://alvanweb.wordpress.com/2006/08/09/irrelevant-bookmarks/</link>
		<comments>http://alvanweb.wordpress.com/2006/08/09/irrelevant-bookmarks/#comments</comments>
		<pubDate>Wed, 09 Aug 2006 06:25:14 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://alvanweb.wordpress.com/2006/08/09/irrelevant-bookmarks/</guid>
		<description><![CDATA[I think one of the foundation web 2.0 properties is tagging. Tags play important role in web pages. But most users don’t know usage in proper method. For example inputting amiss values such as irrelevant characters or words in tags, title and description fields when uploading photos in flickr. As far as I can see, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=26&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I think one of the foundation web 2.0 properties is tagging. Tags play important role in web pages. But most users don’t know usage in proper method. For example inputting amiss values such as irrelevant characters or words in tags, title and description fields when uploading photos in flickr.</p>
<p>As far as I can see, filling fields with accurate information may be help to visitors. It’s enough to put you in exchange users than come from search engines. But I know not neither can I guess than what we are not more careful?!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alvanweb.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alvanweb.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=26&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2006/08/09/irrelevant-bookmarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>
	</item>
		<item>
		<title>CSS Support is Poor in RSS Feed Readers</title>
		<link>http://alvanweb.wordpress.com/2006/07/09/css-support-is-poor-in-rss-feed-readers/</link>
		<comments>http://alvanweb.wordpress.com/2006/07/09/css-support-is-poor-in-rss-feed-readers/#comments</comments>
		<pubDate>Sun, 09 Jul 2006 07:42:48 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">https://alvanweb.wordpress.com/2006/07/09/css-support-is-poor-in-rss-feed-readers/</guid>
		<description><![CDATA[Once upon a time, different Web browsers supported different forms of HTML markup or &#8220;tags.&#8221; It was difficult or impossible to make a Web site look good in different browsers. Beginning a few years ago, fortunately, browsers started adopting some common markup styles, loosely known as &#8220;Web standards.&#8221; Web sites now look roughly the same [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=22&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Once upon a time, different Web browsers supported different forms of HTML markup or &#8220;tags.&#8221; It was difficult or impossible to make a Web site look good in different browsers. Beginning a few years ago, fortunately, browsers started adopting some common markup styles, loosely known as &#8220;Web standards.&#8221; Web sites now look roughly the same in different browsers. Users said, &#8220;Yea, verily, it is good.&#8221; Read this article <a href="http://itmanagement.earthweb.com/columns/executive_tech/article.php/3617901#rssfeedreadercss">here</a> .</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alvanweb.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alvanweb.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=22&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2006/07/09/css-support-is-poor-in-rss-feed-readers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Moscow Skyline</title>
		<link>http://alvanweb.wordpress.com/2006/06/15/moscow-skyline/</link>
		<comments>http://alvanweb.wordpress.com/2006/06/15/moscow-skyline/#comments</comments>
		<pubDate>Thu, 15 Jun 2006 20:36:33 +0000</pubDate>
		<dc:creator>alvanweb</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Moscow]]></category>
		<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">https://alvanweb.wordpress.com/2006/06/15/moscow-skyline/</guid>
		<description><![CDATA[Я так устал, который я не могу написать больше. только см. эту хорошую фотографию. (I&#8217;m so tired that i cannot write more. Just see this nice photo. Moscow skyline evening)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=20&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img src="http://alvanweb.files.wordpress.com/2006/06/moscow13.jpg?w=450" alt="Moscow Skyline" /></p>
<p>Я так устал, который я не могу написать больше. только см. эту хорошую фотографию. (I&#8217;m so tired that i cannot write more. Just see this nice photo. Moscow skyline evening)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/alvanweb.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/alvanweb.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/alvanweb.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/alvanweb.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/alvanweb.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/alvanweb.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/alvanweb.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/alvanweb.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/alvanweb.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/alvanweb.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/alvanweb.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/alvanweb.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/alvanweb.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/alvanweb.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/alvanweb.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/alvanweb.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=alvanweb.wordpress.com&amp;blog=16659&amp;post=20&amp;subd=alvanweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://alvanweb.wordpress.com/2006/06/15/moscow-skyline/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af92019286872e190d5007f333c37a5f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">alvanweb</media:title>
		</media:content>

		<media:content url="http://alvanweb.files.wordpress.com/2006/06/moscow13.jpg" medium="image">
			<media:title type="html">Moscow Skyline</media:title>
		</media:content>
	</item>
	</channel>
</rss>
