<?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>Helmut Granda &#187; AS Burst</title>
	<atom:link href="http://www.helmutgranda.com/category/as-burst/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.helmutgranda.com</link>
	<description>learning through interaction</description>
	<lastBuildDate>Mon, 19 Jul 2010 15:01:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>AS3 Convert function name on the fly</title>
		<link>http://www.helmutgranda.com/2010/07/15/as3-convert-function-name-on-the-fly/</link>
		<comments>http://www.helmutgranda.com/2010/07/15/as3-convert-function-name-on-the-fly/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 20:40:40 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/2010/07/15/as3-convert-function-name-on-the-fly/</guid>
		<description><![CDATA[Why would you want to do this? Not sure but a sample here: ActionScript: var _x = 100; function a() : void { &#160; &#160;trace(&#34;\t\tCalled from A = _x&#34; + _x + &#34;\n&#34;); &#160; &#160; } var b = function (): void { &#160; &#160;trace(&#34;\t\tCalled from B \n&#34;); } trace(&#34;Do a regular B call\n&#34;); b(); [...]]]></description>
			<content:encoded><![CDATA[<p>Why would you want to do this? Not sure but a sample here:</p>
<div class="syntax_hilite"><strong>ActionScript:</strong>
<div id="as-2">
<div>
<ol style="">var _x = 100;</p>
<p>function a() : void<br />
{<br />
&nbsp; &nbsp;trace(&quot;\t\tCalled from A = _x&quot; + _x + &quot;\n&quot;);<br />
&nbsp; &nbsp;<br />
}</p>
<p>var b = function (): void<br />
{<br />
&nbsp; &nbsp;trace(&quot;\t\tCalled from B \n&quot;);<br />
}</p>
<p>trace(&quot;Do a regular B call\n&quot;);<br />
b();</p>
<p>trace(&quot;Convert B to A\n&quot;);<br />
b = a;</p>
<p>trace(&quot;B Converted\n&quot;);<br />
b();<br />
trace(&quot;Do a regular A call\n&quot;);<br />
a();</ol>
</div>
</div>
</div>
<p>Result</p>
<div class="syntax_hilite"><strong>ActionScript:</strong>
<div id="as-3">
<div>
<ol style="">Do a regular B call</p>
<p>&nbsp; &nbsp;&nbsp; &nbsp;Called from B </p>
<p>Convert B to A</p>
<p>B Converted</p>
<p>&nbsp; &nbsp;&nbsp; &nbsp;Called from A = _x100</p>
<p>Do a regular A call</p>
<p>&nbsp; &nbsp;&nbsp; &nbsp;Called from A = _x100</ol>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2010/07/15/as3-convert-function-name-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZendFramework FollowSymLinks or SymLinksIfOwnerMatch error in XAMPP</title>
		<link>http://www.helmutgranda.com/2010/07/13/zendframework-followsymlinks-or-symlinksifownermatch-error-in-xampp/</link>
		<comments>http://www.helmutgranda.com/2010/07/13/zendframework-followsymlinks-or-symlinksifownermatch-error-in-xampp/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 21:20:15 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/2010/07/13/zendframework-followsymlinks-or-symlinksifownermatch-error-in-xampp/</guid>
		<description><![CDATA[Problem: You may be getting a 403 error and if you look at the logs you should find something similar to the following: [error] [client 127.0.0.1] Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden: /Applications/xampp/xamppfiles/htdocs/project/public/index.php Solution: In your .htaccess file add the following line to the begining of the file: [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong><br />
You may be getting a 403 error and if you look at the logs you should find something similar to the following:</p>
<p>[error] [client 127.0.0.1] Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden: /Applications/xampp/xamppfiles/htdocs/project/public/index.php</p>
<p>Solution:</p>
<p>In your .htaccess file add the following line to the begining of the file:</p>
<div class="syntax_hilite"><strong>PHP:</strong>
<div id="php-7">
<div>
<ol style="">Options +FollowSymLinks</ol>
</div>
</div>
</div>
<p>ZendFramework .htaccess ships with the following as default:</p>
<div class="syntax_hilite"><strong>PHP:</strong>
<div id="php-8">
<div>
<ol style="">RewriteEngine On<br />
RewriteCond %{REQUEST_FILENAME} -s [OR]<br />
RewriteCond %{REQUEST_FILENAME} -l [OR]<br />
RewriteCond %{REQUEST_FILENAME} -d<br />
RewriteRule ^.*$ - [NC,L]<br />
RewriteRule ^.*$ index.php [NC,L]</ol>
</div>
</div>
</div>
<p>Adding the two lines above fixes the problem. So the file should look like this:</p>
<div class="syntax_hilite"><strong>PHP:</strong>
<div id="php-9">
<div>
<ol style="">Options +FollowSymLinks<br />
RewriteEngine On<br />
RewriteCond %{REQUEST_FILENAME} -s [OR]<br />
RewriteCond %{REQUEST_FILENAME} -l [OR]<br />
RewriteCond %{REQUEST_FILENAME} -d<br />
RewriteRule ^.*$ - [NC,L]<br />
RewriteRule ^.*$ index.php [NC,L]</ol>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2010/07/13/zendframework-followsymlinks-or-symlinksifownermatch-error-in-xampp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Builder: Changing BorderContainer color during runtime.</title>
		<link>http://www.helmutgranda.com/2010/04/29/flash-builder-changing-bordercontainer-color-during-runtime/</link>
		<comments>http://www.helmutgranda.com/2010/04/29/flash-builder-changing-bordercontainer-color-during-runtime/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 20:59:55 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/2010/04/29/flash-builder-changing-bordercontainer-color-during-runtime/</guid>
		<description><![CDATA[I got myself in a mess trying to change the background color of the component during runtime and after different trial and error finally I figured out that it had to do with this declaration: ActionScript: &#60;s :backgroundFill&#62; &#160; &#160; &#160; &#160;&#60;/s&#62;&#60;s :SolidColor color=&#34;#000000&#34; id=&#34;defaultColor&#34;&#62;&#60;/s&#62; &#160; &#160; Once removed I was able to use ActionScript: [...]]]></description>
			<content:encoded><![CDATA[<p>I got myself in a mess trying to change the background color of the component during runtime and after different trial and error finally I figured out that it had to do with this declaration:</p>
<div class="syntax_hilite"><strong>ActionScript:</strong>
<div id="as-12">
<div>
<ol style="">&lt;s :backgroundFill&gt;<br />
&nbsp; &nbsp;<br />
&nbsp; &nbsp;&lt;/s&gt;&lt;s :SolidColor color=&quot;#000000&quot; id=&quot;defaultColor&quot;&gt;&lt;/s&gt;<br />
&nbsp; &nbsp;
</ol>
</div>
</div>
</div>
<p>Once removed I was able to use</p>
<div class="syntax_hilite"><strong>ActionScript:</strong>
<div id="as-13">
<div>
<ol style="">this.setStyle(&quot;backgroundColor&quot;,0x00afe1);</ol>
</div>
</div>
</div>
<p>I don't really understand why having the backgroundFill declaration within the body of the component, it would affect the behavior to the point that I wasn't able to change the color of the object but when I find the explanation I will for sure post it here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2010/04/29/flash-builder-changing-bordercontainer-color-during-runtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command line shortcuts Mac OS X</title>
		<link>http://www.helmutgranda.com/2010/03/09/command-line-shortcuts-mac-os-x/</link>
		<comments>http://www.helmutgranda.com/2010/03/09/command-line-shortcuts-mac-os-x/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 20:26:39 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/?p=434</guid>
		<description><![CDATA[Ctrl + A: Go to the beginning of the line you are currently typing on Ctrl + E: Go to the end of the line you are currently typing on Ctrl + L: Clears the Screen, similar to the clear command Ctrl + U: Clears the line before the cursor position. If you are at [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Ctrl + A</strong>:	Go to the beginning of the line you are currently typing on<br />
<strong>Ctrl + E</strong>:	Go to the end of the line you are currently typing on<br />
<strong>Ctrl + L</strong>:	Clears the Screen, similar to the clear command<br />
<strong>Ctrl + U</strong>:	Clears the line before the cursor position. If you are at the end of the line, clears the entire line.<br />
<strong>Ctrl + H</strong>:	Same as backspace<br />
<strong>Ctrl + R</strong>:	Let’s you search through previously used commands<br />
<strong>Ctrl + C</strong>:	Kill whatever you are running<br />
<strong>Ctrl + D</strong>:	Exit the current shell<br />
<strong>Ctrl + Z</strong>:	Puts whatever you are running into a suspended background process. fg restores it.<br />
<strong>Ctrl + W</strong>:	Delete the word before the cursor<br />
<strong>Ctrl + K</strong>:	Clear the line after the cursor<br />
<strong>Ctrl + T</strong>:	Swap the last two characters before the cursor<br />
<strong>Esc + T</strong>:	Swap the last two words before the cursor</p>
<p><em>src: http://osxdaily.com/2006/12/19/command-line-keyboard-shortcuts-for-mac-os-x/</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2010/03/09/command-line-shortcuts-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why You Can&#8217;t Work at Work</title>
		<link>http://www.helmutgranda.com/2010/03/02/why-you-cant-work-at-work/</link>
		<comments>http://www.helmutgranda.com/2010/03/02/why-you-cant-work-at-work/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 20:58:52 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/?p=427</guid>
		<description><![CDATA[As agencies get bigger and deadlines shorter it becomes harder to work at work. Some people even opt to work away from the office during crunch time due to the many distractions that are created at work.]]></description>
			<content:encoded><![CDATA[<p><script src="http://video.bigthink.com/player.js?height=288&#038;autoplay=0&#038;width=512&#038;deepLinkEmbedCode=03NG42MTqVnn6kOnuDv8k_iDC2HEGniT&#038;embedCode=03NG42MTqVnn6kOnuDv8k_iDC2HEGniT"></script></p>
<p>As agencies get bigger and deadlines shorter it becomes harder to work at work. Some people even opt to work away from the office during crunch time due to the many distractions that are created at work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2010/03/02/why-you-cant-work-at-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SMW Part 04 Crowdsourcery Potions 101</title>
		<link>http://www.helmutgranda.com/2010/02/02/smw-part-04-crowdsourcery-potions-101/</link>
		<comments>http://www.helmutgranda.com/2010/02/02/smw-part-04-crowdsourcery-potions-101/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 04:29:07 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/?p=423</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340" id="preview-player1" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="movie" value="http://cdn.livestream.com/grid/LSPlayer.swf?channel=smw_newyork&amp;clip=pla_2a03f485-cafc-4804-99f5-0c12d351ae9e&amp;color=0xe7e7e7&amp;autoPlay=false&amp;mute=false"></param><param name="allowScriptAccess" value="never"></param><param name="allowFullScreen" value="true"></param><embed id="preview-player" src="http://cdn.livestream.com/grid/LSPlayer.swf?channel=smw_newyork&amp;clip=pla_2a03f485-cafc-4804-99f5-0c12d351ae9e&amp;color=0xe7e7e7&amp;autoPlay=false&amp;mute=false" width="560" height="340" allowScriptAccess="never" allowFullScreen="true" type="application/x-shockwave-flash"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2010/02/02/smw-part-04-crowdsourcery-potions-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone applications built with Flash</title>
		<link>http://www.helmutgranda.com/2010/02/01/iphone-applications-built-with-flash/</link>
		<comments>http://www.helmutgranda.com/2010/02/01/iphone-applications-built-with-flash/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 04:16:01 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/?p=418</guid>
		<description><![CDATA[If the mountain doesn't come to you, then you must go to the mountain. A lot of people talking how Flash is dying but it is nice to see how at least Adobe is helping current Flash Developers to use Flash CS5 to create applications for iPhone, iTouch and iPad.]]></description>
			<content:encoded><![CDATA[<p>If the mountain doesn't come to you, then you must go to the mountain. A lot of people talking how Flash is dying but it is nice to see how at least Adobe is helping current Flash Developers to use Flash CS5 to create applications for iPhone, iTouch and iPad.</p>
<p><object width="525" height="356"><param name="movie" value="http://tv.adobe.com/assets//swf/player.swf"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="FlashVars" value="fileID=5039&#038;context=76&#038;embeded=true&#038;environment=production"></param><embed src="http://tv.adobe.com/assets//swf/player.swf" flashvars="fileID=5039&#038;context=76&#038;embeded=true&#038;environment=production" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="525" height="356"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2010/02/01/iphone-applications-built-with-flash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use SVN with FDT</title>
		<link>http://www.helmutgranda.com/2010/01/27/use-svn-with-fdt/</link>
		<comments>http://www.helmutgranda.com/2010/01/27/use-svn-with-fdt/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 08:43:26 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/?p=413</guid>
		<description><![CDATA[Quick way to set up a SVN Repositroy in FDT. Instructions Open the SVN Repository Exploring Perspective Add an new SVN Repository Return to the FDT Perspective Select the Project within the Flash Explorer that you wish to link to the new Repository Scroll down to Team and Select Share Project Choose SVN from the Share Project dialog [...]]]></description>
			<content:encoded><![CDATA[<p>Quick way to set up a SVN Repositroy in FDT.</p>
<blockquote>
<h3 style="font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, sans-serif; font-weight: bold; font-size: 1.3em; color: #333333; text-decoration: none; margin-top: 30px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px;">Instructions</h3>
<ol style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 35px; margin: 0px;">
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Open the <em>SVN Repository Exploring</em> Perspective</li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Add an new SVN Repository</li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Return to the FDT Perspective</li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Select the Project within the Flash Explorer that you wish to link to the new Repository</li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Scroll down to Team and Select <em>Share Project</em></li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Choose <em>SVN</em> from the Share Project dialog box</li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Choose the Repository from the supplied list</li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Enter the project name you want, and Finish</li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Tidy up those files with ? marks that you do not want committed, by adding to svn:ignore</li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">Commit the project</li>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">You should see each folder with a little ‘database’ symbol, without any white stars which means that that everything is perfectly synchronized</li>
</ol>
<li style="list-style-type: decimal; list-style-position: outside; list-style-image: initial; margin-top: 7px; margin-right: 0px; margin-bottom: 8px; margin-left: 10px; padding: 0px;">The top of my project has a white star, usually a commit and update sorts this out, but not always! (A topic for a new Blog!)</li>
</blockquote>
<div>source:  <a href="http://factornine.wordpress.com/2009/06/11/setting-up-svn-for-an-existing-fdt-project/" target="_blank">http://factornine.wordpress.com</a></div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2010/01/27/use-svn-with-fdt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boarding Pass Fail from Delta</title>
		<link>http://www.helmutgranda.com/2010/01/04/boarding-pass-fail-from-delta/</link>
		<comments>http://www.helmutgranda.com/2010/01/04/boarding-pass-fail-from-delta/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 22:29:17 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/2010/01/04/boarding-pass-fail-from-delta/</guid>
		<description><![CDATA[Tyler Thompson had a very discomforting experience with the Delta Boarding passes and he went ahead and took the time to make different designs that on his point of view meets the requirements of the customers. Here you can see the first design Tyler did: And here you can see a Delta boarding pass similar [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.newtoyork.com/about/" target="_blank">Tyler Thompson</a> had a very discomforting experience with the <a href="http://passfail.squarespace.com/" targe="_blank">Delta Boarding passes</a> and he went ahead and took the time to make different designs that on his point of view meets the requirements of the customers.</p>
<h3>Here you can see the first design Tyler did:</h3>
<p><img src="http://passfail.squarespace.com/storage/boardingpass.png" /></p>
<h3>And here you can see a Delta boarding pass similar to what Tyler used:</h3>
<p><img src="http://dailyreceipts.com/receipts/d/23354-1/delta_1506_boarding_pass_09.jpg" /><br />
<i>to see the real pass he was handed visit his site</i></p>
<p>I personally haven't done a lot of traveling but on the few flights I have had in the past years i can easily identify the gate and seat number in the boarding pass. At first glance it is difficult to distinguish the numbers in the suggested design since they are aligned one after the other on a black strip and they all look like a continuous line rather than a separate entity.</p>
<p>Some other things that need to be kept in mind when designed to such a broader audience is</p>
<h3>Languages</h3>
<p>Is the design going to be translated in different languages and and do we have enough room in case they are printed on a different language?<br />
Is the user at any time have to read the boarding pass left to right, is the design going to fit that requirement?</p>
<h3>Ink</h3>
<p>Will the company have to spend millions of dollars more in order to use color versus only one color ink?</p>
<h3>Training</h3>
<p>How many men hours do we need to train people so they know exactly where the new information will be located on the new boarding passes?<br />
How long do we expect everyone to get used to it and how long do we expect people to ask why it has changed and how to find the information?</p>
<h3>Legibility</h3>
<p>Is it legible to everyone?<br />
Can everyone read the numbers?</p>
<h3>Finally</h3>
<p>Don't get me wrong, the suggested design looks "pretty" but how many times after you went through the inspection point the first thing you look at is the Flight Number? This is a boarding pass not a buss ticket. Once you have gone though security and you look at your ticket, What is the first thing you look at? I personally look at the Gate Number so that I can figure out where to go from there. I don't see people walking by the isles trying to see the flight number on the plane to identify it.</p>
<p>Interestingly enough Tyler's inspiration for his post was the post by <a href="http://dustincurtis.com/dear_american_airlines.html" target="_blank">Dustin Curtis in regards to the American Airlines website horror experience he had while trying to book a flight</a> which as a consequence one of the UX Designers had his contract terminated due to him taking the time to explain the procedures of large corporations and the reasons behind the "ugly" design though corporate email.</p>
<p>I say I find this interesting because if you follow the post from Dustin you can learn a lot and understand why things are done the way they are and is not as easy as to turn on and off a switch but it is a lot more involved than that. This is part of the response from the UX Designer</p>
<p><quote>Let me explain. The group running AA.com consists of at least 200 people spread out amongst many different groups, including, for example, QA, product planning, business analysis, code development, site operations, project planning, and user experience. We have a lot of people touching the site, and a lot more with their own vested interests in how the site presents its content and functionality. Fortunately, much of the public-facing functionality is funneled through UX, so any new features you see on the site should have been vetted through and designed by us before going public.</p>
<p>However, there are large exceptions. For example, our Interactive Marketing group designs and implements fare sales and specials (and doesn’t go through us to do it), and the Publishing group pushes content without much interaction with us… Oh, and don’t forget the AAdvantage team (which for some reason, runs its own little corner of the site) or the international sites (which have a lot of autonomy in how their domains are run)… Anyway, I guess what I’m saying is that AA.com is a huge corporate undertaking with a lot of tentacles that reach into a lot of interests. It’s not small, by any means.</quote></p>
<p>So the ideas of revamping a site or updating the way a boarding pass is great but keep in mind it is just more than "I like it this way" call by one person but it is a team and layer of contributors that you have to consult before making the final call.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2010/01/04/boarding-pass-fail-from-delta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retweeting private Tweets</title>
		<link>http://www.helmutgranda.com/2009/11/24/retweeting-private-tweets/</link>
		<comments>http://www.helmutgranda.com/2009/11/24/retweeting-private-tweets/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 05:06:54 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[AS Burst]]></category>
		<category><![CDATA[Retweet]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/?p=396</guid>
		<description><![CDATA[So now that you are part of the "VIP" crowd and you are one of those special friends that is allowed to see your friend's private tweets, let me ask you. Is it acceptable for you to ReTweet something that is has been marked as private? After all it was private to start with but [...]]]></description>
			<content:encoded><![CDATA[<p>So now that you are part of the "VIP" crowd and you are one of those special friends that is allowed to see your friend's private tweets, let me ask you. Is it acceptable for you to ReTweet something that is has been marked as private? After all it was private to start with but at the same time it could be some nice piece of information that you want to share with the word and you want to give credit to your friend.</p>
<p>It is as easy as writing "RE" in front of your ReTweet you are passing along or putting a (via @fancyNameGoesHere) at the end of it and it is again out in the open and the "privacy" is out of the window.</p>
<p>So I say, think accordingly before you ReTweet those private Tweets.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2009/11/24/retweeting-private-tweets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
