<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Voodoo Programming</title>
	<atom:link href="http://www.cneophytou.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cneophytou.com</link>
	<description>Things programmers do that they know shouldn&#039;t work but they try anyway, and which sometimes actually work, such as recompiling everything.</description>
	<lastBuildDate>Fri, 16 Dec 2011 15:45:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Comment on Photo feed as Desktop Background by Gui</title>
		<link>http://www.cneophytou.com/2008/04/17/photo-feed-as-desktop-background/comment-page-1/#comment-43661</link>
		<dc:creator>Gui</dc:creator>
		<pubDate>Sat, 25 May 2013 15:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/?p=110#comment-43661</guid>
		<description><![CDATA[Hi,
I really enjoy your script, congratulations ! On Ubuntu 11.10 with gnome 2.0, it works perfectly for chromasia and ddoi, but when I tried to add another feed like the one from APOD : 

rss_feeds[&#039;ddoi&#039;] = &#039;http://deskfeed.neophytou.net/rss/ddoi&#039;
rss_feeds[&#039;apod&#039;] = &#039;http://apod.nasa.gov/apod.rss&#039;

it returns an error : 

~/Images/DeskFeed$ ./deskfeed.py
Traceback (most recent call last):
  File &quot;./deskfeed.py&quot;, line 79, in 
    main()
  File &quot;./deskfeed.py&quot;, line 76, in main
    parseFeed(rss_feeds[key])
  File &quot;./deskfeed.py&quot;, line 50, in parseFeed
    photo_hash = element.getElementsByTagName(&#039;hash&#039;)[0].firstChild.data
IndexError: list index out of range

do you understand what that means ?
Thanks !]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
I really enjoy your script, congratulations ! On Ubuntu 11.10 with gnome 2.0, it works perfectly for chromasia and ddoi, but when I tried to add another feed like the one from APOD : </p>
<p>rss_feeds['ddoi'] = &#8216;http://deskfeed.neophytou.net/rss/ddoi&#8217;<br />
rss_feeds['apod'] = &#8216;http://apod.nasa.gov/apod.rss&#8217;</p>
<p>it returns an error : </p>
<p>~/Images/DeskFeed$ ./deskfeed.py<br />
Traceback (most recent call last):<br />
  File &#8220;./deskfeed.py&#8221;, line 79, in<br />
    main()<br />
  File &#8220;./deskfeed.py&#8221;, line 76, in main<br />
    parseFeed(rss_feeds[key])<br />
  File &#8220;./deskfeed.py&#8221;, line 50, in parseFeed<br />
    photo_hash = element.getElementsByTagName(&#8216;hash&#8217;)[0].firstChild.data<br />
IndexError: list index out of range</p>
<p>do you understand what that means ?<br />
Thanks !</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Photo feed as Desktop Background by Dalton</title>
		<link>http://www.cneophytou.com/2008/04/17/photo-feed-as-desktop-background/comment-page-1/#comment-34649</link>
		<dc:creator>Dalton</dc:creator>
		<pubDate>Sat, 25 May 2013 20:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/?p=110#comment-34649</guid>
		<description><![CDATA[How would I add this feed instead of the chromasia feed?
&#039;http://feeds.feedburner.com/bingimages&#039;]]></description>
		<content:encoded><![CDATA[<p>How would I add this feed instead of the chromasia feed?<br />
&#8216;http://feeds.feedburner.com/bingimages&#8217;</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Spoofing Leopard&#8217;s MAC address by Dave</title>
		<link>http://www.cneophytou.com/2008/01/19/spoofing-leopards-mac-address/comment-page-2/#comment-34442</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sat, 25 May 2013 05:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/2008/01/19/spoofing-leopards-mac-address/#comment-34442</guid>
		<description><![CDATA[I was able to get this to work for both wifi and ethernet. The most important step is that you must be completely disconnected from your network. For ethernet, this involves disconnecting the cable. For wifi, you can try a complicated method outlined at http://d-downunder.blogspot.com/ 
The difficult thing with wifi is that if you have the password saved in your keychain, it will automatically reconnect to the network, which you don&#039;t want.
An easier way to disconnect from wifi, as highlighted by Deviacium is simply to type sudo /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/airport -z

It is awkward that this command is hidden deep inside PrivateFrameworks, but at least it works.
Once you are disconnected from the network, simply type the following (replace 00:11:22:33:44:55 with the MAC address of your choice):

To change the ethernet MAC address, type:
ifconfig en0 lladdr 00:11:22:33:44:55

OR

To change the wifi MAC address, type:
ifconfig en1 lladdr 00:11:22:33:44:55

To confirm that the MAC address has been changed, type ifconfig en0 for ethernet, or ifconfig en1 for wifi.

These steps worked perfectly on a 2009 core 2 duo MacBook Pro running Snow Leopard.]]></description>
		<content:encoded><![CDATA[<p>I was able to get this to work for both wifi and ethernet. The most important step is that you must be completely disconnected from your network. For ethernet, this involves disconnecting the cable. For wifi, you can try a complicated method outlined at <a href="http://d-downunder.blogspot.com/" rel="nofollow">http://d-downunder.blogspot.com/</a><br />
The difficult thing with wifi is that if you have the password saved in your keychain, it will automatically reconnect to the network, which you don&#8217;t want.<br />
An easier way to disconnect from wifi, as highlighted by Deviacium is simply to type sudo /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/airport -z</p>
<p>It is awkward that this command is hidden deep inside PrivateFrameworks, but at least it works.<br />
Once you are disconnected from the network, simply type the following (replace 00:11:22:33:44:55 with the MAC address of your choice):</p>
<p>To change the ethernet MAC address, type:<br />
ifconfig en0 lladdr 00:11:22:33:44:55</p>
<p>OR</p>
<p>To change the wifi MAC address, type:<br />
ifconfig en1 lladdr 00:11:22:33:44:55</p>
<p>To confirm that the MAC address has been changed, type ifconfig en0 for ethernet, or ifconfig en1 for wifi.</p>
<p>These steps worked perfectly on a 2009 core 2 duo MacBook Pro running Snow Leopard.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on iTunes scripts I can&#8217;t live without by TomTom</title>
		<link>http://www.cneophytou.com/2007/07/24/itunes-scripts-i-cant-live-without/comment-page-1/#comment-33186</link>
		<dc:creator>TomTom</dc:creator>
		<pubDate>Sat, 25 May 2013 22:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/2007/07/24/itunes-scripts-i-cant-live-without/#comment-33186</guid>
		<description><![CDATA[Hey dude..
Cool scripts..
I was wondering if I could ask you about making a fairly easy script, or at least I think it will be easy, that simply links GrowlTunes to launch/quit when launching/quitting iTunes..?
If its even possible..?

PS. I know this post is quite old, but I&#039;m hoping your still checking up once every now and then...]]></description>
		<content:encoded><![CDATA[<p>Hey dude..<br />
Cool scripts..<br />
I was wondering if I could ask you about making a fairly easy script, or at least I think it will be easy, that simply links GrowlTunes to launch/quit when launching/quitting iTunes..?<br />
If its even possible..?</p>
<p>PS. I know this post is quite old, but I&#8217;m hoping your still checking up once every now and then&#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating backup of Flash drives by Nichole</title>
		<link>http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/comment-page-2/#comment-33108</link>
		<dc:creator>Nichole</dc:creator>
		<pubDate>Sat, 25 May 2013 07:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-33108</guid>
		<description><![CDATA[[quote comment=&quot;32771&quot;][quote comment=&quot;32730&quot;]Where do I go to access my backedup files?[/quote]

The 6th property in the actual backup script reads

&lt;code&gt;
property backup_target : &quot;Backups/&quot; (* MUST be a folder location with trailing slash! Always relative to home folder *)
&lt;/code&gt;

If you did not change it, then your backups would be in ~/Backups/, where ~/ is your Home directory. So Open up the finder, click on your home dir, and look for a folder called Backups.[/quote]
Thank you for your reply... I went to finder, searched for backups and nothing comes up. I followed the instructions as per above, and my flashdrive seems to get to business as soon as its mounted. Also, when I save something the screen briefly flashes (as if it&#039;s backing up - just my imagination?) 

I&#039;m having a heck of a time with this... Nothing seems to be saved anywhere on my computer. I def. did not change the script. Any help would be greatly appreciated.  I recently lost everything on a different flash drive and don&#039;t want to go through that again.]]></description>
		<content:encoded><![CDATA[<blockquote cite="http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-32771">
<blockquote cite="http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-32730"><p>
Where do I go to access my backedup files?</p>
</blockquote>
<p>The 6th property in the actual backup script reads</p>
<p><code><br />
property backup_target : "Backups/" (* MUST be a folder location with trailing slash! Always relative to home folder *)<br />
</code></p>
<p>If you did not change it, then your backups would be in ~/Backups/, where ~/ is your Home directory. So Open up the finder, click on your home dir, and look for a folder called Backups.</p>
</blockquote>
<p>Thank you for your reply&#8230; I went to finder, searched for backups and nothing comes up. I followed the instructions as per above, and my flashdrive seems to get to business as soon as its mounted. Also, when I save something the screen briefly flashes (as if it&#8217;s backing up &#8211; just my imagination?) </p>
<p>I&#8217;m having a heck of a time with this&#8230; Nothing seems to be saved anywhere on my computer. I def. did not change the script. Any help would be greatly appreciated.  I recently lost everything on a different flash drive and don&#8217;t want to go through that again.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating backup of Flash drives by Constantinos</title>
		<link>http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/comment-page-2/#comment-32771</link>
		<dc:creator>Constantinos</dc:creator>
		<pubDate>Sat, 25 May 2013 19:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-32771</guid>
		<description><![CDATA[[quote comment=&quot;32730&quot;]Where do I go to access my backedup files?[/quote]

The 6th property in the actual backup script reads

&lt;code&gt;
property backup_target : &quot;Backups/&quot; (* MUST be a folder location with trailing slash! Always relative to home folder *)
&lt;/code&gt;

If you did not change it, then your backups would be in ~/Backups/, where ~/ is your Home directory. So Open up the finder, click on your home dir, and look for a folder called Backups.]]></description>
		<content:encoded><![CDATA[<blockquote cite="http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-32730"><p>
Where do I go to access my backedup files?</p>
</blockquote>
<p>The 6th property in the actual backup script reads</p>
<p><code><br />
property backup_target : "Backups/" (* MUST be a folder location with trailing slash! Always relative to home folder *)<br />
</code></p>
<p>If you did not change it, then your backups would be in ~/Backups/, where ~/ is your Home directory. So Open up the finder, click on your home dir, and look for a folder called Backups.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating backup of Flash drives by Nichole</title>
		<link>http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/comment-page-2/#comment-32730</link>
		<dc:creator>Nichole</dc:creator>
		<pubDate>Sat, 25 May 2013 23:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-32730</guid>
		<description><![CDATA[Where do I go to access my backedup files?]]></description>
		<content:encoded><![CDATA[<p>Where do I go to access my backedup files?</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on LiveSearch by SugarCRM Customization</title>
		<link>http://www.cneophytou.com/2006/03/26/livesearch/comment-page-2/#comment-30241</link>
		<dc:creator>SugarCRM Customization</dc:creator>
		<pubDate>Sat, 25 May 2013 12:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/2006/03/14/livesearch/#comment-30241</guid>
		<description><![CDATA[Cool Plugins .. thanks alot]]></description>
		<content:encoded><![CDATA[<p>Cool Plugins .. thanks alot</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating backup of Flash drives by Guapo</title>
		<link>http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/comment-page-2/#comment-24562</link>
		<dc:creator>Guapo</dc:creator>
		<pubDate>Sat, 25 May 2013 03:23:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-24562</guid>
		<description><![CDATA[[quote post=&quot;85&quot;]Mine’s not working like that. I get the total of all folders when I go up one level.[/quote]

Could it be that I need to change some of the preferences/properties of the rsync.app? Referring to my concern above.]]></description>
		<content:encoded><![CDATA[<blockquote cite="http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-"><p>
Mine’s not working like that. I get the total of all folders when I go up one level.</p>
</blockquote>
<p>Could it be that I need to change some of the preferences/properties of the rsync.app? Referring to my concern above.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automating backup of Flash drives by Guapo</title>
		<link>http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/comment-page-2/#comment-24446</link>
		<dc:creator>Guapo</dc:creator>
		<pubDate>Sat, 25 May 2013 02:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-24446</guid>
		<description><![CDATA[[quote post=&quot;85&quot;]Try this: Go in your backups folder, click on one specific backup, and hit cmd-I to see it’s info. This will tell you the total size of that folder, which should be around 2gb (as it’s a whole copy of your memory stick). Now go one level up, to the Backups folder, and do the same. You’ll notice that the ENTIRE Backups folder, which contains all 5 backup copies of your memory stick, is in fact just over 2Gb and NOT 10Gb in size.[/quote]

Mine&#039;s not working like that. I get the total of all folders when I go up one level.]]></description>
		<content:encoded><![CDATA[<blockquote cite="http://www.cneophytou.com/2007/03/06/automating-backup-of-flash-drives/#comment-"><p>
Try this: Go in your backups folder, click on one specific backup, and hit cmd-I to see it’s info. This will tell you the total size of that folder, which should be around 2gb (as it’s a whole copy of your memory stick). Now go one level up, to the Backups folder, and do the same. You’ll notice that the ENTIRE Backups folder, which contains all 5 backup copies of your memory stick, is in fact just over 2Gb and NOT 10Gb in size.</p>
</blockquote>
<p>Mine&#8217;s not working like that. I get the total of all folders when I go up one level.</p>]]></content:encoded>
	</item>
</channel>
</rss>
