<?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>Technetz.com &#124; DIY Wireless &#187; tutorial</title>
	<atom:link href="http://technetz.com/index.php/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://technetz.com</link>
	<description>Diy Wireless Antenna Resources</description>
	<lastBuildDate>Wed, 01 Sep 2010 22:32:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating Flickr Slideshow Using Google AJAX Feed API</title>
		<link>http://technetz.com/index.php/2008/08/31/creating-flickr-slideshow-using-google-ajax-feed-api/</link>
		<comments>http://technetz.com/index.php/2008/08/31/creating-flickr-slideshow-using-google-ajax-feed-api/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 03:59:53 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Flickr Ajax Feed Api]]></category>
		<category><![CDATA[Json]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[webscript]]></category>

		<guid isPermaLink="false">http://technetz.com/?p=75</guid>
		<description><![CDATA[<a href="http://technetz.com/index.php/2008/08/31/creating-flickr-slideshow-using-google-ajax-feed-api/"><img align="left" hspace="5" width="150" height="150" src="http://technetz.com/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>I want to intergrate Flickr image into my Rss News aggregator site and I found out that I can use  Google AJAX Feed API. Since google already provide the documentation and example for the API code I think it is my job to tweak it for Malayapark.com.
Code snippet
&#60;html&#62;
&#60;head&#62;
&#60;script  type=&#8221;text/javascript&#8221; src=&#8221;http://www.google.com/jsapi?key=&#8221;YOUR-KEY&#8221;&#62;&#60;/script&#62;
&#60;script ...]]></description>
			<content:encoded><![CDATA[<p>I want to intergrate Flickr image into my <a href="http://malayapark.com/berita">Rss News aggregator</a> site and I found out that I can use  Google AJAX Feed API. Since google already provide the documentation and example for the API code I think it is my job to tweak it for <a href="http://malayapark.com/berita">Malayapark.com</a>.</p>
<p>Code snippet</p>
<blockquote><p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;script  type=&#8221;text/javascript&#8221; src=&#8221;http://www.google.com/jsapi?key=&#8221;YOUR-KEY&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>google.load(&#8220;feeds&#8221;, &#8220;1&#8243;);</p>
<p>var defaultUser = &#8216;wazari&#8217;;</p>
<p>function newSlideShow(user) {<br />
showStatus(&#8216;Resolving feed for &#8216; + user);<br />
var url = &#8216;http://www.flickr.com/photos/&#8217; + user;<br />
google.feeds.lookupFeed(url, lookupDone);<br />
}</p>
<p>function lookupDone(result) {<br />
if (result.error || result.url == null) {<br />
showStatus(&#8216;Could not locate feed for user&#8217;);<br />
return;<br />
}</p>
<p>showStatus(&#8216;Found Photo Feed&#8217;);<br />
// We need to switch over from Atom to RSS to get Yahoo Media for slideshow..<br />
var url = result.url.replace(&#8216;format=atom&#8217;, &#8216;format=rss_200&#8242;);<br />
showSlideShow(url);<br />
}</p>
<p>function showSlideShow(url) {<br />
var options = {<br />
displayTime: 2500,<br />
transistionTime: 800,<br />
scaleImages: true,<br />
thumbnailTag: &#8216;content&#8217;,<br />
linkTarget : google.feeds.LINK_TARGET_BLANK<br />
};<br />
new GFslideShow(url, &#8220;slideshow&#8221;, options);<br />
}</p>
<p>google.setOnLoadCallback(function() {newSlideShow(defaultUser)});</p>
<p>&lt;/script&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body&gt;<br />
&lt;div id=&#8221;feedControl&#8221;&gt;Loading&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</p></blockquote>
<p><strong>Descriptions</strong><br />
<span id="more-75"></span><br />
this is the most important part &#8211; Google API Key. Each key is unique for a website.</p>
<blockquote><p>&lt;script  type=&#8221;text/javascript&#8221; src=&#8221;http://www.google.com/jsapi?key=&#8221;YOUR-KEY&#8221;&gt;&lt;/script&gt;</p></blockquote>
<blockquote><p>displayTime: 2500 &#8211; Time to display the images in milisecond<br />
transistionTime: 800 &#8211; Transition time in milisecond<br />
var defaultUser = &#8216;wazari&#8217; &#8211; Your Usename</p></blockquote>
<p>Demo 1 : <a href="http://malayapark.com/berita">Flickr Slideshow</a> (Credit To <a href="http://flickr.com/photos/wazari/">wazari</a>)<br />
Demo 2 : <a href="http://malayapark.com/flickr">Flickr Slideshow</a> (Credit To <a href="http://flickr.com/photos/wazari/">wazari</a>)<br />
Download : <a href="http://malayapark.com/download/flickr.zip">FlickrUserSlideshow</a></p>
]]></content:encoded>
			<wfw:commentRss>http://technetz.com/index.php/2008/08/31/creating-flickr-slideshow-using-google-ajax-feed-api/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Open Office .docx Documents</title>
		<link>http://technetz.com/index.php/2008/07/22/how-to-open-office-docx-documents/</link>
		<comments>http://technetz.com/index.php/2008/07/22/how-to-open-office-docx-documents/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 17:12:16 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[.docx]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[doc to docx]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[Office 2003 to 2007]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://technetz.com/?p=67</guid>
		<description><![CDATA[<a href="http://technetz.com/index.php/2008/07/22/how-to-open-office-docx-documents/"><img align="left" hspace="5" width="150" src="http://img376.imageshack.us/img376/9623/logo2020office20200320ctz6.jpg" class="alignleft wp-post-image tfe" alt="Microsoft Office 2003 2007" title="" /></a>Before this i already wrote a tutorial about free online apps that can convert office .docx documents to .doc file. That method is lame actually, you need to fill up an email and wait for the download link. Today i am going to tell you on how to open .docx ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://img376.imageshack.us/img376/9623/logo2020office20200320ctz6.jpg" alt="Microsoft Office 2003 2007" width="500" height="200" />Before this i already wrote a tutorial about free online apps that can convert office .docx documents to .doc file. That method is lame actually, you need to fill up an email and wait for the download link. Today i am going to tell you on how to open .docx files or documents using your old Microsoft Office version. This is really simple actually. All you need to do is just download and install the <strong><a href="http://office.microsoft.com/en-us/word/HA100444731033.aspx">Microsoft compatibility pack<br />
</a></strong> for your current version of Microsoft Office. It actually add the .docx support to your previous version of Mcrosoft Office. No need to buy Office 2007 <img src='http://technetz.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  .</p>
]]></content:encoded>
			<wfw:commentRss>http://technetz.com/index.php/2008/07/22/how-to-open-office-docx-documents/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to install compiz fusion in ubuntu</title>
		<link>http://technetz.com/index.php/2008/07/11/how-to-install-compiz-fusion-in-ubuntu/</link>
		<comments>http://technetz.com/index.php/2008/07/11/how-to-install-compiz-fusion-in-ubuntu/#comments</comments>
		<pubDate>Fri, 11 Jul 2008 01:27:02 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Compiz Fussion]]></category>
		<category><![CDATA[Installing Ubuntu]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://technetz.com/?p=62</guid>
		<description><![CDATA[<a href="http://technetz.com/index.php/2008/07/11/how-to-install-compiz-fusion-in-ubuntu/"><img align="left" hspace="5" width="150" src="http://technetz.com/images/ubuntu/hardware.jpg" class="alignleft wp-post-image tfe" alt="" title="" /></a>So i am moving to a new operating system (ubuntu) and lot of new things going around my head. Since ubuntu is still new for me so i decided not to remove my Windows XP yet. In the previous post i already shows you few screenshots of my Hardy Heron. ...]]></description>
			<content:encoded><![CDATA[<p><img src="http://technetz.com/images/ubuntu/hardware.jpg" alt="" width="500" height="80" />So i am moving to a new operating system (ubuntu) and lot of new things going around my head. Since ubuntu is still new for me so i decided not to remove my Windows XP yet. In the <a href="http://technetz.com/index.php/2008/06/29/windows-xp-to-ubuntu/">previous post</a> i already shows you few screenshots of my Hardy Heron. So today i am going to share with all technetz readers on how to install the desktop effects or compiz fusion  in Ubuntu Hardy Heron.</p>
<p><strong>How to?</strong></p>
<p>Firstly you have to update your system with the latest software update. Open the terminal and type this <strong>sudo apt-get update </strong>hit enter and input your password.Wait until it finished.</p>
<p><span id="more-62"></span></p>
<p>Then you may proceed by checking your  graphic card, you must enable your graphic card to get the effects. Go to  <strong><span class="system">System &gt; Administration &gt; Hardware Drivers.</span></strong> If your graphic card is disabled, enable it by check the enabled box.</p>
<p><img class="alignleft" style="float: left;" src="http://technetz.com/images/ubuntu/Hardware-Driver.png" alt="" width="240" height="193" /></p>
<p>It will prompted you to download the driver for your graphic card. Then you may need system reboot. If you are using non restricted graphic card driver like my girlfriends does, just proceed to the next level.</p>
<p>Finally is to download and install compizconfig settings manager. To make your life easier just use synaptic package manager (<strong><span class="system">System &gt; Administration &gt; Synaptic Package Manager) </span></strong>and search for compiz. Inside the result check the <em>compizconfig-settings-manager.<br />
</em></p>
<p><img src="http://technetz.com/images/ubuntu/compiz-config-settings.PNG" alt="" width="500" height="308" /><br />
Apply the installation and wait for the process to finished. It just took me few minutes to complete To use it just go to <strong><span class="system">System &gt; Preferences&gt;Advanced Desktop Effects Settings.</span></strong></p>
<div style="text-align: center;"><img src="http://technetz.com/images/ubuntu/Screenshot-2.PNG" alt="" width="418" height="92" /></div>
]]></content:encoded>
			<wfw:commentRss>http://technetz.com/index.php/2008/07/11/how-to-install-compiz-fusion-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Xp To Ubuntu</title>
		<link>http://technetz.com/index.php/2008/06/29/windows-xp-to-ubuntu/</link>
		<comments>http://technetz.com/index.php/2008/06/29/windows-xp-to-ubuntu/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 01:22:35 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[XP VS Ubuntu]]></category>

		<guid isPermaLink="false">http://technetz.com/?p=61</guid>
		<description><![CDATA[<a href="http://technetz.com/index.php/2008/06/29/windows-xp-to-ubuntu/"><img align="left" hspace="5" width="150" src="http://technetz.com/images/ubuntu/burn-fade-windows.png" class="alignleft wp-post-image tfe" alt="Fire Effect" title="" /></a>I have been using windows Xp for quite long time. Probably windows xp is the best operating system by Microsoft. Windows Vista? LoL nothing special except require  at least 1GB RAM??.  Now I am trying to support open sources project such as linux. My first installed linux distro ...]]></description>
			<content:encoded><![CDATA[<p>I have been using windows Xp for quite long time. Probably windows xp is the best operating system by Microsoft. Windows Vista? LoL nothing special except require  at least 1GB RAM??.  Now I am trying to support open sources project such as linux. My first installed linux distro is Linpus.. I had no idea how to start using it. Then my friend introduce me Ubuntu.. he gave me .iso file and i burned it in a cd. I screwed up my hard disk when I first install Ubuntu. I thought dual boot was easy ,need to wipe out all my 160GB hard disk. Lucky me because I already backup my important data. From that time I just use ubuntu from the live cd ordered from shipit.ubuntu.com.</p>
<p>The latest version of Ubuntu is Ubuntu Hardy Heron. A week ago I just got the Hardy Heron Live CD packages. It comes with 1 Unit of live CD and Ubuntu &#8220;Linux For Human Being&#8221; sticker. It seems that Hardy Heron is much easier to install. I don&#8217;t have any problem make dual boot with windows XP . This is the snapshots of my Ubuntu Hardy Heron after I installed all update and <em>Advanced Desktop Settings Manager.</em><br />
<span id="more-61"></span></p>
<div><img class="alignleft" style="float: left;" src="http://technetz.com/images/ubuntu/burn-fade-windows.png" alt="Fire Effect" width="240" height="150" /><img class="alignleft" style="float: left;" src="http://technetz.com/images/ubuntu/cube-desktop.png" alt="cube effect" width="240" height="150" /><br />
<img class="alignleft" style="float: left;" src="http://technetz.com/images/ubuntu/expo-mode.png" alt="Expo Mode" width="240" height="150" /><img class="alignleft" style="float: left;" src="http://technetz.com/images/ubuntu/swift-effect.png" alt="Window shift mode" width="240" height="150" /><br />
<img src="http://technetz.com/images/ubuntu/water-drop-effect.png" alt="water effect" width="240" height="150" /><img src="http://technetz.com/images/ubuntu/minimize-ubuntu-effect.png" alt="water effect with cube" width="240" height="150" /></div>
<p>If you want to experience a new desktop enviroment, ubuntu is the best choice. Its free of charge and comes with full commercial support from Conical and hundreds company around the world and its growing vastly.</p>
<p>Video to encourage you to use Ubuntu.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/kYgV2GlsufI&amp;rel=1" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/kYgV2GlsufI&amp;rel=1" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://technetz.com/index.php/2008/06/29/windows-xp-to-ubuntu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to protect your Flashdisk, USB storage from virus using portable antivirus programs</title>
		<link>http://technetz.com/index.php/2008/06/24/how-to-protect-your-flashdisk-usb-storage-from-virus-using-portable-antivirus-programs/</link>
		<comments>http://technetz.com/index.php/2008/06/24/how-to-protect-your-flashdisk-usb-storage-from-virus-using-portable-antivirus-programs/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 00:13:30 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Portable Antivirus]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Usb Storage]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://technetz.com/index.php/2008/06/24/how-to-protect-your-flashdisk-usb-storage-from-virus-using-portable-antivirus-programs/</guid>
		<description><![CDATA[<a href="http://technetz.com/index.php/2008/06/24/how-to-protect-your-flashdisk-usb-storage-from-virus-using-portable-antivirus-programs/"><img align="left" hspace="5" width="150" src="http://img212.imageshack.us/img212/8261/flashdisk1qy2.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>&#8220;This post is from my old blog&#8221;
Computer viruses are common to internet user. Of course the solution to avoid from computer virus is installing antivirus protection or antivirus programs to your computer. The question is. Is that enough to protect your computer from virus? Nowadays USB storage or portable USB ...]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;This post is from my old blog&#8221;</em></p>
<p><span style="font-size: 100%; font-family: Verdana;">Computer viruses are common to internet user. Of course the solution to avoid from computer virus is installing antivirus protection or antivirus programs to your computer. The question is. Is that</span><span style="font-size: 100%; font-family: Verdana;"> enough to protect your computer from virus? Nowadays USB storage or portable USB become so popular. I can say that it was a must tool to have.The reason it becomes so popular is because it is handy an easy to use and cheap. The</span><span style="font-size: 100%; font-family: Verdana;"> popularity of USB storage has been exploited by virus maker. They make a virus that can easily spread through an external USB storage such as pendrive. In this tutorial I will guide you on how to protect your computer using portable antivirus antivirus programs installed to your pendrive or Flashisk. If you already have U3 USB Flashdisk this</span><span style="font-size: 100%; font-family: Verdana;"> is probably similar to it.</span></p>
<p class="MsoNormal"><span style="font-size: 100%; font-family: Verdana;">Tool that we need is: Notepad and Portable antivirus programs (you may download it for free at Softpedia) I am using PortableAV<span style="font-size:+0;"> </span></span><span style="font-size: 100%; font-family: Verdana;">antivirus programs </span><span style="font-size: 100%; font-family: Verdana;">Firstly open your Notepad and write this code: Or you may download my Autorun.inf</span></p>
<p class="MsoNormal" style="TEXT-ALIGN: center"><a href="http://img212.imageshack.us/img212/8261/flashdisk1qy2.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img style="width: 482px; cursor: pointer; height: 180px;" src="http://img212.imageshack.us/img212/8261/flashdisk1qy2.png" border="0" alt="" /></a></p>
<p class="MsoNormal"><span id="more-56"></span></p>
<p class="MsoNormal"><span style="font-size: 100%; font-family: Verdana;"><a href="http://www.mediafire.com/?2njxb04bn9v"> Download Example of Autorun.inf</a> </span></p>
<p><span style="font-size: 100%; font-family: Verdana;">Save it to your flash drive with filename Autorun.inf (see picture)</span></p>
<div style="TEXT-ALIGN: center"><a href="http://aycu10.webshots.com/image/38209/2004320504562708317_rs.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img style="width: 438px; cursor: pointer; height: 347px;" src="http://aycu10.webshots.com/image/38209/2004320504562708317_rs.jpg" border="0" alt="" /></a></div>
<p><span style="font-size: 100%; font-family: Verdana;"><br />
Copy your portable </span><span style="font-size: 100%; font-family: Verdana;">antivirus programs</span><span style="font-size: 100%; font-family: Verdana;"> to your flash disk or external storage. </span></p>
<p class="MsoNormal">
<p><span style="font-size: 100%; font-family: Verdana;">If you doing it right click on your flash disk and you will get this.</span></p>
<div style="TEXT-ALIGN: center"><a href="http://aycu10.webshots.com/image/38209/2004367720113124006_rs.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img style="width: 449px; cursor: pointer; height: 235px;" src="http://aycu10.webshots.com/image/38209/2004367720113124006_rs.jpg" border="0" alt="" /></a></div>
<p><span style="font-size: 100%; font-family: Verdana;">Double click on Scan_virus_First!!! and your portable </span><span style="font-size: 100%; font-family: Verdana;">antivirus programs</span><span style="font-size: 100%; font-family: Verdana;"> will check tour Flashdisk before you can use it. </span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size: 100%; font-family: Verdana; color: red;">To open or access your Flashdisk or USB just right click and click open. </span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size: 100%; font-family: Verdana;">The last thing to do is hide your autorun.inf and your portable antivirus inside your Flashdisk. What you need to do is right click on Autorun.inf file and click properties. Tick the hidden option.</span></p>
<p class="MsoNormal" style="TEXT-ALIGN: center"><a href="http://aycu37.webshots.com/image/40196/2004307778315206102_rs.jpg" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"><img style="width: 400px; cursor: pointer;" src="http://aycu37.webshots.com/image/40196/2004307778315206102_rs.jpg" border="0" alt="" /></a><span style="font-size: 100%; font-family: Verdana;"> </span></p>
<p class="MsoNormal" style="TEXT-ALIGN: left"><span style="font-size: 100%; font-family: Verdana;">Click apply and then Ok. Good Luck! If you encounter any problem please state it in your comment. <span style="color: red;">Remember to update your </span></span><span style="font-size: 100%; font-family: Verdana;"><span style="color: #ff0000;">antivirus programs</span> </span><span style="font-size: 100%; font-family: Verdana;"><span style="color: red;">database!!<span style="color: #000000;"> Or spend a little bit of your salary for </span></span></span><span style="font-size:100%;">corporate antivirus software like panda antivirus software,norton antivirus server or symantec norton antivirus.<br />
</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size: 100%; font-family: Verdana;"><a href="http://www.mediafire.com/?fz1tx1xlxzq"> Download Portable Antivirus And Autorun.inf </a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://technetz.com/index.php/2008/06/24/how-to-protect-your-flashdisk-usb-storage-from-virus-using-portable-antivirus-programs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Convert video or pictures to gif animation avatar</title>
		<link>http://technetz.com/index.php/2008/05/21/convert-video-or-pictures-to-gif-animation-avatar-gikr/</link>
		<comments>http://technetz.com/index.php/2008/05/21/convert-video-or-pictures-to-gif-animation-avatar-gikr/#comments</comments>
		<pubDate>Wed, 21 May 2008 02:22:35 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Animated Gif]]></category>
		<category><![CDATA[Avatar]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://technetz.com/?p=45</guid>
		<description><![CDATA[<a href="http://technetz.com/index.php/2008/05/21/convert-video-or-pictures-to-gif-animation-avatar-gikr/"><img align="left" hspace="5" width="150" src="http://technetz.com/images/gikcr.gif" class="alignleft wp-post-image tfe" alt="" title="" /></a>There are few method to convert pictures or video to animated gif avatar for forums. If you know how to use photoshop software and combine with VirtualDub applications to create the image sequences it wouldn&#8217;t be a problem to create animated avatar. To make your life easier and save time ...]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left;" src="http://technetz.com/images/gikcr.gif" alt="" width="160" height="120" />There are few method to convert pictures or video to animated gif avatar for forums. If you know how to use photoshop software and combine with <strong>VirtualDub </strong>applications to create the image sequences it wouldn&#8217;t be a problem to create animated avatar. To make your life easier and save time you can do this with <strong>Online Animations GIF</strong> converter.No need to go through installation process</p>
<p><strong></strong></p>
<p><strong>How To?</strong></p>
<p><span id="more-45"></span>Find which scene from <a href="http://technetz.com/youtube">YouTube</a> or get ready with not more than 10 pictures and let Gickr convert it for you. Gickr is a free Online Animations GIF Converter that allow you to convert video to animated GIF.You can also use pictures from your flickr account. For video from <a href="http://technetz.com/youtube">YouTube</a> you just need the url and paste it inside the text box and Gikr will convert it diretly. you will get your animated gif depending on internet connection.</p>
<p>| <a href="http://gickr.com/upload_files">Gickr </a>| <a href="http://technetz.com/youtube">TechNetz YouTube</a> |</p>
]]></content:encoded>
			<wfw:commentRss>http://technetz.com/index.php/2008/05/21/convert-video-or-pictures-to-gif-animation-avatar-gikr/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to verify whether your handphone original or not?</title>
		<link>http://technetz.com/index.php/2008/04/20/how-to-verify-whether-your-handphone-original-or-not/</link>
		<comments>http://technetz.com/index.php/2008/04/20/how-to-verify-whether-your-handphone-original-or-not/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 16:57:32 +0000</pubDate>
		<dc:creator>joe</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Handphone Originality]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://technetz.com/index.php/2008/04/20/how-to-verify-whether-your-handphone-original-or-not/</guid>
		<description><![CDATA[<a href="http://technetz.com/index.php/2008/04/20/how-to-verify-whether-your-handphone-original-or-not/"><img align="left" hspace="5" width="150" height="150" src="http://technetz.com/wp-content/plugins/thumbnail-for-excerpts/tfe_no_thumb.png" class="alignleft wp-post-image tfe" alt="" title="" /></a>I have been using my handphone for quite long time.. Till now it still working fine. I am using Motorola E398. My friends also buy the same phone as me, but unfortunately it was not a an original from Motorola. How do i check whether my phone original from the ...]]></description>
			<content:encoded><![CDATA[<p>I have been using my handphone for quite long time.. Till now it still working fine. I am using Motorola E398. My friends also buy the same phone as me, but unfortunately it was not a an original from Motorola. How do i check whether my phone original from the manufacturer or not. This simple tips will guide you on how to check the originality of your phone? Ok the tricks is based on IMEI number. Every handphone have their own unique <a class="l" onmousedown="return clk(this.href,'','','res','1','&#038;sig2=Hm9UXh15sBjYg11NE0FueA')" href="http://en.wikipedia.org/wiki/IMEI">International Mobile Equipment Identity </a>(IMEI) number. To check your handphone&#8217;s IMEI number just type</p>
<p><span id="more-8"></span><br />
<span style="color:#ff0000;">*#06# <<<-- This is the code to check IMEI Number</span><br /><span style="color:#ff0000;"></span><br /><span style="color:#000000;">You IMEI number will be displayed on the screen..</span></p>
<p>Let say this is you IMEI number<br />351532002240569</p>
<p>See the digit 7th and 8th only!!<br />If<br />digit seven and eight 02 or 20->>assembly on emirates<br />digit seven and eight 08 or 80->>manufactured in germany<br />digit seven and eight 01 or 10->>manufactured in finland<br />digit seven and eight 00->>manufactured in original factory ( The Best Quality)<br />digit seven and eight 13->>assemble on azerbaijan</p>
<p>Others??? I dont know. So Before you Go and buy an Handphone. Make Sure you check the International Mobile Equipment Identity ( IMEI). My suggestion is go and buy handphone from certified Hanphone distributor. I know the price must be different,think about the quality.</p>
]]></content:encoded>
			<wfw:commentRss>http://technetz.com/index.php/2008/04/20/how-to-verify-whether-your-handphone-original-or-not/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
