<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title> &#187; Software</title>
	<atom:link href="http://www.prometheon.net/category/fun-stuff/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.prometheon.net</link>
	<description>What can open source software do for you?</description>
	<lastBuildDate>Wed, 15 Jul 2009 02:56:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>Copyright &#xA9; 2010  </copyright>
		<managingEditor>rnix@prometheon.net ()</managingEditor>
		<webMaster>rnix@prometheon.net ()</webMaster>
		<category>posts</category>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>What can open source software do for you?</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>rnix@prometheon.net</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.prometheon.net/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.prometheon.net/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title></title>
			<link>http://www.prometheon.net</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Simple Perl script to remove illegal characters</title>
		<link>http://www.prometheon.net/2008/08/22/simple-perl-script-to-remove-illegal-characters/</link>
		<comments>http://www.prometheon.net/2008/08/22/simple-perl-script-to-remove-illegal-characters/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 15:29:13 +0000</pubDate>
		<dc:creator>rnix</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[AFP548]]></category>
		<category><![CDATA[Appletalk]]></category>
		<category><![CDATA[domain migration]]></category>
		<category><![CDATA[illegal characters]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[SMB protocol]]></category>
		<category><![CDATA[Tiger]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.prometheon.net/?p=93</guid>
		<description><![CDATA[<br/>Insert this script inside of the root directory containing all of the files and folders that contain illegal characters.
Run this command:  find -d . -print0 &#124; xargs -0 /Users/$HOME/Desktop/rename_for_windows (or whatever you named your file)
The script:
#!/usr/bin/perl -w
# This script renames all the files supplied as command-line args
# where necessary so that the filename is acceptable [...]]]></description>
			<content:encoded><![CDATA[<br/><p>Insert this script inside of the root directory containing all of the files and folders that contain illegal characters.</p>
<p>Run this command:  find -d . -print0 | xargs -0 /Users/$HOME/Desktop/rename_for_windows (or whatever you named your file)</p>
<p>The script:</p>
<p>#!/usr/bin/perl -w</p>
<p># This script renames all the files supplied as command-line args<br />
# where necessary so that the filename is acceptable to MS Windows<br />
# Cameron Hayne (macdev@hayne.net), June 2004</p>
<p>use strict;</p>
<p>chomp(@ARGV = &lt;STDIN&gt;) unless @ARGV;</p>
<p># The Microsoft document at<br />
# http://support.microsoft.com/default&#8230;b;EN-US;100108<br />
# says that the following characters are not allowed in filenames<br />
# in each of the specified filesystems:<br />
# FAT:   .  &#8220;  /  \  [  ]  |  :  ;  ,  =<br />
# NTFS:  ?  &#8220;  /  \  &lt;  &gt;  |  :  *</p>
<p># We don&#8217;t do anything with the dot (.) since it clearly is allowable<br />
# in spite of what that document says.<br />
# And we don&#8217;t do anything with the slash (/) since that character<br />
# will not occur in OS X filenames and modifying it would cause<br />
# troubles when a file path (with directories) is specified.<br />
# The changing of the filenames is done via the &#8216;tr&#8217; statements below.<br />
# Each occurence of a character in the first curly brackets<br />
# is replaced by the character in the second curly brackets.</p>
<p>foreach my $filename (@ARGV)<br />
{<br />
my $orig_filename = $filename;</p>
<p>$filename =~ tr{\\}{-};<br />
$filename =~ tr{*?}{X};<br />
$filename =~ tr{&#8220;&gt;&lt;[]|:;,&#8217;=}{_};</p>
<p>unless ($filename eq $orig_filename)<br />
{<br />
print &#8220;About to rename $orig_filename to $filename\n&#8221;;<br />
if (-e $filename)<br />
{<br />
print &#8220;Oops, there already exists a file named $filename\n&#8221;;<br />
print &#8220;Skipping the rename &#8211; you will have to do it manually\n&#8221;;<br />
}<br />
else<br />
{<br />
rename($orig_filename, $filename);<br />
}<br />
}<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.prometheon.net/2008/08/22/simple-perl-script-to-remove-illegal-characters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated Active Directory MSI Installers for Firefox 3 and Pidgin 2.4.3</title>
		<link>http://www.prometheon.net/2008/07/19/updated-active-directory-msi-installers-for-firefox-3-and-pidgin-243/</link>
		<comments>http://www.prometheon.net/2008/07/19/updated-active-directory-msi-installers-for-firefox-3-and-pidgin-243/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 22:11:55 +0000</pubDate>
		<dc:creator>rnix</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox msi installer]]></category>
		<category><![CDATA[guifications]]></category>
		<category><![CDATA[pidgin encryption]]></category>
		<category><![CDATA[pidgin for windows]]></category>
		<category><![CDATA[pidgin msi installer]]></category>
		<category><![CDATA[prometheon]]></category>

		<guid isPermaLink="false">http://www.prometheon.net/?p=88</guid>
		<description><![CDATA[<br/>Firefox 3 set a Guiness Book World Record for most downloads in a day.  Approximately, 8,002,530 downloads were registered in a 24 hour period.  Like Apple with the new iPhone 3G, Mozilla couldn&#8217;t quite meet demand and there was a temporary outage.  Let me tell you, both products are fabulous and worth all the hype!
Sorry [...]]]></description>
			<content:encoded><![CDATA[<br/><p>Firefox 3 set a Guiness Book World Record for <a href="http://www.spreadfirefox.com/en-US/worldrecord">most downloads in a day</a>.  Approximately, 8,002,530 downloads were registered in a 24 hour period.  Like Apple with the new iPhone 3G, Mozilla couldn&#8217;t quite meet demand and there was a temporary outage.  Let me tell you, both products are fabulous and worth all the hype!</p>
<p>Sorry it&#8217;s taken us so long, but we wanted to wait for at least one update before releasing an updated MSI installer of Firefox with the Flash and Shockwave plugins.</p>
<p><a href="http://www.prometheon.net/wp-content/uploads/2008/07/firefoxmsi.zip">Firefox 3.0.1 with Flash 9 and Shockwave 11 plug-ins</a></p>
<p><a href="http://www.prometheon.net/wp-content/uploads/2008/07/pidginmsi.zip">Pidgin 2.4.3 with Guifications and Pidgin Encryption plug-ins</a></p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.prometheon.net/2008/07/19/updated-active-directory-msi-installers-for-firefox-3-and-pidgin-243/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Active Directory Windows MSI Installers for Firefox, Pidgin and GIMP</title>
		<link>http://www.prometheon.net/2008/04/22/active-directory-windows-msi-installers-for-firefox-pidgin-and-gimp/</link>
		<comments>http://www.prometheon.net/2008/04/22/active-directory-windows-msi-installers-for-firefox-pidgin-and-gimp/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 12:14:48 +0000</pubDate>
		<dc:creator>rnix</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.prometheon.net/2008/04/22/active-directory-windows-msi-installers-for-firefox-pidgin-and-gimp/</guid>
		<description><![CDATA[<br/>The best way to introduce great open source software to others is not necessarily getting them to switch their entire computing lifestyle to all open source, but rather to get them trying and using a few applications at a time on Windows or Mac OS X.  With that goal in mind, Firefox, Pidgin, and [...]]]></description>
			<content:encoded><![CDATA[<br/><p>The best way to introduce great open source software to others is not necessarily getting them to switch their entire computing lifestyle to all open source, but rather to get them trying and using a few applications at a time on Windows or Mac OS X.  With that goal in mind, Firefox, Pidgin, and the GIMP are all terrific programs that can really help improve the overall computing experience on non-Linux systems and get people curious about open source software such as a Linux desktop like Ubuntu or Red Hat.</p>
<p>To help make deployment easier for system administrators, we&#8217;ve packaged up some leading open source software in Microsoft&#8217;s MSI installer format.  </p>
<p><a href='http://www.prometheon.net/wp-content/uploads/2008/04/firefox-20014-flash-90124-and-shockwave-11msi.zip' title='Firefox 2.0.14 with Flash 9.0.124 and Shockwave 11 plugins'>Firefox 2.0.14 with Flash 9.0.124 and Shockwave 11 plugins</a></p>
<p><a href='http://www.prometheon.net/wp-content/uploads/2008/04/pidgin-instant-messenger-241msi.zip' title='Pidgin 2.4.1 with Pidgin Encryptin and Guification plugins'>Pidgin 2.4.1 with Pidgin Encryptin and Guification plugins</a></p>
<p><a href='http://www.prometheon.net/wp-content/uploads/2008/04/gimp-245msi.zip' title='Gimp 2.4.5 with Online Help Manuals'>Gimp 2.4.5 with Online Help Manuals</a></p>
<p><a href='http://www.prometheon.net/wp-content/uploads/2008/04/clamwin-av.zip'>ClamWin Anti-Virus .93</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.prometheon.net/2008/04/22/active-directory-windows-msi-installers-for-firefox-pidgin-and-gimp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows UAC compared to Linux Sudo</title>
		<link>http://www.prometheon.net/2008/03/19/windows-uac-compared-to-linux-sudo/</link>
		<comments>http://www.prometheon.net/2008/03/19/windows-uac-compared-to-linux-sudo/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 01:58:02 +0000</pubDate>
		<dc:creator>rnix</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.prometheon.net/2008/03/19/windows-uac-compared-to-linux-sudo/</guid>
		<description><![CDATA[<br/>Prometheon works with whatever our customers choose to use.  Windows, Linux, Mac OS X, you name it.  Naturally, being a company whose name derives from the Greek Titan that took fire from the Gods and gave it to the common man, we see open source paralleling that great story and prefer Linux and [...]]]></description>
			<content:encoded><![CDATA[<br/><p>Prometheon works with whatever our customers choose to use.  Windows, Linux, Mac OS X, you name it.  Naturally, being a company whose name derives from the Greek Titan that took fire from the Gods and gave it to the common man, we see open source paralleling that great story and prefer Linux and open source to Windows and OS X in nearly every case where it&#8217;s appropriate for the customer&#8217;s need. However, Microsoft still holds a tenuous mindshare of the enterprise computing space and it&#8217;s interesting to see how Microsoft is trying to purposely misrepresent Linux.  As Ghandi once said, &#8220;First they ignore you, then they ridicule you, then they fight you, then you win.&#8221;  We&#8217;re somewhere in between ridicule and fighting in the open source vs. proprietary fight with Microsoft.  </p>
<p>In needing to keep up with Microsoft&#8217;s latest offerings, which serve more to line their pockets by getting their customers to upgrade more frequently, I receive a newsletter from them every so often.  Microsoft decided to do a <a href="http://www.microsoft.com/windowsserver/compare/webcasts/Windows-UAC-compared-to-Linux-Sudo.mspx">UAC or User Access Control</a> vs the time tested and proven Unix/Linux sudo which means &#8220;super user do&#8221;.  Anyone who is familiar with the sudo command will find this video amusing.  Microsoft has purposely added extra steps to make a Linux account have elevated sudo privileges, leaving out how easy it is to simply just switch to the root account when logged in as someone else,  and do what needs to be done without having to have someone log out.  Better yet, you can manage the a Linux desktop user&#8217;s privileges through either NIS, OpenLDAP, or heaven forbid, Linux tied to Microsoft&#8217;s own Active Directory!</p>
<p>So watch out for Microsoft&#8217;s FUD campaign.  As the saying goes, Deny, Deny, Deny, even when someone has pictures that say otherwise, just deny the truth!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.prometheon.net/2008/03/19/windows-uac-compared-to-linux-sudo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pidgin updated to 2.3.1</title>
		<link>http://www.prometheon.net/2008/02/02/pidgin-updated-to-231/</link>
		<comments>http://www.prometheon.net/2008/02/02/pidgin-updated-to-231/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 02:13:39 +0000</pubDate>
		<dc:creator>rnix</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.prometheon.net/2008/02/02/pidgin-updated-to-231/</guid>
		<description><![CDATA[<br/>	libpurple:
	* Fixed a number of MSN bugs introduced in 2.3.0, resolving problems
	  connecting to MSN and random local display name changes
	* Going idle on MySpaceIM will no longer clear your status and message.
	* Idle MySpaceIM buddies should now appear online at login.
	* Fixed crashes in XMPP when discovering a client&#8217;s capabilities
	* Don&#8217;t set the [...]]]></description>
			<content:encoded><![CDATA[<br/><p>	libpurple:<br />
	* Fixed a number of MSN bugs introduced in 2.3.0, resolving problems<br />
	  connecting to MSN and random local display name changes<br />
	* Going idle on MySpaceIM will no longer clear your status and message.<br />
	* Idle MySpaceIM buddies should now appear online at login.<br />
	* Fixed crashes in XMPP when discovering a client&#8217;s capabilities<br />
	* Don&#8217;t set the current tune title if it&#8217;s NULL (XMPP/Google Talk)<br />
	* Don&#8217;t allow buddies to be manually added to Bonjour<br />
	* Don&#8217;t advertise IPv6 on Bonjour because we don&#8217;t support it<br />
	* Compile fixes for FreeBSD and Solaris<br />
	* Update QQ client version so some accounts can connect again<br />
	* Do not allow ISON requests to stack in IRC, preventing flooding IRC<br />
	  servers when temporary network outages are restored<br />
	* Plug several leaks in the perl plugin loader<br />
	* Prevent autoaccept plugin overwriting existing files</p>
]]></content:encoded>
			<wfw:commentRss>http://www.prometheon.net/2008/02/02/pidgin-updated-to-231/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
