<?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>VistaArc &#187; Tutorials</title>
	<atom:link href="http://www.vistaarc.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.vistaarc.com</link>
	<description>Innovative Blog</description>
	<lastBuildDate>Sun, 26 Jun 2011 19:15:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>XML-RPC in PHP :: FoXRate Currency Exchange API</title>
		<link>http://www.vistaarc.com/tutorials/xml-rpc-in-php-foxrate-currency-exchange-api</link>
		<comments>http://www.vistaarc.com/tutorials/xml-rpc-in-php-foxrate-currency-exchange-api#comments</comments>
		<pubDate>Tue, 20 Oct 2009 22:58:09 +0000</pubDate>
		<dc:creator>VistaArc</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[XML-RPC]]></category>
		<category><![CDATA[currency convert]]></category>
		<category><![CDATA[currency exchange]]></category>
		<category><![CDATA[fox-rate]]></category>
		<category><![CDATA[money exchange]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://www.vistaarc.com/?p=183</guid>
		<description><![CDATA[Today my friend Sakib was looking for a Currency Exchange API to implement it on one of his projects. So, I decided to write this small PHP code snippet for him. I hope this will help him and also other developers. Because, XML-RPC section of the PHP Manual is still incomplete . &#38;lt;?php /* * [...]]]></description>
			<content:encoded><![CDATA[<p>Today my friend <a href="http://think.binarylimit.com/" onclick="urchinTracker('/outgoing/think.binarylimit.com/?referer=');">Sakib</a> was looking for a <strong>Currency Exchange API</strong> to implement it on one of his projects. So, I decided to write this small <a href="http://www.php.net/" onclick="urchinTracker('/outgoing/www.php.net/?referer=');">PHP</a> code snippet for him. I hope this will help him and also other developers. Because, <a href="http://www.php.net/manual/en/ref.xmlrpc.php" onclick="urchinTracker('/outgoing/www.php.net/manual/en/ref.xmlrpc.php?referer=');">XML-RPC section of the PHP Manual</a> is still incomplete <img src='http://www.vistaarc.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  .</p>
<pre class="brush: php">&amp;lt;?php

/*
* Reference :: http://foxrate.org/
*
* For $from and $to :: http://www.oanda.com/site/help/iso_code.shtml
*/

function getExchangeRate($from = &#039;USD&#039;, $to = &#039;BDT&#039;, $ammount = 1.0) {

    $ammount = doubleval($ammount);
    $request = xmlrpc_encode_request(&amp;quot;foxrate.currencyConvert&amp;quot;, array($from, $to, $ammount));

    $stream = stream_context_create(array(&#039;http&#039; =&amp;gt; array(
        &#039;method&#039; =&amp;gt; &amp;quot;POST&amp;quot;,
        &#039;header&#039; =&amp;gt; &amp;quot;Content-Type: text/xml\r\nUser-Agent: xmlrpclib.py/1.0  1 (by www.pythonware.com)\r\nHost: foxrate.org\r\n&amp;quot;,
        &#039;content&#039; =&amp;gt; $request
    )));

    $endpoint = &amp;quot;http://foxrate.org/rpc/&amp;quot;;
    $file = file_get_contents($endpoint, false, $stream);
    $response = xmlrpc_decode($file);

    if (is_array($response) &amp;amp;amp;&amp;amp;amp; xmlrpc_is_fault($response)) :
        return &#039;error&#039;;
    else :
        return $response;
    endif;
}

print_r(getExchangeRate());

?&amp;gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.vistaarc.com/tutorials/xml-rpc-in-php-foxrate-currency-exchange-api/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Making of a Joomla! 1.5 Module</title>
		<link>http://www.vistaarc.com/tutorials/making-of-a-joomla-15-module</link>
		<comments>http://www.vistaarc.com/tutorials/making-of-a-joomla-15-module#comments</comments>
		<pubDate>Sun, 03 Aug 2008 01:09:37 +0000</pubDate>
		<dc:creator>VistaArc</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[joomla 1.5]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.vistaarc.com/?p=44</guid>
		<description><![CDATA[Parse error: syntax error, unexpected T_STRING in /home/vistaarc/public_html/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()&#8217;d code on line 11]]></description>
			<content:encoded><![CDATA[<p>
<b>Parse error</b>:  syntax error, unexpected T_STRING in <b>/home/vistaarc/public_html/wp-content/plugins/exec-php/includes/runtime.php(42) : eval()&#8217;d code</b> on line <b>11</b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.vistaarc.com/tutorials/making-of-a-joomla-15-module/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Avro Tutorial :: Part-1</title>
		<link>http://www.vistaarc.com/tutorials/avro-tutorial-part-1</link>
		<comments>http://www.vistaarc.com/tutorials/avro-tutorial-part-1#comments</comments>
		<pubDate>Mon, 04 Jun 2007 15:24:47 +0000</pubDate>
		<dc:creator>VistaArc</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Avro Keyboard]]></category>
		<category><![CDATA[Keyboard Macro]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.vistaarc.com/tips-tricks/avro-tutorial-part-1/</guid>
		<description><![CDATA[হঠাৎ করে মনে হলো আমাদের দেশী সফট্‌ওয়ার নিয়ে কিছু টিউটোরিয়াল লিখা উচিৎ। সে থেকেই এই লিখার অবতারণা। ওমিক্রণল্যাব ফোরামে প্রায়ই দেখা যায় সবাই ডিফল্ট সাইজে বাংলা লিখা পোষ্ট করেন। এতে অনেকেই পোষ্টগুলো ঠিকমতো পড়তে পারেন না। আমরা অভ্র কী-বোর্ডের ম্যাক্রো অপশন ব্যবহার করে সহজেই এর সমাধান করতে পারি। প্রথম ধাপঃ ১. অভ্র টপবারের সেটিংস্‌ আইকনে [...]]]></description>
			<content:encoded><![CDATA[<p class="bangla">হঠাৎ করে মনে হলো আমাদের দেশী সফট্‌ওয়ার নিয়ে কিছু টিউটোরিয়াল লিখা উচিৎ। সে থেকেই এই লিখার অবতারণা। <a href="http://omicronlab.com/" onclick="urchinTracker('/outgoing/omicronlab.com/?referer=');">ওমিক্রণল্যাব</a> <a href="http://omicronlab.com/forum/" onclick="urchinTracker('/outgoing/omicronlab.com/forum/?referer=');">ফোরামে</a> প্রায়ই দেখা যায় সবাই ডিফল্ট সাইজে বাংলা লিখা পোষ্ট করেন। এতে অনেকেই পোষ্টগুলো ঠিকমতো পড়তে পারেন না। আমরা <a href="http://omicronlab.com/avrokeyboard/" onclick="urchinTracker('/outgoing/omicronlab.com/avrokeyboard/?referer=');">অভ্র কী-বোর্ডের</a> ম্যাক্রো অপশন ব্যবহার করে সহজেই এর সমাধান করতে পারি।</p>
<p><img src="http://www.vistaarc.com/wp-content/uploads/2007/06/avro-01.png" alt="Avro Tutorial :: Image-1" /><br />
<span id="more-22"></span></p>
<p class="bangla">প্রথম ধাপঃ<br />
১. অভ্র টপবারের সেটিংস্‌ আইকনে ক্লিক করুন।<br />
২. &#8216;কী-বোর্ড ম্যাক্রো&#8217;-তে ক্লিক করুন।<br />
৩. &#8216;এ্যানাবল কী-বোর্ড ম্যাক্রো&#8217;-তে ক্লিক করুন।<br />
৪. আবার ১,২ ও ৩ নং এর পুনরাবৃত্তি করে, &#8216;ম্যানেজ কী-বোর্ড ম্যাক্রো এন্ট্রিজ&#8217;-এ ক্লিক করুন।</p>
<p><img src="http://www.vistaarc.com/wp-content/uploads/2007/06/avro-02.png" alt="Avro Tutorial :: Image-2" /></p>
<p class="bangla">দ্বিতীয় ধাপঃ<br />
১. আপনার জন্য সুবিধাজনক শর্টকাটটি পছন্দ করুন (আমি এখানে এফ১১ ব্যবহার করেছি)।<br />
২. এবং শর্টকাটটি সিলেক্ট থাকা অবস্থায় &#8220;[size=4][/size]&#8221; টাইপ করুন।</p>
<p><img src="http://www.vistaarc.com/wp-content/uploads/2007/06/avro-03.png" alt="Avro Tutorial :: Image-3" /></p>
<p class="bangla">তৃতীয় ধাপঃ<br />
১. &#8216;ফাস্ট রিপ্লাই&#8217; বাটনে ক্লিক করুন, তাহলে এর ঠিক নীচেই টেক্সটএরিয়া বের হবে।<br />
২. এইবার টেক্সট এরিয়ায় কার্সর রেখে শর্টকাট কী চাপুন (আমি এফ১১-তে সেট করেছিলাম, তাই ছবিতে এফ১১ রয়েছে)।<br />
৩. &#8220;[size=4]&#8220;-এর পর থেকে লিখা শুরু করুন।</p>
<p class="bangla">কী! সাবমিট করার কথাও বলে দিতে হবে নাকি <img src='http://www.vistaarc.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vistaarc.com/tutorials/avro-tutorial-part-1/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

