<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Saeid Zebardast's Blog</title>
	
	<link>http://zebardast.ir/en</link>
	<description />
	<lastBuildDate>Mon, 05 Jul 2010 10:47:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>

   <image>
    <title>Saeid Zebardast's Blog</title>
    <url>http://1.gravatar.com/avatar/1518e6b905d65cbe0a03243a199e18fc?s=48&amp;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536</url>
    <link>http://zebardast.ir/en</link>
   </image>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/SaeidZebardastsBlog" /><feedburner:info uri="saeidzebardastsblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Fetch full posts content of FeedWordPress feeds</title>
		<link>http://zebardast.ir/en/fetch-full-posts-content-of-feedwordpress-feeds/</link>
		<comments>http://zebardast.ir/en/fetch-full-posts-content-of-feedwordpress-feeds/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 03:57:59 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[FeedWordPress]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://zebardast.ir/en/?p=115</guid>
		<description><![CDATA[Hi I use WordPress and FeedWordPress plugin to create a planet. It&#8217;s great plugin. Some bloggers don&#8217;t show full post content on their feeds. If you like to get the full content of posts, you can contact to blogger and ask his/her to enable full content on the feed or continue to read this article. [...]]]></description>
			<content:encoded><![CDATA[<p>Hi <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I use <a href="http://wordpress.org/">WordPress</a> and <a href="http://feedwordpress.radgeek.com/">FeedWordPress</a> plugin to create a <a href="Planet (software)">planet</a>. It&#8217;s great plugin. Some bloggers don&#8217;t show full post content on their feeds. If you like to get the full content of posts, you can contact to blogger and ask his/her to enable full content on the feed or continue to read this article.<br />
I create functions to get full content of posts.</p>
<p><strong>Requirement</strong></p>
<ul>
<li>PHP with cURL support (Client URL Library)</li>
<li>Permissions to modify theme files</li>
<li>Text editor</li>
<li>basic php programming skills</li>
</ul>
<p><strong>Step 1 &#8211; Where is post content?</strong><br />
It&#8217;s easy. just open the web page and see the page source.<br />
For example, open <a href="http://zebardast.ir/en/linux-and-unix-bash-shell-aliases/">http://zebardast.ir/en/linux-and-unix-bash-shell-aliases/</a> (Single post with full content) and see the page source.<br />
On the page source you can see the content which is started by below code:</p>
<pre>&lt;div  class="postBody"&gt;</pre>
<p>and ended by  :</p>
<pre>			&lt;/div&gt; 

						&lt;div class="postFooter"&gt;</pre>
<p>* It&#8217;s not ended only by &lt;/div&gt; because there is some divs on post content. So I add some html code after &lt;/div&gt; which is unique.</p>
<p><strong>Step 2 &#8211; Add started and ended code to `Custom Feed Settings`</strong><br />
Open the wordpress administration panel and go to the `Feed and Update Settings` page. Select the feed from  drop down menu (Here `Saeid Zebardast&#8217;s Blog`).<br />
Add started and ended code to `Custom Feed Settings`:</p>
<div class="autocap aligncenter" style="width: 300px;">
<div><a href="http://zebardast.ir/en/wp-content/uploads/2010/07/Add-started-and-ended-code-to-Custom-Feed-Settings.png"><img src="http://zebardast.ir/en/wp-content/uploads/2010/07/Add-started-and-ended-code-to-Custom-Feed-Settings-300x131.png" alt="" title="Add started and ended code to `Custom Feed Settings`" width="300" height="131" class=" size-medium wp-image-116" /></a>
<p class="autocap-text"><span class="hide">— </span>Add started and ended code to `Custom Feed Settings`</p>
</div>
</div>
<p><strong>Step 3 &#8211; Fetch full content from source and update post on wordpress</strong><br />
Open functions.php in text editor and add the below codes to the end of it:</p>
<pre>
&lt;?php
function validLink($link) {
    if(preg_match('|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i', $link)) {
        return true;
    } else {
        return false;
    }
}

/**
 * Get a web file (HTML, XHTML, XML, image, etc.) from a URL.  Return an
 * array containing the HTTP server response header fields and content.
 */
function get_web_page( $url )
{
    $options = array(
        CURLOPT_RETURNTRANSFER => true,     // return web page
        CURLOPT_HEADER         => false,    // don't return headers
        CURLOPT_FOLLOWLOCATION => false,     // follow redirects
        CURLOPT_ENCODING       => "",       // handle all encodings
        CURLOPT_USERAGENT      => "ayy.ir spider", // who am i
        CURLOPT_AUTOREFERER    => true,     // set referer on redirect
        CURLOPT_CONNECTTIMEOUT => 120,      // timeout on connect
        CURLOPT_TIMEOUT        => 120,      // timeout on response
        CURLOPT_MAXREDIRS      => 10,       // stop after 10 redirects
    );

    $ch      = curl_init( $url );
    curl_setopt_array( $ch, $options );
    $content = curl_exec( $ch );
    $err     = curl_errno( $ch );
    $errmsg  = curl_error( $ch );
    $header  = curl_getinfo( $ch );
    curl_close( $ch );

    $header['errno']   = $err;
    $header['errmsg']  = $errmsg;
    $header['content'] = $content;
    return $header;
}

function before ($this, $inthat)
{
    return substr($inthat, 0, strpos($inthat, $this));
}; 

function after ($this, $inthat)
{
    if (!is_bool(strpos($inthat, $this)))
    return substr($inthat, strpos($inthat,$this)+strlen($this));
}; 

function multi_between($this, $that, $inthat)
{
   $counter = 0;
   while ($inthat)
   {
      $counter++;
      $elements[$counter] = before($that, $inthat);
      $elements[$counter] = after($this, $elements[$counter]);
      $inthat = after($that, $inthat);
   }
   return $elements;
} 

function strbet($inputStr, $delimeterLeft, $delimeterRight, $debug=false) {
    $posLeft=strpos($inputStr, $delimeterLeft);

    if ( $debug ) {
    	echo $posLeft;
    }

    if ( $posLeft===false ) {
        if ( $debug ) {
            echo "Warning: left delimiter '{$delimeterLeft}' not found";
        }
        return false;
    }
    $posLeft+=strlen($delimeterLeft);
    $posRight=strpos($inputStr, $delimeterRight, $posLeft);
    if ( $posRight===false ) {
        if ( $debug ) {
            echo "Warning: right delimiter '{$delimeterRight}' not found";
        }
        return false;
    }

    if ( $debug ) {
    	echo $posLeft;
    	echo $posRight;
    }

    return substr($inputStr, $posLeft, $posRight-$posLeft);
} 

?&gt;
</pre>
<p>Close functions.php and open single.php in text editor. Add the below codes after `&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;`:</p>
<pre>
&lt;?php
	 $my_content = get_the_content();
	 if (is_syndicated()) :

      	$syndication_permalink = get_post_meta(get_the_ID(),"syndication_permalink", true);
      	$syndication_source = get_post_meta(get_the_ID(),"syndication_source", true);
      	$syndication_source_uri = get_post_meta(get_the_ID(),"syndication_source_uri", true);

      	if (!validLink($syndication_permalink) &#038;&#038; validLink($syndication_source_uri)) {
      		$syndication_permalink = $syndication_source_uri . "/" . $syndication_permalink;
      	}

	 		$post_updated = get_post_meta(get_the_ID(),"post_updated", true);
	 		if (empty($post_updated) || $post_updated == false)  {

		      $start_content = get_feed_meta('start_content');
		      $end_content = get_feed_meta('end_content');

		      if (!empty ($start_content) &#038;&#038; !empty($end_content)) {
		      	$result = get_web_page($syndication_permalink);
		      	$my_page = $result['content'];

		      	if (!empty($my_page)) {
		      		$valid_texts = array();
		      		$valid_texts = strbet($my_page, $start_content, $end_content);
				if (is_array($valid_texts)) {
					$valid_texts = $valid_texts[0];
				}

		      		if (!empty($valid_texts)) {
		      			$my_post = array();
		      			$my_post['ID'] = get_the_ID();
		      			$my_post['post_content'] = $valid_texts;
		      			$my_content = $valid_texts;
		      			wp_update_post($my_post);
		      			update_post_meta(get_the_ID(), 'post_updated', true);
		      		}
		      	}
		      }
	 		}

	 endif; //is_syndicated()
  ?&gt;
</pre>
<p>After it, replace `the_content()` with:</p>
<pre> echo $my_content; </pre>
<p>Close text editor and Upload functions.php and single.php to your theme folder. Now go to the single post and see the full content.<br />
<em>Just try it!</em></p>
<p><strong>See also</strong><br />
• <a href="http://feedwordpress.radgeek.com/wiki/how-do-i-get-feedwordpress-include-full-content-posts-instead-just-short-summary-or-excerpt-tex">How do I get FeedWordPress to include the full content of posts, instead of just a short summary or excerpt of the text?</a></p>
<p><strong>External links</strong><br />
• <a href="http://wordpress.org/">WordPress</a><br />
• <a href="http://feedwordpress.radgeek.com/">FeedWordPress</a> (Homepage)<br />
• <a href="http://wordpress.org/extend/plugins/feedwordpress/">FeedWordPress</a> (WordPress plugin directory)<br />
• <a href="http://www.php.net/manual/en/book.curl.php">Client URL Library</a></p>
<p>Good luck <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/fetch-full-posts-content-of-feedwordpress-feeds/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Installing Sun JDK 5 on Ubuntu 9.10 and 10.04</title>
		<link>http://zebardast.ir/en/installing-sun-jdk-5-on-ubuntu-9-10-and-10-04/</link>
		<comments>http://zebardast.ir/en/installing-sun-jdk-5-on-ubuntu-9-10-and-10-04/#comments</comments>
		<pubDate>Mon, 03 May 2010 02:21:19 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://zebardast.ir/en/?p=107</guid>
		<description><![CDATA[Hello As you known, Sun JDK version 1.5 or 5 is deleted from Ubuntu 10.4 and 9.10 repositories and the version 6 has been replaced. The easiest way to install Sun JDK 5 version is add its repository from Ubuntu 9.04 to the list of repositories in 9.10 and 10.04. For this purpose, follow the [...]]]></description>
			<content:encoded><![CDATA[<p>Hello <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>As you known, Sun <abbr title="Java Development Kit">JDK</abbr> version 1.5 or 5  is deleted from Ubuntu 10.4 and 9.10 repositories and the version 6 has been replaced.</p>
<p>The easiest way to install Sun JDK 5 version is add its repository from Ubuntu 9.04 to the list of repositories in  9.10 and 10.04. For this purpose, follow the steps.</p>
<p>1- Open /etc/apt/sources.list with a text editor like gedit:</p>
<pre>sudo gedit /etc/apt/sources.list</pre>
<p>2- Add the following lines to the end of the file then save it and close:</p>
<pre>  ## For sun-java5-jdk
 deb http://ir.archive.ubuntu.com/ubuntu jaunty-updates main multiverse</pre>
<p>3- Update the packages lists and install sun-java5-jdk:</p>
<pre> sudo aptitude update
 sudo aptitude install sun-java5-jdk</pre>
<p><em>* Above method can be used for other applications.</em></p>
<p>Another way to install jdk 5 is download software package and its dependencies from <a href="http://packages.ubuntu.com">packages.ubuntu.com</a>.</p>
<p>Good luck</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/installing-sun-jdk-5-on-ubuntu-9-10-and-10-04/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to find hardware information from command line on Linux</title>
		<link>http://zebardast.ir/en/find-and-show-hardware-information-from-command-line-on-linux/</link>
		<comments>http://zebardast.ir/en/find-and-show-hardware-information-from-command-line-on-linux/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 14:25:26 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://zebardast.ir/en/?p=94</guid>
		<description><![CDATA[— linux Hi In this post you can see some useful command to find and show hardware information on Linux. Default commands ALL devices dmesg dmesg will show you the kernel messages which can show you all the devices the kernel has found (hard disks,cdroms,etc) CPU # cat /proc/cpuinfo Memory # cat /proc/meminfo $ free [...]]]></description>
			<content:encoded><![CDATA[<div style="float:right">
<div class="autocap " style="width: 48px;">
<div><img class=" size-full wp-image-873" width="48" height="48" title="linux" alt="linux" src="http://zebardast.ir/wp-content/uploads/2009/11/linux48.gif"/>
<p class="autocap-text"><span class="hide">— </span>linux</p>
</div>
</div>
</div>
<p>Hi</p>
<p>In this post you can see some useful command to find and show hardware information on Linux.</p>
<h3>Default commands</h3>
<h4>ALL devices</h4>
<pre>dmesg</pre>
<p>dmesg will show you the kernel messages which can show you all the devices the kernel has found (hard disks,cdroms,etc)</p>
<h4>CPU</h4>
<pre># cat /proc/cpuinfo</pre>
<h4>Memory</h4>
<pre># cat /proc/meminfo
$ free
</pre>
<h4>PCI (including usb bridges,agp cards etc)</h4>
<pre>$ lspci</pre>
<h4>USB devices (mice,etc)</h4>
<pre>$ lsusb</pre>
<h4>Hard drives</h4>
<pre># fdisk -l
$ df -h
</pre>
<h3>Additional Command</h3>
<h4>lshw</h4>
<p>lshw is a Linux command which provides details of all the hardware in your PC. The details provided by the lshw command run the gamut of processors, memory, slots, onboard sound, video chipset and more.</p>
<h5>Install lshw</h5>
<p>Arch:</p>
<pre># pacman -S lshw</pre>
<p>Debain, Ubuntu or any of its derivatives:</p>
<pre>$ sudo aptitude install lshw</pre>
<p>Redhat, fedora, CentOS:</p>
<pre># yum install lshw</pre>
<p>Gentoo:</p>
<pre># emerge lshw</pre>
<h5>Run lshw</h5>
<pre># lshw
# lshw -short</pre>
<p>To get the output in HTML, you use the -html option as follows:</p>
<pre># lshw -html > hardware-info.html</pre>
<p>• See <a href="http://linuxandfriends.com/2009/02/23/lshw-command-list-hardware-information-in-linux/">lshw command – List hardware information in Linux </a></p>
<h4>dmidecode</h4>
<p>dmidecode command reads the system DMI table to display hardware and BIOS information of the server. Apart from getting current configuration of the system, you can also get information about maximum supported configuration of the system using dmidecode. For example, dmidecode gives both the current RAM on the system and the maximum RAM supported by the system.<br />
dmidecode is installed by default on many linux distribution like debain, ubuntu and fedora.<br />
• See <a href="http://www.thegeekstuff.com/2008/11/how-to-get-hardware-information-on-linux-using-dmidecode-command/">How To Get Hardware Information On Linux Using dmidecode Command</a></p>
<p>have a good time <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/find-and-show-hardware-information-from-command-line-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synchronizing Google Tools with Kontact</title>
		<link>http://zebardast.ir/en/synchronizing-google-tools-with-kontact/</link>
		<comments>http://zebardast.ir/en/synchronizing-google-tools-with-kontact/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 08:34:12 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[akonadi]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[kmail]]></category>
		<category><![CDATA[korganizer]]></category>
		<category><![CDATA[Synchronization]]></category>

		<guid isPermaLink="false">http://zebardast.ir/en/?p=82</guid>
		<description><![CDATA[Hello Introduction Using online tools has many advantages. One of the most important of them is the information is accessible from anywhere and at any time. One need that was occurred after using this tools is Synchronizing information with other applications and devices. such as Synchronizing contacts between Mobile, Web and PC. * The following [...]]]></description>
			<content:encoded><![CDATA[<p>Hello <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Introduction</strong><br />
Using online tools has many advantages. One of the most important of them is the information is accessible from anywhere and at any time.<br />
One need that was occurred after using this tools is Synchronizing information with other applications and devices. such as Synchronizing contacts between Mobile, Web and PC.</p>
<p><em>* The following guide is tested on Kubuntu 9.10 with KDE 4.3.3 environment.</em></p>
<p><strong>Synchronizing Google Tools with Kontact</strong><br />
<em>Step 1</em><br />
Installing akonadi-kde-resource-googledata package. The package is available in Ubuntu 9.10 and Debian repositories.</p>
<pre>sudo aptitude install akonadi-kde-resource-googledata</pre>
<p><em>Step 2</em><br />
After installing akonadi-kde-resource-googledata package, you need to add Google resources to Akonadi. Open Akonadi Console:</p>
<pre>akonadiconsole</pre>
<p>Click Add on Agents tab. Add a `Akonadi Google Calendar Resource` for Google Calendar  and add `Akonadi Google Contacts Resource` for Google Contacts.</p>
<div class="autocap " style="width: 300px;">
<div><a href="http://zebardast.ir/wp-content/uploads/2009/11/akonadi-console-google-resource.png"><img class="size-medium wp-image-904" title="Add Google Resources to Akonadi Console" src="http://zebardast.ir/wp-content/uploads/2009/11/akonadi-console-google-resource-300x196.png" alt="Add Google Resources to Akonadi Console" width="300" height="196" /></a>
<p class="autocap-text"><span class="hide">— </span>Add Google Resources to Akonadi Console</p>
</div>
</div>
<p>Enter your username without `@gmail.com`  in the next window.</p>
<div class="autocap aligncenter" style="width: 300px;">
<div><a href="http://zebardast.ir/wp-content/uploads/2009/11/akonadi-console-google-resource-2.png"><img class=" size-medium wp-image-907" title="Enter your username" src="http://zebardast.ir/wp-content/uploads/2009/11/akonadi-console-google-resource-2-300x170.png" alt="Enter your username" width="300" height="170" /></a>
<p class="autocap-text"><span class="hide">— </span>Enter your username</p>
</div>
</div>
<p><em>Step 3</em><br />
After adding a resources open Kontact application :</p>
<pre>kontact</pre>
<p><strong>Add Contacts</strong><br />
Go to Contact section and add `Akonadi Google Resource` to address books:</p>
<div class="autocap aligncenter" style="width: 300px;">
<div><a href="http://zebardast.ir/wp-content/uploads/2009/11/akonadi-console-google-resource-address-book.png"><img class=" size-medium wp-image-909" title="Add `Akonadi Google Resource` to Address Books" src="http://zebardast.ir/wp-content/uploads/2009/11/akonadi-console-google-resource-address-book-300x196.png" alt="Add `Akonadi Google Resource` to Address Books" width="300" height="196" /></a>
<p class="autocap-text"><span class="hide">— </span>Add `Akonadi Google Resource` to Address Books</p>
</div>
</div>
<p><strong>Add Calendar</strong><br />
Go to Calendar section and add `Akonadi Google Resource` to calendars:</p>
<div class="autocap aligncenter" style="width: 300px;">
<div><a href="http://zebardast.ir/wp-content/uploads/2009/11/akonadi-console-google-resource-calendar.png"><img class=" size-medium wp-image-910" title="Add `Akonadi Google Resource` to calendars" src="http://zebardast.ir/wp-content/uploads/2009/11/akonadi-console-google-resource-calendar-300x197.png" alt="Add `Akonadi Google Resource` to calendars" width="300" height="197" /></a>
<p class="autocap-text"><span class="hide">— </span>Add `Akonadi Google Resource` to calendars</p>
</div>
</div>
<p>done <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><strong>P.S.</strong><br />
<a href="http://wiki.ubuntu.ir/KarmicKoalaReleaseParty">Ubuntu 9.10 release party held in Tehran, Iran</a>.</p>
<p>Have a good time <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/synchronizing-google-tools-with-kontact/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add “Send files to email” item to right click menu on Dolphin and Konqueror</title>
		<link>http://zebardast.ir/en/add-%e2%80%9csend-files-to-email%e2%80%9d-item-to-right-click-menu-on-dolphin-and-konqueror/</link>
		<comments>http://zebardast.ir/en/add-%e2%80%9csend-files-to-email%e2%80%9d-item-to-right-click-menu-on-dolphin-and-konqueror/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 12:20:08 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[dolphin]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[kmail]]></category>
		<category><![CDATA[konqueror]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://zebardast.ir/en/?p=68</guid>
		<description><![CDATA[Hey One of the useful features when you are using email clients, is &#8220;adding attachment(s)&#8221; item in right click menu. — Send files to email This feature does not exist in default KDE 4.x version but adding this item is really piece of cake: First, go to the service directory: cd ~/.kde/share/kde4/services Create file `email.desktop`: [...]]]></description>
			<content:encoded><![CDATA[<p>Hey <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>One of the useful features when you are using email clients, is &#8220;adding attachment(s)&#8221; item in right click menu.</p>
<div class="autocap " style="width: 300px;">
<div><a href="http://zebardast.ir/wp-content/uploads/2009/11/kde-send-file-with-kmail.png"><img class=" size-medium wp-image-885" title="Send files to email" src="http://zebardast.ir/wp-content/uploads/2009/11/kde-send-file-with-kmail-300x216.png" alt="Send files to email" width="300" height="216" /></a>
<p class="autocap-text"><span class="hide">— </span>Send files to email</p>
</div>
</div>
<p>This feature  does not exist in default KDE 4.x version but adding this item is really piece of cake:</p>
<p>First, go to the service directory:</p>
<pre>cd ~/.kde/share/kde4/services</pre>
<p>Create file `email.desktop`:</p>
<pre>touch email.desktop</pre>
<p>Add below configuration commands.</p>
<p><strong>for KMail</strong></p>
<pre>[Desktop Entry]
Type=Service
Icon=dolphin
ServiceTypes=KonqPopupMenu/Plugin,all/allfiles

Actions=Send_to_KMail
X-KDE-menu=Email
X-KDE-Priority=TopLevel

[Desktop Action Send_to_KMail]
Name=Send file(s) with KMail
Exec=kmail --attach %U
Icon=kmail</pre>
<p><strong>for Thunderbird</strong></p>
<pre>[Desktop Entry]
Type=Service
Icon=dolphin
ServiceTypes=KonqPopupMenu/Plugin,all/allfiles

Actions=Send_to_Thunderbird
X-KDE-menu=Email
X-KDE-Priority=TopLevel
Encoding=UTF-8
ServiceTypes=all/all

[Desktop Action Send_to_Thunderbird]
Name=Send file(s) with Thunderbird
Exec=thunderbird -P guest -compose "attachment=file://%U"
Icon=thunderbird</pre>
<p>Now save the file and reopen the Dolphin file manager.<br />
done!</p>
<p>Good luck</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/add-%e2%80%9csend-files-to-email%e2%80%9d-item-to-right-click-menu-on-dolphin-and-konqueror/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 Karmic Koala Release Party In Tehran</title>
		<link>http://zebardast.ir/en/ubuntu-9-10-karmic-koala-release-party-in-tehran/</link>
		<comments>http://zebardast.ir/en/ubuntu-9-10-karmic-koala-release-party-in-tehran/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 08:44:24 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[release party]]></category>

		<guid isPermaLink="false">http://zebardast.ir/en/?p=62</guid>
		<description><![CDATA[Hello Ubuntu 9.10 Karmic Koala Release Party will be held in Tehran, Iran soon: — Ubuntu 9.10 Karmic Koala Release Party Date: Thursday, Nov 12, 2009 from 9 to 14 Location: Forum Conference martyr Ghandi, Opposite St. Hoveyze, above the intersection martyr Ghoddosi (Castle), Shariati St. &#8211; Tehran, Iran • More information P.S. Above is [...]]]></description>
			<content:encoded><![CDATA[<p>Hello <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Ubuntu 9.10 Karmic Koala Release Party will be held in Tehran, Iran soon:</p>
<div class="autocap aligncenter" style="width: 300px;">
<div><a href="http://zebardast.ir/wp-content/uploads/2009/10/karmic-koala-release-party.png"><img class="size-medium wp-image-839 " title="Ubuntu 9.10 Karmic Koala Release Party" src="http://zebardast.ir/wp-content/uploads/2009/10/karmic-koala-release-party-300x252.png" alt="Ubuntu 9.10 Karmic Koala Release Party" width="300" height="252" /></a>
<p class="autocap-text"><span class="hide">— </span>Ubuntu 9.10 Karmic Koala Release Party</p>
</div>
</div>
<p><strong>Date:</strong> Thursday, Nov 12, 2009 from 9 to 14<br />
<strong>Location:</strong> Forum Conference martyr Ghandi, Opposite St. Hoveyze, above the intersection martyr Ghoddosi (Castle), Shariati St. &#8211; Tehran, Iran</p>
<p>• <a href="http://wiki.ubuntu.ir/KarmicKoalaReleaseParty">More information</a></p>
<p><strong>P.S.</strong><br />
Above is designed by <a href="http://wiki.ubuntu.ir/narcissus">Sedigheh Ahmadi</a>.</p>
<p>I hope to see you in Party <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/ubuntu-9-10-karmic-koala-release-party-in-tehran/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to extract embedded images from .xls, .ods or .odt</title>
		<link>http://zebardast.ir/en/how-to-extract-embedded-images-from-xls-ods-or-odt/</link>
		<comments>http://zebardast.ir/en/how-to-extract-embedded-images-from-xls-ods-or-odt/#comments</comments>
		<pubDate>Thu, 14 May 2009 12:50:29 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ods]]></category>
		<category><![CDATA[odt]]></category>
		<category><![CDATA[openoffice.org]]></category>
		<category><![CDATA[xls]]></category>

		<guid isPermaLink="false">http://zebardast.wordpress.com/?p=57</guid>
		<description><![CDATA[Hi It&#8217;s simple. Just 4 steps: Save a copy of the file as ODS (OpenOffice.org Spreadsheet). Change the filetype of the copy to ZIP (for example rename File.xls to File.zip). Open the ZIP. In the directory called Pictures will be the images, just as in the original.]]></description>
			<content:encoded><![CDATA[<p><img src="http://zebardast.files.wordpress.com/2009/05/icon_openoffice.png" alt="icon_openoffice" title="icon_openoffice" width="48" height="48" class="alignright size-full wp-image-58" /><br />
Hi <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It&#8217;s simple. Just 4 steps:</p>
<ol>
<li>Save a copy of the file as ODS (OpenOffice.org Spreadsheet).</li>
<li>Change the filetype of the copy to ZIP (for example rename File.xls to File.zip).</li>
<li>Open the ZIP.</li>
<li>In the directory called Pictures will be the images, just as in the original.</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/how-to-extract-embedded-images-from-xls-ods-or-odt/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to posting to Identi.ca from the CLI</title>
		<link>http://zebardast.ir/en/how-to-posting-to-identica-from-the-cli/</link>
		<comments>http://zebardast.ir/en/how-to-posting-to-identica-from-the-cli/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 13:30:13 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[identi.ca]]></category>

		<guid isPermaLink="false">http://zebardast.wordpress.com/?p=48</guid>
		<description><![CDATA[Hi Identi.ca is an open source social networking and micro-blogging service. I like Ideni.ca. It&#8217;s good service. I use CLI (command line) everyday. I like to dented from it. It&#8217;s simple. Just install cURL: $ sudo apt-get install curl And type: $ curl -u username:password -d status="message" http://identi.ca/api/statuses/update.xml You will receive a response containing the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://zebardast.files.wordpress.com/2007/12/terminal_icon_48_48.jpg" alt="terminal - cli" align="right" /><br />
Hi <img src='http://zebardast.ir/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://identi.ca">Identi.ca</a> is an open source social networking and micro-blogging service.<br />
I like <a href="http://identi.ca">Ideni.ca</a>. It&#8217;s good service.</p>
<p>I use <abbr title="Command Line Interpreter">CLI</abbr> (command line) everyday. I like to dented from it. It&#8217;s simple.<br />
Just install <a href="http://curl.haxx.se/">cURL</a>:</p>
<pre>$ sudo apt-get install curl</pre>
<p>And type:</p>
<pre>$ curl -u username:password -d status="message" http://identi.ca/api/statuses/update.xml</pre>
<p>You will receive a response containing the XML coding for your post which acts as a confirmation that your post was submitted.</p>
<p><strong>Also you can create a shell file for this</strong><br />
Open a new text document and add the following, save it as identica.sh (or anything ending in sh):</p>
<pre>#!/bin/bash
curl -u username:password -d status=&#8243;$1" http://identi.ca/api/statuses/update.xml</pre>
<p>Make sure you change the chmod to 777 using the following command.</p>
<pre>$ chmod 777 /path/to/file/</pre>
<p>When you located the file (or add a bash prompt) it makes it simplier to identi.ca the rules. For example you can type the following to command to link to the file.</p>
<pre>$ ./path/to/idetica.sh "Message"</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/how-to-posting-to-identica-from-the-cli/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to get special lines data from file (Linux)</title>
		<link>http://zebardast.ir/en/how-to-get-special-lines-data-from-file-linux/</link>
		<comments>http://zebardast.ir/en/how-to-get-special-lines-data-from-file-linux/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 11:38:44 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://zebardast.wordpress.com/?p=45</guid>
		<description><![CDATA[If you want to get file&#8217;s head lines, you can use: $ head FILE If you want to get file&#8217;s footer lines, you can use: $ tail FILE If you want to print some line that they not in first part or last part of file, you can use: $ more +num10 FILE &#124; head [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to get file&#8217;s head lines, you can use:</p>
<pre>$ head FILE</pre>
<p>If you want to get file&#8217;s footer lines, you can use:</p>
<pre>$ tail FILE</pre>
<p>If you want to print some line that they not in first part or last part of file, you can use:</p>
<pre>$ more +num10 FILE | head -n20</pre>
<p>The above command print from line 10 to 30 (20 lines) of FILE</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/how-to-get-special-lines-data-from-file-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Marry Xmas &amp; Happy New Year</title>
		<link>http://zebardast.ir/en/marry-xmas-happy-new-year/</link>
		<comments>http://zebardast.ir/en/marry-xmas-happy-new-year/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 12:02:48 +0000</pubDate>
		<dc:creator>Saeid Zebardast</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://zebardast.wordpress.com/?p=43</guid>
		<description><![CDATA[Dear Friends in name of Peace, Love and Community I wish You: Marry Christmas &#38; Happy New year. Merry Christmas and a Happy New Year 2009 Language: Merry Christmas and Happy New Year Persian (kerismas mobārak) كریسمس مبارک (sale no mobārak) سال نو مبارک Afrikaans Geseënde Kersfees en &#8216;n gelukkige nuwe jaar Geseënde Kersfees en [...]]]></description>
			<content:encoded><![CDATA[<p>Dear Friends in name of Peace, Love and Community</p>
<p>I wish You:</p>
<p>Marry Christmas &amp; Happy New year.</p>
<p>Merry Christmas and a Happy New Year 2009</p>
<p>Language: Merry Christmas and Happy New Year</p>
<p>Persian</p>
<p>(kerismas mobārak) كریسمس مبارک</p>
<p>(sale no mobārak) سال نو مبارک</p>
<p>Afrikaans</p>
<p>Geseënde Kersfees en &#8216;n gelukkige nuwe jaar</p>
<p>Geseënde Kersfees en &#8216;n voorspoedige Nuwe jaar</p>
<p>Akeanon</p>
<p>Maayad-ayad nga Paskwa</p>
<p>Mahigugmaon nga Bag-ong Dag-on kinyo tanan!</p>
<p>Albanian</p>
<p>Gëzuar Krishtlindjet e Vitin e Ri</p>
<p>Aleut</p>
<p>Kamgan Ukudigaa</p>
<p>Alsatian</p>
<p>E güeti Wïnâchte un e gleckichs Nej Johr</p>
<p>Amharic</p>
<p>(Melikam yelidet beale Melikam Addis Amet)</p>
<p>Apache (Western)</p>
<p>Gozhqq Keshmish</p>
<p>Arabic (Modern Standard)</p>
<p>اجمل التهاني بمناسبة الميلاد</p>
<p>و حلول السنة الجديدة</p>
<p>(Ajmel altehani bemonasebt almīlad wa helol alseneh</p>
<p>aljedīdah)</p>
<p>(kullu sina winta t̴ayyib &#8211; to a man) كل سنة</p>
<p>وانت طيّب</p>
<p>(kullu sina winti t̴ayyiba &#8211; to a woman) كل سنة</p>
<p>وانت طيّبة</p>
<p>Armenian (Eastern)</p>
<p>Շնորհավոր Ամանոր և Սուրբ</p>
<p>Ծնունդ</p>
<p>(Shnorhavor Amanor yev Surb Tznund)</p>
<p>Armenian (Western)</p>
<p>Շնորհաւոր Նոր Տարի եւ Սուրբ</p>
<p>Ծնունդ:</p>
<p>(Shnorhavor Nor Daree yev Soorp Dzuhnoont)</p>
<p>Բարի կաղանդ և ամանոր (Paree gaghant</p>
<p>yev amanor)</p>
<p>Aromanian</p>
<p>Cãrciun hãrios (Hristolu s-aflà! Dealihea cà</p>
<p>s-afla!)</p>
<p>shi ti multsã-anji Anlu Nàù!</p>
<p>Asturian</p>
<p>Bones Navidaes y Gayoleru añu nuevu!</p>
<p>Aymara</p>
<p>Sooma Nawira-ra</p>
<p>Azerbaijani</p>
<p>Tezze iliniz yahsi olsun</p>
<p>Basque</p>
<p>Zorionak eta urte berri on</p>
<p>Belarusian</p>
<p>З Божым нараджэннем (Z Bozym</p>
<p>naradzenniem)</p>
<p>Сзцзаслівыцг Каліадау (Szczaslivych</p>
<p>Kaliadau)</p>
<p>З Новым годам i Калядамi (Z Novym</p>
<p>godam i Kaliadami)</p>
<p>Bengali</p>
<p>শুভ বড়দিন (shubho bôṛodin)</p>
<p>শুভ নববর্ষ (shubho nôbobôrsho)</p>
<p>Bikol</p>
<p>Maogmang Pasko</p>
<p>Mamura-way na Ba-gong Taon sa indo gabos!</p>
<p>Blackfoot</p>
<p>ᖱᒣᖳᒐᒉᑊᖿᒪᔪᖱᖽᐧᒡᒧᐧᖾᒍ</p>
<p>(i&#8217;taamomahkatoyiiksistsikomi)</p>
<p>Bosnian</p>
<p>Cestit Bozic i Sretna Nova godina</p>
<p>Breton</p>
<p>Nedeleg laouen ha bloavezh mat</p>
<p>Bulgarian</p>
<p>Честита Коледа! (Čestita Koleda!)</p>
<p>Щастлива Нова Година (Štastliva Nova</p>
<p>Godina)</p>
<p>Catalan</p>
<p>Bon Nadal i feliç any nou</p>
<p>Cebuano</p>
<p>Maayong Pasko</p>
<p>Mabungahong Bag-ong Tuig kaninyong tanan!</p>
<p>Chamorro</p>
<p>Felis Nabidat yan Felis Año Nuebo</p>
<p>Cherokee</p>
<p>ᏓᏂᏍᏔᏲᎯᎲ &amp; ᎠᎵᎮᎵᏍᏗ ᎢᏤ</p>
<p>ᎤᏕᏘᏴᎠᏌᏗᏒ</p>
<p>(Danistayohihv &amp; Aliheli&#8217;sdi Itse Udetiyvasadisv)</p>
<p>Cheyenne</p>
<p>Hoesenestotse &amp; Aa&#8217;eEmona&#8217;e</p>
<p>Chinese</p>
<p>(Cantonese)</p>
<p>聖誕節同新年快樂 (singdaanjit tùnhg sànnìhn</p>
<p>faailohk)</p>
<p>恭喜發財 (gung héi fáat chōi) &#8211; used at Chinese</p>
<p>New Year</p>
<p>Chinese</p>
<p>(Hakka)</p>
<p>聖誕節快樂, 新年快樂 (shin5-tan5-ziet7</p>
<p>kwai5-lok8, sin1-ngien2 kwai5-lok8)</p>
<p>恭喜發財 (giung1 hi3 fat7 coi2) &#8211; used at Chinese</p>
<p>New Year</p>
<p>Chinese</p>
<p>(Mandarin)</p>
<p>聖誕快樂 新年快樂 [圣诞快乐 新年快乐]</p>
<p>(shèngdàn kuàilè xīnnián kuàilè)</p>
<p>恭喜發財 [恭喜发财] (gōngxǐ fācái) &#8211; used</p>
<p>at Chinese New Year</p>
<p>Chinese</p>
<p>(Shanghainese)</p>
<p>圣诞节快乐 (sendaijiq kualoq)</p>
<p>新年快乐 (sinni kualoq)</p>
<p>Chinese</p>
<p>(Teochew)</p>
<p>圣诞快乐 新年快乐 (siandang kuailak singnin</p>
<p>kuailak)</p>
<p>Choctaw</p>
<p>Yukpa, Nitak Hollo Chito</p>
<p>Comanche</p>
<p>Tsaa Nu̶u̶sukatu̶̲ Waa Himaru̶</p>
<p>Cornish</p>
<p>Nadelik Lowen ha Blydhen Nowydh Da</p>
<p>Nadelik Looan ha Looan Blethen Noweth</p>
<p>Nadelack looan ha looan blethan noueth</p>
<p>Cree</p>
<p>ᒥᑐ ᒪᑯᓯ ᑫᓯᑲᓐᓯ</p>
<p>(Mitho Makosi Kesikansi)</p>
<p>Creek</p>
<p>Afvcke Nettvcakorakko</p>
<p>Croatian</p>
<p>Sretan Božić!</p>
<p>Sretna Nova godina!</p>
<p>Czech</p>
<p>Veselé vánoce a šťastný nový rok</p>
<p>Danish</p>
<p>Glædelig jul og godt nytår</p>
<p>Dutch</p>
<p>Prettige kerstdagen en een Gelukkig NieuwJaar!</p>
<p>Zalig kerstfeest en gelukkig nieuwjaar</p>
<p>East Inuktitut</p>
<p>Quviasummi Quviasugitsi/Quviasuvvisiutsiarit ammalu</p>
<p>Qitinngumarik!</p>
<p>Esperanto</p>
<p>Bonan Kristnaskon kaj feliĉan novan jaron</p>
<p>Estonian</p>
<p>Rõõmsaid Jõule ja Head Uut Aastat</p>
<p>Häid Jõule ja Head Uut Aastat</p>
<p>Faroese</p>
<p>Gleðilig Jól og eydnuríkt nýggjár</p>
<p>Gleðilig Jól og gott nýggjár (frm)</p>
<p>Gleiðilig jól og eitt av harranum signað nýggjár</p>
<p>Fijian</p>
<p>Me Nomuni na marau ni siga ni sucu dei na yabaki vou</p>
<p>Finnish</p>
<p>Hyvää joulua ja onnellista uutta vuotta</p>
<p>Flemish</p>
<p>Zalig Kerstfeest en Gelukkig nieuw jaar</p>
<p>Frisian</p>
<p>Noflike Krystdagen en folle lok en seine</p>
<p>French</p>
<p>Joyeux Noël et bonne année</p>
<p>Friulian</p>
<p>Bon Nadâl e Biel An Gnûv!</p>
<p>Galician</p>
<p>Bo Nadal e próspero aninovo</p>
<p>Georgian</p>
<p>გილოცავთ შობა-ახალ</p>
<p>წელს (gilocʻavtʻ šoba-axal cels) &#8211; frm</p>
<p>გილოცავ შობა-ახალ</p>
<p>წელს (gilocʻav šoba-axal cels) &#8211; inf</p>
<p>German</p>
<p>Frohe/Fröhliche Weihnachten</p>
<p>und ein gutes neues Jahr / ein gutes Neues / und ein</p>
<p>gesundes neues Jahr / und einen guten Rutsch ins neue</p>
<p>Jahr</p>
<p>Frohes Fest und guten Rutsch [ins neue Jahr]</p>
<p>German (Bavarian)</p>
<p>Froue Weihnåcht&#8217;n, und a guad&#8217;s nei&#8217;s Joah</p>
<p>German (Hessian)</p>
<p>Frohe Weihnachte unn ein gudes neus Jahr</p>
<p>German (Swiss)</p>
<p>schöni Fäschttäg / schöni Wienachte</p>
<p>und e guets neus Jahr / en guete Rutsch is neue Johr</p>
<p>German (Pennsylvania)</p>
<p>En frehlicher Grischtdaag un en hallich Nei Yaahr</p>
<p>Greek</p>
<p>Καλά Χριστούγεννα και</p>
<p>Ευτυχισμένο το Νέο Ετος</p>
<p>(Kala Khristougenna kai Eutukhismeno to Neo Etos)</p>
<p>Καλὰ Χριστούγεννα καὶ καλὴ</p>
<p>χρονιά!</p>
<p>(Kalá hristoúgena ke kalí hroniá)</p>
<p>Greenlandic</p>
<p>Juullimi ukiortaasamilu pilluaritsi</p>
<p>Hausa</p>
<p>barka da Kirsimatikuma barka da sabuwar shekara</p>
<p>Hawaiian</p>
<p>Mele Kalikimaka me ka Hauʻoli Makahiki Hou</p>
<p>Hebrew</p>
<p>חג מולד שמח ושנה טובה</p>
<p>Chag Molad Sameach v&#8217;Shanah Tovah</p>
<p>Hiligaynon</p>
<p>Malipayon nga Paskwa</p>
<p>Mahamungayaon nga Bag-ong Tuig sa inyong tanan</p>
<p>Hindi</p>
<p>शुभ क्रिसमस (Śubh krisamas)</p>
<p>नये साल की हार्दिक</p>
<p>शुभकामनायें (Naye sāl kī</p>
<p>hārdik śubhkāmnayeṅ)</p>
<p>Hungarian</p>
<p>Kellemes karácsonyt és boldog új évet</p>
<p>Icelandic</p>
<p>Gleðileg jól og farsælt komandi ár</p>
<p>Gleðileg jól og farsælt nýtt ár</p>
<p>Ilokano</p>
<p>Naragsak a Paskua</p>
<p>Narang-ay a Baro a Tawen kadakayo amin!</p>
<p>Indonesian</p>
<p>Selamat Hari Natal dan Tahun Baru</p>
<p>Inonhan</p>
<p>Malipayon nga Paskwa</p>
<p>kag Masadya nga Bag-ong Tuig sa inyo tanan.</p>
<p>Inuktitut</p>
<p>ᑯᕕᐊᓇᒃ ᐃᓄᕕᐊ (Kuvianak Inovia) &#8211; Merry</p>
<p>Christmas</p>
<p>Iñupiaq</p>
<p>Quvianagli Anaiyyuniqpaliqsi suli Nakuuluni</p>
<p>Ukiutqiutiqsi</p>
<p>Inupiatun</p>
<p>Annaurri Aniruq-lu Paglaun Ukiutchiaq!</p>
<p>Quvianaq Agaayuniqpak-lu Paglaun Ukiutchiaq!</p>
<p>Nayaangmik Piqagiñ-lu Paglaun Ukiutchiaq!</p>
<p>Irish (Gaelic)</p>
<p>Nollaig shona duit (Happy Christmas to you)</p>
<p>Beannachtaí na Nollag (Christmas Greetings)</p>
<p>Beannachtaí an tSéasúir (Season&#8217;s Greetings)</p>
<p>Athbhliain faoi mhaise duit (Prosperous New Year)</p>
<p>Bliain úr faoi shéan is faoi mhaise duit (Happy New</p>
<p>Year to you)</p>
<p>Italian</p>
<p>Buon Natale e felice anno nuovo</p>
<p>Japanese</p>
<p>メリークリスマス (merī kurisumasu)</p>
<p>New Year greeting &#8211; &#8216;Western&#8217; style</p>
<p>新年おめでとうございます (shinnen omedetō</p>
<p>gozaimasu)</p>
<p>New Year greetings &#8211; Japanese style</p>
<p>明けましておめでとうございます</p>
<p>(akemashite omedetō gozaimasu)</p>
<p>旧年中大変お世話になりました (kyūnenjū</p>
<p>taihen osewa ni narimashita)</p>
<p>本年もよろしくお願いいたします (honnen</p>
<p>mo yoroshiku onegai itashimasu)</p>
<p>Jèrriais</p>
<p>Bouan Noué / Jouaiyeux Noué et Bouonne année</p>
<p>Un Bouan Noué et lé Nouvel An!</p>
<p>Judeo-Spanish / Ladino</p>
<p>Noel alegre i felis anyo muevo</p>
<p>Kapampangan</p>
<p>Masayang Pasku</p>
<p>Masaplalang Bayung Banwa keko ngan!</p>
<p>Kazakh</p>
<p>Жаңа жыл құтты болсын! (Jaña jıl</p>
<p>quttı bolsın!) &#8211; inf</p>
<p>Жаңа жылыңыз құтты болсын! (Jaña</p>
<p>jılıñız quttı bolsın!) &#8211; frm</p>
<p>(Happy New Year)</p>
<p>Kinyarwanda</p>
<p>Noheri nziza n&#8217;umwaka mushya muhire!</p>
<p>Kirghiz</p>
<p>Жаратканнын туысымен Жана</p>
<p>Жылыныз кутты болсын</p>
<p>(Žaratkannyi tuysymen Žana Žylynyz kutty bolsyn)</p>
<p>Klingon</p>
<p>QISmaS DatIvjaj &#8216;ej DIS chu&#8217; DatIvjaj (sg)</p>
<p>QISmaS botIvjaj &#8216;ej DIS chu&#8217; botIvjaj (pl)</p>
<p>Korean</p>
<p>메리 크리스마스 잘 지내고 새해 복 많이</p>
<p>받으세요</p>
<p>(meli kliseumaseu jal ji naego saehae pog manhi</p>
<p>pateuseyo)</p>
<p>Kurdish (Kurmanji)</p>
<p>Kirîsmes u ser sala we pîroz be</p>
<p>Kurdish (Sorani)</p>
<p>Kirîsmes u salî nwêtan lê pîroz bê</p>
<p>Latin</p>
<p>Natale hilare et annum faustum</p>
<p>Latvian</p>
<p>Priecīgus Ziemassvētkus un laimīgu Jauno gadu</p>
<p>Lithuanian</p>
<p>Linksmų Kalėdų ir laimingų Naujųjų Metų</p>
<p>Luganda</p>
<p>Mbagaliza Christmass Enungi Nomwaka Omugya Gubaberere</p>
<p>Gwamirembe</p>
<p>Luxembourgish</p>
<p>E schéine Chrëschtdag an e glécklecht neit Joer</p>
<p>Schéi Feierdeeg an e glécklecht neit Joer</p>
<p>Schéi Chrëschtdeeg an e gudde Rutsch an d&#8217;neit Joer</p>
<p>Macedonian</p>
<p>Среќен Божик и среќна Нова</p>
<p>година (Sreken Bozhik i srekna Nova godina)</p>
<p>Malagasy</p>
<p>Mirary noely sambatra</p>
<p>Arahabaina tratrin&#8217;ny taona vaovao</p>
<p>Malay</p>
<p>Selamat Hari Natal (Christmas)</p>
<p>Selamat Tahun Baru (New Year)</p>
<p>Malayalam</p>
<p>(nava-valsara āshamsakal) &#8211; Happy New Year</p>
<p>Maltese</p>
<p>Il-Milied Ħieni u s-Sena t-Tajba</p>
<p>Awguri għas-sena l-ġdida</p>
<p>Manx</p>
<p>Nollick Ghennal as Blein Vie Noa</p>
<p>Māori</p>
<p>Kia orana e kia manuia rava i teia Kiritimeti e te</p>
<p>Mataiti Ou</p>
<p>Marathi</p>
<p>शुभ नाताळ (Śubh Nātāḷ)</p>
<p>नवीन वर्षच्या</p>
<p>हार्दिक शुभेच्छा (Navīn</p>
<p>varṣacyā hārdik śubhecchā)</p>
<p>Mongolian</p>
<p>Танд кристмас ба шинэ жилийн</p>
<p>мэнд хүргэе</p>
<p>(Tand kristmas ba shine jiliyn mend khürgeye)</p>
<p>Navajo</p>
<p>Ya&#8217;at&#8217;eeh Keshmish</p>
<p>Nepali</p>
<p>क्रस्मसको शुभकामना</p>
<p>तथा नयाँ वर्षको</p>
<p>शुभकामना</p>
<p>(krismas ko subhakamana tatha nayabarsha ko</p>
<p>subhakamana)</p>
<p>Norwegian</p>
<p>God jul og godt nytt år (Bokmål)</p>
<p>God jol og godt nyttår (Nynorsk)</p>
<p>Occitan</p>
<p>Polit Nadal e bona annada</p>
<p>Ogoni</p>
<p>Eenyie Mea Krist Ne Eenyie Aagbaa</p>
<p>Old English</p>
<p>Glæd Geol and Gesælig Niw Gear</p>
<p>Pangasinan</p>
<p>Maabig ya Pasko</p>
<p>Maaligwas ya Balon Taon ed sikayon amin!</p>
<p>Papiamentu</p>
<p>Bon Pasku i Felis Anja Nobo</p>
<p>Persian</p>
<p>(kerismas mobārak) كریسمس مبارک</p>
<p>(sale no mobārak) سال نو مبارک</p>
<p>Polish</p>
<p>Wesołych Świąt i Szczęśliwego Nowego Roku!</p>
<p>Portuguese</p>
<p>Feliz Natal e próspero ano novo / Feliz Ano Novo</p>
<p>Boas Festas e Feliz Ano Novo / Um Santo e Feliz Natal</p>
<p>Punjabi</p>
<p>ਕਰਿਸਮ ਤੇ ਨਵਾੰ ਸਾਲ</p>
<p>ਖੁਸ਼ਿਯਾੰਵਾਲਾ ਹੋਵੇ</p>
<p>(karisama te nawāṃ sāla khušayāṃwālā hewe)</p>
<p>Quenya</p>
<p>Alassëa Hristomerendë! Alassëa Vinyarië!</p>
<p>Romansh</p>
<p>(Sursilvan dialect)</p>
<p>Legreivlas fiastas da Nadal e bien niev onn!!</p>
<p>Romanian</p>
<p>Crăciun fericit şi un an nou fericit</p>
<p>Russian</p>
<p>С Рождеством Христовым и С</p>
<p>наступающим Новым Годом</p>
<p>(S Roždestvom Khristovym i S nastupayuščim Novym</p>
<p>Godom)</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://zebardast.ir/en/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://zebardast.ir/en/marry-xmas-happy-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.999 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-08-01 02:10:59 -->
