<?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 Infinity Web Creations</title>
	<atom:link href="http://www.infinitywebcreations.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.infinitywebcreations.com</link>
	<description>The Possibilities Are Endless</description>
	<lastBuildDate>Sat, 25 Jun 2011 17:34:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Basecamp Alternative by Infinity Web Creations &#187; Blog Archive &#187; InfinityTracker entering BETA - The Possibilities Are Endless</title>
		<link>http://www.infinitywebcreations.com/2011/02/basecamp-alternative/#comment-106</link>
		<dc:creator>Infinity Web Creations &#187; Blog Archive &#187; InfinityTracker entering BETA - The Possibilities Are Endless</dc:creator>
		<pubDate>Sat, 25 Jun 2011 17:34:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=112#comment-106</guid>
		<description>[...] I mentioned in February, I was looking for a Basecamp alternative. I looked into several options and spent a LOT of time [...]</description>
		<content:encoded><![CDATA[<p>[...] I mentioned in February, I was looking for a Basecamp alternative. I looked into several options and spent a LOT of time [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Create a Throbbing/Pulsing Image Effect With jQuery by Mike</title>
		<link>http://www.infinitywebcreations.com/2011/01/how-to-create-a-throbbingpulsing-image-effect-with-jquery/#comment-104</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 18 Jun 2011 02:26:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=73#comment-104</guid>
		<description>Thanks for sharing, Zane! Converting it into a jQuery plugin is definitely another way you could run with it. If it&#039;s in plugin form, though, you should expand upon it to allow the coder to specify the settings, falling back on the defaults if necessary (opacity, durations). :)</description>
		<content:encoded><![CDATA[<p>Thanks for sharing, Zane! Converting it into a jQuery plugin is definitely another way you could run with it. If it&#8217;s in plugin form, though, you should expand upon it to allow the coder to specify the settings, falling back on the defaults if necessary (opacity, durations). <img src='http://www.infinitywebcreations.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Create a Throbbing/Pulsing Image Effect With jQuery by ZaneHooper.com</title>
		<link>http://www.infinitywebcreations.com/2011/01/how-to-create-a-throbbingpulsing-image-effect-with-jquery/#comment-103</link>
		<dc:creator>ZaneHooper.com</dc:creator>
		<pubDate>Sat, 18 Jun 2011 02:20:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=73#comment-103</guid>
		<description>Even better:
&#160;
&lt;code&gt;$(function(){&lt;/code&gt;
&lt;code&gt;$.extend($.fn.pulse = function(){&lt;/code&gt;
&lt;code&gt;var minOpacity = .33;&lt;/code&gt;
&lt;code&gt;var fadeOutDuration = 400;&lt;/code&gt;
&lt;code&gt;var fadeInDuration = 400;&lt;/code&gt;
&lt;code&gt;$(this).attr( &#039;pulsing&#039;, &#039;y&#039; );&lt;/code&gt;
&#160;
&lt;code&gt;$(this).animate({&lt;/code&gt;
&lt;code&gt;opacity: minOpacity&lt;/code&gt;
&lt;code&gt;}, fadeOutDuration, function() {&lt;/code&gt;
&lt;code&gt;$(this).animate({&lt;/code&gt;
&lt;code&gt;opacity: 1&lt;/code&gt;
&lt;code&gt;}, fadeInDuration, function() {&lt;/code&gt;
&lt;code&gt;if( $(this).attr(&#039;pulsing&#039;) == &#039;y&#039; ) $(this).pulse();&lt;/code&gt;
&lt;code&gt;})&lt;/code&gt;
&lt;code&gt;});&lt;/code&gt;
&lt;code&gt;return $(this);&lt;/code&gt;
&lt;code&gt;});&lt;/code&gt;
&lt;code&gt;$.extend($.fn.stopPulse = function(){&lt;/code&gt;
&lt;code&gt;$(this).attr( &#039;pulsing&#039;, &#039;&#039; ).stop(true,true).animate({opacity:1});&lt;/code&gt;
&lt;code&gt;});&lt;/code&gt;
&#160;
&lt;code&gt;$(&#039;.pulse_image&#039;).hover(function(){ $(this).pulse() },function(){ $(this).stopPulse() });&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Even better:<br />
&nbsp;<br />
<code>$(function(){</code><br />
<code>$.extend($.fn.pulse = function(){</code><br />
<code>var minOpacity = .33;</code><br />
<code>var fadeOutDuration = 400;</code><br />
<code>var fadeInDuration = 400;</code><br />
<code>$(this).attr( &#039;pulsing&#039;, &#039;y&#039; );</code><br />
&nbsp;<br />
<code>$(this).animate({</code><br />
<code>opacity: minOpacity</code><br />
<code>}, fadeOutDuration, function() {</code><br />
<code>$(this).animate({</code><br />
<code>opacity: 1</code><br />
<code>}, fadeInDuration, function() {</code><br />
<code>if( $(this).attr(&#039;pulsing&#039;) == &#039;y&#039; ) $(this).pulse();</code><br />
<code>})</code><br />
<code>});</code><br />
<code>return $(this);</code><br />
<code>});</code><br />
<code>$.extend($.fn.stopPulse = function(){</code><br />
<code>$(this).attr( &#039;pulsing&#039;, &#039;&#039; ).stop(true,true).animate({opacity:1});</code><br />
<code>});</code><br />
&nbsp;<br />
<code>$(&#039;.pulse_image&#039;).hover(function(){ $(this).pulse() },function(){ $(this).stopPulse() });</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basecamp Alternative by Mike</title>
		<link>http://www.infinitywebcreations.com/2011/02/basecamp-alternative/#comment-73</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 31 Mar 2011 19:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=112#comment-73</guid>
		<description>&lt;p&gt;Thanks, Spencer! Checking that out right now.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Thanks, Spencer! Checking that out right now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basecamp Alternative by spencer</title>
		<link>http://www.infinitywebcreations.com/2011/02/basecamp-alternative/#comment-72</link>
		<dc:creator>spencer</dc:creator>
		<pubDate>Thu, 31 Mar 2011 19:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=112#comment-72</guid>
		<description>&lt;a href=&quot;http://insight.ly/&quot; rel=&quot;nofollow&quot;&gt;http://insight.ly/&lt;/a&gt;&#160;is a pretty cool google app that integrates with gmail very well.</description>
		<content:encoded><![CDATA[<p><a href="http://insight.ly/" rel="nofollow">http://insight.ly/</a>&nbsp;is a pretty cool google app that integrates with gmail very well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basecamp Alternative by Mike</title>
		<link>http://www.infinitywebcreations.com/2011/02/basecamp-alternative/#comment-33</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 28 Feb 2011 21:19:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=112#comment-33</guid>
		<description>Thanks, Peter! I&#039;ll check that one out as well.</description>
		<content:encoded><![CDATA[<p>Thanks, Peter! I&#8217;ll check that one out as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basecamp Alternative by peter</title>
		<link>http://www.infinitywebcreations.com/2011/02/basecamp-alternative/#comment-32</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Mon, 28 Feb 2011 21:19:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=112#comment-32</guid>
		<description>Hi Mike,
I am a freelancer and I use http://www.manamyco.com to track my time and manage tasks. Hope this helps.
- Peter</description>
		<content:encoded><![CDATA[<p>Hi Mike,<br />
I am a freelancer and I use <a href="http://www.manamyco.com" rel="nofollow">http://www.manamyco.com</a> to track my time and manage tasks. Hope this helps.<br />
- Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basecamp Alternative by Olga</title>
		<link>http://www.infinitywebcreations.com/2011/02/basecamp-alternative/#comment-29</link>
		<dc:creator>Olga</dc:creator>
		<pubDate>Fri, 25 Feb 2011 07:41:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=112#comment-29</guid>
		<description>Always welcome!in case of any questions- please feel free to ask me via Olga.Sorokina@teamlab.com</description>
		<content:encoded><![CDATA[<p>Always welcome!in case of any questions- please feel free to ask me via <a href="mailto:Olga.Sorokina@teamlab.com">Olga.Sorokina@teamlab.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basecamp Alternative by Mike</title>
		<link>http://www.infinitywebcreations.com/2011/02/basecamp-alternative/#comment-27</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 24 Feb 2011 16:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=112#comment-27</guid>
		<description>&lt;p&gt;I&#039;ve never heard of TeamLab before, but just watched the intro/demo video. Definitely looks like a viable Basecamp alternative... thanks for stopping by and taking time to tell us about TeamLab! Definitely going to try it out.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I&#39;ve never heard of TeamLab before, but just watched the intro/demo video. Definitely looks like a viable Basecamp alternative&#8230; thanks for stopping by and taking time to tell us about TeamLab! Definitely going to try it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basecamp Alternative by Olga</title>
		<link>http://www.infinitywebcreations.com/2011/02/basecamp-alternative/#comment-26</link>
		<dc:creator>Olga</dc:creator>
		<pubDate>Thu, 24 Feb 2011 09:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.infinitywebcreations.com/?p=112#comment-26</guid>
		<description>Did you try TeamLab?0 http://www.teamlab.com - a free, open source alternative to basecamp.
Here&#039;s its listing on Source fourge http://sourceforge.net/projects/teamlab
TeamLab overview - http://www.techi.com/2011/02/teamlab-free-social-networking-for-your-business/</description>
		<content:encoded><![CDATA[<p>Did you try TeamLab?0 <a href="http://www.teamlab.com" rel="nofollow">http://www.teamlab.com</a> &#8211; a free, open source alternative to basecamp.<br />
Here&#039;s its listing on Source fourge <a href="http://sourceforge.net/projects/teamlab" rel="nofollow">http://sourceforge.net/projects/teamlab</a><br />
TeamLab overview &#8211; <a href="http://www.techi.com/2011/02/teamlab-free-social-networking-for-your-business/" rel="nofollow">http://www.techi.com/2011/02/teamlab-free-social-networking-for-your-business/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

