<?xml version="1.0" encoding="iso-8859-1"?><!-- generator="b2evolution/2.4.7" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>[ p l a c i d c h a o s / A M ]</title>
		<link>http://www.placidchaos.com/AM/index.php</link>
		<description>In the dark hours, while others sleep, I can be found making balls bounce and tails wag.  This is the way of an animation ninja in training...</description>
		<language>en-US</language>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=2.4.7"/>
		<ttl>60</ttl>
				<item>
			<title>I'm a genius!</title>
			<link>http://www.placidchaos.com/AM/index.php/2007/02/03/sync_itunes_library_mac_pc_bootcamp</link>
			<pubDate>Sat, 03 Feb 2007 09:36:08 +0000</pubDate>			<dc:creator>boywonder</dc:creator>
			<category domain="main">Random</category>			<guid isPermaLink="false">93@http://www.placidchaos.com/AM/</guid>
						<description>&lt;p&gt;OK, so maybe not, but after an agonizingly long night I did figure out how to sync my iTunes library between Mac/PC operating systems on my Mac Pro running Boot Camp.&lt;/p&gt;

&lt;p&gt;Thanks to the untimely demise of my PC, a few months ago, I purchased a Mac Pro and have since been searching (to no avail) for a way to share the same iTunes library on both the Mac and PC side of my machine.  This way if I import CDs while booted into Tiger, or change ratings and create playlists while in XP, any changes will be automatically reflected in the iTunes library on the other operating system.&lt;/p&gt;

&lt;p&gt;I knew, when originally formatting my Mac Pro's drives, that this was something I was going to want to do so I created a FAT32 partition for my music library to reside on.  This would allow both Tiger and XP (still waiting on my Vista disc to arrive, hello Microsoft...) the ability to read/write the same files.  I then thought that all I would have to do is change the iTunes Music folder location on both OS's to a folder on the FAT32 drive and that iTunes on both OS's would read/write the same library file on that drive. Ha, to be so naive.&lt;/p&gt;

&lt;p&gt;It turns out that the PC version of iTunes cannot, by default, read the library created by the Mac, and vice versa.  Rather than use the library created by the other OS, iTunes creates a new (and empty) library file.  This was very frustrating and so for a month or so I gave up trying because: &lt;br /&gt;
A) I was busy with work and Christmas stuff &lt;br /&gt;
B) I'm not much of a hacker/programmer&lt;/p&gt;

&lt;p&gt;Lately, though, this has really been grating me as I'm constantly listening to music and I'm obsessive compulsive when it comes to my music being organized; so with all the work I have to do this weekend I decided that the best way to procrastinate would be to figure this out.&lt;/p&gt;

&lt;p&gt;After playing around with a bunch of different ideas I discovered that, low and behold, iTunes on the PC could read the Mac created library if I added the .itl extension to the library file, and the Mac could read the PC created library file if I removed the .itl extension.  Score!&lt;/p&gt;

&lt;p&gt;Now that the biggest obstacle was hurdled all I had to do is figure a way to copy the library file from the Mac side to the PC side and again... vice versa.  Since I don't know jack about DOS programming except for basic commands this part took longer that I'd like to admit but after some trial and error I managed to create a solution that works flawlessly.  The best part is that since I'm smart (or lazy) I created two batch scripts that run automatically, one at Windows startup and the other at Windows shutdown, so I never have to touch anything to keep them synced.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you're interested, here are the steps...&lt;br /&gt;
Caution:&lt;/strong&gt;&lt;i&gt; Proceed at your own risk, I take absolutely no responsibility for any loss of files or life, or any other undesirable consequences that you may incur when attempting these instructions.  So be smart, use your discretion and have backups of everything on a separate disc/partition.&lt;/i&gt;&lt;/p&gt;



&lt;p&gt;1) Format a FAT32 partition large enough (including growth room) for the iTunes Music folder containing all your music files.  This will allow both the Mac and PC to read/write the music files and also to the iTunes Library file.&lt;/p&gt;

&lt;p&gt;2) In iTunes' Preferences, under Advanced &gt; General, set the iTunes Music folder location to the Fat32 partition.  Make sure that you have 'Keep iTunes Music folder organized' and 'Copy files to iTunes Music folder when adding to library' both checked.  Do this step on both the PC and Mac side.&lt;/p&gt;

&lt;p&gt;3) Since the batch scripts are executed in Windows, the Mac library file needs to be on a Windows accessible drive.  I have my Mac iTunes library file set to reside in the iTunes folder on the FAT32 drive rather than the default location in the Music folder on the main Mac drive.  The PC library resides in its default location.  &lt;/p&gt;

&lt;p&gt;4) Set your library up on the Mac side of things and get it the way you want it, we're going to start the whole cycle by copying the Mac library file over to the PC.&lt;/p&gt;

&lt;p&gt;5) Here is the code for the script that runs on XP startup:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;copy /Y &quot;E:\iTunes\iTunes Library&quot; &quot;G:\My Music\iTunes\&quot;&lt;br /&gt;
ren *. *.itl&lt;br /&gt;
copy /Y &quot;E:\iTunes\iTunes Library.xml&quot; &quot;G:\My Music\iTunes\&quot;&lt;br /&gt;
cls&lt;br /&gt;
exit&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;This copies the Mac created iTunes library file and XML file from the FAT32 disc (E:) and pastes it in the iTunes folder on the PC side (G:) and then adds the .itl extension to the pasted library file so that the PC version of iTunes can access it.&lt;br /&gt;
Normally the path to the XP iTunes library file would look more along the lines of...&lt;br /&gt;
C:\Documents and Settings\user name\My Documents\My Music\iTunes &lt;br /&gt;
... but I have my G: drive set to be my 'My Documents' folder.&lt;/p&gt;

&lt;p&gt;Once this script runs, iTunes in XP can read the library and any changes that were made to the library on the Mac side will be reflected on the PC. Excellent, but only half the battle. For the Mac iTunes to be constantly updated we need a script that will copy the PC iTunes library back over for the Mac to read. &lt;/p&gt;

&lt;p&gt;The code for the script that runs on XP shutdown:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;ren *.itl *.&lt;br /&gt;
copy /Y &quot;G:\My Music\iTunes\iTunes Library&quot; &quot;E:\iTunes\&quot; &lt;br /&gt;
copy /Y &quot;G:\My Music\iTunes\iTunes Library.xml&quot; &quot;E:\iTunes\&quot; &lt;br /&gt;
cls&lt;br /&gt;
exit&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;This cuts the extension off the library file in the PC folder and then copies it and the XML file back over to the FAT32 drive for Mac iTunes to use.&lt;/p&gt;

&lt;p&gt;I have both scripts saved as .bat files in the PC iTunes folder with the first one set to run automatically at XP startup and the second at XP shutdown, effectively ensuring that regardless of the OS you boot into the iTunes library file you have is the most current.&lt;/p&gt;

&lt;p&gt;It should be noted that I'm actually not a genius and there may be a better or more efficient way to accomplish synced iTunes libraries across different OS's on the same machine, but this is the only way that I've found to work flawlessly and automatically for my 10,000+ song, 50GB library.  If you find a better way please leave a comment, otherwise enjoy!&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.placidchaos.com/AM/index.php/2007/02/03/sync_itunes_library_mac_pc_bootcamp&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>OK, so maybe not, but after an agonizingly long night I did figure out how to sync my iTunes library between Mac/PC operating systems on my Mac Pro running Boot Camp.</p>

<p>Thanks to the untimely demise of my PC, a few months ago, I purchased a Mac Pro and have since been searching (to no avail) for a way to share the same iTunes library on both the Mac and PC side of my machine.  This way if I import CDs while booted into Tiger, or change ratings and create playlists while in XP, any changes will be automatically reflected in the iTunes library on the other operating system.</p>

<p>I knew, when originally formatting my Mac Pro's drives, that this was something I was going to want to do so I created a FAT32 partition for my music library to reside on.  This would allow both Tiger and XP (still waiting on my Vista disc to arrive, hello Microsoft...) the ability to read/write the same files.  I then thought that all I would have to do is change the iTunes Music folder location on both OS's to a folder on the FAT32 drive and that iTunes on both OS's would read/write the same library file on that drive. Ha, to be so naive.</p>

<p>It turns out that the PC version of iTunes cannot, by default, read the library created by the Mac, and vice versa.  Rather than use the library created by the other OS, iTunes creates a new (and empty) library file.  This was very frustrating and so for a month or so I gave up trying because: <br />
A) I was busy with work and Christmas stuff <br />
B) I'm not much of a hacker/programmer</p>

<p>Lately, though, this has really been grating me as I'm constantly listening to music and I'm obsessive compulsive when it comes to my music being organized; so with all the work I have to do this weekend I decided that the best way to procrastinate would be to figure this out.</p>

<p>After playing around with a bunch of different ideas I discovered that, low and behold, iTunes on the PC could read the Mac created library if I added the .itl extension to the library file, and the Mac could read the PC created library file if I removed the .itl extension.  Score!</p>

<p>Now that the biggest obstacle was hurdled all I had to do is figure a way to copy the library file from the Mac side to the PC side and again... vice versa.  Since I don't know jack about DOS programming except for basic commands this part took longer that I'd like to admit but after some trial and error I managed to create a solution that works flawlessly.  The best part is that since I'm smart (or lazy) I created two batch scripts that run automatically, one at Windows startup and the other at Windows shutdown, so I never have to touch anything to keep them synced.</p>

<p><strong>If you're interested, here are the steps...<br />
Caution:</strong><i> Proceed at your own risk, I take absolutely no responsibility for any loss of files or life, or any other undesirable consequences that you may incur when attempting these instructions.  So be smart, use your discretion and have backups of everything on a separate disc/partition.</i></p>



<p>1) Format a FAT32 partition large enough (including growth room) for the iTunes Music folder containing all your music files.  This will allow both the Mac and PC to read/write the music files and also to the iTunes Library file.</p>

<p>2) In iTunes' Preferences, under Advanced > General, set the iTunes Music folder location to the Fat32 partition.  Make sure that you have 'Keep iTunes Music folder organized' and 'Copy files to iTunes Music folder when adding to library' both checked.  Do this step on both the PC and Mac side.</p>

<p>3) Since the batch scripts are executed in Windows, the Mac library file needs to be on a Windows accessible drive.  I have my Mac iTunes library file set to reside in the iTunes folder on the FAT32 drive rather than the default location in the Music folder on the main Mac drive.  The PC library resides in its default location.  </p>

<p>4) Set your library up on the Mac side of things and get it the way you want it, we're going to start the whole cycle by copying the Mac library file over to the PC.</p>

<p>5) Here is the code for the script that runs on XP startup:</p>
<blockquote><p>copy /Y "E:\iTunes\iTunes Library" "G:\My Music\iTunes\"<br />
ren *. *.itl<br />
copy /Y "E:\iTunes\iTunes Library.xml" "G:\My Music\iTunes\"<br />
cls<br />
exit</p></blockquote>

<p>This copies the Mac created iTunes library file and XML file from the FAT32 disc (E:) and pastes it in the iTunes folder on the PC side (G:) and then adds the .itl extension to the pasted library file so that the PC version of iTunes can access it.<br />
Normally the path to the XP iTunes library file would look more along the lines of...<br />
C:\Documents and Settings\user name\My Documents\My Music\iTunes <br />
... but I have my G: drive set to be my 'My Documents' folder.</p>

<p>Once this script runs, iTunes in XP can read the library and any changes that were made to the library on the Mac side will be reflected on the PC. Excellent, but only half the battle. For the Mac iTunes to be constantly updated we need a script that will copy the PC iTunes library back over for the Mac to read. </p>

<p>The code for the script that runs on XP shutdown:</p>
<blockquote><p>ren *.itl *.<br />
copy /Y "G:\My Music\iTunes\iTunes Library" "E:\iTunes\" <br />
copy /Y "G:\My Music\iTunes\iTunes Library.xml" "E:\iTunes\" <br />
cls<br />
exit</p></blockquote>

<p>This cuts the extension off the library file in the PC folder and then copies it and the XML file back over to the FAT32 drive for Mac iTunes to use.</p>

<p>I have both scripts saved as .bat files in the PC iTunes folder with the first one set to run automatically at XP startup and the second at XP shutdown, effectively ensuring that regardless of the OS you boot into the iTunes library file you have is the most current.</p>

<p>It should be noted that I'm actually not a genius and there may be a better or more efficient way to accomplish synced iTunes libraries across different OS's on the same machine, but this is the only way that I've found to work flawlessly and automatically for my 10,000+ song, 50GB library.  If you find a better way please leave a comment, otherwise enjoy!</p><div class="item_footer"><p><small><a href="http://www.placidchaos.com/AM/index.php/2007/02/03/sync_itunes_library_mac_pc_bootcamp">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.placidchaos.com/AM/index.php/2007/02/03/sync_itunes_library_mac_pc_bootcamp#comments</comments>
		</item>
				<item>
			<title>Week 8 face poses</title>
			<link>http://www.placidchaos.com/AM/index.php/2006/08/21/week_8_face_poses</link>
			<pubDate>Mon, 21 Aug 2006 04:38:51 +0000</pubDate>			<dc:creator>boywonder</dc:creator>
			<category domain="main">Animation Mentor</category>
<category domain="alt">Sketches</category>			<guid isPermaLink="false">89@http://www.placidchaos.com/AM/</guid>
						<description>&lt;p&gt;&lt;img src=&quot;http://placidchaos.com/AM/media/wk8_poses.jpg&quot; alt=&quot;week 8 face poses - Good Charlotte&quot; title=&quot;&quot; /&gt;&lt;/p&gt;&lt;p&gt;I know my dude on the left needs his top lip tucked in a bit more, but that's a limit of the rig.  Now to just add some tats...&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.placidchaos.com/AM/index.php/2006/08/21/week_8_face_poses&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><img src="http://placidchaos.com/AM/media/wk8_poses.jpg" alt="week 8 face poses - Good Charlotte" title="" /></p><p>I know my dude on the left needs his top lip tucked in a bit more, but that's a limit of the rig.  Now to just add some tats...</p><div class="item_footer"><p><small><a href="http://www.placidchaos.com/AM/index.php/2006/08/21/week_8_face_poses">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.placidchaos.com/AM/index.php/2006/08/21/week_8_face_poses#comments</comments>
		</item>
				<item>
			<title>Week 7 face poses</title>
			<link>http://www.placidchaos.com/AM/index.php/2006/08/15/week_7_face_poses</link>
			<pubDate>Tue, 15 Aug 2006 04:41:37 +0000</pubDate>			<dc:creator>boywonder</dc:creator>
			<category domain="main">Animation Mentor</category>
<category domain="alt">Sketches</category>			<guid isPermaLink="false">90@http://www.placidchaos.com/AM/</guid>
						<description>&lt;p&gt;&lt;img src=&quot;http://placidchaos.com/AM/media/wk7_poses.jpg&quot; alt=&quot;week 7 face poses - Kate Holmes, Crazy Face&quot; title=&quot;&quot; /&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.placidchaos.com/AM/index.php/2006/08/15/week_7_face_poses&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><img src="http://placidchaos.com/AM/media/wk7_poses.jpg" alt="week 7 face poses - Kate Holmes, Crazy Face" title="" /></p><div class="item_footer"><p><small><a href="http://www.placidchaos.com/AM/index.php/2006/08/15/week_7_face_poses">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.placidchaos.com/AM/index.php/2006/08/15/week_7_face_poses#comments</comments>
		</item>
				<item>
			<title>Week 6 face poses</title>
			<link>http://www.placidchaos.com/AM/index.php/2006/08/09/week_6_face_poses</link>
			<pubDate>Thu, 10 Aug 2006 01:48:58 +0000</pubDate>			<dc:creator>boywonder</dc:creator>
			<category domain="main">Animation Mentor</category>
<category domain="alt">Sketches</category>			<guid isPermaLink="false">91@http://www.placidchaos.com/AM/</guid>
						<description>&lt;p&gt;&lt;img src=&quot;http://placidchaos.com/AM/media/wk6_poses.jpg&quot; alt=&quot;week 6 face poses - John Belushi&quot; title=&quot;&quot; /&gt;&lt;/p&gt;&lt;p&gt; I had a lot of trouble with the second pose and I'm still not happy with it, though I can't figure out what to fix.  Suggestions welcomed.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.placidchaos.com/AM/index.php/2006/08/09/week_6_face_poses&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><img src="http://placidchaos.com/AM/media/wk6_poses.jpg" alt="week 6 face poses - John Belushi" title="" /></p><p> I had a lot of trouble with the second pose and I'm still not happy with it, though I can't figure out what to fix.  Suggestions welcomed.</p><div class="item_footer"><p><small><a href="http://www.placidchaos.com/AM/index.php/2006/08/09/week_6_face_poses">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.placidchaos.com/AM/index.php/2006/08/09/week_6_face_poses#comments</comments>
		</item>
				<item>
			<title>Week 5 face poses</title>
			<link>http://www.placidchaos.com/AM/index.php/2006/08/04/week_5_face_poses</link>
			<pubDate>Fri, 04 Aug 2006 05:07:18 +0000</pubDate>			<dc:creator>boywonder</dc:creator>
			<category domain="main">Animation Mentor</category>
<category domain="alt">Sketches</category>			<guid isPermaLink="false">92@http://www.placidchaos.com/AM/</guid>
						<description>&lt;p&gt;&lt;img src=&quot;http://placidchaos.com/AM/media/wk5_poses.jpg&quot; alt=&quot;week 5 face poses&quot; title=&quot;&quot; /&gt;&lt;/p&gt;&lt;p&gt; This semester we are to create two faces poses a week to help us become comfortable posing the face.  I'll be posting mine as I go along, and as always, crits and comments are encouraged.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.placidchaos.com/AM/index.php/2006/08/04/week_5_face_poses&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><img src="http://placidchaos.com/AM/media/wk5_poses.jpg" alt="week 5 face poses" title="" /></p><p> This semester we are to create two faces poses a week to help us become comfortable posing the face.  I'll be posting mine as I go along, and as always, crits and comments are encouraged.</p><div class="item_footer"><p><small><a href="http://www.placidchaos.com/AM/index.php/2006/08/04/week_5_face_poses">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.placidchaos.com/AM/index.php/2006/08/04/week_5_face_poses#comments</comments>
		</item>
				<item>
			<title>Back online</title>
			<link>http://www.placidchaos.com/AM/index.php/2006/07/17/back_online</link>
			<pubDate>Mon, 17 Jul 2006 16:01:12 +0000</pubDate>			<dc:creator>boywonder</dc:creator>
			<category domain="main">Random</category>			<guid isPermaLink="false">88@http://www.placidchaos.com/AM/</guid>
						<description>&lt;p&gt;It took awhile but I'm now up and running on a new server.  Now to just find the time to re-design both the site and blog, as well as upload a bunch of new content.  Sometimes I'm envious of insomniacs.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.placidchaos.com/AM/index.php/2006/07/17/back_online&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>It took awhile but I'm now up and running on a new server.  Now to just find the time to re-design both the site and blog, as well as upload a bunch of new content.  Sometimes I'm envious of insomniacs.</p><div class="item_footer"><p><small><a href="http://www.placidchaos.com/AM/index.php/2006/07/17/back_online">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.placidchaos.com/AM/index.php/2006/07/17/back_online#comments</comments>
		</item>
				<item>
			<title>Frederator to podcast public domain toons</title>
			<link>http://www.placidchaos.com/AM/index.php/2006/04/20/frederator_to_podcast_public_domain_toon</link>
			<pubDate>Thu, 20 Apr 2006 13:50:41 +0000</pubDate>			<dc:creator>boywonder</dc:creator>
			<category domain="main">Animation Mentor</category>
<category domain="alt">Random</category>			<guid isPermaLink="false">85@http://www.placidchaos.com/AM/</guid>
						<description>&lt;p&gt;&lt;i&gt;From AWN&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;&quot;Frederator Studios has launched ReFrederator (www.refrederator.com), the&lt;br /&gt;
world's first daily vintage cartoon video podcast. &lt;/p&gt;

&lt;p&gt;ReFrederator will feature classic cartoons from the public domain such as&lt;br /&gt;
Bugs Bunny, Mighty Mouse, Daffy Duck, Betty Boop, Little Lulu, Porky Pig,&lt;br /&gt;
Donald Duck and Felix the Cat, as well as fairy tales and musicals. Every&lt;br /&gt;
7-9 minute podcast will feature a short-form classic cartoon and&lt;br /&gt;
promotional packaging and branding from ReFrederator. New episodes will&lt;br /&gt;
appear daily Monday through Friday, grouped into weekly themes.&lt;/p&gt;

&lt;p&gt;The first week of the new series features a Mother Goose theme, beginning&lt;br /&gt;
with a 1935 Humpty Dumpty cartoon from Ub Iwerks, Walt Disney's personal&lt;br /&gt;
friend and first employee, followed by Mighty Mouse in WOLF! WOLF! from&lt;br /&gt;
1945 and the Oscar-nominated PIGS IN A POLKA from director Friz Freleng.&lt;br /&gt;
The week will wrap up with POOR CINDERELLA, the only color Betty Boop&lt;br /&gt;
cartoon, and FONEY FABLES, a series of short vignette parodies of classic&lt;br /&gt;
Disney stories.&lt;/p&gt;

&lt;p&gt;Programming for ReFrederator is headed by producer Eric Homan and&lt;br /&gt;
illustrator, cartoonist and scholar Dave Kirwan (www.davekirwan.com).&lt;br /&gt;
Consultants include animation historian Jerry Beck&lt;br /&gt;
(www.cartoonresearch.com) and writer Melissa Wolfe. The launch programming&lt;br /&gt;
was edited by Barry Hirschberg. &lt;/p&gt;

&lt;p&gt;In addition, on Tuesday, April 18, the studio celebrates the showing of its&lt;br /&gt;
100th cartoon on its flagship Channel Frederator video podcast.&lt;/p&gt;

&lt;p&gt;For a free subscription to Channel Frederator or ReFrederator, search&lt;br /&gt;
Channel Frederator or ReFrederator in the iTunes Podcast Directory, or&lt;br /&gt;
visit &lt;a href=&quot;http://www.channelfrederator.com&quot;&gt;www.channelfrederator.com&lt;/a&gt; or &lt;a href=&quot;http://www.refrederator.com&quot;&gt;www.refrederator.com&lt;/a&gt; and click&lt;br /&gt;
&quot;subscribe.&quot;&lt;/p&gt;

&lt;p&gt;Frederator founder Fred Seibert is one of the world's leading independent&lt;br /&gt;
cartoon producers and the exec producer of six hit series on the&lt;br /&gt;
Nickelodeon Networks, including its number one show THE FAIRLY ODDPARENTS.&lt;br /&gt;
Prior to forming Frederator Studios, Seibert served as president of&lt;br /&gt;
Hanna-Barbera Cartoons where he led the return of cartoons to the&lt;br /&gt;
television mainstream.&quot;&lt;/p&gt;


&lt;p&gt;What a swell idea!&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.placidchaos.com/AM/index.php/2006/04/20/frederator_to_podcast_public_domain_toon&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><i>From AWN</i></p>

<p>"Frederator Studios has launched ReFrederator (www.refrederator.com), the<br />
world's first daily vintage cartoon video podcast. </p>

<p>ReFrederator will feature classic cartoons from the public domain such as<br />
Bugs Bunny, Mighty Mouse, Daffy Duck, Betty Boop, Little Lulu, Porky Pig,<br />
Donald Duck and Felix the Cat, as well as fairy tales and musicals. Every<br />
7-9 minute podcast will feature a short-form classic cartoon and<br />
promotional packaging and branding from ReFrederator. New episodes will<br />
appear daily Monday through Friday, grouped into weekly themes.</p>

<p>The first week of the new series features a Mother Goose theme, beginning<br />
with a 1935 Humpty Dumpty cartoon from Ub Iwerks, Walt Disney's personal<br />
friend and first employee, followed by Mighty Mouse in WOLF! WOLF! from<br />
1945 and the Oscar-nominated PIGS IN A POLKA from director Friz Freleng.<br />
The week will wrap up with POOR CINDERELLA, the only color Betty Boop<br />
cartoon, and FONEY FABLES, a series of short vignette parodies of classic<br />
Disney stories.</p>

<p>Programming for ReFrederator is headed by producer Eric Homan and<br />
illustrator, cartoonist and scholar Dave Kirwan (www.davekirwan.com).<br />
Consultants include animation historian Jerry Beck<br />
(www.cartoonresearch.com) and writer Melissa Wolfe. The launch programming<br />
was edited by Barry Hirschberg. </p>

<p>In addition, on Tuesday, April 18, the studio celebrates the showing of its<br />
100th cartoon on its flagship Channel Frederator video podcast.</p>

<p>For a free subscription to Channel Frederator or ReFrederator, search<br />
Channel Frederator or ReFrederator in the iTunes Podcast Directory, or<br />
visit <a href="http://www.channelfrederator.com">www.channelfrederator.com</a> or <a href="http://www.refrederator.com">www.refrederator.com</a> and click<br />
"subscribe."</p>

<p>Frederator founder Fred Seibert is one of the world's leading independent<br />
cartoon producers and the exec producer of six hit series on the<br />
Nickelodeon Networks, including its number one show THE FAIRLY ODDPARENTS.<br />
Prior to forming Frederator Studios, Seibert served as president of<br />
Hanna-Barbera Cartoons where he led the return of cartoons to the<br />
television mainstream."</p>


<p>What a swell idea!</p><div class="item_footer"><p><small><a href="http://www.placidchaos.com/AM/index.php/2006/04/20/frederator_to_podcast_public_domain_toon">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.placidchaos.com/AM/index.php/2006/04/20/frederator_to_podcast_public_domain_toon#comments</comments>
		</item>
				<item>
			<title>Siggraph 06 - Computer Animation schedule</title>
			<link>http://www.placidchaos.com/AM/index.php/2006/04/20/siggraph_06_computer_animation_schedule</link>
			<pubDate>Thu, 20 Apr 2006 13:46:53 +0000</pubDate>			<dc:creator>boywonder</dc:creator>
			<category domain="main">Animation Mentor</category>
<category domain="alt">Random</category>			<guid isPermaLink="false">84@http://www.placidchaos.com/AM/</guid>
						<description>&lt;p&gt;&lt;i&gt;From AWN&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;&quot;SIGGRAPH 2006 ANNOUNCES COMPUTER ANIMATION FESTIVAL SCHEDULE. &lt;br /&gt;
The Computer Animation Festival jury for SIGGRAPH 2006 selected 97 films&lt;br /&gt;
and two award winners from 726 entries for exemplary use of&lt;br /&gt;
computer-generated imagery and animation and compelling storytelling.&lt;/p&gt;

&lt;p&gt;The SIGGRAPH Computer Animation Festival is an internationally recognized&lt;br /&gt;
event that engages and inspires artists and technologists alike. Each year,&lt;br /&gt;
it serves as a mirror of what is possible today and a window into what can&lt;br /&gt;
be achieved in the future.&lt;/p&gt;

&lt;p&gt;&quot;Word is out that the Computer Animation Festival is one of the premier&lt;br /&gt;
venues for showcasing artistic talent in the film world. In fact, we&lt;br /&gt;
witnessed a remarkable 25% increase in submissions from 2005 to 2006, and&lt;br /&gt;
with that increase the competition amongst films is fierce,&quot; stated&lt;br /&gt;
Terrence Masson, the SIGGRAPH 2006 Computer Animation Festival chair from&lt;br /&gt;
Digital Fauxtography Inc. &quot;The bar of excellence has risen even higher and&lt;br /&gt;
this year's crop of accepted pieces is diverse, thought-provoking, and&lt;br /&gt;
technically superb.&quot;&lt;/p&gt;

&lt;p&gt;SIGGRAPH 2006 will be held in Boston, Massachusetts, July 30-Aug. 3.&lt;/p&gt;

&lt;p&gt;The Electronic Theater, held in the Grand Ballroom of the Boston Convention&lt;br /&gt;
&amp;amp; Exhibition Center, will hold screenings July 31 (7:00-9:00 pm), Aug. 1&lt;br /&gt;
(1:30-3:30 pm and 7:00-9:00 pm) and Aug. 2 (1:30-3:30 pm and 7:00-9:00 pm).&lt;/p&gt;

&lt;p&gt;To see the entire list of the Electronic Theater program go to:&lt;br /&gt;
&lt;a href=&quot;http://news.awn.com/index.php3?newsitem_no=16712&quot;&gt;http://news.awn.com/index.php3?newsitem_no=16712&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For more information on the SIGGRAPH 2006 Computer Animation Festival,&lt;br /&gt;
visit &lt;a href=&quot;http://www.siggraph.org/s2006/main.php?f=conference&amp;amp;p=caf&quot;&gt;www.siggraph.org/s2006/main.php?f=conference&amp;amp;p=caf&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;SIGGRAPH 2006 will bring an estimated 25,000 computer graphics and&lt;br /&gt;
interactive technology professionals from six continents to Boston for the&lt;br /&gt;
industry's most respected technical and creative programs focusing on&lt;br /&gt;
research, science, art, animation, gaming, interactivity, education and the&lt;br /&gt;
Web. More than 250 international exhibiting companies are expected.&lt;br /&gt;
Registration for the conference and exhibition is open to the public.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.siggraph.org/s2006/&quot;&gt;ACM SIGGRAPH&lt;/a&gt;, the leading professional society for computer graphics and&lt;br /&gt;
interactive techniques, sponsors SIGGRAPH 2006.&quot;&lt;/p&gt;


&lt;p&gt;I highly recommend attending this years conference if you haven't been to one before, or even if you have.  A lot of knowledge to soak up, ideas to inspire, and people to meet.  Well worth the price of admission in my opinion...&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.placidchaos.com/AM/index.php/2006/04/20/siggraph_06_computer_animation_schedule&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><i>From AWN</i></p>

<p>"SIGGRAPH 2006 ANNOUNCES COMPUTER ANIMATION FESTIVAL SCHEDULE. <br />
The Computer Animation Festival jury for SIGGRAPH 2006 selected 97 films<br />
and two award winners from 726 entries for exemplary use of<br />
computer-generated imagery and animation and compelling storytelling.</p>

<p>The SIGGRAPH Computer Animation Festival is an internationally recognized<br />
event that engages and inspires artists and technologists alike. Each year,<br />
it serves as a mirror of what is possible today and a window into what can<br />
be achieved in the future.</p>

<p>"Word is out that the Computer Animation Festival is one of the premier<br />
venues for showcasing artistic talent in the film world. In fact, we<br />
witnessed a remarkable 25% increase in submissions from 2005 to 2006, and<br />
with that increase the competition amongst films is fierce," stated<br />
Terrence Masson, the SIGGRAPH 2006 Computer Animation Festival chair from<br />
Digital Fauxtography Inc. "The bar of excellence has risen even higher and<br />
this year's crop of accepted pieces is diverse, thought-provoking, and<br />
technically superb."</p>

<p>SIGGRAPH 2006 will be held in Boston, Massachusetts, July 30-Aug. 3.</p>

<p>The Electronic Theater, held in the Grand Ballroom of the Boston Convention<br />
&amp; Exhibition Center, will hold screenings July 31 (7:00-9:00 pm), Aug. 1<br />
(1:30-3:30 pm and 7:00-9:00 pm) and Aug. 2 (1:30-3:30 pm and 7:00-9:00 pm).</p>

<p>To see the entire list of the Electronic Theater program go to:<br />
<a href="http://news.awn.com/index.php3?newsitem_no=16712">http://news.awn.com/index.php3?newsitem_no=16712</a></p>

<p>For more information on the SIGGRAPH 2006 Computer Animation Festival,<br />
visit <a href="http://www.siggraph.org/s2006/main.php?f=conference&amp;p=caf">www.siggraph.org/s2006/main.php?f=conference&amp;p=caf</a>.</p>

<p>SIGGRAPH 2006 will bring an estimated 25,000 computer graphics and<br />
interactive technology professionals from six continents to Boston for the<br />
industry's most respected technical and creative programs focusing on<br />
research, science, art, animation, gaming, interactivity, education and the<br />
Web. More than 250 international exhibiting companies are expected.<br />
Registration for the conference and exhibition is open to the public.</p>

<p><a href="http://www.siggraph.org/s2006/">ACM SIGGRAPH</a>, the leading professional society for computer graphics and<br />
interactive techniques, sponsors SIGGRAPH 2006."</p>


<p>I highly recommend attending this years conference if you haven't been to one before, or even if you have.  A lot of knowledge to soak up, ideas to inspire, and people to meet.  Well worth the price of admission in my opinion...</p><div class="item_footer"><p><small><a href="http://www.placidchaos.com/AM/index.php/2006/04/20/siggraph_06_computer_animation_schedule">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.placidchaos.com/AM/index.php/2006/04/20/siggraph_06_computer_animation_schedule#comments</comments>
		</item>
			</channel>
</rss>
