<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for André Abt</title>
	<atom:link href="http://www.andre-abt.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andre-abt.com</link>
	<description>Musician &#38; Web Developer</description>
	<lastBuildDate>Thu, 13 Oct 2011 13:11:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on jQuery Animation Queue Buildup Troubles by THEtheChad Elliott</title>
		<link>http://www.andre-abt.com/2009/10/08/jquery-animation-queue-buildup-troubles/comment-page-1/#comment-1472</link>
		<dc:creator>THEtheChad Elliott</dc:creator>
		<pubDate>Thu, 13 Oct 2011 13:11:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1268#comment-1472</guid>
		<description>I ran into the same problem, Andrea ( as I&#039;m sure everyone has ). You&#039;d think that jQuery would solve this issue out of the box, but, alas, it doesn&#039;t. 

I wanted to share my solution with you.

The code I use looks like this:

$(&quot;.infobox_wrapper img&quot;).hover(
   function() {
            $this = $(this);
            $this.nextAll(&quot;h2&quot;).not(&quot;:animated&quot;).animate({ opacity: &quot;1&quot; }, 300, function() {
                     $this.nextAll(&quot;.infobox_text&quot;).not(&quot;:animated&quot;).animate({ height: &quot;220&quot;, opacity: &quot;1&quot;  }, 300);
            });
    },
   function() {
           $this = $(this);
           $next_info = $this.nextAll(&quot;.infobox_text&quot;);
           $prev_h2 = $this.prevAll(&quot;h2&quot;);
           $next_info.animate({ height: &quot;0&quot;, opacity: &quot;0&quot; }, 300, function() {
                     $next_info.clearQueue();
                     $prev_h2.animate({ opacity: &quot;0&quot; }, 300, function(){
                                  $prev_h2.clearQueue();
                     });
           });
    });
});

Essentially, it checks if something is already animated before queuing the start animation and completely clears the queue once the end animation is finished. The reason we have to clear the queue is because more than one end animation can build up.

I like this method better than stop because it lets the entire animation run. Stop halts things mid animation and makes for a choppy experience.</description>
		<content:encoded><![CDATA[<p>I ran into the same problem, Andrea ( as I&#8217;m sure everyone has ). You&#8217;d think that jQuery would solve this issue out of the box, but, alas, it doesn&#8217;t. </p>
<p>I wanted to share my solution with you.</p>
<p>The code I use looks like this:</p>
<p>$(&#8220;.infobox_wrapper img&#8221;).hover(<br />
   function() {<br />
            $this = $(this);<br />
            $this.nextAll(&#8220;h2&#8243;).not(&#8220;:animated&#8221;).animate({ opacity: &#8220;1&#8243; }, 300, function() {<br />
                     $this.nextAll(&#8220;.infobox_text&#8221;).not(&#8220;:animated&#8221;).animate({ height: &#8220;220&#8243;, opacity: &#8220;1&#8243;  }, 300);<br />
            });<br />
    },<br />
   function() {<br />
           $this = $(this);<br />
           $next_info = $this.nextAll(&#8220;.infobox_text&#8221;);<br />
           $prev_h2 = $this.prevAll(&#8220;h2&#8243;);<br />
           $next_info.animate({ height: &#8220;0&#8243;, opacity: &#8220;0&#8243; }, 300, function() {<br />
                     $next_info.clearQueue();<br />
                     $prev_h2.animate({ opacity: &#8220;0&#8243; }, 300, function(){<br />
                                  $prev_h2.clearQueue();<br />
                     });<br />
           });<br />
    });<br />
});</p>
<p>Essentially, it checks if something is already animated before queuing the start animation and completely clears the queue once the end animation is finished. The reason we have to clear the queue is because more than one end animation can build up.</p>
<p>I like this method better than stop because it lets the entire animation run. Stop halts things mid animation and makes for a choppy experience.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Change the Mac OSX 10.6 currency symbol from &#8220;Sfr.&#8221; to &#8220;CHF&#8221; by Nick</title>
		<link>http://www.andre-abt.com/2010/03/11/change-the-mac-osx-10-6-currency-symbol-from-sfr-to-chf/comment-page-1/#comment-1387</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Fri, 09 Sep 2011 15:47:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1354#comment-1387</guid>
		<description>make sure to use &#039;
defaults write .GlobalPreferences AppleICUNumberSymbols -dict 0 &#039;.&#039; 1 &#039;&#039;&#039; 10 &#039;.&#039; 17 &#039;&#039;&#039; 8 &#039;CHF &#039;</description>
		<content:encoded><![CDATA[<p>make sure to use &#8216;<br />
defaults write .GlobalPreferences AppleICUNumberSymbols -dict 0 &#8216;.&#8217; 1 &#8221;&#8217; 10 &#8216;.&#8217; 17 &#8221;&#8217; 8 &#8216;CHF &#8216;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bass Player wanted! by André</title>
		<link>http://www.andre-abt.com/2010/09/16/bass-player-wanted/comment-page-1/#comment-540</link>
		<dc:creator>André</dc:creator>
		<pubDate>Tue, 18 Jan 2011 17:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1609#comment-540</guid>
		<description>Danke wir haben inzwischen jemanden gefunden!</description>
		<content:encoded><![CDATA[<p>Danke wir haben inzwischen jemanden gefunden!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bass Player wanted! by fritz fehlmann</title>
		<link>http://www.andre-abt.com/2010/09/16/bass-player-wanted/comment-page-1/#comment-461</link>
		<dc:creator>fritz fehlmann</dc:creator>
		<pubDate>Sat, 11 Dec 2010 11:44:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1609#comment-461</guid>
		<description>falls du bass und drum suchst ....
fritz fehlmann / drum
detlef oberhofer / bass
Triple M productions
wäre vieleicht eine option
gruss fritz</description>
		<content:encoded><![CDATA[<p>falls du bass und drum suchst &#8230;.<br />
fritz fehlmann / drum<br />
detlef oberhofer / bass<br />
Triple M productions<br />
wäre vieleicht eine option<br />
gruss fritz</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Netbeans 6.9.1 &#8211; still my PHP IDE of choice by André</title>
		<link>http://www.andre-abt.com/2010/09/15/netbeans-6-9-1-still-my-php-ide-of-choice/comment-page-1/#comment-360</link>
		<dc:creator>André</dc:creator>
		<pubDate>Tue, 28 Sep 2010 11:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1535#comment-360</guid>
		<description>Sorry my mistake.. yep you&#039;re right: SFTP (SSH File Transfer Protocol) not FTPS.</description>
		<content:encoded><![CDATA[<p>Sorry my mistake.. yep you&#8217;re right: SFTP (SSH File Transfer Protocol) not FTPS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Netbeans 6.9.1 &#8211; still my PHP IDE of choice by chris</title>
		<link>http://www.andre-abt.com/2010/09/15/netbeans-6-9-1-still-my-php-ide-of-choice/comment-page-1/#comment-359</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Tue, 28 Sep 2010 10:40:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1535#comment-359</guid>
		<description>FTPS integration ? am I missing something ?

I just tried it and it does not have ftp over ssl. Just FTP and SFTP.</description>
		<content:encoded><![CDATA[<p>FTPS integration ? am I missing something ?</p>
<p>I just tried it and it does not have ftp over ssl. Just FTP and SFTP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Change the Mac OSX 10.6 currency symbol from &#8220;Sfr.&#8221; to &#8220;CHF&#8221; by André</title>
		<link>http://www.andre-abt.com/2010/03/11/change-the-mac-osx-10-6-currency-symbol-from-sfr-to-chf/comment-page-1/#comment-238</link>
		<dc:creator>André</dc:creator>
		<pubDate>Sat, 17 Jul 2010 07:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1354#comment-238</guid>
		<description>cheers for that!</description>
		<content:encoded><![CDATA[<p>cheers for that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Change the Mac OSX 10.6 currency symbol from &#8220;Sfr.&#8221; to &#8220;CHF&#8221; by Vincent</title>
		<link>http://www.andre-abt.com/2010/03/11/change-the-mac-osx-10-6-currency-symbol-from-sfr-to-chf/comment-page-1/#comment-237</link>
		<dc:creator>Vincent</dc:creator>
		<pubDate>Sat, 17 Jul 2010 00:19:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1354#comment-237</guid>
		<description>The fully correct command line would be:

defaults write .GlobalPreferences AppleICUNumberSymbols -dict 0 &#039;.&#039; 1 &#039;’&#039; 10 &#039;.&#039; 17 &#039;’&#039; 8 &#039;CHF &#039;

Best wishes,

Vincent</description>
		<content:encoded><![CDATA[<p>The fully correct command line would be:</p>
<p>defaults write .GlobalPreferences AppleICUNumberSymbols -dict 0 &#8216;.&#8217; 1 &#8216;’&#8217; 10 &#8216;.&#8217; 17 &#8216;’&#8217; 8 &#8216;CHF &#8216;</p>
<p>Best wishes,</p>
<p>Vincent</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NetBeans 6.8 for PHP Development by André</title>
		<link>http://www.andre-abt.com/2009/11/28/netbeans-6-8-for-php-development/comment-page-1/#comment-56</link>
		<dc:creator>André</dc:creator>
		<pubDate>Fri, 15 Jan 2010 11:18:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1317#comment-56</guid>
		<description>Hallo Markus

Gibt&#039;s meines Wissens nach auch nicht. Du kannst aber zum Beispiel einfach jQuery in einen Unterordner Deines Projekts kopieren. NetBeans erkennt die Library und stellt Dir automatisch Code-Completion und PHP Docs zur Verfügung... - oder meinst Du was anderes??</description>
		<content:encoded><![CDATA[<p>Hallo Markus</p>
<p>Gibt&#8217;s meines Wissens nach auch nicht. Du kannst aber zum Beispiel einfach jQuery in einen Unterordner Deines Projekts kopieren. NetBeans erkennt die Library und stellt Dir automatisch Code-Completion und PHP Docs zur Verfügung&#8230; &#8211; oder meinst Du was anderes??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NetBeans 6.8 for PHP Development by Markus</title>
		<link>http://www.andre-abt.com/2009/11/28/netbeans-6-8-for-php-development/comment-page-1/#comment-55</link>
		<dc:creator>Markus</dc:creator>
		<pubDate>Thu, 14 Jan 2010 09:22:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.andre-abt.com/?p=1317#comment-55</guid>
		<description>Hallo - ich habe eben deinen Beitrag vom 28. gelesen und eine Frage - villeihct kannst du mir weiterhelfen?! Ich nutzte auch Netbeans 6.8 kann aber nirgends die Einstellungen für das Zuladen von Javascript Libraries finden. Gruß Markus</description>
		<content:encoded><![CDATA[<p>Hallo &#8211; ich habe eben deinen Beitrag vom 28. gelesen und eine Frage &#8211; villeihct kannst du mir weiterhelfen?! Ich nutzte auch Netbeans 6.8 kann aber nirgends die Einstellungen für das Zuladen von Javascript Libraries finden. Gruß Markus</p>
]]></content:encoded>
	</item>
</channel>
</rss>

