<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Schadenfreude &#187; flash</title>
	<atom:link href="http://www.ralree.com/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ralree.com</link>
	<description>Malicious enjoyment derived from observing someone else's misfortune</description>
	<lastBuildDate>Sun, 28 Feb 2010 04:18:37 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>NATO Phonetic Alphabet Flash Game</title>
		<link>http://www.ralree.com/2008/10/20/nato-phonetic-alphabet-flash-game/</link>
		<comments>http://www.ralree.com/2008/10/20/nato-phonetic-alphabet-flash-game/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 03:22:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[airplanes]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flying]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[nato]]></category>
		<category><![CDATA[pilot]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2008/10/20/nato-phonetic-alphabet-flash-game</guid>
		<description><![CDATA[I have to learn the phonetic alphabet to be a pilot.  This game made it easy:

From here
]]></description>
			<content:encoded><![CDATA[<p>I have to learn the phonetic alphabet to be a pilot.  This game made it easy:</p>
<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" title="MultiBoxMedia" width="600" height="400"><param name="movie" value="/assets/2008/10/20/lexiconLander_en.swf"><param name="quality" value="high"><embed src="http://takecharge.navcanada.ca/flash/lexiconLander_en.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="600" height="400"></object></p>
<p>From <a href="http://takecharge.navcanada.ca/en/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2008/10/20/nato-phonetic-alphabet-flash-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting Non-YouTube Videos in MxTube</title>
		<link>http://www.ralree.com/2008/08/07/putting-non-youtube-videos-in-mxtube/</link>
		<comments>http://www.ralree.com/2008/08/07/putting-non-youtube-videos-in-mxtube/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 06:49:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2008/08/07/putting-non-youtube-videos-in-mxtube</guid>
		<description><![CDATA[So, you have your Jailbroken iPod Touch or iPhone with 2.0 firmware running OpenSSH, and you have MxTube 1.5 or better, of course. What if you want one of those pesky videos that YouTube deletes all the time, like Paris Hilton For President? Or maybe you want a full movie on your iPod without having to sync to iTunes since you’re stuck in Linux Land. Well, here’s how.]]></description>
			<content:encoded><![CDATA[<p>So, you have your <strong>Jailbroken</strong> iPod Touch or iPhone with 2.0 firmware running OpenSSH, and you have <a href="http://www.appleiphoneapps.com/2008/08/update-mxtube-v15-with-walkthrough/">MxTube 1.5 or better</a>, of course.  What if you want one of those pesky videos that YouTube deletes all the time, like Paris Hilton For President?  Or maybe you want a full movie on your iPod without having to sync to iTunes since you’re stuck in Linux Land.  Well, here’s how:</p>
<h2>Download the video</h2>
<p>This can be done lots of ways, but somehow obtain a version of the video that ffmpeg can read.  It can be just about any format.  Let’s assume that we get a file called <strong>paris.flv</strong>.</p>
<h2>Convert the video</h2>
<pre><code>
ffmpeg -i paris.flv -b 500000 -s 176x144 -ac 1 -ab 64000 paris-high.mp4
</code></pre>
<p>This will make a nice movie for us to play.  Let’s put it on the iPod:</p>
<pre><code>
scp paris-high.mp4 root@ipod:/var/mobile/Media/MxTube/
</code></pre>
<h2>Make the Thumbnail</h2>
<p>We need to grab a frame from the middle of the movie.  Let’s use <code>mplayer</code> for that!</p>
<pre><code>
mplayer -vo jpeg -frames 1 -ss 30 paris.flv
</code></pre>
<p>This will make a file called <strong>00000001.jpg</strong>.  Let’s put that in the right spot:</p>
<pre><code>
scp 00000001.jpg root@ipod:/var/mobile/Media/MxTube/paris.thm
</code></pre>
<h2>Add the video to the Library</h2>
<p>Edit <strong>/var/mobile/Library/MxTube/VideoLibrary.plist</strong> <em>on the iPod</em>.  Make a new <strong>dict</strong> entry in the list like so:</p>
<pre><code>
        &lt;dict&gt;
                &lt;key&gt;author&lt;/key&gt;
                &lt;string&gt;hank&lt;/string&gt;
                &lt;key&gt;duration&lt;/key&gt;
                &lt;string&gt;01:50&lt;/string&gt;
                &lt;key&gt;high&lt;/key&gt;
                &lt;string&gt;/var/mobile/Media/MxTube/paris-high.mp4&lt;/string&gt;
                &lt;key&gt;id&lt;/key&gt;
                &lt;string&gt;64ad536a6dQ&lt;/string&gt;
                &lt;key&gt;thumbnail&lt;/key&gt;
                &lt;string&gt;/var/mobile/Media/MxTube/paris.thm&lt;/string&gt;
                &lt;key&gt;title&lt;/key&gt;
                &lt;string&gt;Paris for President&lt;/string&gt;
        &lt;/dict&gt;
</code></pre>
<p>Just fill in the right filenames for the thumbnail and movie like you used above.  Also, change the author to yourself or the original director, and the duration accordingly.  Keep the id something random.  Also, you can change the display title as the last option there.</p>
<h2>Other Pro Tips</h2>
<p>Keep in mind that if you want to be able to delete the movie from the interface, you need to change the ownership on all the files to <strong>mobile:mobile</strong> using <code>chown</code>.</p>
<h2>Results!</h2>
<p>Well, it totally works, with sound even.</p>
<p><img src="http://ralree.com/assets/2008/8/7/IMG_0001.PNG" alt="Paris is at the Bottom" /></p>
<p><img src="http://ralree.com/assets/2008/8/7/IMG_0006.PNG" alt="Here's Paris in Full Glory" /></p>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2008/08/07/putting-non-youtube-videos-in-mxtube/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flash 10 for Linux Fixes Landmark Bug</title>
		<link>http://www.ralree.com/2008/07/04/flash-10-for-linux-fixes-landmark-bug/</link>
		<comments>http://www.ralree.com/2008/07/04/flash-10-for-linux-fixes-landmark-bug/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 04:26:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[close source]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2008/07/04/flash-10-for-linux-fixes-landmark-bug</guid>
		<description><![CDATA[The new July 2nd version of Flash Player 10 for Linux finally fixes the HTML overlay bug that we&#8217;ve been seeing for years.  You can now see things on top of the flash elements on the page, like so:

Get it now!
Update
After trying it with YouTube and TheSixtyOne, and seeing some lame bugs, I decided [...]]]></description>
			<content:encoded><![CDATA[<p>The new July 2nd version of Flash Player 10 for Linux finally fixes the HTML overlay bug that we&#8217;ve been seeing for years.  You can now see things on top of the flash elements on the page, like so:</p>
<p><img src="http://ralree.info/assets/2008/7/4/flash_linux_fix.png" alt="Now I have to go clean myself"/></p>
<p><a href="http://labs.adobe.com/downloads/flashplayer10.html">Get it now!</a></p>
<h1>Update</h1>
<p>After trying it with YouTube and <a href="http://www.thesixtyone.com">TheSixtyOne</a>, and seeing some lame bugs, I decided to go back to Flash 9 and face the music on overlays.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2008/07/04/flash-10-for-linux-fixes-landmark-bug/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sad display of humanity</title>
		<link>http://www.ralree.com/2008/06/07/sad-display-of-humanity/</link>
		<comments>http://www.ralree.com/2008/06/07/sad-display-of-humanity/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 14:51:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[sad]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2008/06/07/sad-display-of-humanity</guid>
		<description><![CDATA[It&#8217;s pretty sick when an old man is hit by a driver and they don&#8217;t even have the common courtesy to stop.

Originally from here, but they took it down for some reason.  It&#8217;s disturbing, but I see no reason to stop society from seeing itself.
]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s pretty sick when an old man is hit by a driver and they don&#8217;t even have the common courtesy to stop.</p>
<p><embed src="/flash_player/flvplayer.swf" width="600" height="400" type="application/x-shockwave-flash"   pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=/videos/car_pwnd.flv&#038;displayheight=400&#038;displaywidth=600"/></p>
<p>Originally from <a href="http://news.bbc.co.uk/2/hi/americas/7441014.stm">here</a>, but they took it down for some reason.  It&#8217;s disturbing, but I see no reason to stop society from seeing itself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2008/06/07/sad-display-of-humanity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source Flash Players</title>
		<link>http://www.ralree.com/2008/05/26/open-source-flash-players/</link>
		<comments>http://www.ralree.com/2008/05/26/open-source-flash-players/#comments</comments>
		<pubDate>Mon, 26 May 2008 23:52:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2008/05/27/open-source-flash-players</guid>
		<description><![CDATA[I decided after reading this article, I decided to try out SWFDec instead of Adobe Flash Player.  I shied away from Gnash early on since it didn&#8217;t support many newer features of Flash, and it didn&#8217;t work with YouTube.  But, apparently, SWFDec works with YouTube (I just tried it), and according to the [...]]]></description>
			<content:encoded><![CDATA[<p>I decided after reading <a href="http://www.ubuntu-unleashed.com/2008/05/howto-fix-firefox-and-epiphany-web.html">this article</a>, I decided to try out SWFDec instead of Adobe Flash Player.  I shied away from Gnash early on since it didn&#8217;t support many newer features of Flash, and it didn&#8217;t work with YouTube.  But, apparently, SWFDec works with YouTube (I just tried it), and according to the article above, my browser may use less resources now.  We&#8217;ll see.</p>
<h2>Update</h2>
<p>Well, it turns out it crashes on my TheSixtyOne player on the right!  Time to try Gnash&#8230;</p>
<h2>Update 2</h2>
<p>Experiment <strong><em>over</strong></em>.  The OSS Flash solutions completely fail at playing the flash audio on the right.  Once they get just a little more compatible, I&#8217;ll try again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2008/05/26/open-source-flash-players/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Awesome travel knowledge game</title>
		<link>http://www.ralree.com/2007/12/05/awesome-travel-knowledge-game/</link>
		<comments>http://www.ralree.com/2007/12/05/awesome-travel-knowledge-game/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 05:31:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[world]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/12/05/awesome-travel-knowledge-game</guid>
		<description><![CDATA[Man this is a fun game!


This Traveler IQ
challenge is brought to you by the Web&#8217;s Original Travel Blog&#160;


]]></description>
			<content:encoded><![CDATA[<p>Man this is a fun game!</p>
<div style="padding: 0px; margin: 0px; text-align:right; width:625px; font-family: tahoma,verdana,arial,sans-serif; color:#ffffff; background-color: #000000;"><embed src="http://tiq.travelpod.com/bin/flash/container.swf" QUALITY="high" bgcolor="#000000" WIDTH="625" HEIGHT="500" NAME="TravelerIQ" ALIGN="middle" TYPE="application/x-shockwave-flash" wmode="opaque" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" FlashVars="gamexml=http://tiq.travelpod.com/cgi-bin/witw?SessionID=00-traveleriq-game1&#038;gameswf=http://tiq.travelpod.com/bin/flash/witw-00.swf" ></embed></p>
<div style="text-align:right; width:625px; font-family: tahoma,verdana,arial,sans-serif; font-size: 10px; color:#ffffff; background-color: #000000;">
This <a href="http://www.travelpod.com/traveler-iq/game1"><font style="color: #FFFF00">Traveler IQ</font></a><br />
challenge is brought to you by the Web&#8217;s Original <a href="http://www.travelpod.com"><font style="color: #FFFF00">Travel Blog</font></a>&nbsp;</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2007/12/05/awesome-travel-knowledge-game/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Meetup group size for popular candidates</title>
		<link>http://www.ralree.com/2007/12/02/meetup-group-size-for-popular-candidates/</link>
		<comments>http://www.ralree.com/2007/12/02/meetup-group-size-for-popular-candidates/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 18:33:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[election 2008]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[ron paul]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/12/02/meetup-group-size-for-popular-candidates</guid>
		<description><![CDATA[I saw a post on Digg that caught my eye, and thought that this might be another way to gauge the amount of hardcore supporters each popular candidate has.  I picked the following:

Ron Paul
Dennis Kucinich
Barack Obama
Hillary Clinton
Rudy Giuliani
Mitt Romney
Mike Huckabee
Fred Thompson
John Edwards
Mike Gravel
John McCain

Now, you would think that the number of hardcore supporters should [...]]]></description>
			<content:encoded><![CDATA[<p>I saw a post on <a href="http://digg.com/2008_us_elections/Ron_Paul_volunteers_nears_80_thousand">Digg</a> that caught my eye, and thought that this might be another way to gauge the amount of hardcore supporters each popular candidate has.  I picked the following:</p>
<ul>
<li><a href="http://ronpaul.meetup.com/about/">Ron Paul</a></li>
<li><a href="http://denniskucinich.meetup.com/about/">Dennis Kucinich</a></li>
<li><a href="http://barackobama.meetup.com/about/">Barack Obama</a></li>
<li><a href="http://hrclinton.meetup.com/about/">Hillary Clinton</a></li>
<li><a href="http://rudygiuliani.meetup.com/about/">Rudy Giuliani</a></li>
<li><a href="http://mittromney.meetup.com/about/">Mitt Romney</a></li>
<li><a href="http://mikehuckabee.meetup.com/about/">Mike Huckabee</a></li>
<li><a href="http://fredthompson.meetup.com/about/">Fred Thompson</a></li>
<li><a href="http://johnedwards.meetup.com/about/">John Edwards</a></li>
<li><a href="http://mikegravel.meetup.com/about/">Mike Gravel</a></li>
<li><a href="http://johnmccain.meetup.com/about/">John McCain</a></li>
</ul>
<p>Now, you would think that the number of hardcore supporters should correlate nicely with the number of voters turning out in the primaries since one should think that anyone in a Meetup group would go vote come primary day.  But, sadly, by the looks of it very few of the supporters of the &#8220;top-tier&#8221; Republican candidates are enthusiastic enough to join a Meetup group.  I wonder why since this would help their campaigns immensely.  Here&#8217;s the result:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="550" height="300" id="graph107011" align="middle"><param name="allowScriptAccess" value="always" /><param name="movie" value="/open-flash-chart.swf?width=550 &amp;height=300 &amp;data=%2Fcharts%2F2007-12-02-meetups.php" /><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><embed src="/open-flash-chart.swf?width=550&amp;height=300&amp;data=%2Fcharts%2F2007-12-02-meetups.php" quality="high" bgcolor="#FFFFFF" width="550" height="300" name="open-flash-chart" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></p>
<p>Maybe they&#8217;re all just using a different site?  Let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2007/12/02/meetup-group-size-for-popular-candidates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aligning with the Candidates</title>
		<link>http://www.ralree.com/2007/11/25/aligning-with-the-candidates/</link>
		<comments>http://www.ralree.com/2007/11/25/aligning-with-the-candidates/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 22:55:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[election 2008]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/11/25/aligning-with-the-candidates</guid>
		<description><![CDATA[I took this test to see which current presidential
candidates my views align with, and got some pretty surprising results:

It&#8217;s based on this table of the candidates views on popular issues, and how strong your feelings are on each one.  A good tool indeed, and it should be publicized as a guideline for voters by [...]]]></description>
			<content:encoded><![CDATA[<p>I took <a href="http://www.dehp.net/candidate/index.php">this test</a> to see which current presidential<br />
candidates my views align with, and got some pretty surprising results:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="600" height="300" id="graph142809" align="middle"><param name="allowScriptAccess" value="always" /><param name="movie" value="/open-flash-chart.swf?width=600 &amp;height=300 &amp;data=%2Fcharts%2F2007-11-15-candidates.php" /><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><embed src="/open-flash-chart.swf?width=600&amp;height=300&amp;data=%2Fcharts%2F2007-11-15-candidates.php" quality="high" bgcolor="#FFFFFF" width="600" height="300" name="open-flash-chart" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></p>
<p>It&#8217;s based on <a href="http://www.2decide.com/table.htm">this table</a> of the candidates views on popular issues, and how strong your feelings are on each one.  A good tool indeed, and it should be publicized as a guideline for voters by our caring media since we all want voters to make informed decisions&#8230;</p>
<p>The graph led to this:</p>
<p><img src="http://ralree.com/assets/2007/11/25/political_star_wars.jpg" alt="Political Star Wars"/></p>
<p>I have no explanation for this picture.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2007/11/25/aligning-with-the-candidates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mr. T and Shatner play WOW</title>
		<link>http://www.ralree.com/2007/11/24/mr-t-and-shatner-play-wow/</link>
		<comments>http://www.ralree.com/2007/11/24/mr-t-and-shatner-play-wow/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 06:38:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[mr. t]]></category>
		<category><![CDATA[shatner]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[world of warcraft]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/11/24/mr-t-and-shatner-play-wow</guid>
		<description><![CDATA[So, I saw these like a week ago, and then spent about 5 days getting the high-definition versions from the terrible World of Warcraft Bittorrent trackers.  Finally, I have them.

Shatner High Definition Version (8 MB)

Mr. T High Definition Version (8 MB)
]]></description>
			<content:encoded><![CDATA[<p>So, I saw these like a week ago, and then spent about 5 days getting the high-definition versions from the <strong><em>terrible</strong></em> World of Warcraft Bittorrent trackers.  Finally, I have them.</p>
<p><embed src="/flash_player/flvplayer.swf" width="480" height="272"  type="application/x-shockwave-flash"    pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=/videos/wow_shatner_tvspot.flv&#038;displayheight=272&#038;displaywidth=480"/></p>
<h3><a href="/videos/WOW_SHATNER.avi">Shatner High Definition Version</a> (8 MB)</h3>
<p><embed src="/flash_player/flvplayer.swf" width="480" height="272" type="application/x-shockwave-flash"    pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=/videos/wow_mrt_tvspot.flv&#038;displayheight=272&#038;displaywidth=480"/></p>
<h3><a href="/videos/WOW_MR_T.avi">Mr. T High Definition Version</a> (8 MB)</h3>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2007/11/24/mr-t-and-shatner-play-wow/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tracking my workouts on cool charts</title>
		<link>http://www.ralree.com/2007/11/06/tracking-my-workouts-on-cool-charts/</link>
		<comments>http://www.ralree.com/2007/11/06/tracking-my-workouts-on-cool-charts/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 05:15:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[exercise]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[mephisto]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/11/17/tracking-my-workouts-on-cool-charts</guid>
		<description><![CDATA[
I decided today that I wanted to track my calories burned per day on a nice line graph.  I did it, and I think I will continue.  The total is automatically calculated by the PHP data source.  This was made using my Mephisto Plugin for Open Flash Charts.
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="660" height="300" id="graph46523" align="middle"><param name="allowScriptAccess" value="always" /><param name="movie" value="/open-flash-chart.swf?width=660 &amp;height=300 &amp;data=%2Fcharts%2F2007-11-06-workouts.php" /><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><embed src="/open-flash-chart.swf?width=660&amp;height=300&amp;data=%2Fcharts%2F2007-11-06-workouts.php" quality="high" bgcolor="#FFFFFF" width="660" height="300" name="open-flash-chart" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object></p>
<p>I decided today that I wanted to track my calories burned per day on a nice line graph.  I did it, and I think I will continue.  The total is automatically calculated by the PHP data source.  This was made using my <a href="http://ralree.info/2007/10/22/flash-chart-testing">Mephisto Plugin for Open Flash Charts</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2007/11/06/tracking-my-workouts-on-cool-charts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.389 seconds -->
