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

<channel>
	<title>Tigran&#039;s blog</title>
	<atom:link href="http://blog.tigranweb.info/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.tigranweb.info</link>
	<description>Blog about Hi-Tech</description>
	<lastBuildDate>Mon, 25 Jan 2010 22:48:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Drupal module suggestions</title>
		<link>http://blog.tigranweb.info/archives/85</link>
		<comments>http://blog.tigranweb.info/archives/85#comments</comments>
		<pubDate>Mon, 25 Jan 2010 22:48:36 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[develope]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[module]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/?p=85</guid>
		<description><![CDATA[I want to write Drupal module. What suggestions? Any ideas? What module drupal have not?
]]></description>
			<content:encoded><![CDATA[<p>I want to write Drupal module. What suggestions? Any ideas? What module drupal have not?</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F85&amp;linkname=Drupal%20module%20suggestions"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/85/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery .load problem in IE6 and IE7</title>
		<link>http://blog.tigranweb.info/archives/81</link>
		<comments>http://blog.tigranweb.info/archives/81#comments</comments>
		<pubDate>Sun, 24 Jan 2010 22:11:24 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[.load]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/?p=81</guid>
		<description><![CDATA[Recently I have facet a problem with jTip jQuery plugin. The problem caused IE caching system by blocking .load function. It blocks AJAX requests. So to fix this problem, you need to call different URL's every time. The solution for jTip plugin is below.
find this line in jTip.js
$(&#039;#JT_copy&#039;).load(url);
and replace by this
$(&#039;#JT_copy&#039;).load(url+&#039;&#38;amp;amp;amp;random=&#039; + Math.random()*99999);
This snippet, add's [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have facet a problem with jTip jQuery plugin. The problem caused IE caching system by blocking .load function. It blocks AJAX requests. So to fix this problem, you need to call different URL's every time. The solution for jTip plugin is below.</p>
<p>find this line in jTip.js</p>
<pre class="brush: php">$(&#039;#JT_copy&#039;).load(url);</pre>
<p>and replace by this</p>
<pre class="brush: php">$(&#039;#JT_copy&#039;).load(url+&#039;&amp;amp;amp;amp;random=&#039; + Math.random()*99999);</pre>
<p>This snippet, add's random number after URL. So URL every time is different <img src='http://blog.tigranweb.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F81&amp;linkname=jQuery%20.load%20problem%20in%20IE6%20and%20IE7"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/81/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DDBlock default problem</title>
		<link>http://blog.tigranweb.info/archives/74</link>
		<comments>http://blog.tigranweb.info/archives/74#comments</comments>
		<pubDate>Thu, 10 Sep 2009 19:33:46 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cck]]></category>
		<category><![CDATA[ddblock]]></category>
		<category><![CDATA[drupal]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/?p=74</guid>
		<description><![CDATA[DDblock by default coming with problem when you installing ddblock with exported CCK and Views. There is no picture? Only gray box-background? There is CCK field problem. Basically in template.php preprocess function replace all

node_data_field_image_field_image_fid

function into

node_data_field_pager_item_text_field_image_fid

This should fix the problem!
]]></description>
			<content:encoded><![CDATA[<p>DDblock by default coming with problem when you installing ddblock with exported CCK and Views. There is no picture? Only gray box-background? There is CCK field problem. Basically in template.php preprocess function replace all</p>
<p><code>
<pre class="brush: php">node_data_field_image_field_image_fid</pre>
<p></code></p>
<p>function into</p>
<p><code>
<pre class="brush: php">node_data_field_pager_item_text_field_image_fid</pre>
<p></code></p>
<p>This should fix the problem!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F74&amp;linkname=DDBlock%20default%20problem"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/74/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Mobile GPRS problem</title>
		<link>http://blog.tigranweb.info/archives/67</link>
		<comments>http://blog.tigranweb.info/archives/67#comments</comments>
		<pubDate>Tue, 08 Sep 2009 13:02:36 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[GPRS]]></category>
		<category><![CDATA[locating]]></category>
		<category><![CDATA[Windows Mobile]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/?p=67</guid>
		<description><![CDATA[Firstly, I want to say - sorry for long delay. Work, work and work  
You have GPRS internet and internet explorer freeze's on Locating phase? Then read this article. Today I will tell how to fix GPRS related Windows Mobile problem when browser freeze on Locating stage of page load.
This problem may occur when [...]]]></description>
			<content:encoded><![CDATA[<p>Firstly, I want to say - sorry for long delay. Work, work and work <img src='http://blog.tigranweb.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You have GPRS internet and internet explorer freeze's on Locating phase? Then read this article. Today I will tell how to fix GPRS related Windows Mobile problem when browser freeze on Locating stage of page load.</p>
<p>This problem may occur when you enable WIFI when GPRS is enabled. It is DNS related problem. Also the problem may occur when system does wrong caching.  The problem can be fixed with adding/changing DNS servers in your Windows Mobile connection settings. If you don't know your DNS addresses use Open DNS servers. Follow this steps to fix the problem.</p>
<p>1. Go to Start-&gt;Settings, open Connections tab.</p>
<p>2. Open connections app, go to Manage existing connections, choose network, and click on edit.</p>
<p>3. Next(2 times), open Advanced, then go to Servers tab.</p>
<p>4. Change the setting to "Use specific server address"</p>
<p>5. For example we will use OpenDNS.com servers. Add the 208.67.222.222 in DNS field, and 208.67.220.220 in Alt. DNS field.</p>
<p>6. Click ok and Finish!</p>
<p>7. Disable and enable your connection, and have fun <img src='http://blog.tigranweb.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F67&amp;linkname=Windows%20Mobile%20GPRS%20problem"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/67/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vacation</title>
		<link>http://blog.tigranweb.info/archives/66</link>
		<comments>http://blog.tigranweb.info/archives/66#comments</comments>
		<pubDate>Sat, 18 Jul 2009 08:55:45 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[vacation sevan]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/archives/66</guid>
		<description><![CDATA[Tommorow I'm going to vacation. To Sevan. Will return at 1 week.
]]></description>
			<content:encoded><![CDATA[<p>Tommorow I'm going to vacation. To Sevan. Will return at 1 week.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F66&amp;linkname=Vacation"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/66/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress + Drupal RSS problem</title>
		<link>http://blog.tigranweb.info/archives/63</link>
		<comments>http://blog.tigranweb.info/archives/63#comments</comments>
		<pubDate>Wed, 15 Jul 2009 14:06:37 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/?p=63</guid>
		<description><![CDATA[I'm using wordpress for blog, and drupal for home page. While building my web site I meet problem with feeds. The RSS which generated in wordpress, have not been recognized by drupal. Why? I have been researched and detected that my wordpress 7hide plugin causing this problem. 7hide plugins uses some javascript methods. I have [...]]]></description>
			<content:encoded><![CDATA[<p>I'm using wordpress for blog, and drupal for home page. While building my web site I meet problem with feeds. The RSS which generated in wordpress, have not been recognized by drupal. Why? I have been researched and detected that my wordpress 7hide plugin causing this problem. 7hide plugins uses some javascript methods. I have tested RSS, RSS2 and Atom. All is problem. Only RDF drupal recognized. Change to RDF for that purposes.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F63&amp;linkname=Wordpress%20%2B%20Drupal%20RSS%20problem"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/63/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial: Simple Bar Chart using PHP</title>
		<link>http://blog.tigranweb.info/archives/59</link>
		<comments>http://blog.tigranweb.info/archives/59#comments</comments>
		<pubDate>Wed, 15 Jul 2009 13:55:44 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[gd]]></category>
		<category><![CDATA[image manipulation]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/?p=59</guid>
		<description><![CDATA[In this small tutorial I will explain how I created simple bar chart using PHP. Maybe in future I will write more about charts and to expand this library. Tutorial is for beginners.  For image manipulation and processing we will use GD library which is by default come's with PHP distributions. You need to enable [...]]]></description>
			<content:encoded><![CDATA[<p>In this small tutorial I will explain how I created simple bar chart using PHP. Maybe in future I will write more about charts and to expand this library. Tutorial is for beginners.  For image manipulation and processing we will use GD library which is by default come's with PHP distributions. You need to enable GD2 extension in PHP.ini. Search for ";extension=php_gd2.dll" and remove ; character.</p>
<p>The code below calculate the heights for each value to be shown in chart, draws that bars and returns image data as variable.</p>
<span class="hiddenb" onselectstart="return false;"
    		onmousedown="this.style.backgroundColor='#444444';if (typeof event.preventDefault != 'undefined') {event.preventDefault();}" 
    		onclick="if(this.style.visibility!='visible'){this.style.visibility='visible';this.childNodes['1'].style.display='block';} else{this.style.visibility='hidden';this.childNodes['1'].style.display='none';};" ><span class="hiddenbutton" onmouseup="this.style.backgroundColor='#333333'" onmousedown="this.style.backgroundColor='#444444'">Click here to view bar.php code</span><span name="txt" style="display:none;" class="hiddent">
<pre class="brush: php">

&lt;?php
/*
* Gets maximal value from array and
* calculates ratio of chart height and value
*/
function maxRatio($values)
{
// get max value from array
$max = max($values);

// calculate ratio of chart height and max value
$max_ratio = 150/$max;

return $max_ratio;
}

/*
* Draws chart bar items
*/
function drawBarItems($values)
{
// Calculate ratio of height and max value
$max_ratio = maxRatio($values);

// Create image variable with given attributes
$barimg = imagecreate(399, 149);

// Set background to white
imagecolorallocate($barimg, 255, 255, 255);

// Set text color
$text_color = imagecolorallocate($barimg, 54, 255, 0);

// Set bar item color
$bar_color = imagecolorallocate($barimg, 0, 0, 0);

// Draw bars
$bar_width = 0;
foreach($values as $item =&gt; $value)
{
// chart height/item value
$item_ratio = 150/$value;
$max_item_ratio = $max_ratio/$item_ratio;
$item_height = 150*$max_item_ratio;

// Draw bar rectangle with given attributes
imagefilledrectangle($barimg,$bar_width,150-$item_height,$bar_width+25,149,$bar_color);

// Draw text with given color, coordinates...
imagestring($barimg, 1, $bar_width, 140, $item, $text_color);

// Change position for next bar item
$bar_width+=25;
}

return $barimg;
}
?&gt;
</pre>
<p></span>
    		</span>
<p>I have been merged some part of chart functions into other file. Maybe in future I will write other chart tutorials, and combine with others.</p>
<span class="hiddenb" onselectstart="return false;"
    		onmousedown="this.style.backgroundColor='#444444';if (typeof event.preventDefault != 'undefined') {event.preventDefault();}" 
    		onclick="if(this.style.visibility!='visible'){this.style.visibility='visible';this.childNodes['1'].style.display='block';} else{this.style.visibility='hidden';this.childNodes['1'].style.display='none';};" ><span class="hiddenbutton" onmouseup="this.style.backgroundColor='#333333'" onmousedown="this.style.backgroundColor='#444444'">Click here to view chart.php code</span><span name="txt" style="display:none;" class="hiddent">
<pre class="brush: php">

&lt;?php
include(&#039;bar.php&#039;);

// Set content type to PNG
header(&#039;Content-type: image/png&#039;);

// Unserialize the array and call drawchart
drawChart(unserialize($_GET[&#039;values&#039;]));

/*
* Draw chart
*/
function drawChart($values)
{
// Create image var and set white background
$img = imagecreate(400, 150);
imagecolorallocate($img, 255, 255, 255);

// Draw coordinate lines
$line_color = imagecolorallocate($img, 0, 0, 0);
imageline($img, 0, 0, 0, 150, $line_color);
imageline($img, 0, 149, 400, 149, $line_color);

// Call bar type chart and draw it
$barItems = drawBarItems($values);
// Include bar chart in main image
imagecopy($img, $barItems, 1, 0, 0, 0, 399, 149);

// Output image
imagepng($img);
imagedestroy($img);
}
?&gt;
</pre>
<p></span>
    		</span>
<p>The code above will be called with HTML &lt;img/&gt; tag. <strong>Chart.php</strong> applies the array and unserializes.</p>
<p>And here is example PHP file which set array with numbers and call's chart.php.</p>
<span class="hiddenb" onselectstart="return false;"
    		onmousedown="this.style.backgroundColor='#444444';if (typeof event.preventDefault != 'undefined') {event.preventDefault();}" 
    		onclick="if(this.style.visibility!='visible'){this.style.visibility='visible';this.childNodes['1'].style.display='block';} else{this.style.visibility='hidden';this.childNodes['1'].style.display='none';};" ><span class="hiddenbutton" onmouseup="this.style.backgroundColor='#333333'" onmousedown="this.style.backgroundColor='#444444'">Click here to view example.php code</span><span name="txt" style="display:none;" class="hiddent">
<pre class="brush: php">

&lt;?php

$values = array(&#039;First&#039;=&gt;1234, &#039;Second&#039;=&gt;3214,&#039;Third&#039;=&gt;5321);

$values = serialize($values);

?&gt;

&lt;html&gt;

&lt;head&gt;

&lt;title&gt;Example 1: Bar chart&lt;/title&gt;

&lt;/head&gt;

&lt;body&gt;

&lt;img src=&quot;chart.php?values=&lt;?php echo $values;?&gt;&quot;/&gt;

&lt;/body&gt;

&lt;/html&gt;
</pre>
<p></span>
    		</span>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F59&amp;linkname=Tutorial%3A%20Simple%20Bar%20Chart%20using%20PHP"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/59/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Touch and Touch Diamond</title>
		<link>http://blog.tigranweb.info/archives/49</link>
		<comments>http://blog.tigranweb.info/archives/49#comments</comments>
		<pubDate>Sat, 11 Jul 2009 19:36:39 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[3452]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[prices]]></category>
		<category><![CDATA[Touch Diamond]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/?p=49</guid>
		<description><![CDATA[
In September I wished to buy HTC Touch Diamond (1200$ in September), but eventually I have decided to buy HTC Touch 3450. Bought for 550$. Now I look in internet shops those, HTC Touch Diamond costs about 370$ and HTC Touch 3450 around 400$. How so it turns out? What happens?
]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-54" title="HTC Touch Diamond" src="http://blog.tigranweb.info/wp-content/uploads/2009/07/475818vb.png" alt="HTC Touch Diamond" width="290" height="290" /><img class="alignnone size-full wp-image-53" title="HTC Touch" src="http://blog.tigranweb.info/wp-content/uploads/2009/07/HTC-Touch-Front-256x256.png" alt="HTC Touch" width="256" height="256" /></p>
<p>In September I wished to buy HTC Touch Diamond (1200$ in September), but eventually I have decided to buy HTC Touch 3450. Bought for 550$. Now I look in internet shops those, HTC Touch Diamond costs about 370$ and HTC Touch 3450 around 400$. How so it turns out? What happens?</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F49&amp;linkname=HTC%20Touch%20and%20Touch%20Diamond"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/49/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drupal + Amazon S3</title>
		<link>http://blog.tigranweb.info/archives/45</link>
		<comments>http://blog.tigranweb.info/archives/45#comments</comments>
		<pubDate>Wed, 01 Jul 2009 11:14:22 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[s3]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/?p=45</guid>
		<description><![CDATA[S3 module has been out for Drupal.  It allows administers to manage buckets &#38; objects in S3. Besides of it, module give's API for other modules, to use S3 for file sharing. Module project is here.
]]></description>
			<content:encoded><![CDATA[<p>S3 module has been out for Drupal.  It allows administers to manage buckets &amp; objects in S3. Besides of it, module give's API for other modules, to use S3 for file sharing. Module project is <a href="http://drupal.org/project/amazon_s3">here</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F45&amp;linkname=Drupal%20%2B%20Amazon%20S3"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/45/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asteroid impact (500km)</title>
		<link>http://blog.tigranweb.info/archives/41</link>
		<comments>http://blog.tigranweb.info/archives/41#comments</comments>
		<pubDate>Mon, 29 Jun 2009 06:25:57 +0000</pubDate>
		<dc:creator>Tigran</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[asteroid]]></category>
		<category><![CDATA[earth]]></category>

		<guid isPermaLink="false">http://blog.tigranweb.info/?p=41</guid>
		<description><![CDATA[What happen's if the asteroid with 500km length fall in the ocean? Discovery channel shows you that moment. Video also available in HD format.

]]></description>
			<content:encoded><![CDATA[<p>What happen's if the asteroid with 500km length fall in the ocean? Discovery channel shows you that moment. Video also available in HD format.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/-zvCUmeoHpw&#038;hl=ru&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/-zvCUmeoHpw&#038;hl=ru&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fblog.tigranweb.info%2Farchives%2F41&amp;linkname=Asteroid%20impact%20%28500km%29"><img src="http://blog.tigranweb.info/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://blog.tigranweb.info/archives/41/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
