<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Tapdancing Goats</title>
	
	<link>http://www.tapdancinggoats.com</link>
	<description>A parfait of physics, Linux, LaTeX, and coding tips large and small.</description>
	<lastBuildDate>Mon, 01 Mar 2010 05:03:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Tapdancinggoats" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="tapdancinggoats" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Server Variables in Puppet Templates</title>
		<link>http://www.tapdancinggoats.com/server-variables-in-puppet-templates.htm</link>
		<comments>http://www.tapdancinggoats.com/server-variables-in-puppet-templates.htm#comments</comments>
		<pubDate>Mon, 01 Mar 2010 05:01:09 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[erb]]></category>
		<category><![CDATA[puppet]]></category>

		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=455</guid>
		<description><![CDATA[Puppet is an invaluable tool for managing a large number of Linux servers. By defining different classes for each service I deploy, I can easily define what runs on each server I control just by changing the site manifest.

A problem I ran into early when I was bringing services into Puppet was slightly different configurations [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.reductivelabs.com/trac/puppet/" title="Puppet">Puppet</a> is an <a href="http://www.tapdancinggoats.com/make-your-servers-dance-with-puppet.htm" title="Make your Linux servers dance with Puppet">invaluable tool</a> for managing a large number of Linux servers. By defining different classes for each service I deploy, I can easily define what runs on each server I control just by changing the site manifest.</p>

<p>A problem I ran into early when I was bringing services into Puppet was slightly different configurations on servers with different specs. For example, I run <a href="http://tomcat.apache.org/" title="Tomcat Java Servlet Engine">Tomcat</a> on three servers but one is also running some other services. On this one server the JVM maximum heap size needs to be lower than on the others, but the rest of the Tomcat configuration is the same. To manage this without making a second class definition I used the template system in Puppet.</p>

<p>There are four steps to making this work. First you need to define a default for the variable. Next you need to write the template. Third, connect the template to a file on the client. Finally override the variable where you need it.</p>

<h4>Define a default</h4>

<p>The default variable definition goes in the module&#8217;s manifest file <em>before</em> the class definition. Putting it before the class definition makes sure that it is in scope for overriding in the node definition. The top of the manifest file will look like this:</p>

<pre><code>$heapsize = 1000

class jvm {
...
</code></pre>

<p>Note that variables have leading dollar signs.</p>

<h4>Write the template</h4>

<p>Puppet uses Ruby&#8217;s <a href="http://ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB.html" title="ERB Documentation">ERB</a> templating system. The template language is powerful, but I&#8217;m only going to cover variable substitution here.</p>

<p>Start with putting the configuration file in the templates subdirectory of the module, i.e. <em>&lt;module name&gt;/templates/&lt;config&gt;</em> so that Puppet knows where to find it. To substitute the variables, use <em>< %= name %></em>. Here the variable name <em>does not</em> start with a dollar sign. Continuing the earlier example, this is part of our template:</p>

<pre><code>export JAVA_OPTS="-Xmx&lt;%= heapsize %&gt;M"
</code></pre>

<h4>Connecting the template to a file</h4>

<p>Using the template in a file declaration is not as simple as just changing the path from the static source. Instead, you have to use the <em>content</em> parameter and the <em>template</em> function. The parameter to the template function is a weird path fragment: the first segment is the module name, and the rest is the path to your file underneath the templates directory. Continuing our example, assuming that the module is named <em>jvm</em> and the template is at <em>modules/jvm/templates/options.erb</em>, this declaration is in the jvm class:</p>

<pre><code>file {"/usr/local/bin/jvm_options.sh":
  mode    =&gt; "664",
  content =&gt; template("jvm/options.erb"),
}
</code></pre>

<p>Notice that the name of the template file doesn&#8217;t have to match the target name on the client.</p>

<h4>Override the variable</h4>

<p>Finally, you have to add a line to the node for the server which needs a different configuration. In the node definition before including the class, redefine the variable to what you need. Example:</p>

<pre><code>node "lowmem" {
  $heapsize = 750
  include jvm
}
</code></pre>

<p>Nodes that don&#8217;t override the variable will get the default value defined in the module&#8217;s manifest file.</p>

<p>Puppet&#8217;s templates can do a lot more than simple variable substitution, but this should get you started. Beyond this it&#8217;s mostly <a href="http://ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB.html" title="ERB Documentation">ERB</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=AEqeKZDwLXo:tFOr3bvOMTg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=AEqeKZDwLXo:tFOr3bvOMTg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=AEqeKZDwLXo:tFOr3bvOMTg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=AEqeKZDwLXo:tFOr3bvOMTg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=AEqeKZDwLXo:tFOr3bvOMTg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=AEqeKZDwLXo:tFOr3bvOMTg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=AEqeKZDwLXo:tFOr3bvOMTg:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=AEqeKZDwLXo:tFOr3bvOMTg:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/AEqeKZDwLXo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/server-variables-in-puppet-templates.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make your Linux servers dance with Puppet</title>
		<link>http://www.tapdancinggoats.com/make-your-servers-dance-with-puppet.htm</link>
		<comments>http://www.tapdancinggoats.com/make-your-servers-dance-with-puppet.htm#comments</comments>
		<pubDate>Wed, 17 Feb 2010 22:12:45 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OSS]]></category>
		<category><![CDATA[cluster]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[puppet]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=444</guid>
		<description><![CDATA[A quick introduction to Puppet, a system for replicating configurations to many Linux servers.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/quitepeculiar/3946841381/"><img src="http://www.tapdancinggoats.com/wp-content/uploads/2010/02/puppet.jpg" alt="" title="Marionette" width="160" height="240" class="alignright size-full wp-image-448" /></a><a href="http://reductivelabs.com/trac/puppet/" title="Puppet">Puppet</a> is a system for replicating configurations to many servers, and it makes managing a Linux<sup id="fnref:2"><a href="#fn:2" rel="footnote">1</a></sup> server farm ridiculously easy. One server runs a master process, while the others run a client which connects to the master<sup id="fnref:1"><a href="#fn:1" rel="footnote">2</a></sup> to get the correct configuration. Clients are identified by hostname, so if your servers don&#8217;t have resolvable names you&#8217;ll need to put them in the hosts file on the master.</p>

<p>Puppet uses a declarative syntax built on top of ruby for defining rules. The documentation is mediocre at best, so you may struggle at first learning how to write the rules. Just read through the example recipes and test it out with a non-production server. The easiest way I found to test a rule is to run</p>

<pre><code>sudo puppetd --test
</code></pre>

<p>on the server that should be getting the configuration. It will tell you there if there are any errors.</p>

<p>The version of puppet in Ubuntu 9.10 doesn&#8217;t support defining node names with regular expressions, so you might want to grab the <a href="http://packages.debian.org/sid/puppet" title="Puppet package">version in Debian sid</a>.</p>

<p>I&#8217;m still trying to figure out the best way to split up modules and organize my node definitions, so if you&#8217;ve used Puppet leave a comment and let me know what you think.</p>

<div class="footnotes">
<hr />
<ol>

<li id="fn:2">
<p>The <a href="http://www.reductivelabs.com/trac/puppet/wiki/DownloadingPuppet" title="Download Puppet">website</a> also has packages for BSD and MacOS, but I can&#8217;t vouch for them.&#160;<a href="#fnref:2" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:1">
<p>By default the clients connect to a host named puppet, so you should either make an DNS entry for your master, or define the name puppet in your clients&#8217; hosts files.&#160;<a href="#fnref:1" rev="footnote">&#8617;</a></p>
</li>

</ol>
</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=mGYpwK23_V4:XFwhdY6raQk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=mGYpwK23_V4:XFwhdY6raQk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=mGYpwK23_V4:XFwhdY6raQk:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=mGYpwK23_V4:XFwhdY6raQk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=mGYpwK23_V4:XFwhdY6raQk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=mGYpwK23_V4:XFwhdY6raQk:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=mGYpwK23_V4:XFwhdY6raQk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=mGYpwK23_V4:XFwhdY6raQk:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/mGYpwK23_V4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/make-your-servers-dance-with-puppet.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bear on the Lamb</title>
		<link>http://www.tapdancinggoats.com/bear-on-the-lamb.htm</link>
		<comments>http://www.tapdancinggoats.com/bear-on-the-lamb.htm#comments</comments>
		<pubDate>Tue, 16 Feb 2010 04:57:17 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[solutioneering]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=426</guid>
		<description><![CDATA[Bear Grylls&#8217;s show is getting a little long in the tooth, and the staged &#8220;danger situations&#8221; are getting more and more ridiculous. I know exactly what Bear needs.

U.S. Marshals.

Every week Bear gets dropped in a wilderness location (like Les Stroud really did) and has to evade U.S. Marshals for seven days. The locals will be [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/79781814@N00/3730246844"><img src="http://www.tapdancinggoats.com/wp-content/uploads/2010/02/3730246844_1628c7fe4b_m.jpg" alt="Care bear under arrest" title="Who cares bear" width="240" height="180" class="alignright size-full wp-image-441" /></a><a href="http://en.wikipedia.org/wiki/Bear_Grylls">Bear Grylls</a>&#8217;s <a href="http://en.wikipedia.org/wiki/Man_vs._Wild">show</a> is getting a little long in the tooth, and the staged &#8220;danger situations&#8221; are getting more and more ridiculous. I know exactly what Bear needs.</p>

<p>U.S. Marshals.</p>

<p>Every week Bear gets dropped in a wilderness location (like <a href="http://en.wikipedia.org/wiki/Les_Stroud">Les Stroud</a> <i>really</i> did) and has to evade U.S. Marshals for seven days. The locals will be told that he&#8217;s a real fugitive. Set the dogs on him. Heck, they should shoot him on sight, just to add a bit more excitement. The real fun begins when Bear has to betray his camera crew to buy some more time.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=PLXoP-v3CvM:6xXOSlGvmDY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=PLXoP-v3CvM:6xXOSlGvmDY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=PLXoP-v3CvM:6xXOSlGvmDY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=PLXoP-v3CvM:6xXOSlGvmDY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=PLXoP-v3CvM:6xXOSlGvmDY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=PLXoP-v3CvM:6xXOSlGvmDY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=PLXoP-v3CvM:6xXOSlGvmDY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=PLXoP-v3CvM:6xXOSlGvmDY:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/PLXoP-v3CvM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/bear-on-the-lamb.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nixon’s Back!!</title>
		<link>http://www.tapdancinggoats.com/nixons-back.htm</link>
		<comments>http://www.tapdancinggoats.com/nixons-back.htm#comments</comments>
		<pubDate>Mon, 15 Feb 2010 05:50:08 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.tapdancinggoats.com/?p=413</guid>
		<description><![CDATA[I was busy for awhile, now I'm back. I'm going to post a wider range of stuff. I imported my old LiveJournal posts.]]></description>
			<content:encoded><![CDATA[<p>My previous server was unexpectedly destroyed, but after a call to <a href="http://joesdatacenter.com/">Joe</a> we&#8217;re back up and better than ever. Now that I&#8217;m actually paying for my space, I&#8217;m inspired to dust off this old thing and give it a new go. I also have a lot more time now since I graduated last May.</p>

<p>I plan to start posting a wider variety of content rather than trying to stick to Linux, development, physics, and LaTeX. I&#8217;ve become more active on <a href="http://twitter.com/shadwstalkr">twitter</a> and Facebook, so I&#8217;m dumping short stuff there. I also got a <a href="http://tumblr.tapdancinggoats.com">tumblr account</a> as a temporary landing site while this one was down, and I think I&#8217;ll be keeping it for <a href="http://tumblr.tapdancinggoats.com">meaningless drivel</a> that&#8217;s between tweet and blog length. I&#8217;ll lovingly handcraft longer, meatier, vastly more important drivel for this site. You&#8217;ll get more of my personality, my raw thoughts, and let&#8217;s be honest, I haven&#8217;t quite been prolific with the geeky material to date.</p>

<p>One step towards the personalization of my personal blog has been to import my old LiveJournal posts. These date back to the heady days of 2001 when &#8220;blog&#8221; was a new term that was still considered a contraction of &#8220;web log.&#8221; I was a freshly laid-off refugee of the dot-com bust back then, and I was still too dumb to know I&#8217;m not funny. There might be some gems in the archives, but as you dig through try not to get lost in the self-important ramblings of an arrogant young man. If the going is too tough, I promise to keep the site updated with a steady stream of self-important ramblings from an arrogant, slightly less young man.</p>

<p>So thanks for looking at the main site after you stumbled across one of my old LaTeX posts. I hope this isn&#8217;t the last update for another two years.</p>

<table style='font:11px arial; color:#333; background-color:#f5f5f5' cellpadding='0' cellspacing='0' width='360' height='353'><tbody><tr style='background-color:#e5e5e5' valign='middle'><td style='padding:2px 1px 0px 5px;'><a target='_blank' style='color:#333; text-decoration:none; font-weight:bold;' href='http://www.comedycentral.com/shows/futurama/index.jhtml'>Futurama</a></td><td style='padding:2px 5px 0px 5px; text-align:right; font-weight:bold;'>Weeknights, 9p/8c</td></tr><tr style='height:14px;' valign='middle'><td style='padding:2px 1px 0px 5px;' colspan='2'><a target='_blank' style='color:#333; text-decoration:none; font-weight:bold;' href='http://www.comedycentral.com/videos/index.jhtml?videoId=147895&#038;title=nixons-back'>Nixon&#8217;s Back</a></td></tr><tr style='height:14px; background-color:#353535' valign='middle'><td colspan='2' style='padding:2px 5px 0px 5px; width:360px; overflow:hidden; text-align:right'><a target='_blank' style='color:#96deff; text-decoration:none; font-weight:bold;' href='http://www.comedycentral.com/'>www.comedycentral.com</a></td></tr><tr valign='middle'><td style='padding:0px;' colspan='2'><embed style='display:block' src='http://media.mtvnservices.com/mgid:cms:item:comedycentral.com:147895' width='360' height='301' type='application/x-shockwave-flash' wmode='window' allowFullscreen='true' flashvars='autoPlay=false' allowscriptaccess='always' allownetworking='all' bgcolor='#000000'></embed></td></tr><tr style='height:18px;' valign='middle'><td style='padding:0px;' colspan='2'><table style='margin:0px; text-align:center' cellpadding='0' cellspacing='0' width='100%' height='100%'><tr valign='middle'><td style='padding:3px; width:33%;'><a target='_blank' style='font:10px arial; color:#333; text-decoration:none;' href='http://www.jokes.com'>Joke of the Day</a></td><td style='padding:3px; width:33%;'><a target='_blank' style='font:10px arial; color:#333; text-decoration:none;' href='http://comedians.comedycentral.com/'>Stand-Up Comedy</a></td><td style='padding:3px; width:33%;'><a target='_blank' style='font:10px arial; color:#333; text-decoration:none;' href='http://www.comedycentral.com/games/index.jhtml'>Free Online Games</a></td></tr></table></td></tr></tbody></table>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=Ui7w8pabAaU:sOXjF1tvgv0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=Ui7w8pabAaU:sOXjF1tvgv0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=Ui7w8pabAaU:sOXjF1tvgv0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=Ui7w8pabAaU:sOXjF1tvgv0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=Ui7w8pabAaU:sOXjF1tvgv0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=Ui7w8pabAaU:sOXjF1tvgv0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=Ui7w8pabAaU:sOXjF1tvgv0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=Ui7w8pabAaU:sOXjF1tvgv0:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/Ui7w8pabAaU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/nixons-back.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better billboarding in Papervision3D</title>
		<link>http://www.tapdancinggoats.com/better-billboarding-in-papervision3d.htm</link>
		<comments>http://www.tapdancinggoats.com/better-billboarding-in-papervision3d.htm#comments</comments>
		<pubDate>Thu, 08 Nov 2007 02:42:30 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[billboard]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Papervision3D]]></category>

		<guid isPermaLink="false">http://www.tapdancinggoats.com/better-billboarding-in-papervision3d.htm</guid>
		<description><![CDATA[The Papervision3D wiki has an example for making billboarded sprites with just three extra lines of code. Trouble is, it doesn&#8217;t really work. Anyone who&#8217;s tried it may have noticed that when the planes get too close to the camera, or if the camera rotates around it&#8217;s z-axis at all, the planes start rolling instead [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://wiki.papervision3d.org/">Papervision3D wiki</a> has an example for making billboarded sprites with just three extra lines of code. Trouble is, it doesn&#8217;t really work. Anyone who&#8217;s tried it may have noticed that when the planes get too close to the camera, or if the camera rotates around it&#8217;s z-axis at all, the planes start rolling instead of staying vertical.</p>

<p>The problem is that the lookAt method defaults to using the world y-axis as &#8220;up&#8221; for the billboards, which isn&#8217;t usually correct.  Of course we don&#8217;t really care about the world y-axis with billboards.  We just want them to be vertical in the camera.  Here&#8217;s some code that does it.</p>

<div class="dean_ch" style="white-space: wrap;"><span class="co1">// calculate the camera vertical in world coordinates</span><br />
<span class="kw2">var</span> <span class="kw3">up</span> : Number3D = <span class="kw2">new</span> Number3D<span class="br0">&#40;</span><span class="nu0">0</span>, <span class="nu0">1</span>, <span class="nu0">0</span><span class="br0">&#41;</span>;<br />
Matrix3D.<span class="me1">rotateAxis</span><span class="br0">&#40;</span><span class="kw3">camera</span>.<span class="me1">transform</span>, <span class="kw3">up</span><span class="br0">&#41;</span>;<br />
<br />
<span class="co1">// billboard is the plane you want to billboard.</span><br />
billboard.<span class="me1">lookAt</span><span class="br0">&#40;</span>viewpoint, <span class="kw3">up</span><span class="br0">&#41;</span>;<br />
billboard.<span class="me1">roll</span><span class="br0">&#40;</span><span class="nu0">180</span><span class="br0">&#41;</span>;<br />
billboard.<span class="me1">pitch</span><span class="br0">&#40;</span><span class="nu0">180</span><span class="br0">&#41;</span>;</div>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=4Ty6e3g7uMQ:HIIB5GDihac:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=4Ty6e3g7uMQ:HIIB5GDihac:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=4Ty6e3g7uMQ:HIIB5GDihac:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=4Ty6e3g7uMQ:HIIB5GDihac:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=4Ty6e3g7uMQ:HIIB5GDihac:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=4Ty6e3g7uMQ:HIIB5GDihac:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=4Ty6e3g7uMQ:HIIB5GDihac:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=4Ty6e3g7uMQ:HIIB5GDihac:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/4Ty6e3g7uMQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/better-billboarding-in-papervision3d.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Protected: An annual ritual</title>
		<link>http://www.tapdancinggoats.com/an-annual-ritual.htm</link>
		<comments>http://www.tapdancinggoats.com/an-annual-ritual.htm#comments</comments>
		<pubDate>Tue, 13 Mar 2007 13:40:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.tapdancinggoats.com/an-annual-ritual.htm</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://www.tapdancinggoats.com/wp-pass.php" method="post">
    <p>This post is password protected. To view it please enter your password below:</p>
    <p><label for="pwbox-412">Password: <input name="post_password" id="pwbox-412" type="password" size="20" /></label> <input type="submit" name="Submit" value="Submit" /></p>
    </form>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=jjJ6NRnuT24:6pWXE8IN36E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=jjJ6NRnuT24:6pWXE8IN36E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=jjJ6NRnuT24:6pWXE8IN36E:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=jjJ6NRnuT24:6pWXE8IN36E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=jjJ6NRnuT24:6pWXE8IN36E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=jjJ6NRnuT24:6pWXE8IN36E:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=jjJ6NRnuT24:6pWXE8IN36E:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=jjJ6NRnuT24:6pWXE8IN36E:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/jjJ6NRnuT24" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/an-annual-ritual.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Last Easter</title>
		<link>http://www.tapdancinggoats.com/last-easter.htm</link>
		<comments>http://www.tapdancinggoats.com/last-easter.htm#comments</comments>
		<pubDate>Tue, 13 Mar 2007 13:36:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.tapdancinggoats.com/last-easter.htm</guid>
		<description><![CDATA[This is what I started to write last April.&#160; Apparently LJ has a draft saving feature now.&#160; Unfortunately, I didn&#8217;t finish it, and it&#8217;s not worth finishing now.It&#8217;s been awhile.  I don&#8217;t feel like covering everything that&#8217;s happened just now, so instead I&#8217;ll just outline what I earned during Easter.

Catholic Easter mass takes foreverMy [...]]]></description>
			<content:encoded><![CDATA[<p>This is what I started to write last April.&nbsp; Apparently LJ has a draft saving feature now.&nbsp; Unfortunately, I didn&#8217;t finish it, and it&#8217;s not worth finishing now.<br /><br />It&#8217;s been awhile.  I don&#8217;t feel like covering everything that&#8217;s happened just now, so instead I&#8217;ll just outline what I earned during Easter.<br /></p>

<ol><br /><li><h3>Catholic Easter mass takes forever</h3><br />My sister received full communion into the Catholic church the night before Easter, so I got a cool, three for one bonus: Easter mass, confirmations, and baptisms.  Sweet!  I can&#8217;t tell you how excited I was, but the three (four?) hour ceremony exceeded all my expectations.</li><br /><li><h3>There are kids who don&#8217;t enjoy hunting for eggs on Easter</h3><br />This is the first Easter that Connor is aware of, and my niece was with us too, so we had a lot of fun getting ready.<br /></li></ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=8xHIQIUNfbM:Q32unCky7as:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=8xHIQIUNfbM:Q32unCky7as:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=8xHIQIUNfbM:Q32unCky7as:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=8xHIQIUNfbM:Q32unCky7as:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=8xHIQIUNfbM:Q32unCky7as:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=8xHIQIUNfbM:Q32unCky7as:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=8xHIQIUNfbM:Q32unCky7as:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=8xHIQIUNfbM:Q32unCky7as:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/8xHIQIUNfbM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/last-easter.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Easy Scientific Notation In LaTeX</title>
		<link>http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm</link>
		<comments>http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm#comments</comments>
		<pubDate>Fri, 02 Mar 2007 21:46:30 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Physics]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[scientific notation]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm</guid>
		<description><![CDATA[I use LaTeX for all my physics homework and lab reports, and I&#8217;ll be using it for a master&#8217;s thesis in the next few years, so I&#8217;m constantly adding to my library of LaTeX commands to save some typing.  Here&#8217;s a good one when you need to use scientific or engineering notation.  Put [...]]]></description>
			<content:encoded><![CDATA[<p>I use LaTeX for all my physics homework and lab reports, and I&#8217;ll be using it for a master&#8217;s thesis in the next few years, so I&#8217;m constantly adding to my library of LaTeX commands to save some typing.  Here&#8217;s a good one when you need to use scientific or engineering notation.  Put the following in the document preamble (before <tt>\begin{document}</tt>):</p>

<div class="dean_ch" style="white-space: wrap;"><br />
<span class="re2">\providecommand</span>{<span class="re3"><span class="re2">\e</span>}[<span class="re4">1</span>]{<span class="re2">\ensuremath</span>{<span class="re2">\times</span> 10^{#1}}</span>}<br />
&nbsp;</div>

<p>Then, typing</p>

<div class="dean_ch" style="white-space: wrap;"><br />
The [<span class="re4">111</span>] crystal planes are 3.2<span class="re2">\e</span>{<span class="re3">-10</span>} m apart.<br />
&nbsp;</div>

<p>gives you:
<samp>
The [111] crystal planes are 3.2&#215;10<sup>-10</sup> m apart.
</samp>
whether or not you&#8217;re already in a math environment.  If the exponent is just one number, you can omit the braces, like this: <tt>3\e8 m/s</tt>.  Cool, huh?</p>

<p>(Of course, for 10<sup>-10</sup> m you can just use Angstroms, <tt>\AA</tt>.  If you&#8217;re in a math environment, use <tt>\text{\AA}</tt>, or else the circle won&#8217;t line up with the A.  That is, if you&#8217;re okay with non-SI units.)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=IZ8Ch24mIsM:xSfCcASLu_I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=IZ8Ch24mIsM:xSfCcASLu_I:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=IZ8Ch24mIsM:xSfCcASLu_I:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=IZ8Ch24mIsM:xSfCcASLu_I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=IZ8Ch24mIsM:xSfCcASLu_I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=IZ8Ch24mIsM:xSfCcASLu_I:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=IZ8Ch24mIsM:xSfCcASLu_I:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=IZ8Ch24mIsM:xSfCcASLu_I:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/IZ8Ch24mIsM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/easy-scientific-notation-in-latex.htm/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Bold vectors in LaTeX</title>
		<link>http://www.tapdancinggoats.com/bold-vectors-in-latex.htm</link>
		<comments>http://www.tapdancinggoats.com/bold-vectors-in-latex.htm#comments</comments>
		<pubDate>Tue, 13 Feb 2007 02:26:53 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Physics]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[vector]]></category>

		<guid isPermaLink="false">http://tapdancinggoats.com/?p=12</guid>
		<description><![CDATA[
Vectors can be typeset in LaTeX with the command \vec, which decorates the argument with a little arrow.  This was cute at first, but it doesn&#8217;t look very good, especially in fractions.  Textbooks use bold face for vectors, so here&#8217;s how to do that in LaTeX.


\let\oldhat\hat
\renewcommand{\vec}[1]{\mathbf{#1}}
\renewcommand{\hat}[1]{\oldhat{\mathbf{#1}}}


This also makes unit vectors (typeset with \hat) [...]]]></description>
			<content:encoded><![CDATA[<p>
Vectors can be typeset in LaTeX with the command <tt>\vec</tt>, which decorates the argument with a little arrow.  This was cute at first, but it doesn&#8217;t look very good, especially in fractions.  Textbooks use bold face for vectors, so here&#8217;s how to do that in LaTeX.
</p>

<div class="dean_ch" style="white-space: wrap;"><span class="re2">\let</span><span class="re2">\oldhat</span><span class="re2">\hat</span><br />
<span class="re2">\renewcommand</span>{<span class="re3"><span class="re2">\vec</span>}[<span class="re4">1</span>]{<span class="re2">\mathbf</span>{#1}</span>}<br />
<span class="re2">\renewcommand</span>{<span class="re3"><span class="re2">\hat</span>}[<span class="re4">1</span>]{<span class="re2">\oldhat</span>{<span class="re2">\mathbf</span>{#1}}</span>}</div>

<p>
This also makes unit vectors (typeset with <tt>\hat</tt>) bold.
</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=3RFbVW11HWc:bJmw7MXQGlA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=3RFbVW11HWc:bJmw7MXQGlA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=3RFbVW11HWc:bJmw7MXQGlA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=3RFbVW11HWc:bJmw7MXQGlA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=3RFbVW11HWc:bJmw7MXQGlA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=3RFbVW11HWc:bJmw7MXQGlA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=3RFbVW11HWc:bJmw7MXQGlA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=3RFbVW11HWc:bJmw7MXQGlA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/3RFbVW11HWc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/bold-vectors-in-latex.htm/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Silly Jessica Simpson Game, Pizza Hut Codes</title>
		<link>http://www.tapdancinggoats.com/silly-jessica-simpson-game.htm</link>
		<comments>http://www.tapdancinggoats.com/silly-jessica-simpson-game.htm#comments</comments>
		<pubDate>Sun, 04 Feb 2007 19:46:57 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[Pizza Hut]]></category>

		<guid isPermaLink="false">http://tapdancinggoats.com/?p=11</guid>
		<description><![CDATA[I don&#8217;t get it, but my wife loves the celebrity gossip, so when all this stuff about Jessica Simpson started coming out I whipped up this little game to make her laugh.  It&#8217;s an homage to an old Mac game I haven&#8217;t seen in years called &#8220;Slick Willie.&#8221;  I&#8217;m also keeping track of [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t get it, but my wife loves the celebrity gossip, so when all this stuff about Jessica Simpson started coming out I whipped up this little game to make her laugh.  It&#8217;s an homage to an old Mac game I haven&#8217;t seen in years called &#8220;Slick Willie.&#8221;  I&#8217;m also keeping track of <a href="http://www.pizzahut.com/hunt/" title="Cheesy Hunt">Pizza Hut&#8217;s sweepstakes codes</a> here.  Have fun.</p>

<p>
Click on &#8220;more&#8221; to play the game.
</p>

<p><span id="more-11"></span>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="550" height="400" id="munching" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="http://www.tapdancinggoats.com/flash/munchies/munching.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="http://www.tapdancinggoats.com/flash/munchies/munching.swf" quality="high" bgcolor="#ffffff" width="550" height="400" name="munching" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></p>

<p>
  <h3>This week&#8217;s Pizza Hut code</h3>
  Send the word &#8220;WIN&#8221; to <tt>843488</tt> with your cell phone (the kids call it &#8220;texting&#8221;) to enter to win a new car, an entertainment center, free pizza, and more prizes. <a href="http://www.pizzahut.com/hunt/" title="Cheesy Hunt">Learn more.</a>
</p>

<p>
  Here&#8217;s what they&#8217;re giving away:
  <ul>
    <li>$30k for a car</li>
    <li>5 entertainment centers worth $4k each</li>

    <li>20 $400 Pizza Hut gift cards</li>
    <li>500 $5 music download gift cards</li>
  </ul>
</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=CRo_LgnQdys:rHLyeLTJM30:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=CRo_LgnQdys:rHLyeLTJM30:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=CRo_LgnQdys:rHLyeLTJM30:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=CRo_LgnQdys:rHLyeLTJM30:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=CRo_LgnQdys:rHLyeLTJM30:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=CRo_LgnQdys:rHLyeLTJM30:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Tapdancinggoats?a=CRo_LgnQdys:rHLyeLTJM30:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Tapdancinggoats?i=CRo_LgnQdys:rHLyeLTJM30:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Tapdancinggoats/~4/CRo_LgnQdys" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tapdancinggoats.com/silly-jessica-simpson-game.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
