<?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"
	>

<channel>
	<title>FluentArt</title>
	<atom:link href="http://fluentart.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fluentart.com</link>
	<description>Animation Design Programming</description>
	<pubDate>Tue, 24 Jun 2008 14:03:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Work in progress: Kid in suit character</title>
		<link>http://fluentart.com/2008/06/12/work-in-progress-kid-in-suit-character/</link>
		<comments>http://fluentart.com/2008/06/12/work-in-progress-kid-in-suit-character/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 10:54:53 +0000</pubDate>
		<dc:creator>Rouan van der Ende</dc:creator>
		
		<category><![CDATA[Work in progress]]></category>

		<guid isPermaLink="false">http://fluentart.com/?p=106</guid>
		<description><![CDATA[Had some free time and wanted to build a character from start to finish so I can touch up on my rusty rigging/char. animation skills. Think this one's gonna be fun to play around with!

]]></description>
			<content:encoded><![CDATA[<p>Had some free time and wanted to build a character from start to finish so I can touch up on my rusty rigging/char. animation skills. Think this one's gonna be fun to play around with!</p>
<p><img src="http://fluentart.com/files/SuitCharWeb.jpg"></p>
]]></content:encoded>
			<wfw:commentRss>http://fluentart.com/2008/06/12/work-in-progress-kid-in-suit-character/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Howto: Maya scripted animation with MEL</title>
		<link>http://fluentart.com/2008/04/29/howto-maya-scripted-animation-with-mel/</link>
		<comments>http://fluentart.com/2008/04/29/howto-maya-scripted-animation-with-mel/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 20:31:07 +0000</pubDate>
		<dc:creator>Rouan van der Ende</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[howto]]></category>

		<category><![CDATA[maya]]></category>

		<category><![CDATA[mel]]></category>

		<guid isPermaLink="false">http://fluentart.com/?p=102</guid>
		<description><![CDATA[
This is basicly the same code I used for the old video I posted. Since then I've received a couple of requests on how to get that code to work. So I've finally fixed it up a bit and made it a bit more user friendly.
Download the Maya 2008 SP1 project files: Melanim.rar
Download the code [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/9K2mZ1WVNqA&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/9K2mZ1WVNqA&amp;hl=en" wmode="transparent"></embed></object></p>
<p>This is basicly the same code I used for the <a href="http://fluentart.com/2007/07/20/mel-infectious-animation/">old video</a> I posted. Since then I've received a couple of requests on how to get that code to work. So I've finally fixed it up a bit and made it a bit more user friendly.</p>
<p><strong>Download the Maya 2008 SP1 project files:</strong> <a href="http://fluentart.com/wp-content/uploads/2008/04/melanim.rar">Melanim.rar</a></p>
<p><strong>Download the code in txt format:</strong> <a href="http://fluentart.com/wp-content/uploads/2008/04/infectiousmelcode.txt">infectiousmelcode.txt</a></p>
<div id="code">
<pre class="cpp"><span style="color: #0000ff;">int</span> $startnum = <span style="color: #0000dd;">1</span>;
<span style="color: #0000ff;">int</span> $endnum = <span style="color: #0000dd;">125</span>;
<span style="color: #0000ff;">int</span> $startobject = <span style="color: #0000dd;">1</span>;
<span style="color: #0000ff;">float</span> $distace = <span style="color: #0000dd;">1.5</span>;
<span style="color: #0000ff;">float</span> $slow = <span style="color: #0000dd;">0.3</span>;
string $name = <span style="color: #666666;">&quot;pCube&quot;</span>;
&nbsp;
<span style="color: #ff0000;">//init</span>
<span style="color: #ff0000;">//on frame 2 we run through all the objects(except for object number 1) and give them a random rotation and scale them to zero</span>
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>frame == <span style="color: #0000dd;">2</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
<span style="color: #0000ff;">int</span> $z;
<span style="color: #0000ff;">for</span> <span style="color: #000000;">&#40;</span>$z = $startnum; $z &amp;lt;=$endnum; $z++<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$z != $startobject<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
<span style="color: #0000ff;">float</span> $rand = <span style="color: #0000dd;">rand</span><span style="color: #000000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> * <span style="color: #0000dd;">360</span> ;
setAttr <span style="color: #000000;">&#40;</span>$name + $z + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span> $rand;
setAttr <span style="color: #000000;">&#40;</span>$name + $z + <span style="color: #666666;">&quot;.rotateY&quot;</span><span style="color: #000000;">&#41;</span> $rand;
setAttr <span style="color: #000000;">&#40;</span>$name + $z + <span style="color: #666666;">&quot;.rotateZ&quot;</span><span style="color: #000000;">&#41;</span> $rand;
setAttr <span style="color: #000000;">&#40;</span>$name + $z + <span style="color: #666666;">&quot;.scaleX&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000dd;">0</span>;
setAttr <span style="color: #000000;">&#40;</span>$name + $z + <span style="color: #666666;">&quot;.scaleY&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000dd;">0</span>;
setAttr <span style="color: #000000;">&#40;</span>$name + $z + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000dd;">0</span>;
<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>frame &amp;gt; <span style="color: #0000dd;">2</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
<span style="color: #0000ff;">for</span> <span style="color: #000000;">&#40;</span>$x = $startnum; $x &amp;lt;= $endnum; $x++<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
<span style="color: #0000ff;">float</span> $attrx = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.scaleX&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">float</span> $attry = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.scaleY&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">float</span> $attrz = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #0000ff;">float</span> $attrrx = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">float</span> $attrry = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.rotateY&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">float</span> $attrrz = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.rotateZ&quot;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
<span style="color: #0000ff;">float</span> $attr<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">3</span><span style="color: #000000;">&#93;</span> = `xform -ws -q -piv <span style="color: #000000;">&#40;</span>$name + $x<span style="color: #000000;">&#41;</span>`;
&nbsp;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>$attrx != <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attry != <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attrz != <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attrrx !=<span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attrry !=<span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attrrz !=<span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
<span style="color: #ff0000;">// now go through all other objects and check</span>
<span style="color: #ff0000;">// if nearest objects are visible</span>
<span style="color: #0000ff;">int</span> $y;
<span style="color: #0000ff;">for</span> <span style="color: #000000;">&#40;</span>$y = $startnum; $y &amp;lt;=$endnum; $y++<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$y != $x<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
<span style="color: #0000ff;">float</span> $attr2x = getAttr <span style="color: #000000;">&#40;</span>$name + $y + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">float</span> $attr2sz = getAttr <span style="color: #000000;">&#40;</span>$name + $y + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attr2sz &amp;gt; <span style="color: #0000dd;">0.8</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
&nbsp;
<span style="color: #0000ff;">float</span> $attr2<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">3</span><span style="color: #000000;">&#93;</span> = `xform -ws -q -piv <span style="color: #000000;">&#40;</span>$name + $y<span style="color: #000000;">&#41;</span>`;
<span style="color: #0000ff;">float</span> $distancex = $attr<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #000000;">&#93;</span> - $attr2<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #000000;">&#93;</span>;
<span style="color: #0000ff;">float</span> $distancey = $attr<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#93;</span> - $attr2<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#93;</span>;
<span style="color: #0000ff;">float</span> $distancez = $attr<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">2</span><span style="color: #000000;">&#93;</span> - $attr2<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">2</span><span style="color: #000000;">&#93;</span>;
<span style="color: #0000ff;">float</span> $dist = <span style="color: #0000dd;">sqrt</span> <span style="color: #000000;">&#40;</span>$distancex*$distancex + $distancey*$distancey + $distancez*$distancez<span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">float</span> $randnum = <span style="color: #0000dd;">rand</span><span style="color: #000000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>$dist &amp;lt;= $distace<span style="color: #000000;">&#41;</span> &amp;amp;&amp;amp; <span style="color: #000000;">&#40;</span>$randnum &amp;gt; $slow<span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
<span style="color: #0000ff;">float</span> $attribtemp = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.scaleX&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &amp;lt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp + <span style="color: #000000;">&#40;</span><span style="color: #0000dd;">rand</span><span style="color: #000000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> / <span style="color: #0000dd;">10</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &amp;gt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">1</span>;
setAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.scaleX&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
&nbsp;
$attribtemp = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.scaleY&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &amp;lt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp + <span style="color: #000000;">&#40;</span><span style="color: #0000dd;">rand</span><span style="color: #000000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> / <span style="color: #0000dd;">10</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &amp;gt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">1</span>;
setAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.scaleY&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
&nbsp;
$attribtemp = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &amp;lt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp + <span style="color: #000000;">&#40;</span><span style="color: #0000dd;">rand</span><span style="color: #000000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> / <span style="color: #0000dd;">10</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &amp;gt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">1</span>;
setAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
&nbsp;
$attribtemp = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp != <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
$attribtemp = $attribtemp * <span style="color: #0000dd;">0.75</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>$attribtemp &amp;lt;= <span style="color: #0000dd;">5</span><span style="color: #000000;">&#41;</span> &amp;amp;&amp;amp; <span style="color: #000000;">&#40;</span> $attribtemp &amp;gt;= <span style="color: #0000dd;">-5</span> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">0</span>;
setAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
<span style="color: #000000;">&#125;</span>
&nbsp;
$attribtemp = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.rotateY&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp != <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
$attribtemp = $attribtemp * <span style="color: #0000dd;">0.75</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>$attribtemp &amp;lt;= <span style="color: #0000dd;">5</span><span style="color: #000000;">&#41;</span> &amp;amp;&amp;amp; <span style="color: #000000;">&#40;</span> $attribtemp &amp;gt;= <span style="color: #0000dd;">-5</span> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">0</span>;
setAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.rotateY&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
<span style="color: #000000;">&#125;</span>
&nbsp;
$attribtemp = getAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.rotateZ&quot;</span><span style="color: #000000;">&#41;</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp != <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
$attribtemp = $attribtemp * <span style="color: #0000dd;">0.75</span>;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>$attribtemp &amp;lt;= <span style="color: #0000dd;">5</span><span style="color: #000000;">&#41;</span> &amp;amp;&amp;amp; <span style="color: #000000;">&#40;</span> $attribtemp &amp;gt;= <span style="color: #0000dd;">-5</span> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">0</span>;
setAttr <span style="color: #000000;">&#40;</span>$name + $x + <span style="color: #666666;">&quot;.rotateZ&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre>
</div>
<h2>How to use this?</h2>
<p>Create a new scene, create a bunch of objects (I just created a cube and duplicated) where you want them to be at the end of the animation. Make sure their object names are all the same followed by a number. Also make sure that their scales are on <strong>1</strong> and rotations on <strong>0</strong>.</p>
<p>Now open up <strong>Window-&gt;Animation Editors-&gt;Expression Editor</strong>.</p>
<p>Go to <strong>Select-&gt;By Expression Name</strong>, type a name for the script under <strong>Expression Name</strong>, paste the code in the code window.</p>
<p><a href="http://fluentart.com/wp-content/uploads/2008/04/mayaee.jpg"><img class="aligncenter size-full wp-image-105" title="mayaee" src="http://fluentart.com/wp-content/uploads/2008/04/mayaee.jpg" alt="" width="499" height="432" /></a></p>
<p>You'll need to alter the values at the top of the script to work for your scene.<br />
<strong>$startnum</strong> should usually be 1, but if your objects start at a different number, replace the 1 in the code.<br />
<strong>$endnum</strong> is the number of the last object.<br />
<strong>$startobject</strong> is the number of the object where the animation will start from.<br />
<strong>$distance</strong> is the maximum distance between objects before the animation will start kicking in.<br />
<strong>$slow</strong> is to slow the animation speed down, the higher the value the slower it will be (has to be between 0 and 1).<br />
<strong>$name</strong> is the prefix for your object names, in the example scene you'll see I use pCube1 to pCube125.</p>
<p>Click <strong>Create</strong>. Hopefully maya wont complain about anything. You can close the window now and click play.</p>
<p>To actually render the animation you'll have to bake it by using <strong>Edit-&gt;Keys-&gt;Bake Simulation</strong>. And then delete the mel script from the <strong>Expression Editor</strong>, the baked animation should now play realtime and be renderable.</p>
<p>Good luck and don't be afraid to play around with the code. Feel free to post comments below if you have questions or anything.</p>
]]></content:encoded>
			<wfw:commentRss>http://fluentart.com/2008/04/29/howto-maya-scripted-animation-with-mel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to get maya to work with your new nvidia gfx card</title>
		<link>http://fluentart.com/2007/09/26/how-to-get-maya-to-work-with-your-new-nvidia-gfx-card/</link>
		<comments>http://fluentart.com/2007/09/26/how-to-get-maya-to-work-with-your-new-nvidia-gfx-card/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 11:42:18 +0000</pubDate>
		<dc:creator>Rouan van der Ende</dc:creator>
		
		<category><![CDATA[tips]]></category>

		<category><![CDATA[bugs]]></category>

		<category><![CDATA[fix]]></category>

		<category><![CDATA[how to]]></category>

		<category><![CDATA[maya]]></category>

		<guid isPermaLink="false">http://fluentart.com/2007/09/26/how-to-get-maya-to-work-with-your-new-nvidia-gfx-card/</guid>
		<description><![CDATA[Finally got Maya to work, no more viewport update bugs!!
My setup: Intel Quad core, Nvidia 8600gt, 4gb ram, Windows XP 64.
Install 64bit 158.22 forceware drivers
Put MAYA_NO_VERTEX_ARRAY_SELECT = 1 in my maya env file.
Then in your nvidia control panel:
Threaded optimization = off
All the antialiasing and vsync stuff = off
Multi-display/mixed-GPU acceleration = single display
Horizontal Span (to get [...]]]></description>
			<content:encoded><![CDATA[<p>Finally got Maya to work, no more viewport update bugs!!<br />
My setup: Intel Quad core, Nvidia 8600gt, 4gb ram, Windows XP 64.</p>
<p>Install <a href="http://www.nvidia.com/object/winxp64_158.22.html">64bit 158.22 forceware drivers</a></p>
<p>Put MAYA_NO_VERTEX_ARRAY_SELECT = 1 in my maya env file.</p>
<p>Then in your nvidia control panel:</p>
<p>Threaded optimization = off<br />
All the antialiasing and vsync stuff = off<br />
Multi-display/mixed-GPU acceleration = single display<br />
Horizontal Span (to get opengl to work on 2nd monitor)</p>
]]></content:encoded>
			<wfw:commentRss>http://fluentart.com/2007/09/26/how-to-get-maya-to-work-with-your-new-nvidia-gfx-card/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Plug: Siggraph advanced photo resizing</title>
		<link>http://fluentart.com/2007/08/22/plug-siggraph-advanced-photo-resizing/</link>
		<comments>http://fluentart.com/2007/08/22/plug-siggraph-advanced-photo-resizing/#comments</comments>
		<pubDate>Wed, 22 Aug 2007 07:25:12 +0000</pubDate>
		<dc:creator>Rouan van der Ende</dc:creator>
		
		<category><![CDATA[plugs]]></category>

		<guid isPermaLink="false">http://fluentart.com/2007/08/22/plug-siggraph-advanced-photo-resizing/</guid>
		<description><![CDATA[Just saw this vid linked on digg, very interesting! Wouldn't be surprised if this made its way into browsers and photoshop.

]]></description>
			<content:encoded><![CDATA[<p>Just saw this vid linked on digg, very interesting! Wouldn't be surprised if this made its way into browsers and photoshop.</p>
<p><embed src="http://www.collegehumor.com/moogaloop/moogaloop.swf?clip_id=1772009" quality="best" width="400" height="300" type="application/x-shockwave-flash"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://fluentart.com/2007/08/22/plug-siggraph-advanced-photo-resizing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mel: Infectious animation</title>
		<link>http://fluentart.com/2007/07/20/mel-infectious-animation/</link>
		<comments>http://fluentart.com/2007/07/20/mel-infectious-animation/#comments</comments>
		<pubDate>Fri, 20 Jul 2007 07:36:24 +0000</pubDate>
		<dc:creator>Rouan van der Ende</dc:creator>
		
		<category><![CDATA[animations]]></category>

		<category><![CDATA[mel]]></category>

		<category><![CDATA[plugs]]></category>

		<guid isPermaLink="false">http://fluentart.com/2007/07/20/mel-infectious-animation/</guid>
		<description><![CDATA[Heres an animation I did yesterday.

Basicly the mel loop checks which objects still have to be transformed/rotated/scaled whatever, and if they are next to ones that are already visible, if they are, they are animated towards the original mesh.

&#160;
int $x;
&#160;
//init
if &#40;frame == 1&#41; &#123;
	int $z;
	for &#40;$z = 159; $z &#60;=338; $z++&#41; &#123;
		if &#40;$z != 159&#41; [...]]]></description>
			<content:encoded><![CDATA[<p>Heres an animation I did yesterday.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/IhmNdoTDjNo"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/IhmNdoTDjNo" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>Basicly the mel loop checks which objects still have to be transformed/rotated/scaled whatever, and if they are next to ones that are already visible, if they are, they are animated towards the original mesh.</p>
<div id="code">
<pre class="cpp">&nbsp;
<span style="color: #0000ff;">int</span> $x;
&nbsp;
<span style="color: #ff0000;">//init</span>
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>frame == <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
	<span style="color: #0000ff;">int</span> $z;
	<span style="color: #0000ff;">for</span> <span style="color: #000000;">&#40;</span>$z = <span style="color: #0000dd;">159</span>; $z &lt;=<span style="color: #0000dd;">338</span>; $z++<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
		<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$z != <span style="color: #0000dd;">159</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
			<span style="color: #0000ff;">float</span> $rand = <span style="color: #0000dd;">rand</span><span style="color: #000000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> * <span style="color: #0000dd;">360</span> ;
			setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $z + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span> $rand;
			setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $z + <span style="color: #666666;">&quot;.rotateY&quot;</span><span style="color: #000000;">&#41;</span> $rand;
			setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $z + <span style="color: #666666;">&quot;.rotateZ&quot;</span><span style="color: #000000;">&#41;</span> $rand;
			setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $z + <span style="color: #666666;">&quot;.scaleX&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000dd;">0</span>;
			setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $z + <span style="color: #666666;">&quot;.scaleY&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000dd;">0</span>;
			setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $z + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #0000dd;">0</span>;
		<span style="color: #000000;">&#125;</span>
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;
<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>frame &gt; <span style="color: #0000dd;">2</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
<span style="color: #0000ff;">for</span> <span style="color: #000000;">&#40;</span>$x = <span style="color: #0000dd;">159</span>; $x &lt;= <span style="color: #0000dd;">338</span>; $x++<span style="color: #000000;">&#41;</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #0000ff;">float</span> $attrx = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.scaleX&quot;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #0000ff;">float</span> $attry = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.scaleY&quot;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #0000ff;">float</span> $attrz = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
	<span style="color: #0000ff;">float</span> $attrrx = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #0000ff;">float</span> $attrry = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.rotateY&quot;</span><span style="color: #000000;">&#41;</span>;
	<span style="color: #0000ff;">float</span> $attrrz = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.rotateZ&quot;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
	<span style="color: #0000ff;">float</span> $attr<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">3</span><span style="color: #000000;">&#93;</span> = `xform -ws -q -piv <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x<span style="color: #000000;">&#41;</span>`;
&nbsp;
	<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>$attrx &gt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attry != <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attrz != <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attrrx !=<span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attrry !=<span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> || <span style="color: #000000;">&#40;</span>$attrrz !=<span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
	<span style="color: #000000;">&#123;</span>
		<span style="color: #ff0000;">// now go through all other objects and check</span>
		<span style="color: #ff0000;">// if nearest objects are visible</span>
		<span style="color: #0000ff;">int</span> $y;
		<span style="color: #0000ff;">for</span> <span style="color: #000000;">&#40;</span>$y = <span style="color: #0000dd;">159</span>; $y &lt;=<span style="color: #0000dd;">338</span>; $y++<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
			<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$y != $x<span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
					<span style="color: #0000ff;">float</span> $attr2x = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $y + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span>;
					<span style="color: #0000ff;">float</span> $attr2sz = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $y + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span>;
					<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attr2sz &gt; <span style="color: #0000dd;">0.5</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
&nbsp;
						<span style="color: #0000ff;">float</span> $attr2<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">3</span><span style="color: #000000;">&#93;</span> = `xform -ws -q -piv <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $y<span style="color: #000000;">&#41;</span>`;
						<span style="color: #0000ff;">float</span> $distancex = $attr<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #000000;">&#93;</span> - $attr2<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #000000;">&#93;</span>;
						<span style="color: #0000ff;">float</span> $distancey = $attr<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#93;</span> - $attr2<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#93;</span>;
						<span style="color: #0000ff;">float</span> $distancez = $attr<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">2</span><span style="color: #000000;">&#93;</span> - $attr2<span style="color: #000000;">&#91;</span><span style="color: #0000dd;">2</span><span style="color: #000000;">&#93;</span>;
						<span style="color: #0000ff;">float</span> $dist = <span style="color: #0000dd;">sqrt</span> <span style="color: #000000;">&#40;</span>$distancex*$distancex + $distancey*$distancey + $distancez*$distancez<span style="color: #000000;">&#41;</span>;
						<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$dist &lt;= <span style="color: #0000dd;">0.3</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
								<span style="color: #0000ff;">float</span> $attribtemp = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.scaleX&quot;</span><span style="color: #000000;">&#41;</span>;
								<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &lt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp + <span style="color: #000000;">&#40;</span><span style="color: #0000dd;">rand</span><span style="color: #000000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> / <span style="color: #0000dd;">10</span><span style="color: #000000;">&#41;</span>;
								<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &gt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">1</span>;
								setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.scaleX&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
&nbsp;
								$attribtemp = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.scaleY&quot;</span><span style="color: #000000;">&#41;</span>;
								<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &lt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp + <span style="color: #000000;">&#40;</span><span style="color: #0000dd;">rand</span><span style="color: #000000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> / <span style="color: #0000dd;">10</span><span style="color: #000000;">&#41;</span>;
								<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &gt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">1</span>;
								setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.scaleY&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
&nbsp;
								$attribtemp = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span>;
								<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &lt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp + <span style="color: #000000;">&#40;</span><span style="color: #0000dd;">rand</span><span style="color: #000000;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> / <span style="color: #0000dd;">10</span><span style="color: #000000;">&#41;</span>;
								<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &gt; <span style="color: #0000dd;">1</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">1</span>;
								setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.scaleZ&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
&nbsp;
								$attribtemp = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span>;
								<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp != <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
									<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>$attribtemp &lt;= <span style="color: #0000dd;">5</span><span style="color: #000000;">&#41;</span> &amp;&amp; <span style="color: #000000;">&#40;</span> $attribtemp &gt;= <span style="color: #0000dd;">-5</span> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">0</span>;
									<span style="color: #000000;">&#125;</span>
									<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &gt; <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp - <span style="color: #0000dd;">5</span>;
									<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &lt; <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp + <span style="color: #0000dd;">5</span>;
								setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.rotateX&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
&nbsp;
								$attribtemp = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.rotateY&quot;</span><span style="color: #000000;">&#41;</span>;
								<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp != <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
									$attribtemp = $attribtemp * <span style="color: #0000dd;">0.75</span>;
									<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>$attribtemp &lt;= <span style="color: #0000dd;">5</span><span style="color: #000000;">&#41;</span> &amp;&amp; <span style="color: #000000;">&#40;</span> $attribtemp &gt;= <span style="color: #0000dd;">-5</span> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">0</span>;
									<span style="color: #000000;">&#125;</span>
									<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &gt; <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp - <span style="color: #0000dd;">5</span>;
									<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &lt; <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp + <span style="color: #0000dd;">5</span>;
								setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.rotateY&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
&nbsp;
								$attribtemp = getAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.rotateZ&quot;</span><span style="color: #000000;">&#41;</span>;
								<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp != <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#123;</span>
									$attribtemp = $attribtemp * <span style="color: #0000dd;">0.75</span>;
									<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000;">&#40;</span>$attribtemp &lt;= <span style="color: #0000dd;">5</span><span style="color: #000000;">&#41;</span> &amp;&amp; <span style="color: #000000;">&#40;</span> $attribtemp &gt;= <span style="color: #0000dd;">-5</span> <span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span> $attribtemp = <span style="color: #0000dd;">0</span>;
									<span style="color: #000000;">&#125;</span>
									<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &gt; <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp - <span style="color: #0000dd;">5</span>;
									<span style="color: #0000ff;">if</span> <span style="color: #000000;">&#40;</span>$attribtemp &lt; <span style="color: #0000dd;">0</span><span style="color: #000000;">&#41;</span> $attribtemp = $attribtemp + <span style="color: #0000dd;">5</span>;
								setAttr <span style="color: #000000;">&#40;</span><span style="color: #666666;">&quot;polySurface&quot;</span> + $x + <span style="color: #666666;">&quot;.rotateZ&quot;</span><span style="color: #000000;">&#41;</span> $attribtemp;
&nbsp;
						<span style="color: #000000;">&#125;</span>
					<span style="color: #000000;">&#125;</span>
			<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#125;</span>
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span>
&nbsp;</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://fluentart.com/2007/07/20/mel-infectious-animation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How you should browse</title>
		<link>http://fluentart.com/2007/03/14/how-you-should-browse/</link>
		<comments>http://fluentart.com/2007/03/14/how-you-should-browse/#comments</comments>
		<pubDate>Wed, 14 Mar 2007 16:48:49 +0000</pubDate>
		<dc:creator>Rouan van der Ende</dc:creator>
		
		<category><![CDATA[firefox]]></category>

		<category><![CDATA[howto]]></category>

		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://fluentart.com/2007/03/14/how-you-should-browse/</guid>
		<description><![CDATA[Why on earth are people still struggling with IE, slow loading pages full of ads, and bookmarking pages you know you'll want to use later but never find again.
If your guilty please follow this little howto and save yourself:
Install Firefox already...
Install Adblock Plus to get rid of pesky ads :D
Install del.icio.us Bookmarks addon and learn [...]]]></description>
			<content:encoded><![CDATA[<p>Why on earth are people still struggling with IE, slow loading pages full of ads, and bookmarking pages you know you'll want to use later but never find again.</p>
<p>If your guilty please follow this little howto and save yourself:</p>
<li>Install <a href="http://www.mozilla.com">Firefox</a> already...</li>
<li>Install <a href="https://addons.mozilla.org/firefox/1865/">Adblock Plus</a> to get rid of pesky ads :D</li>
<li>Install <a href="https://addons.mozilla.org/firefox/3615/">del.icio.us Bookmarks addon</a> and learn to bookmark like you should.</li>
]]></content:encoded>
			<wfw:commentRss>http://fluentart.com/2007/03/14/how-you-should-browse/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
