<?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>Mastering WAVE &#187; gadget</title>
	<atom:link href="http://www.masteringwave.com/tag/gadget/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.masteringwave.com</link>
	<description>Google Wave Made Easy</description>
	<lastBuildDate>Wed, 07 Jul 2010 10:17:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='www.masteringwave.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Google Wave Robot and gadget interaction</title>
		<link>http://www.masteringwave.com/2010/03/google-wave-robot-and-gadget-interaction/</link>
		<comments>http://www.masteringwave.com/2010/03/google-wave-robot-and-gadget-interaction/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 08:16:37 +0000</pubDate>
		<dc:creator>Daniel Graversen</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[api2]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[google wave]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/?p=808</guid>
		<description><![CDATA[
			
				
			
		
With the new Robot API version 2 is it possible to interact with the gadgets using robots. This will allow for some interesting integrations and will mean that the gadgets can be used to show the graphical information that needs to be displayed by a user. By using the robot to fetch and populate the [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2009/09/gadget-and-robots-interaction/' rel='bookmark' title='Permanent Link: Gadget and Robots interaction'>Gadget and Robots interaction</a> <small> In some instances you want to have the robots...</small></li>
<li><a href='http://www.masteringwave.com/2009/09/add-robot/' rel='bookmark' title='Permanent Link: Add-Robot'>Add-Robot</a> <small>     A robot which can stores user favorite robots using...</small></li>
<li><a href='http://www.masteringwave.com/2010/03/new-google-wave-robot-api-v2/' rel='bookmark' title='Permanent Link: New Google Wave Robot API v2'>New Google Wave Robot API v2</a> <small> Finally there is an update to the Google Wave...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F03%2Fgoogle-wave-robot-and-gadget-interaction%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F03%2Fgoogle-wave-robot-and-gadget-interaction%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>With the new Robot API version 2 is it possible to interact with the gadgets using robots. This will allow for some interesting integrations and will mean that the gadgets can be used to show the graphical information that needs to be displayed by a user. By using the robot to fetch and populate the data, you are also able to make the requests update other information than is possible using the social API.</p>
<p>I have created a small demo that shows how this can work out. Look at this video.<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/RZbuYt0yKM0&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/RZbuYt0yKM0&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
The code for the robot is the following.</p>
<div class="codecolorer-container java default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="java codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; @Override<br />
&nbsp; <span style="color: #000000; font-weight: bold;">protected</span> <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Astring+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">String</span></a> getRobotName<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">return</span> <span style="color: #0000ff;">&quot;DGR1&quot;</span><span style="color: #339933;">;</span><br />
&nbsp; <span style="color: #009900;">&#125;</span><br />
<br />
&nbsp; <br />
&nbsp; @Override<br />
&nbsp; <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> onWaveletSelfAdded<span style="color: #009900;">&#40;</span>WaveletSelfAddedEvent event<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; Blip blip <span style="color: #339933;">=</span> event.<span style="color: #006633;">getWavelet</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">reply</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>Hi everybody!&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; blip.<span style="color: #006633;">append</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> Gadget<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://dgrjava1.appspot.com/gadget.xml&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; <span style="color: #009900;">&#125;</span> &nbsp;<br />
&nbsp; @Override<br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> onGadgetStateChanged<span style="color: #009900;">&#40;</span>GadgetStateChangedEvent event<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; Blip blip <span style="color: #339933;">=</span> event.<span style="color: #006633;">getBlip</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; Gadget gadget <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>Gadget<span style="color: #009900;">&#41;</span> blip.<span style="color: #006633;">getElements</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">get</span><span style="color: #009900;">&#40;</span>event.<span style="color: #006633;">getIndex</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp;<a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Astring+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">String</span></a> count <span style="color: #339933;">=</span> &nbsp;gadget.<span style="color: #006633;">getProperty</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;count&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp;<br />
&nbsp; &nbsp; &nbsp;blip.<span style="color: #006633;">append</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;State changed changed &quot;</span> <span style="color: #339933;">+</span> count<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp;gadget.<span style="color: #006633;">setProperty</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;count&quot;</span>, <span style="color: #0000ff;">&quot;56&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; <span style="color: #009900;">&#125;</span></div></div>
<p>Currently it is not possible with the Java api to update the gadget. But there is room for it in the gadget state information.</p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2009/09/gadget-and-robots-interaction/' rel='bookmark' title='Permanent Link: Gadget and Robots interaction'>Gadget and Robots interaction</a> <small> In some instances you want to have the robots...</small></li>
<li><a href='http://www.masteringwave.com/2009/09/add-robot/' rel='bookmark' title='Permanent Link: Add-Robot'>Add-Robot</a> <small>     A robot which can stores user favorite robots using...</small></li>
<li><a href='http://www.masteringwave.com/2010/03/new-google-wave-robot-api-v2/' rel='bookmark' title='Permanent Link: New Google Wave Robot API v2'>New Google Wave Robot API v2</a> <small> Finally there is an update to the Google Wave...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2010/03/google-wave-robot-and-gadget-interaction/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Email with updates on Wave changes</title>
		<link>http://www.masteringwave.com/2010/03/email-with-updates-on-wave-changes/</link>
		<comments>http://www.masteringwave.com/2010/03/email-with-updates-on-wave-changes/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 12:39:08 +0000</pubDate>
		<dc:creator>Daniel Graversen</dc:creator>
				<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/2010/03/email-with-updates-on-wave-changes/</guid>
		<description><![CDATA[
			
				
			
		
Probably the most requested feature of Google Wave has been delivered yesterday. It is simply to get email notification when a Wave changes.

It is quite easy to start to use. Simply select the dropdown button on your inbox, select notifications. Then you have the option to select how often you want the notifications.


	

 
The email you [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2010/05/google-io-updates-what-io-truly-stands-for/' rel='bookmark' title='Permanent Link: Google I/O 2010 Updates: What I/O truly Stands For'>Google I/O 2010 Updates: What I/O truly Stands For</a> <small> Given the chance to be a participant in the...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalendar-23-windows-google-notifier/' rel='bookmark' title='Permanent Link: WaveCalendar 23: Windows Google Notifier'>WaveCalendar 23: Windows Google Notifier</a> <small> Lifehacker describes the new Goolge Wave desktop notifier. Lifehacker...</small></li>
<li><a href='http://www.masteringwave.com/2009/10/my-view-on-productivity-with-google-wave/' rel='bookmark' title='Permanent Link: My view on productivity with Google Wave'>My view on productivity with Google Wave</a> <small> The question about if Google Wave is a productive...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F03%2Femail-with-updates-on-wave-changes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F03%2Femail-with-updates-on-wave-changes%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Probably the most requested feature of Google Wave <a href="http://googlewave.blogspot.com/2010/03/help-test-email-notifications.html">has been delivered yesterday</a>. It is simply to get email notification when a Wave changes.
</p>
<p>It is quite easy to start to use. Simply select the dropdown button on your inbox, select notifications. Then you have the option to select how often you want the notifications.
</p>
<p><img src="http://www.masteringwave.com/wp-content/uploads/2010/03/030510_1238_Emailwithup1.jpg" alt=""/>
	</p>
<p>
 </p>
<p>The email you then will get looks like the following.
</p>
<p><img src="http://www.masteringwave.com/wp-content/uploads/2010/03/030510_1238_Emailwithup2.png" alt=""/>
	</p>
<p>One feature missing feature is that it is not possible to look for updates in the inbox. I might only be interested in updates in Wave, when a search term is updated. So I only get updates when Waves with the word SAP or the tag SAP is updated.
</p>
<p>I currently use <a href="http://wave-notify.sourceforge.net/">Google Wave Notifier</a> to get updates, when a Wave is changing. The program gives instant notifications when your inbox changes. It is quite useful. But it is probably not a solution for non-it savvy users how don&#8217;t want to install all kinds of addons. </p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2010/05/google-io-updates-what-io-truly-stands-for/' rel='bookmark' title='Permanent Link: Google I/O 2010 Updates: What I/O truly Stands For'>Google I/O 2010 Updates: What I/O truly Stands For</a> <small> Given the chance to be a participant in the...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalendar-23-windows-google-notifier/' rel='bookmark' title='Permanent Link: WaveCalendar 23: Windows Google Notifier'>WaveCalendar 23: Windows Google Notifier</a> <small> Lifehacker describes the new Goolge Wave desktop notifier. Lifehacker...</small></li>
<li><a href='http://www.masteringwave.com/2009/10/my-view-on-productivity-with-google-wave/' rel='bookmark' title='Permanent Link: My view on productivity with Google Wave'>My view on productivity with Google Wave</a> <small> The question about if Google Wave is a productive...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2010/03/email-with-updates-on-wave-changes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>5 Easy Steps To Create A Google Wave Gadget Using Flex</title>
		<link>http://www.masteringwave.com/2010/03/5-easy-steps-to-create-a-google-wave-gadget-using-flex/</link>
		<comments>http://www.masteringwave.com/2010/03/5-easy-steps-to-create-a-google-wave-gadget-using-flex/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 16:25:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/?p=766</guid>
		<description><![CDATA[
			
				
			
		
Hi Everyone! We&#8217;re presenting you a simple 5-part video tutorial showing a sample in creating a google wave gadget using flex (Flash Builder Beta as the IDE and Flex 4 as the Compiler). The application is of the same with the common flash actionscript file having a counter button that increments the result number by [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2010/01/why-flex-is-the-best-way-to-make-gadgets/' rel='bookmark' title='Permanent Link: Why is flex the best way to make Google Wave gadgets?'>Why is flex the best way to make Google Wave gadgets?</a> <small> Before anything else, let&#8217;s have a short introduction about...</small></li>
<li><a href='http://www.masteringwave.com/2009/09/simple-form-gadget/' rel='bookmark' title='Permanent Link: Simple Form Gadget'>Simple Form Gadget</a> <small> Creating my first form gadget, I call it “form...</small></li>
<li><a href='http://www.masteringwave.com/2010/03/google-wave-robot-and-gadget-interaction/' rel='bookmark' title='Permanent Link: Google Wave Robot and gadget interaction'>Google Wave Robot and gadget interaction</a> <small> With the new Robot API version 2 is it...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F03%2F5-easy-steps-to-create-a-google-wave-gadget-using-flex%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F03%2F5-easy-steps-to-create-a-google-wave-gadget-using-flex%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Hi Everyone! We&#8217;re presenting you a simple 5-part video tutorial showing a sample in creating a google wave gadget using flex (Flash Builder Beta as the IDE and Flex 4 as the Compiler). The application is of the same with the common flash actionscript file having a counter button that increments the result number by 1 and a reset button that resets the result number back to 0. Any of the participants that will click the buttons will be able to update the state having them with the same result on their screen. Apologies if you find the video not clear enough and so as the speaker or mispronounced some words but hopefully you&#8217;ll be able to follow and at least this will give you a head start.</p>
<p>The 1st part of the video is some sort of a short introduction to flex showing how to call or place given components from flex through typing the codes or dragging the component in the design view.</p>
<p><a href="http://www.youtube.com/watch?v=mRCEZPF6qo8">FlexWave Gadget Part 1</a></p>
<p>The 2nd part of the video demonstrates how to add functionality to your components and testing the application locally.</p>
<p><a href="http://www.youtube.com/watch?v=tKyc-04JLWM">FlexWave Gadget Part 2</a></p>
<p>The 3rd part of the video shows how to apply google wave api (wave-as-client) or incorporate it as a library in the flex application/project.</p>
<p><a href="http://www.youtube.com/watch?v=19E910BeinM">FlexWave Gadget Part 3</a></p>
<p>The 4th part of the video is the continuation of how to manipulate or use the  google wave api to pass or update states.</p>
<p><a href="http://www.youtube.com/watch?v=7UTI91IQ8wE">FlexWave Gadget Part 4</a></p>
<p>The 5th part is the last part of the video that shows how to publish a release build of the application/project and compile with all the files needed to get it work as a gadget in google wave.</p>
<p><a href="http://www.youtube.com/watch?v=lA6St5qsq08">FlexWave Gadget Part 5</a></p>
<p>Reminders: You always need the wave-as-client as the library of the flex application and make sure to have the wave-as-client.js placed in the same folder of the release build. In creating a gadget.xml, just make sure you&#8217;ll be able to apply an extension code to the url of your flex swf file application to avoid caching to prevent problems in updating and testing the application on the wave.</p>
<p>Thank you so much for the time and hopefully the video is helpful. Have a blessed and healthy day everyone!</p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2010/01/why-flex-is-the-best-way-to-make-gadgets/' rel='bookmark' title='Permanent Link: Why is flex the best way to make Google Wave gadgets?'>Why is flex the best way to make Google Wave gadgets?</a> <small> Before anything else, let&#8217;s have a short introduction about...</small></li>
<li><a href='http://www.masteringwave.com/2009/09/simple-form-gadget/' rel='bookmark' title='Permanent Link: Simple Form Gadget'>Simple Form Gadget</a> <small> Creating my first form gadget, I call it “form...</small></li>
<li><a href='http://www.masteringwave.com/2010/03/google-wave-robot-and-gadget-interaction/' rel='bookmark' title='Permanent Link: Google Wave Robot and gadget interaction'>Google Wave Robot and gadget interaction</a> <small> With the new Robot API version 2 is it...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2010/03/5-easy-steps-to-create-a-google-wave-gadget-using-flex/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Why is flex the best way to make Google Wave gadgets?</title>
		<link>http://www.masteringwave.com/2010/01/why-flex-is-the-best-way-to-make-gadgets/</link>
		<comments>http://www.masteringwave.com/2010/01/why-flex-is-the-best-way-to-make-gadgets/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 18:35:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[google wave]]></category>
		<category><![CDATA[masteringwave]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/?p=735</guid>
		<description><![CDATA[
			
				
			
		
Before anything else, let&#8217;s have a short introduction about Flex. Flex is actually a software development kit released by Adobe that will let you develop and deploy a cross-platform rich internet applications (RIA) having Adobe Flash as its platform for web and Adobe Air for desktop version. Since according to Adobe Flash Player Statistics, flash [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2010/03/5-easy-steps-to-create-a-google-wave-gadget-using-flex/' rel='bookmark' title='Permanent Link: 5 Easy Steps To Create A Google Wave Gadget Using Flex'>5 Easy Steps To Create A Google Wave Gadget Using Flex</a> <small> Hi Everyone! We&#8217;re presenting you a simple 5-part video...</small></li>
<li><a href='http://www.masteringwave.com/2010/05/testing-google-wave-for-apps/' rel='bookmark' title='Permanent Link: Testing Google Wave for Apps'>Testing Google Wave for Apps</a> <small> I have had the opportunity to try out wave...</small></li>
<li><a href='http://www.masteringwave.com/2010/05/5-reasons-why-google-wave-is-ready-for-enterprise-use-2/' rel='bookmark' title='Permanent Link: 5 Reasons Why Google Wave is Ready for Enterprise Use'>5 Reasons Why Google Wave is Ready for Enterprise Use</a> <small> I have been a fan of using Google Wave...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F01%2Fwhy-flex-is-the-best-way-to-make-gadgets%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F01%2Fwhy-flex-is-the-best-way-to-make-gadgets%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Before anything else, let&#8217;s have a short introduction about Flex. Flex is actually a software development kit released by Adobe that will let you develop and deploy a cross-platform rich internet applications (RIA) having Adobe Flash as its platform for web and Adobe Air for desktop version. Since according to Adobe Flash Player Statistics, flash reaches 99% of all the internet-enabled PCs all over the world; and that will give us the start. Now, let&#8217;s proceed to the core. I got two sides to completely turn your thoughts to consider Flex.</p>
<p>First, for the developer&#8217;s side, programming structure would be a concern and with Adobe Flex, coding are not that complicated since it is readable in an English like manner but of course you need to have a programmer&#8217;s logical thinking to get it going. It&#8217;s easy to integrate designs and even apply effects (as we all familiar with flash) to help improve your applications. Adobe Flex builder 3 and Adobe Flash Builder Beta are commonly used IDEs for developing Flex. Exporting and importing projects with the IDEs makes it easier to share or work on projects with the group and one thing that really bites me as a developer is the debugging feature. Debugging is your best bud to get your codes work well. When it comes to support for Flex, there are tons of tutorials available that you can research on the web and you can even start with the video tutorials from Adobe&#8217;s &#8220;Flex in a week&#8221;. So, as a developer, if you want to develop an impressive, well-presented, interactive, and functioning application, Flex is a top option. Even though there&#8217;s still some few bugs especially in flex 4 considering it&#8217;s still in beta, solutions are highly attainable.</p>
<p>Second, for the users&#8217; side, presentation and functionality of the application are always been their issue. The users are the major factor to know if the application is well-developed. If the design or layout of the application is way too dull even if the functionality works well, the tendency is that the users will get bored and sometimes get confused to use the application. With Adobe Flex, great designs, interactivity and functionality can easily be binded together to create a stunning application. Users will then be interested, become familiar and the environmental cues are that understandable. Applications well-developed in Flex are always been that impressive towards the users. You can hear them say, &#8220;WOW!, NICE!, GREAT!, FANTASTIC!, WORKS WELL!&#8221;, and all other good stuff rather than &#8220;WOAH! WHAT JUST HAPPENED?&#8221; and that is really heartbreaking.</p>
<p>Well, if you want to experience what has been written here, you might as well try our scrum gadgets in Flex and if you have a chance please post a comment for it will help a lot. Thanks for reading and have a nice day to all!</p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2010/03/5-easy-steps-to-create-a-google-wave-gadget-using-flex/' rel='bookmark' title='Permanent Link: 5 Easy Steps To Create A Google Wave Gadget Using Flex'>5 Easy Steps To Create A Google Wave Gadget Using Flex</a> <small> Hi Everyone! We&#8217;re presenting you a simple 5-part video...</small></li>
<li><a href='http://www.masteringwave.com/2010/05/testing-google-wave-for-apps/' rel='bookmark' title='Permanent Link: Testing Google Wave for Apps'>Testing Google Wave for Apps</a> <small> I have had the opportunity to try out wave...</small></li>
<li><a href='http://www.masteringwave.com/2010/05/5-reasons-why-google-wave-is-ready-for-enterprise-use-2/' rel='bookmark' title='Permanent Link: 5 Reasons Why Google Wave is Ready for Enterprise Use'>5 Reasons Why Google Wave is Ready for Enterprise Use</a> <small> I have been a fan of using Google Wave...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2010/01/why-flex-is-the-best-way-to-make-gadgets/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Wave Gadgets lack quality</title>
		<link>http://www.masteringwave.com/2010/01/wave-gadgets/</link>
		<comments>http://www.masteringwave.com/2010/01/wave-gadgets/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 13:10:24 +0000</pubDate>
		<dc:creator>Daniel Graversen</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[critics]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[robots]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/?p=704</guid>
		<description><![CDATA[
			
				
			
		
I tested quite a bit of different Google Wave gadgets in my christmas calender last month. I tried 40 different apps with a large verity in their complexity and usability. Some of them did not have any useful functions or did not work.
I really liked many of the ideas created in the gadgets and some [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2009/10/installing-extensions-in-wave/' rel='bookmark' title='Permanent Link: Installing extensions in Wave'>Installing extensions in Wave</a> <small> Extensions are an easy way to distribute you Wave...</small></li>
<li><a href='http://www.masteringwave.com/2010/05/testing-google-wave-for-apps/' rel='bookmark' title='Permanent Link: Testing Google Wave for Apps'>Testing Google Wave for Apps</a> <small> I have had the opportunity to try out wave...</small></li>
<li><a href='http://www.masteringwave.com/2010/06/are-there-any-business-plans-for-google-wave-developers/' rel='bookmark' title='Permanent Link: Are There Any Business Plans for Google Wave Developers'>Are There Any Business Plans for Google Wave Developers</a> <small> At Google IO, I talked with several of the...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F01%2Fwave-gadgets%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2010%2F01%2Fwave-gadgets%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I tested quite a bit of different Google Wave gadgets in my christmas calender last month. I tried 40 different apps with a large verity in their complexity and usability. Some of them did not have any useful functions or did not work.</p>
<p>I really liked many of the ideas created in the gadgets and some was really useful. It was fun to see how people wanted to impress with new ideas.</p>
<p>The quality of the gadgets and robot was lausy. Mine included. I believe that many of to my application must be improved. But with the limited option in the robot API hinders making layouts to shine. It also provide a hindering there is a lack of way the gadget/robots can work together. If there was a better way to make the gadgets/robot work together, the layout issues could be solved.</p>
<p>I will say that most of the gadgets except maybe the simpler voting gadgets all require extra work before they can be used by a wider audience. The robots where you need to write commands with # or ! as the only thing in blip, I doubt that my mother will pick it up easily which is required to get non tech savvy users on board.</p>
<p>One key to make it possible to get the robot to function better is to pay the developers. I guess most of the developers of the robots/gadgets I have seen just tried the protocol out of see if they could make something useful. And they can. But to make them look wave-y the gadgets need to look better.</p>
<p>To make the gadgets/robot complete we need to be able to get some better apis and more importantly be able to charge for your apps. Currently it can be possible to charge for the usage of a robot and with some development also a gadget, but it is a pain and will require to much of the user.</p>
<p>I&#8217;m therefore looking forward a Wave app store is created. It will be interesting to see if it only supports one time payments or monthly payments and maybe even corporate multi seat licenses. The wave app store will mean that more developers will start with developing programs for Google Wave, making the platform more attractive.</p>
<p>I&#8217;m currently only letting my apps be available to my mail list subscribers. We have a new scrum gadget that just need to be published. So sign up to the newsletter and try it out.</p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2009/10/installing-extensions-in-wave/' rel='bookmark' title='Permanent Link: Installing extensions in Wave'>Installing extensions in Wave</a> <small> Extensions are an easy way to distribute you Wave...</small></li>
<li><a href='http://www.masteringwave.com/2010/05/testing-google-wave-for-apps/' rel='bookmark' title='Permanent Link: Testing Google Wave for Apps'>Testing Google Wave for Apps</a> <small> I have had the opportunity to try out wave...</small></li>
<li><a href='http://www.masteringwave.com/2010/06/are-there-any-business-plans-for-google-wave-developers/' rel='bookmark' title='Permanent Link: Are There Any Business Plans for Google Wave Developers'>Are There Any Business Plans for Google Wave Developers</a> <small> At Google IO, I talked with several of the...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2010/01/wave-gadgets/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WaveCalendar 22: Game of Life</title>
		<link>http://www.masteringwave.com/2009/12/wavecalendar-22-game-of-life/</link>
		<comments>http://www.masteringwave.com/2009/12/wavecalendar-22-game-of-life/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 11:13:54 +0000</pubDate>
		<dc:creator>Daniel Graversen</dc:creator>
				<category><![CDATA[WaveCalender]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[game of life]]></category>
		<category><![CDATA[google wave]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/?p=682</guid>
		<description><![CDATA[
			
				
			
		
Conway&#8217;s Game of Life is a small gadget which displays how the game of life works.
The XML is available hire. 
The gadget is really good at illustrating how fast the states are update between each client. The video recored shows how fast the state is updated between two users of wave.

What is really interesting with [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-12-card-gadget/' rel='bookmark' title='Permanent Link: WaveCalender 12: Card gadget'>WaveCalender 12: Card gadget</a> <small> The card gadget seems to be in its early...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalendar-24-publish-to-wordpress/' rel='bookmark' title='Permanent Link: WaveCalendar 24: Publish to Wordpress'>WaveCalendar 24: Publish to Wordpress</a> <small> For this last post I was looking for a...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-5-tic-tac-toe/' rel='bookmark' title='Permanent Link: WaveCalender 6: Tic tac toe'>WaveCalender 6: Tic tac toe</a> <small> The Tic Tac Toe game by Sung Wu, is...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalendar-22-game-of-life%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalendar-22-game-of-life%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://wave-samples-gallery.appspot.com/about_app?app_id=88024">Conway&#8217;s Game of Life</a> is a small gadget which displays how the game of life works.<br />
The XML is available <a href="http://www.lehnerstudios.com/wave/life/life.xml">hire</a>. </p>
<p>The gadget is really good at illustrating how fast the states are update between each client. The video recored shows how fast the state is updated between two users of wave.<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/4cgf_-2Xvcs&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/4cgf_-2Xvcs&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<p>What is really interesting with the tool is that both users can add their images at the same time, but the images are not used in calculation/expansions before they are picked up by the playing side. </p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-12-card-gadget/' rel='bookmark' title='Permanent Link: WaveCalender 12: Card gadget'>WaveCalender 12: Card gadget</a> <small> The card gadget seems to be in its early...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalendar-24-publish-to-wordpress/' rel='bookmark' title='Permanent Link: WaveCalendar 24: Publish to Wordpress'>WaveCalendar 24: Publish to Wordpress</a> <small> For this last post I was looking for a...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-5-tic-tac-toe/' rel='bookmark' title='Permanent Link: WaveCalender 6: Tic tac toe'>WaveCalender 6: Tic tac toe</a> <small> The Tic Tac Toe game by Sung Wu, is...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2009/12/wavecalendar-22-game-of-life/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WaveCalender 13: Magic 8 Ball</title>
		<link>http://www.masteringwave.com/2009/12/wavecalender-13-magic-8-ball/</link>
		<comments>http://www.masteringwave.com/2009/12/wavecalender-13-magic-8-ball/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 11:24:07 +0000</pubDate>
		<dc:creator>Daniel Graversen</dc:creator>
				<category><![CDATA[WaveCalender]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[Wave Gadget]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/2009/12/wavecalender-12-magic-8-ball/</guid>
		<description><![CDATA[
			
				
			
		
 Struggling with decisions in life? Dilemmas? Wondering what the future has in store for us?

 Ask the magic 8 ball!


	
The magic 8 ball originally created by Albert Carter in 1946 is a legendary fortune telling device or seeking device which is designed to answer every question.  While the real thing is not compatible [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-14-wave-extension-installer-xml-file-creator/' rel='bookmark' title='Permanent Link: WaveCalender 14: Wave Extension Installer XML file creator'>WaveCalender 14: Wave Extension Installer XML file creator</a> <small> After a while of strenuous coding and testing, the...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-5-tic-tac-toe/' rel='bookmark' title='Permanent Link: WaveCalender 6: Tic tac toe'>WaveCalender 6: Tic tac toe</a> <small> The Tic Tac Toe game by Sung Wu, is...</small></li>
<li><a href='http://www.masteringwave.com/2009/10/installing-extensions-in-wave/' rel='bookmark' title='Permanent Link: Installing extensions in Wave'>Installing extensions in Wave</a> <small> Extensions are an easy way to distribute you Wave...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalender-13-magic-8-ball%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalender-13-magic-8-ball%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p> Struggling with decisions in life? Dilemmas? Wondering what the future has in store for us?
</p>
<p> Ask the magic 8 ball!
</p>
<p><img src="http://www.masteringwave.com/wp-content/uploads/2009/12/121209_1624_WaveCalende1.png" alt=""/>
	</p>
<p>The magic 8 ball originally created by Albert Carter in 1946 is a legendary fortune telling device or seeking device which is designed to answer every question.  While the real thing is not compatible enough to be shared online with our friends, the guys in wave ActionScript library are so nice to create this wonderful magic 8 ball that you can share with your friends online on google wave with same wavelet  allowing you to share its answers with your friends. It responds in real time and shakes as you click on it just like the way you do it in the real thing.  With 20 different answers, the magic 8 ball is a good app to use when you&#8217;re struggling with decisions in life, dilemmas, and questions that your friends don&#8217;t even have the guts to answer.
</p>
<p>The magic 8 ball gadget is built on Flex and using wave-as-client ActionScript library for Flex to connect to the JavaScript API available on Google Wave. This app shows you how simple apps can be so fun to use when you are on Google Wave. Come and enjoy this app with your friends for free on wavesandbox.com , if you have sandbox accounts, or on Google Wave Preview. Just click on the button that says add gadget and paste this gadget XML url: <a href="http://wave-as-client.googlecode.com/svn/trunk/example/wavemagic8/web/wavemagic8.xml"><span style="color:#0000cc; font-size:10pt">http://wave-as-client.googlecode.com/svn/trunk/example/wavemagic8/web/wavemagic8.xml</span></a><span style="color:black; font-size:10pt"><br />
		</span></p>
<p> </p>
<h1>Wave Extension Installer XML file creator<br />
</h1>
<p>
 </p>
<p><img src="http://www.masteringwave.com/wp-content/uploads/2009/12/121209_1624_WaveCalende2.png" alt=""/>
	</p>
<p>After a while of strenuous coding and testing, the developer is ready to make his/her work public. But one obstacle still remains for the developer and that is to make the Wave extension Installer.
</p>
<p>The Wave extension installer is important as this simplifies the task in installing the app on wave. Because the developer aims his/her work for the public to use, the developer should make everything easy for the users to install and use his/her app. Imagine if you have to make your users learn a scripting language before they can use your app, chances are your users may grow tired of it and may missed the chance of using your app.
</p>
<p>The Wave Extension Installer XML File Creator is an app specifically designed for developers to simplify their work on creating Wave Extension Installers. This app is built on Flex and using the wave-as-client ActionScript Library for Flex. This is a nice app to use for first time developers and to some because after all those strenuous coding and testing, developers may get lazy to create the wave extension installer. With this app, all you have to do is fill out the form, click &#8220;Done&#8221;, and copy the generated XML content. Just remember the app is bigger than a regular size blip so you may have to maximize your wavelet to fully view the app.
</p>
<p>You can try out the app in this gadget XML URL: <a href="http://wave-as-client.googlecode.com/svn/trunk/example/wave_install_creator/web/wave_install_creator.xml"><span style="font-size:7pt">http://wave-as-client.googlecode.com/svn/trunk/example/wave_install_creator/web/wave_install_creator.xml</span></a>
	</p>
<p>  </p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-14-wave-extension-installer-xml-file-creator/' rel='bookmark' title='Permanent Link: WaveCalender 14: Wave Extension Installer XML file creator'>WaveCalender 14: Wave Extension Installer XML file creator</a> <small> After a while of strenuous coding and testing, the...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-5-tic-tac-toe/' rel='bookmark' title='Permanent Link: WaveCalender 6: Tic tac toe'>WaveCalender 6: Tic tac toe</a> <small> The Tic Tac Toe game by Sung Wu, is...</small></li>
<li><a href='http://www.masteringwave.com/2009/10/installing-extensions-in-wave/' rel='bookmark' title='Permanent Link: Installing extensions in Wave'>Installing extensions in Wave</a> <small> Extensions are an easy way to distribute you Wave...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2009/12/wavecalender-13-magic-8-ball/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WaveCalender 12: Card gadget</title>
		<link>http://www.masteringwave.com/2009/12/wavecalender-12-card-gadget/</link>
		<comments>http://www.masteringwave.com/2009/12/wavecalender-12-card-gadget/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 16:22:21 +0000</pubDate>
		<dc:creator>jayjay</dc:creator>
				<category><![CDATA[WaveCalender]]></category>
		<category><![CDATA[card]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[Wave Gadget]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/?p=629</guid>
		<description><![CDATA[
			
				
			
		
The card gadget seems to be in its early stages still. I can see that the basic actions that we can do with a card or a deck can be done with this gadget. Flipping a card, dragging a card from the deck, stacking cards, peeking on one card, etc&#8230;. But there is one bug [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-5-tic-tac-toe/' rel='bookmark' title='Permanent Link: WaveCalender 6: Tic tac toe'>WaveCalender 6: Tic tac toe</a> <small> The Tic Tac Toe game by Sung Wu, is...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-11-napkin/' rel='bookmark' title='Permanent Link: WaveCalender 11: Napkin'>WaveCalender 11: Napkin</a> <small> Napkin(http://code.google.com/p/napkin-wave-gadget/) by Marcin Szczepanski of webqem, is cool gadget...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalendar-22-game-of-life/' rel='bookmark' title='Permanent Link: WaveCalendar 22: Game of Life'>WaveCalendar 22: Game of Life</a> <small> Conway&#8217;s Game of Life is a small gadget which...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalender-12-card-gadget%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalender-12-card-gadget%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>The card gadget seems to be in its early stages still. I can see that the basic actions that we can do with a card or a deck can be done with this gadget. Flipping a card, dragging a card from the deck, stacking cards, peeking on one card, etc&#8230;. But there is one bug (or is it a feature?) in that when a player peeks on a turned up card, the peek action still occurs. It peeks at the back of the card. Well normally in a card game there&#8217;s no need to peek at the other side of a turned up card unless you scribbled your date&#8217;s number there and forgot about it. If it is a feature, it&#8217;s an unneeded one and looks to me like it screams for a fix on its irrelevance.</p>
<p><img src="http://i6.photobucket.com/albums/y233/oshiro03/masteringwave/peekBug.gif" border="0" alt="Peek Bug" /></p>
<p>The gadget has a lot of potential to accommodate card games. Solitaire, strip poker, pusoy dos, etc&#8230; what with the actions that a participant can do. But the problem is that it&#8217;s too macro in its scope that playing a card game will get confusing easily because of the lack of rules and scoring for that specific game. I guess I&#8217;m asking for a different gadget here. Maybe something patterned after this one. But at least some restrictions to participants that they can only do an action on a card that they have and not cause chaos on the other player&#8217;s hand would be great.</p>
<p><img src="http://i6.photobucket.com/albums/y233/oshiro03/masteringwave/cardMultiple.gif" border="0" alt="Multiple Participants" /></p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-5-tic-tac-toe/' rel='bookmark' title='Permanent Link: WaveCalender 6: Tic tac toe'>WaveCalender 6: Tic tac toe</a> <small> The Tic Tac Toe game by Sung Wu, is...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-11-napkin/' rel='bookmark' title='Permanent Link: WaveCalender 11: Napkin'>WaveCalender 11: Napkin</a> <small> Napkin(http://code.google.com/p/napkin-wave-gadget/) by Marcin Szczepanski of webqem, is cool gadget...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalendar-22-game-of-life/' rel='bookmark' title='Permanent Link: WaveCalendar 22: Game of Life'>WaveCalendar 22: Game of Life</a> <small> Conway&#8217;s Game of Life is a small gadget which...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2009/12/wavecalender-12-card-gadget/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WaveCalender 11: Napkin</title>
		<link>http://www.masteringwave.com/2009/12/wavecalender-11-napkin/</link>
		<comments>http://www.masteringwave.com/2009/12/wavecalender-11-napkin/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 08:37:24 +0000</pubDate>
		<dc:creator>joemer</dc:creator>
				<category><![CDATA[Example]]></category>
		<category><![CDATA[WaveCalender]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[google wave]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/?p=624</guid>
		<description><![CDATA[
			
				
			
		
Napkin(http://code.google.com/p/napkin-wave-gadget/) by Marcin Szczepanski of webqem, is cool gadget that was written in Adobe Flex. It allows you to do quick sketches and collaborative doodling.  It provides a canvas on which we can write some sketch designed for small teams or some other people that who just want to play with it. It is good [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-5-tic-tac-toe/' rel='bookmark' title='Permanent Link: WaveCalender 6: Tic tac toe'>WaveCalender 6: Tic tac toe</a> <small> The Tic Tac Toe game by Sung Wu, is...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-12-card-gadget/' rel='bookmark' title='Permanent Link: WaveCalender 12: Card gadget'>WaveCalender 12: Card gadget</a> <small> The card gadget seems to be in its early...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-4-invity/' rel='bookmark' title='Permanent Link: WaveCalender 4: Invity'>WaveCalender 4: Invity</a> <small> When you are having troubles with managing a large...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalender-11-napkin%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalender-11-napkin%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Napkin(<a href="http://code.google.com/p/napkin-wave-gadget/">http://code.google.com/p/napkin-wave-gadget/</a>) by Marcin Szczepanski of <a href="http://www.webqem.com/">webqem</a>, is cool gadget that was written in Adobe Flex. It allows you to do quick sketches and collaborative doodling.  It provides a canvas on which we can write some sketch designed for small teams or some other people that who just want to play with it. It is good for short descriptive planning or a fun game.</p>
<p>I have just tried it and try to make it useful, i try to create a simple usecase to try its usability, Look at what ive got:</p>
<p align="center">
<p style="text-align: center"><img class="aligncenter" src="http://i997.photobucket.com/albums/af96/kurimachiwa/napkin.png" alt="" width="374" height="443" /></p>
<p align="center">Simple Student Registration Usecase</p>
<p align="center">
<p>It was pretty simple and easy to use. Everyone can edit the canvass at the same time.  One downside of this gadget is the lack of an erase function. It would be better if the author can add it on his next release.</p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-5-tic-tac-toe/' rel='bookmark' title='Permanent Link: WaveCalender 6: Tic tac toe'>WaveCalender 6: Tic tac toe</a> <small> The Tic Tac Toe game by Sung Wu, is...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-12-card-gadget/' rel='bookmark' title='Permanent Link: WaveCalender 12: Card gadget'>WaveCalender 12: Card gadget</a> <small> The card gadget seems to be in its early...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-4-invity/' rel='bookmark' title='Permanent Link: WaveCalender 4: Invity'>WaveCalender 4: Invity</a> <small> When you are having troubles with managing a large...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2009/12/wavecalender-11-napkin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WaveCalender 10: Graphy a way to make connected graphs in Wave</title>
		<link>http://www.masteringwave.com/2009/12/wavecalender-10-graphy-a-way-to-make-connected-graphs-in-wave/</link>
		<comments>http://www.masteringwave.com/2009/12/wavecalender-10-graphy-a-way-to-make-connected-graphs-in-wave/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 15:27:32 +0000</pubDate>
		<dc:creator>Daniel Graversen</dc:creator>
				<category><![CDATA[WaveCalender]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://www.masteringwave.com/?p=614</guid>
		<description><![CDATA[
			
				
			
		
The Shiny Wave has a blog on Google Wave helping Scientist Collaborate. I thought that going to some to the gadgets mention there could be interesting. The gadget I found the most interesting is Graphy by Elliott Slaughter.
The gadget allows you to create a graph between different elements and see how it relates to each [...]


Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-4-invity/' rel='bookmark' title='Permanent Link: WaveCalender 4: Invity'>WaveCalender 4: Invity</a> <small> When you are having troubles with managing a large...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-2-poll-gadget/' rel='bookmark' title='Permanent Link: WaveCalender 2: Poll Gadget'>WaveCalender 2: Poll Gadget</a> <small> Often you need to create a poll with somebody...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-16-waveboarder/' rel='bookmark' title='Permanent Link: WaveCalender 16: Waveboarder'>WaveCalender 16: Waveboarder</a> <small> We already covered the WaveBoarder application, which is a...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalender-10-graphy-a-way-to-make-connected-graphs-in-wave%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.masteringwave.com%2F2009%2F12%2Fwavecalender-10-graphy-a-way-to-make-connected-graphs-in-wave%2F&amp;source=masteringwave&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>The Shiny Wave has a blog on <a href="http://www.theshinywave.com/news/google-wave-helping-scientists-collaborate/">Google Wave helping Scientist Collaborate</a>. I thought that going to some to the gadgets mention there could be interesting. The gadget I found the most interesting is <a href="http://wave-samples-gallery.appspot.com/about_app?app_id=23016">Graphy</a> by Elliott Slaughter.</p>
<p>The gadget allows you to create a graph between different elements and see how it relates to each other. This is really useful when you are describing something and needs to get a connection between some entities.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/3CWfJ2oh89Q&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/3CWfJ2oh89Q&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Sorry for the missing sound,  will make the sound on the next videos.</p>
<p>Using Wave to create the graph could is interesting because there could be different interpretations between on how the connections are. With Wave it is possible to make them connect to each other.</p>
<p>The userinterface is not the most best, because for every keystroke the gadget is recreated. This makes it quite slow when generating when working with the gadget. A way to workaround this is to remove the instruction line in the beginning.</p>
<p>This robot/gadget show cases how it is  possible to make a connection between the two types.</p>


<p>Related posts:<ol><li><a href='http://www.masteringwave.com/2009/12/wavecalender-4-invity/' rel='bookmark' title='Permanent Link: WaveCalender 4: Invity'>WaveCalender 4: Invity</a> <small> When you are having troubles with managing a large...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-2-poll-gadget/' rel='bookmark' title='Permanent Link: WaveCalender 2: Poll Gadget'>WaveCalender 2: Poll Gadget</a> <small> Often you need to create a poll with somebody...</small></li>
<li><a href='http://www.masteringwave.com/2009/12/wavecalender-16-waveboarder/' rel='bookmark' title='Permanent Link: WaveCalender 16: Waveboarder'>WaveCalender 16: Waveboarder</a> <small> We already covered the WaveBoarder application, which is a...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.masteringwave.com/2009/12/wavecalender-10-graphy-a-way-to-make-connected-graphs-in-wave/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
