<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Mark Grandi's Blog</title>
	<atom:link href="http://polygon89.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://polygon89.wordpress.com</link>
	<description>Just another Wordpress.com weblog</description>
	<lastBuildDate>Mon, 30 Jan 2012 22:17:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='polygon89.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Mark Grandi's Blog</title>
		<link>http://polygon89.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://polygon89.wordpress.com/osd.xml" title="Mark Grandi&#039;s Blog" />
	<atom:link rel='hub' href='http://polygon89.wordpress.com/?pushpress=hub'/>
		<item>
		<title>FlexMonkey 5.1.1: how to actually compile flexmonkey</title>
		<link>http://polygon89.wordpress.com/2012/01/26/flexmonkey-5-1-1-how-to-actually-compile-flexmonkey/</link>
		<comments>http://polygon89.wordpress.com/2012/01/26/flexmonkey-5-1-1-how-to-actually-compile-flexmonkey/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 21:45:27 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[flexmonkey]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=86</guid>
		<description><![CDATA[So, I recently started learning how to use FlexMonkey in order to bring some sort of UI Automation to the project I am working on for work, but debugging problems in it can be a hassle when you only have a magical &#8220;swc&#8221; file, which means you can&#8217;t view the source code when you are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=86&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I recently started learning how to use FlexMonkey in order to bring some sort of UI Automation to the project I am working on for work, but debugging problems in it can be a hassle when you only have a magical &#8220;swc&#8221; file, which means you can&#8217;t view the source code when you are debugging. Highly annoying! So this post talks about how to actually compile flexmonkey into your application.</p>
<p>For this, you will need a couple of things. Flash builder for one, I am using 4.6,  and subversion to actually download the flex monkey source code</p>
<p>First off, for whatever reason, they require you to have a gorillamonkey.com account in order to download the source code, so go here: <a href="http://www.gorillalogic.com/user/register">http://www.gorillalogic.com/user/register</a> and register for an account.</p>
<p>Then, fire up a terminal and cd to whatever directory you want to put the code into (temporarily) , and type</p>
<pre>svn export https://svn.gorillalogic.com/svn/flexmonkey/trunk</pre>
<p>This will check out the latest revision and NOT leave the stupid .svn folders laying around everywhere. So open up the trunk folder, and inside you should see the MonkeyLink folder. Inside this folder, there are 3 folders, libs, js and src. You should merge the contents of this folder with your own project code, so now you have some stuff in /src, /js and /libs .</p>
<p>Second part, you need to right click on your project in the navigation tree on the left, go to properties -&gt; flex compiler, and copy/paste this line after anything else that is there:</p>
<pre>-include-libraries "${flexlib}/libs/automation/automation_spark.swc" "${flexlib}/libs/automation/automation.swc" "${flexlib}/libs/automation/automation_agent.swc" "${flexlib}/libs/automation/automation_dmv.swc"</pre>
<p>Now, to avoid Gotcha #1,  you need to actually REFERENCE the code before it will compile it. This one is annoying because you don&#8217;t actually have to reference anything in the monkeylink/flexmonkey code to make it work, since it initializes it self using the [mixin] metadata tag, but flex in it&#8217;s infinite wisdom chooses not to compile things unless they are referenced. So go to your &lt;fx:script&gt; tag in your main mxml file or somewhere, and just auto complete a variable (start by typing var something:Monkey&#8230; and then hit ctrl + space so flex will automatically import it for you) and then recompile. Note, you need to actually create a monkeylink object, just having the import and a undefined variable (var link:monkeylink;) is not enough, you need to do &#8216;new MonkeyLink()&#8221;. We should be good now right?</p>
<p>Wrong! I have _no_ clue what they are doing, but they what appears to be preprocessing instructions in their actionscript code, except for the fact that as3 doesn&#8217;t support them, so it gets interpreted as valid AS3 and you get wonderful errors like &#8220;Types are ambiguous, both mx.core.application and spark.components.application exist&#8221; and duplicate function definitions. So, in order to fix this, we need to get rid of all these preprocessor statements and as3 code that is meant for Flex 3 (since I am using flex 4). These are the rough locations (as of revision 652) of what i had to remove:</p>
<ul>
<li>removed duplicate functions ( keep code in the else block of the if else, and then delete the if..else ) in MonkeyMagicAutomator.as line 200</li>
<li>kept code in if block in ApplicationWrapper.as, deleted if..else line 19</li>
<li>kept code in if block in MonkeyAutomationManager.as, deleted if..else line 33</li>
<li>got rid of if flex4 block in MonkeyMagicAutomator.as line 18 (kept code inside)</li>
<li>kept code in if block, deleted if..else in MonkeyLink.as line 131</li>
<li>got rid of if block (kept code inside) in MonkeyLink.as line 40</li>
<li>got rid of flex4 block (but kept code inside) in MagicMonkeyAutomationDelegate.as like 413</li>
<li>kept code in if block , got rid of if.else in MonkeyAutomationManager.as line 54</li>
</ul>
<p>Now, if you got all of them, the code SHOULD compile. and that is it! when you start up your application, SystemManager will call the flexmonkey code (because of the [mixin] metadata tag) to do the necessary startup that it does, and you should be able to connect to it via the FlexMonkey air app. I hope this helped!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=86&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2012/01/26/flexmonkey-5-1-1-how-to-actually-compile-flexmonkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
		<item>
		<title>How to uninstall XCode4 from Mac OS X Lion</title>
		<link>http://polygon89.wordpress.com/2011/07/21/how-to-uninstall-xcode4-from-mac-os-x-lion/</link>
		<comments>http://polygon89.wordpress.com/2011/07/21/how-to-uninstall-xcode4-from-mac-os-x-lion/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 03:36:25 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=84</guid>
		<description><![CDATA[So i had an old version of XCode on my computer, and i tried upgrading it with the new mac app store, and it didn&#8217;t work. I wanted to uninstall it and then reinstall it using the app store, but they of course don&#8217;t have an option to UNINSTALL apps using the app store Google [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=84&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So i had an old version of XCode on my computer, and i tried upgrading it with the new mac app store, and it didn&#8217;t work. I wanted to uninstall it and then reinstall it using the app store, but they of course don&#8217;t have an option to UNINSTALL apps using the app store</p>
<p>Google tells me to just delete the app and then you can click &#8216;install&#8217; again on the purchases tab in the app store, but since this is xcode, you can&#8217;t just drag an application to the trash. You have to run a command using Terminal. So, open terminal and type:</p>
<p>sudo /Developer/Library/uninstall-devtools &#8211;mode=all</p>
<p>The directory MIGHT be different, but for me it installed it to /Developer. Anyway, it should list all the packages and then say it deleted them. I restarted my mac just to be safe.</p>
<p>THEN, if it STILL says that xcode is installed, you need to delete the installer from /Applications (different from the Applications folder in your home folder). Go Macintosh HD/Applications and there should be a file called &#8220;Install Xcode&#8221; and then you can delete that folder, and the &#8216;install&#8217; button will again be enabled, allowing you to install it from the mac app store and get on with your life</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=84&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2011/07/21/how-to-uninstall-xcode4-from-mac-os-x-lion/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
		<item>
		<title>Image File Location on iPod Touch</title>
		<link>http://polygon89.wordpress.com/2011/06/20/image-file-location-on-ipod-touch/</link>
		<comments>http://polygon89.wordpress.com/2011/06/20/image-file-location-on-ipod-touch/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 10:08:40 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=81</guid>
		<description><![CDATA[I wanted to get the photos off my iPod that i had downloaded using the &#8220;save image&#8221; option in Opera Mini. They appeared if i opened the Photos app and were under Saved Photos. Since there doesn&#8217;t seem to be a way to sync photos FROM the ipod TO the pc, i used a program [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=81&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wanted to get the photos off my iPod that i had downloaded using the &#8220;save image&#8221; option in Opera Mini. They appeared if i opened the Photos app and were under Saved Photos. Since there doesn&#8217;t seem to be a way to sync photos FROM the ipod TO the pc, i used a program called iPhone Explorer (mac) to explore the filey system on my ipod</p>
<p>The images are not located in a folder called &#8220;Photos&#8221;, which i find silly. They are located in: /Media/DCIM/100APPLE/</p>
<p>then all the image files are in there.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=81&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2011/06/20/image-file-location-on-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
		<item>
		<title>Compiling PyQt4 on Mac OS X 10.6 (Snow Leopard)</title>
		<link>http://polygon89.wordpress.com/2011/06/17/compiling-pyqt4-on-mac-os-x-10-6-snow-leopard/</link>
		<comments>http://polygon89.wordpress.com/2011/06/17/compiling-pyqt4-on-mac-os-x-10-6-snow-leopard/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 10:59:10 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=76</guid>
		<description><![CDATA[So i recently started messing around with pyqt4 and python, and i wanted it to work on my mac, but to my dismay i had to compile it from source. So, here is how i did it. You will need some things You will probably need XCode so you get access to gcc and other [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=76&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So i recently started messing around with pyqt4 and python, and i wanted it to work on my mac, but to my dismay i had to compile it from source.</p>
<p>So, here is how i did it. You will need some things</p>
<p>You will probably need XCode so you get access to gcc and other things. You can get it from here: <a href="http://developer.apple.com/xcode/">http://developer.apple.com/xcode/ </a>(you either need to pay 5 dollars for xcode 4 or look for a link on that page saying &#8220;looking for xcode 3?&#8221; which is free.)</p>
<p>First, download and install the QT SDK here: <a href="http://qt.nokia.com/downloads">http://qt.nokia.com/downloads</a> I would put it somewhere in your home folder, I put it in ~/Programs/QtSDK</p>
<p>Now, you need to download the source tarballs (the Mac OSX / Linux ones) for PyQT4 and SIP (which is used to generate the python bindings for the c++ code in qt). Get them here:  <a href="http://www.riverbankcomputing.com/software/sip/download">http://www.riverbankcomputing.com/software/sip/download</a> and <a href="http://www.riverbankcomputing.com/software/pyqt/download">http://www.riverbankcomputing.com/software/pyqt/download</a> . I created a folder pyqtstuff to put the source tarballs in. Extract them both and you should have two folders for each of the tarballs.</p>
<p>You need to compile SIP first. Now Mac OSX has python 2.6 already installed, if you want to use python 3 you need to install that. Whatever version of python you want to use pyqt4 with,<strong> you NEED to run the following scripts with the version of python you want to use</strong>. So if you want to use 2.6, you just use &#8216;python configure.py&#8217;, if python 3, then &#8216;python3 configure.py .</p>
<p>So, change directories to the sp folder and then run these commands.</p>
<blockquote><p>python configure.py</p>
<p>make</p>
<p>sudo make install</p></blockquote>
<p>If all goes well, then it wont report any errors.</p>
<p>Now you change directories to the pyqt folder, and do the same thing, making sure to run the configure.py script as the version of python you are going to use with pyqt. BUT , i had a problem where it was saying that &#8216;qmake&#8217; was not in my path. Never fear, thats why you downloaded the QT SDK. You need to locate the folder where you installed it, and deep inside it is the qmake binary. I installed the sdk to the QtSDK folder, and my qmake was in :</p>
<p>QtSDK/Desktop/Qt/473/gcc/bin/qmake</p>
<p>The version number will probably differ, but other then that the path is the same. Now, make sure you copy the FULL PATH (from root, so for me it would be  /Users/&lt;username&gt;/Programs/QtSDK/Desktop/Qt/473/gcc/bin/qmake , but substitute this with your own) and you need to pass it as an argument to the configure.py call. Again run this with the version of python you intend to use!</p>
<blockquote><p>python configure.py -g -q &lt;PATH TO QMAKE HERE&gt;</p></blockquote>
<p>That will configure pyqt. We use the -g because that &#8216;consolidates&#8217; everything, which i&#8217;m not sure what that means, but the other option it told me to use did not work.</p>
<p>Now you just compile it and install it. This will probably take a bit of time since its kinda big. Be patient</p>
<blockquote><p>make</p>
<p>sudo make install</p></blockquote>
<p>Done! now you should be able to use PyQt4 on your mac. Hopefully this helps someone since I did not find a guide for it online yet. Post here if you have any questions!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=76&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2011/06/17/compiling-pyqt4-on-mac-os-x-10-6-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Remove Microsoft .NET Framework Assistant From Firefox</title>
		<link>http://polygon89.wordpress.com/2009/02/05/how-to-remove-microsoft-net-framework-assistant-from-firefox/</link>
		<comments>http://polygon89.wordpress.com/2009/02/05/how-to-remove-microsoft-net-framework-assistant-from-firefox/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 06:12:37 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=62</guid>
		<description><![CDATA[it seems that with recent windows updates, most notably the .NET 3.5.1 update, microsoft seems to think that its not only ok to install software which the user has no idea what it does, but make it intentionally hard to delete. Here is a guide, basically the same from many other blogs out there but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=62&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>it seems that with recent windows updates, most notably the .NET 3.5.1 update, microsoft seems to think that its not only ok to install software which the user has no idea what it does, but make it intentionally hard to delete.</p>
<p>Here is a guide, basically the same from many other blogs out there but hey, the more publicity that these kinds of practices are NOT ok, the better.</p>
<p>1) Open up firefox</p>
<p>2) press the start button, go to run, and type in &#8216;regedit&#8217;</p>
<p>3) browse to the following directory in regedit:</p>
<p><code>HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox\extensions </code></p>
<p>3a) Or if your running 64 bit windows, browse to this directory:</p>
<p><code>HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mozilla\Firefox\Extensions</code></p>
<p>4) you should see a key named &#8220;{20a82645-c095-46ed-80e3-08825760534b}&#8221;. Right click on that key and select &#8216;delete&#8217;</p>
<p>5) restart firefox</p>
<p>6) type &#8220;about:config&#8221; into your url bar</p>
<p>7) accept the warning</p>
<p>8 ) type in &#8220;<code>general.useragent.extra.microsoftdotnet"</code></p>
<p>9) right click that key and click &#8220;reset&#8221;</p>
<p>10) do the same thing for <code>microsoft.CLR.clickonce.autolaunch</code>. (although this string did not exist for me, if it does for you, just right click &gt; reset it)</p>
<p>11) restart firefox again</p>
<p>12) finally, using windows explorer, browse to <code>C:\WINDOWS\Microsoft.NET\Framework\v3.5\Windows Presentation Foundation\DotNetAssistantExtension\</code></p>
<p>13) delete the &#8216;DotNetAssistantExtension folder&#8217;</p>
<p>14) feel good about yourself.</p>
<p>Thats it. Enjoy your firefox.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=62&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2009/02/05/how-to-remove-microsoft-net-framework-assistant-from-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
		<item>
		<title>How to setup a Dazzle Video Creator Platinium (DVC170) on Windows Vista 32 bit</title>
		<link>http://polygon89.wordpress.com/2008/11/15/how-to-setup-a-dazzle-video-creator-platinium-dvc170-on-vista-32-bit/</link>
		<comments>http://polygon89.wordpress.com/2008/11/15/how-to-setup-a-dazzle-video-creator-platinium-dvc170-on-vista-32-bit/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 04:51:03 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[32]]></category>
		<category><![CDATA[bit]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[creator]]></category>
		<category><![CDATA[dazzle]]></category>
		<category><![CDATA[dvc170]]></category>
		<category><![CDATA[pinnacle]]></category>
		<category><![CDATA[platinium]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=52</guid>
		<description><![CDATA[Hello again! I recently wooted (www.woot.com) a Dazzle video creator platinium or DVC170, and tried to get it to work. The straightforward method obviously did not work, as when i started the program, i would get a BSOD and my computer would restart. that sucks. Anyway, this is how you set up your Dazzle to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=52&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello again!</p>
<p>I recently wooted (www.woot.com) a Dazzle video creator platinium or DVC170, and tried to get it to work. The straightforward method obviously did not work, as when i started the program, i would get a BSOD and my computer would restart. that sucks. Anyway, this is how you set up your Dazzle to work on windows vista 32 bit. It might even work for 64 if you download the right stuff, but I have no way to test it.</p>
<p>Ok, first off. You should have 3 to 4 cds in your package. I have three.</p>
<p>Instant CD recorder (blue)<br />
Pinnacle Studio Quickstart (white)<br />
Pinnacle Studio Bonus DVD NTSC (other people might have PAL, or both)</p>
<p>Ok, Now you need to install all of this. Its a PITA, and according to spybot it installs a shit load of stuff to your start up menu, which I am not sure if you can safely disable. Anyway,  Before you plug in your pinnacle, install the included software:  the instant cd recorder, then the studio quickstart, then the bonus DVD in that order. You will be asked to restart your computer a couple times, be sure to do that.</p>
<p>Ok, now the fun begins.</p>
<p>First, you need to insert the instant cd recorder disk (blue) and click &#8216;remove&#8217; when the autoplay comes up. Why did i ask you to install this? because you have to enter a cd key, so by installing it, it still has all that stuff in the registry and the installation goes by a lot faster. Anyway, go to this link:</p>
<p><a href="http://www.pinnaclesys.com/PublicSite/us/Products/Consumer+Products/Home+Video/Studio+Plug-Ins/Instant+DVD+Recorder+Support/Download+Area/Drivers+-+Updates/IDVDR2_0FULL.htm?mode=documents&amp;Display=1">http://www.pinnaclesys.com/PublicSite/us/Products/Consumer+Products/Home+Video/Studio+Plug-Ins/Instant+DVD+Recorder+Support/Download+Area/Drivers+-+Updates/IDVDR2_0FULL.htm?mode=documents&amp;Display=1</a></p>
<p>and click vista 32 bit and download.</p>
<p>Once it is downloaded, run the program, and it should reinstall/patch the program to the latest version.</p>
<p>Now, you need to update the main studio program to the latest version. Head over to this link:</p>
<p><a href="http://www.pinnaclesys.com/PublicSite/us/Products/Consumer+Products/Home+Video/Studio+Family/Studio+version+10+Support/Download+Area/Drivers+-+Updates/Studio10_8_release.htm?mode=documents&amp;Display=1">http://www.pinnaclesys.com/PublicSite/us/Products/Consumer+Products/Home+Video/Studio+Family/Studio+version+10+Support/Download+Area/Drivers+-+Updates/Studio10_8_release.htm?mode=documents&amp;Display=1</a></p>
<p>and download and install the latest version. Once that is done, head over to this link yet again:</p>
<p><a href="http://cdn.pinnaclesys.com/SupportFiles/Hardware_Installer/readmeHW10.htm">http://cdn.pinnaclesys.com/SupportFiles/Hardware_Installer/readmeHW10.htm</a></p>
<p>and browse down to the orange boxes, and find  <span class="boldText">&#8220;Dazzle* Video Creator Platinium (DVC170&#8243;, And click on the correct link (either windows xp or vista 32, it appears they dont have vista 64 bit drivers though =/ )</span></p>
<p><span class="boldText">Install those drivers, and restart your computer for good measure. </span></p>
<p><span class="boldText">Now, here is the moment of truth. When your computer restarts, plug in your device. Start the Studio Launcher program and then click the button the left, the Pinnacle Studio Quickstart button. It will start the program, and take a super long time to load, and once its done, you need to click the &#8216;capture&#8217; tab on the top left. </span></p>
<p><span class="boldText">Now, this is where my computer blue screened when I first tried to set this up. If this happens, restart your computer, and go to the start menu &gt; control panel &gt; (in classic view) device manager &gt; sound, video and game controllers and your DVC170 should be listed (if your device is plugged in). Double click it, it will pop up a window. Click the driver tab at the top, and then there should be a row of buttons on the left. Click &#8220;Uninstall&#8221;.  Click yes to confirm, and then the driver will be uninstalled. </span></p>
<p><span class="boldText">Unplug your dazzle device. </span></p>
<p><span class="boldText">Now, go back to the  driver update program you downloaded  (for me its called PCLEUSB2x32.exe. Install those again, and restart your computer. Now, before you plug in your dazzle again, go to the device manager again, click on the dazzle device, click the driver tab, and click update driver.  Click the bottom option, browse my computer, and leave everything at default and just click  next, and it should search (took a few seconds for me) and then say it found it and you can click ok. </span></p>
<p><span class="boldText">Restart one more time for good measure (can never be too careful with windows) and then try opening the studio launcher again, click the studio quick start, click capture, and if everything went well, then it should bring you to the screen and you can now start capturing. </span></p>
<p>For settings, i just use MPEG 4, and full.</p>
<p>I hope this little guide helped! Enjoy your capturing =)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=52&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2008/11/15/how-to-setup-a-dazzle-video-creator-platinium-dvc170-on-vista-32-bit/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
		<item>
		<title>How to compile HandBrake w/ the GTK+ interface on Ubuntu Intrepid</title>
		<link>http://polygon89.wordpress.com/2008/10/19/how-to-compile-handbrake-w-the-gtk-interface-on-ubuntu-intrepid/</link>
		<comments>http://polygon89.wordpress.com/2008/10/19/how-to-compile-handbrake-w-the-gtk-interface-on-ubuntu-intrepid/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 02:52:59 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[handbrake]]></category>
		<category><![CDATA[ibex]]></category>
		<category><![CDATA[intrepid]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ripping]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=43</guid>
		<description><![CDATA[Recently i upgraded from Ubuntu hardy to the beta of Ubuntu Intrepid. I of course love the program Handbrake, which allows you to convert DVD&#8217;s and DVD like sources to a movie file, with presets to things like psp, ipod, apple tv, xbox 360, and more. Anyway, the current stable version is 0.9.2, but the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=43&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently i upgraded from Ubuntu hardy to the beta of Ubuntu Intrepid. I of course love the program Handbrake, which allows you to convert DVD&#8217;s and DVD like sources to a movie file, with presets to things like psp, ipod, apple tv, xbox 360, and more.</p>
<p>Anyway, the current stable version is 0.9.2, but the latest version, 0.9.3 svn, has the hotly anticipated GTK+ interface, which finally gives linux users a graphical interface rather then having to use the command line, which for this program can get quite complicated.</p>
<p>There are several guides for compiling on Ubuntu Hardy, but I noticed that there are a few changes that need to be done for it to work on Intrepid. Here is a step by step rundown of what to do.</p>
<p>First, you need to remove ffmpeg if you have it installed already so we can install one that has more codecs available.</p>
<pre>sudo apt-get remove ffmpeg</pre>
<p>Now, we add the medibuntu repo to our sources.list so we can install their version of ffmpeg. We also install the keyring package so we can actually use the repo.</p>
<pre>sudo wget <a href="http://www.medibuntu.org/sources.list.d/hardy.list" target="_blank">http://www.medibuntu.org/sources.list.d/hardy.list</a> -O /etc/apt/sources.list.d/medibuntu.list 

sudo apt-get update &amp;&amp; sudo apt-get install medibuntu-keyring &amp;&amp; sudo apt-get update</pre>
<p>now we install ffmpeg, this time from the medibuntu repo.</p>
<pre>sudo apt-get install ffmpeg</pre>
<p>Next, we install the required packages. For Intrepid, we do not need to compile from source yasm, as it includes a much more recent version. Get some coffee as this will take a while. (the entire thing is one command)</p>
<pre>sudo apt-get install automake build-essential jam libdvdcss-dev libtool subversion zlib1g-dev libbz2-dev dvdbackup xmlto texinfo gfortran libgtk2.0-dev nasm doxygen libsdl1.2-dev gfortran-multilib gcc-multilib g++-multilib libesd0-dev libgtk1.2-dev libfftw3-dev electric-fence libx264-dev libx264-59 x264 libtheora-dev intltool gettext libgtk2.0-dev libglib2.0-dev libhal-storage1 libhal-storage-dev libhal-dev yasm libgtkhtml3.14-dev</pre>
<p>Now, we need to make a directory to put the Handbrake svn files in. I personally have a svn folder within my home folder to contain all the svn files of the various programs i compile, that way I can exclude it from backups, and its just easy to remember</p>
<pre>cd ~/
mkdir svn
cd svn
svn co svn://svn.handbrake.fr/HandBrake/trunk HandBrake
cd HandBrake</pre>
<p>Now, we need to compile the program. In the past, the handbrake devs wanted you to use jam, but after running configure now, it says quite clearly that we are supposed to use make now. So, we shall. After you run make, this will take like 30 minutes to compile as it has to compile a bunch of libraries&#8230;so go watch some TV as this is finishing.</p>
<pre>./configure
make
cd gtk
./autogen.sh
make
sudo make install</pre>
<p>Thats it! Now there will be a HandBrake entry in the menu under applications &gt; sound/video &gt; Handbrake. Enjoy your ripping!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=43&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2008/10/19/how-to-compile-handbrake-w-the-gtk-interface-on-ubuntu-intrepid/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
		<item>
		<title>How to sync music, download album art, and convert movies to your Cowon D2 using Ubuntu Linux</title>
		<link>http://polygon89.wordpress.com/2008/10/17/how-to-sync-music-download-album-art-and-convert-movies-to-your-cowon-d2-using-ubuntu-linux/</link>
		<comments>http://polygon89.wordpress.com/2008/10/17/how-to-sync-music-download-album-art-and-convert-movies-to-your-cowon-d2-using-ubuntu-linux/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 01:29:21 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[banshee]]></category>
		<category><![CDATA[cowon]]></category>
		<category><![CDATA[d2]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[heron]]></category>
		<category><![CDATA[iaudio]]></category>
		<category><![CDATA[ibex]]></category>
		<category><![CDATA[intrepid]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=35</guid>
		<description><![CDATA[my cowon iaudio x5L recently died. I needed a replacement, and I settled on a cowon D2, which turned out to be a pretty sweet player. I wanted to try to see if i could have it sync my banshee library to the player to make it easier, and it turns out you can, but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=35&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>my cowon iaudio x5L recently died. I needed a replacement, and I settled on a cowon D2, which turned out to be a pretty sweet player. I wanted to try to see if i could have it sync my banshee library to the player to make it easier, and it turns out you can, but some bug or problem prevents it from being really easy. It is still possible, so I will explain my method for syncing music to my D2 using banshee, downloading and formatting album art, and converting movies to my Cowon D2</p>
<p>First, make sure you have the latest version of banshee, which you can download from their website:  <a href="http://banshee-project.org/">http://banshee-project.org/</a></p>
<p>Second, make sure your cowon d2 has the latest firmware. You can download the firmware <a href="http://www.cowonamerica.com/download/cowon_d2_jsfw.html">here</a> and instructions on how to install it are <a href="http://support.cowonamerica.com/supportcentral/index.php?_m=knowledgebase&amp;_a=viewarticle&amp;kbarticleid=355">here</a>.</p>
<p>Third, we need to create a text file to make banshee detect the D2, for some reason it doesn&#8217;t do it automatically. This text file also tells banshee to put the music files in the right place, to specify the folder depth so it places the music in /MUSIC/artist/album, and what filetypes the player supports so it will convert any filetype that the D2 does not support (handy!)</p>
<p>In ubuntu (gnome), you can start up text editor by going to applications &gt; accessories &gt; text editor or just running the command &#8216;gedit&#8221;. Now, paste this into the window:</p>
<pre>audio_folders=MUSIC/,RECORD/
folder_depth=2
output_formats=audio/ogg,audio/x-ms-wma,audio/mpeg,audio/wav,audio/flac,audio/mp3</pre>
<p>Now, save this textfile with the name <em>.is_audio_player</em> on the root directory of your cowon. Now, you should be able to restart banshee, and it will detect the cowon D2 at the bottom. There does not appear to be a sync button, so highlight your entire library or whatever you want to sync, and drag it to the cowon icon. It will start sending your music to the cowon, as well as converting any file types that are not compatible with it and converting it into a compatible filetype.</p>
<p>Now, once that is done, since the Cowon D2 supports album art, here is an easy way to download album art to it. The cowon only displays the album art if a file named &#8216;cover.jpg&#8217; is present in the album folder.</p>
<p>So, what we do first is:  download albumart. You can download and install the deb here:</p>
<p><a title="http://muksuluuri.ath.cx/~skyostil/projects/albumart/dist/albumart_1.6.6-1_all.deb" href="http://muksuluuri.ath.cx/~skyostil/projects/albumart/dist/albumart_1.6.6-1_all.deb">http://muksuluuri.ath.cx/~skyostil/projects/albumart/dist/albumart_1.6.6-1_all.deb</a></p>
<p>Then, open up albumart by typing <em>albumart-qt</em> into the console (applications&gt;accessories&gt;terminal)</p>
<p>Next, go to File &gt; open and select your MUSIC/ folder on your cowon D2.  Then, go to settings &gt; configure on the albumart program and choose the &#8216;generic&#8217; entry under &#8220;targets&#8221;.  Click the box that says enable, and for the filename of the image, type in &#8220;cover.jpg&#8221; (without the quotes)</p>
<p>Now, since you opened your /MUSIC/ folder on your cowon, it should of searched the tags of all the files and listed all the albums. Highlight all the albums in albumart and then click the blue download arrow, and it will download the correct cover art, place it in the folder under the name &#8216;cover.jpg&#8217;, and even apply it to the file itself if the file format supports it (mp3 only i believe).</p>
<p>If you have album art that isnt found using albumart, you can find it and drag it to the album in albumart and it will convert it and place it for you.</p>
<p>Also, i noticed that the program has some bugs with non english characters (chinese&#8230;) and it would error out if it tried to download album art for that cd. If this happens, just select everything but that CD, and drag the album art manually to the album in the program.</p>
<p>Now, the final thing, converting videos to the cowon D2. This requires a program called avidemux, which you can get by typing in terminal:</p>
<p>sudo apt-get install avidemux</p>
<p>Now that you have that open, lets convert a video! Please note that converting wmv videos did not work at all for me, the audio was extremely garbled. Most other formats should work however.</p>
<p>Now that you got the program installed, open it. Its entry is located in applications &gt; sound and video &gt; avidemux.  Open up the file you wish to convert, using file &gt; open.  After that, the video should appear in the program.</p>
<p>First thing you need to do is select the first drop down box under video, and select &#8220;MPEG-4 ASP (Xvid4)&#8221;</p>
<p>Second thing you need to do is to remove bframes. This can be done by selecting the second button under &#8216;video&#8217;, the button labeled configure.  On the second tab, motion and misc, you need to de-click the box that says BVHQ, and lower the &#8220;number of b frames&#8221; down to 1.  Now, click OK to save the selection.</p>
<p>Now, we go to the third button under &#8216;video&#8221; labeled filters.  Click the button, then double click on &#8220;mplayer resize&#8221;. In the width section you should enter the number &#8217;320&#8242; and in the height section, enter 240. You can leave all the others at their default.  Click OK to add the filter to the queue.</p>
<p>Now, scroll down in the filter list until you find the entry called &#8220;resample FPS&#8217; and double click on it.  It pops up a window with some number in it. Delete it, and enter &#8220;30&#8243;. I am unsure what &#8216;blend&#8217; does, but I clicked it just in case. Click OK when you have done this to add it to the queue.</p>
<p>Click close to save the filter list.  Now you are all done! Now, back on the avidemux main program page, click the &#8220;save&#8221; button near the top. It will pop up a file lis window, you can just save it to &lt;somevideohere&gt;.avi on your desktop. Click OK, and it will convert the file. When it is done, all you need to do is drop the video file in the /VIDEO/ folder on your D2,  and if everything has gone well, it will play =).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=35&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2008/10/17/how-to-sync-music-download-album-art-and-convert-movies-to-your-cowon-d2-using-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
		<item>
		<title>Sunbird 0.9 review</title>
		<link>http://polygon89.wordpress.com/2008/10/15/sunbird-09-review/</link>
		<comments>http://polygon89.wordpress.com/2008/10/15/sunbird-09-review/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 05:59:42 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[sunbird]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=33</guid>
		<description><![CDATA[I just noticed that mozilla has released a new version of sunbird 0.9, so I decided to try it out and write a review After downloading the installer from http://www.mozilla.org/projects/calendar/sunbird/, i ran the program, and tried to create a new calendar. Pressing the &#8216;new event&#8217; button does nothing. Neither does the &#8220;New Task&#8217; button So&#8230;&#8230;.what [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=33&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just noticed that mozilla has released a new version of sunbird 0.9, so I decided to try it out and write a review</p>
<p>After downloading the installer from http://www.mozilla.org/projects/calendar/sunbird/, i ran the program, and tried to create a new calendar.</p>
<p>Pressing the &#8216;new event&#8217; button does nothing.</p>
<p>Neither does the &#8220;New Task&#8217; button</p>
<p>So&#8230;&#8230;.what exactly do I do with this thing? Great job mozilla, it doesn&#8217;t even work on vista. I would expect this when vista came out, but not 1 to 2 years afterwards. and i can&#8217;t run it from console because I am on windows, not Linux. Yummy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=33&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2008/10/15/sunbird-09-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu is not ready for laptops (at least not mine)</title>
		<link>http://polygon89.wordpress.com/2008/09/08/ubuntu-is-not-ready-for-laptops-at-least-not-mine/</link>
		<comments>http://polygon89.wordpress.com/2008/09/08/ubuntu-is-not-ready-for-laptops-at-least-not-mine/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 05:30:35 +0000</pubDate>
		<dc:creator>polygon89</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://polygon89.wordpress.com/?p=31</guid>
		<description><![CDATA[So today i just reinstalled vista on my laptop, and its going to stay there for the near future. I tried installing ubuntu on this, and most everything worked fine, but some underlying problems with ubuntu, and linux in general make it a horrible choice for laptops (at least mine) 1: load_cycle_issue. almost a deal [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=31&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So today i just reinstalled vista on my laptop, and its going to stay there for the near future.</p>
<p>I tried installing ubuntu on this, and most everything worked fine, but some underlying problems with ubuntu, and linux in general make it a horrible choice for laptops (at least mine)</p>
<p><strong>1: load_cycle_issue. </strong></p>
<p>almost a deal breaker for me, this has the potential of destroying my hard drive in under a year, and the only way to get around it is to use some ugly hacks and scripts that don&#8217;t even work all of the time (even after i implemented the hardy scripts, my load cycle would sometimes just jump up 50 counts, and other times it would obey the scripts and not spin down so the counts would not go up). This NEEDS to be fixed on the kernel level before i can consider putting ubuntu back again. I paid 700 dollars for this laptop, i dont want its hard drive getting destroyed prematurely</p>
<p><strong>2: wireless woes</strong></p>
<p>the hardy version of madwifi doesnt even support my wireless card, but luckily compiling a special branch of madwif from source seems to work. its just the fact that network manager 0.7 is still highly unstable, and even with these working drivers, i get random issues, like i cant connect to a network and i have to keep retrying until randomly, it works. Also, the unstableness of the ppa i was using means that one time, i lost all network connectivity together, and then with the most recent version, i cant connect to WPA TLS networks, which is what my college uses, which makes my laptop fairly uselss</p>
<p><strong>3: ubuntu (or gnome&#8217;s) power management sucks</strong></p>
<p>seriously, the power management options in ubunut pale in comparison to vista&#8217;s, random bugs like you cant controll how bright/dim the screen gets when you unplug/plug in the AC cord, different power management schemes, and more make it annoying for laptops. Also, because of the load_cycle_count issue, you have to keep your hard drive spinning 24/7 so that drains the battery considerably. It also does not help that ubuntu/linux in general sucks at delaying writes to the disk when on battery power, it seems even when im not doing anything ubuntu is doing something to access/write the disk where my disk could be sitting idle/spun down to save battery.</p>
<p><strong>4: battery life is much better in vista, i don&#8217;t know why, it just is</strong></p>
<p><strong>5: annoying synaptics touchpad bug, which is present in other distros as well</strong></p>
<p>this wonderful bug makes it so that the kernel loses connection to the touchpad, and when it reconnects to it, all your mouse/touchpad settings are lost, which means that the touchpad &#8216;tap to click&#8217; feature becomes enabled which is the most annoying feature EVER. im just dragging my mouse and the touchpad somehow registers that as a tap so i click random buttons, files, urls, bookmarks, close buttons, etc. Ive noticed this in SUSE 11 as well, so it must be a kernel bug<br />
<strong><br />
6: suspend/hibernate is still wonky</strong></p>
<p>it seems pretty good for my laptop, but i still get issues that shortly after thaw/resume my computer just freezes completely.</p>
<p>sure most of these problems are a result of the fact of using non offical reverse engineered drivers, and i understand that, but the load cycle, suspend/hibernate and the power management things are CRUCIAL for laptops, and sadly i&#8217;ve tried very very very hard to make it work, and it&#8217;s just not worth it anymore. The touchpad and the network manager issues might be fixed in Intrepid, but the load cycle/power management/suspend/hibernate issues don&#8217;t show any promise of being fixed in intrepid. oh well.</p>
<p>Ubuntu will still have a place on my desktop, but for now and the foreseeable future, vista will remain on my laptop</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/polygon89.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/polygon89.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polygon89.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polygon89.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polygon89.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polygon89.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polygon89.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polygon89.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polygon89.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polygon89.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polygon89.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polygon89.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polygon89.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polygon89.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polygon89.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polygon89.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polygon89.wordpress.com&amp;blog=333867&amp;post=31&amp;subd=polygon89&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polygon89.wordpress.com/2008/09/08/ubuntu-is-not-ready-for-laptops-at-least-not-mine/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e9047a9998b522730d95399ddb3ee94b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polygon89</media:title>
		</media:content>
	</item>
	</channel>
</rss>
