<?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>FVN Tech Blog &#187; gadget</title>
	<atom:link href="http://blog.feuvan.net/tag/gadget/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.feuvan.net</link>
	<description>Advertisement Platform &#124; Mobile &#124; Interoperability &#124; Coding in C#, JavaScript, Obj-C, PHP &#124; Linux, Mac OSX, Windows Server Backend &#124; Misc ...</description>
	<lastBuildDate>Mon, 16 Jan 2012 14:53:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Yet another stupid JiWai.de gadget</title>
		<link>http://blog.feuvan.net/2007/10/25/155-yet-another-stupid-jiwaide-gadget.html</link>
		<comments>http://blog.feuvan.net/2007/10/25/155-yet-another-stupid-jiwaide-gadget.html#comments</comments>
		<pubDate>Wed, 24 Oct 2007 17:12:47 +0000</pubDate>
		<dc:creator>feuvan</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[jiwai]]></category>

		<guid isPermaLink="false">http://blog.feuvan.net/index.php/2007/10/25/yet-another-stupid-jiwaide-gadget.html</guid>
		<description><![CDATA[I spent a five minutes to complete a stupid JiWai.de using Prototype JS library for my personal web site. Because I set my JiWai.de to private, so I have to download my data to server using wget or curl in &#8230; <a href="http://blog.feuvan.net/2007/10/25/155-yet-another-stupid-jiwaide-gadget.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I spent a five minutes to complete a stupid JiWai.de using <a href="http://www.prototypejs.org">Prototype JS</a> library for my personal web site.     </p>
<p>Because I set my JiWai.de to private, so I have to download my data to server using wget or curl in crontab. </p>
<blockquote><p>feuvan@fvnbox2:~/wwwdata/doc_root$ crontab -l      <br /># m h dom mon dow command       <br />10/* * * * * sudo -u www-data /usr/bin/wget -N -q &#8211;http-user=feuvan@noSpam.fk &#8211;http-password=sillypaswordRocks -O /home/feuvan/wwwdata/doc_root/jiwai.json http://api.jiwai.de/statuses/user_timeline.json?count=10</p>
</blockquote>
<p>and on my homepage: </p>
<blockquote><p>&lt;div id=&quot;MyJiWaide&quot; class=&quot;webpart&quot;&gt;      <br />&#xA0;&#xA0;&#xA0; &lt;span id=&quot;jijiwaiwai&quot;&gt;&lt;/span&gt;       <br />&#xA0;&#xA0;&#xA0; &lt;script type=&quot;text/javascript&quot;&gt;       <br />&#xA0;&#xA0;&#xA0; try       <br />&#xA0;&#xA0;&#xA0; {       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; var url = &quot;jiwai.json&quot;;       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; new Ajax.Request(url, {       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; onSuccess: function(transport, json) {       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; var data = eval(transport.responseText);       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; var str = &quot;&lt;a href=&#8217;http://jiwai.de/feuvan&#8217;&gt;My JiWai.de&lt;/a&gt;&lt;br /&gt;&quot;;       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; for (var i = 0; i &lt; data.length; i ++)       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; {       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; str += (data[i].user.screen_name + &quot; &#8211; &quot; + data[i].text + &quot;&lt;br /&gt;&quot;);       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; }       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; $(&quot;jijiwaiwai&quot;).update(str);       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; }       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; });       <br />&#xA0;&#xA0;&#xA0; }       <br />&#xA0;&#xA0;&#xA0; catch (err)       <br />&#xA0;&#xA0;&#xA0; {       <br />&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0; document.write(err);       <br />&#xA0;&#xA0;&#xA0; }       <br />&#xA0;&#xA0;&#xA0; &lt;/script&gt;       <br />&lt;/div&gt;</p>
</blockquote>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html&amp;title=Yet+another+stupid+JiWai.de+gadget" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html&amp;title=Yet+another+stupid+JiWai.de+gadget" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html&amp;title=Yet+another+stupid+JiWai.de+gadget" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html&amp;headline=Yet+another+stupid+JiWai.de+gadget" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Yet+another+stupid+JiWai.de+gadget&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Yet+another+stupid+JiWai.de+gadget&amp;u=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Yet+another+stupid+JiWai.de+gadget&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Yet+another+stupid+JiWai.de+gadget&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Yet+another+stupid+JiWai.de+gadget&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html&amp;title=Yet+another+stupid+JiWai.de+gadget&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.feuvan.net%2F2007%2F10%2F25%2F155-yet-another-stupid-jiwaide-gadget.html" ><img class="lightsocial_img" src="http://blog.feuvan.net/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.feuvan.net/2007/10/25/155-yet-another-stupid-jiwaide-gadget.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

