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

<channel>
	<title>Lucky Disasters</title>
	<atom:link href="http://www.luckydisasters.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.luckydisasters.com</link>
	<description>How I stopped worrying and learned to love my karma.</description>
	<lastBuildDate>Sun, 08 Mar 2009 01:17:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>HowTo: Change Locations in Prism</title>
		<link>http://www.luckydisasters.com/2009/03/07/howto-change-locations-in-prism/</link>
		<comments>http://www.luckydisasters.com/2009/03/07/howto-change-locations-in-prism/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 01:09:26 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Prism]]></category>
		<category><![CDATA[Accelerator]]></category>
		<category><![CDATA[Accelerator Key]]></category>
		<category><![CDATA[Alt]]></category>
		<category><![CDATA[Chrome Directory]]></category>
		<category><![CDATA[Complete List]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Error Code]]></category>
		<category><![CDATA[Home Key]]></category>
		<category><![CDATA[Javascript Code]]></category>
		<category><![CDATA[Javascript Window]]></category>
		<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[Keyset]]></category>
		<category><![CDATA[Left Arrow]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Navigation Keys]]></category>
		<category><![CDATA[Number Pad]]></category>
		<category><![CDATA[Print Key]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[Right Arrow]]></category>
		<category><![CDATA[Text Box Type]]></category>
		<category><![CDATA[WebRunner]]></category>
		<category><![CDATA[Website Url]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=339</guid>
		<description><![CDATA[You may or may not know this, but you can use the Error Console in Prism to open new windows to any site you want. Just use the following javascript in the Code Evaluation box:
window.open('http://website.url','','');
This will open a new window to the address &#8220;http://website.url&#8221;, pretty basic stuff. Now, what happens if you want to change [...]]]></description>
			<content:encoded><![CDATA[<p>You may or may not know this, but you can use the Error Console in Prism to open new windows to any site you want. Just use the following javascript in the Code Evaluation box:</p>
<p><code>window.open('http://website.url','','');</code></p>
<p>This will open a new window to the address &#8220;http://website.url&#8221;, pretty basic stuff. Now, what happens if you want to change the location of the Prism window from your default webapp&#8217;s location. Well, you can still use the Error Console, but there&#8217;s a couple of layers of javascript reference you need to go through. If you try using this:</p>
<p><code>parent.location='http://website.url'</code></p>
<p>You redirect the Error Console to &#8220;http://website.url&#8221;, interesting (very, actually :), but not what we&#8217;re after. If you haven&#8217;t already done so, open the error console:<br />
<a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2009/03/menu.png"><img class="alignnone size-full wp-image-340" title="menu" src="http://www.luckydisasters.com/wp-content/uploads/2009/03/menu.png" alt="menu" width="274" height="137" /></a></p>
<p>Next, in the Code Evaluation text box, type the following:</p>
<p><code>parent.opener.content.location='about:config'</code></p>
<div style="height: 150px; width: 100%;"><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2009/03/shot1.png"><img class="size-thumbnail wp-image-341 alignleft" style="margin:4px;" title="shot1" src="http://www.luckydisasters.com/wp-content/uploads/2009/03/shot1-150x150.png" alt="shot1" width="150" height="150" /></a><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2009/03/shot2.png"><img class="alignleft size-thumbnail wp-image-342" style="margin:4px;" title="shot2" src="http://www.luckydisasters.com/wp-content/uploads/2009/03/shot2-150x150.png" alt="shot2" width="150" height="150" /></a><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2009/03/shot3.png"><img class="alignleft size-thumbnail wp-image-343" style="margin:4px;" title="shot3" src="http://www.luckydisasters.com/wp-content/uploads/2009/03/shot3-150x150.png" alt="shot3" width="150" height="150" /></a></div>
<p>That&#8217;s about it, hit return or press &#8220;Evaluate&#8221; and you&#8217;re done. By using <code>parent.opener.content.whatever</code> you should be able to access all of Prism&#8217;s components. What? You don&#8217;t know what the other compents are?? Well, check out the webrunner.xul located in Prism&#8217;s install directory, in the chrome directory inside the webrunner.jar (copy, rename to .zip from .jar and extract).</p>
<p>Another thing you&#8217;ll learn from this file is a complete list of the navigation keys (look for the keyset directives) currently used by Prism:</p>
<p>Back=Alt+Left Arrow<br />
Forward=Alt+Right Arrow<br />
Home=Alt+Home (that&#8217;s the Home Key on your keyboard&#8217;s number pad BTW)<br />
Reload Page=F5<br />
Close=Accelerator Key (Ctrl Key)+w<br />
Quit=Accelerator Key (Ctrl Key)+q<br />
Print=Accelerator Key (Ctrl Key)+p</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2009/03/07/howto-change-locations-in-prism/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Prism as a TV</title>
		<link>http://www.luckydisasters.com/2009/02/25/prism-as-a-tv/</link>
		<comments>http://www.luckydisasters.com/2009/02/25/prism-as-a-tv/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 01:28:50 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Prism]]></category>
		<category><![CDATA[Veoh]]></category>
		<category><![CDATA[XulApps]]></category>
		<category><![CDATA[Back Arrow]]></category>
		<category><![CDATA[Class Lectures]]></category>
		<category><![CDATA[Configured]]></category>
		<category><![CDATA[Consumption]]></category>
		<category><![CDATA[Desktop Icon]]></category>
		<category><![CDATA[Ecu]]></category>
		<category><![CDATA[Favicon]]></category>
		<category><![CDATA[Ff3]]></category>
		<category><![CDATA[Forward Arrow]]></category>
		<category><![CDATA[Navigation Keys]]></category>
		<category><![CDATA[Search Term]]></category>
		<category><![CDATA[Search Url]]></category>
		<category><![CDATA[Sidebar]]></category>
		<category><![CDATA[Television Station]]></category>
		<category><![CDATA[Video Channel]]></category>
		<category><![CDATA[Video Sharing Sites]]></category>
		<category><![CDATA[Video Sites]]></category>
		<category><![CDATA[webapp]]></category>
		<category><![CDATA[Webapps]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=328</guid>
		<description><![CDATA[I know I said that the next Prism related post I would be doing was one on manually installing an addon, but it&#8217;s taking me more time to get to than I had hoped. However, I do have another use for Prism that I&#8217;d like to share right now. I&#8217;ve been using Prism as a [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2009/02/capture_02252009_194641.jpg"><img class="alignleft size-thumbnail wp-image-331" style="padding:5px;" title="capture_02252009_194641" src="http://www.luckydisasters.com/wp-content/uploads/2009/02/capture_02252009_194641-150x150.jpg" alt="capture_02252009_194641" width="150" height="150" /></a>I know I said that the next <a href="https://wiki.mozilla.org/Prism" target="_blank">Prism</a> related post I would be doing was one on manually installing an addon, but it&#8217;s taking me more time to get to than I had hoped. However, I do have another use for Prism that I&#8217;d like to share right now. I&#8217;ve been using Prism as a tool for creating TV show specific browsers for video sites. <a href="http://www.veoh.com" target="_blank">Veoh</a> specifically, but I&#8217;m pretty sure you can do this for other video sharing sites as well.</p>
<p>Basically what I&#8217;ve done is used Prism to create a new webapp that points to the search URL of Veoh with a single program as the search term. For instance, right now I&#8217;m following the anime <a href="http://en.wikipedia.org/wiki/Toradora!" target="_blank">Toradora</a>.</p>
<p><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2009/02/capture_02252009_194818.jpg"><img class="size-thumbnail wp-image-330 alignright" style="margin: 5px;" title="capture_02252009_194818" src="http://www.luckydisasters.com/wp-content/uploads/2009/02/capture_02252009_194818-150x150.jpg" alt="capture_02252009_194818" width="135" height="135" /></a>To create the webapp, I&#8217;ve chosen to place a link on my desktop, used the search link above, and enabled the navigation keys for Prism:</p>
<p>Alt+Back Arrow = Back in History<br />
Alt+Forward Arrow = Forward in History<br />
Alt+Home = Home Page for webappX<br />
etc.</p>
<p>Veoh Search Link:</p>
<p>http://www.veoh.com/search/videos/q/<strong>your+search+here</strong></p>
<p>Prism automatically pulls the site&#8217;s favicon as the desktop icon (has anyone else experienced problems with Prism not correctly installing the icon from pre-bundled webapps?).</p>
<p>Other places where this could be useful (other than setting up your own custom television station on your desktop with play-on-demand access)? The instructors for the courses I&#8217;m taking right now at ECU via the web often put class lectures on both YouTube and ECU&#8217;s own servers (depending on the class and the web-savvy-ness of the instructor). This would be a perfect way to distribute these movies to students, simply by placing the right URL into Prism and bundling the webapp, you can create a feed specific video channel for student consumption.</p>
<p><strong>Other thoughts on this process:</strong></p>
<ul>
<li> The ability to uninstall webapps would be useful. Manual uninstalls, while not difficult, are a pain.</li>
<li> An addon or webapp script for Prism to load into the sidebar with links or buttons corresponding to pre-configured feeds/pages to change the currently viewed page so that you can &#8220;change channels.&#8221;</li>
<li> Along those same lines, an addon with FF3&#8217;s built-in feed reader which would load into the sidebar would be a nifty means of navigating a number of pre-configured links&#8230; yes that would be nifty indeed&#8230;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2009/02/25/prism-as-a-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Registry Seach and Destroy Missions Just Got Easier</title>
		<link>http://www.luckydisasters.com/2009/02/19/registry-seach-and-destroy-missions-just-got-easier/</link>
		<comments>http://www.luckydisasters.com/2009/02/19/registry-seach-and-destroy-missions-just-got-easier/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 04:33:11 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Absolute]]></category>
		<category><![CDATA[C Program]]></category>
		<category><![CDATA[Default Folder]]></category>
		<category><![CDATA[Impulse]]></category>
		<category><![CDATA[Missions]]></category>
		<category><![CDATA[Moving]]></category>
		<category><![CDATA[Program Folder]]></category>
		<category><![CDATA[Registry Keys]]></category>
		<category><![CDATA[Replacements]]></category>
		<category><![CDATA[Root Directory]]></category>
		<category><![CDATA[Root Folder]]></category>
		<category><![CDATA[Seach]]></category>
		<category><![CDATA[Text Strings]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=324</guid>
		<description><![CDATA[Ever have to move a program folder after an install then try to update the registry so that everything still worked correctly?  Or how about simply having to make the same changes to a whole bunch of text strings in the registry manually? I recently had to do the former, a program installer wanted to [...]]]></description>
			<content:encoded><![CDATA[<p>Ever have to move a program folder after an install then try to update the registry so that everything still worked correctly?  Or how about simply having to make the same changes to a whole bunch of text strings in the registry manually? I recently had to do the former, a program installer wanted to put the program folder into <code>C:\</code>, but I prefer to have my programs in <code>C:\Program Files</code> &#8211; thanks. Some programs require a path without spaces (therefore, it helps to put them in the root folder), but others are just so old that they install to <code>C:\</code> by default. Moving the program folder from <code>C:\</code> to <code>C:\Program Files</code> works to move the files, but the registry keys will continue to point to a folder in the root directory (and of course will prevent your programs from completely working).</p>
<p><a href="http://bladesdev.com/regreplace.htm"><img class="alignleft size-medium wp-image-325" style="margin:3px;" title="regrepl2" src="http://www.luckydisasters.com/wp-content/uploads/2009/02/regrepl2-300x180.jpg" alt="regrepl2" width="240" height="144" /></a>To fix this you have to get adventurous and make edits to the registry. I found a solution to the slow process that is normally a standard part of finding and editing these entries. The program is called <a href="http://bladesdev.com/regreplace.htm">Registry Replace</a> by <a href="http://bladesdev.com">Absolute Impulse</a>. It allows you to do search and destroy string replacements similar to those you can perform with a standard text editor.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2009/02/19/registry-seach-and-destroy-missions-just-got-easier/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Prism Information &#8211; In Depth</title>
		<link>http://www.luckydisasters.com/2008/11/06/prism-information-in-depth/</link>
		<comments>http://www.luckydisasters.com/2008/11/06/prism-information-in-depth/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 19:25:42 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Prism]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[WebRunner]]></category>
		<category><![CDATA[XulApps]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Chrome Url]]></category>
		<category><![CDATA[Dev Center]]></category>
		<category><![CDATA[Developer Center]]></category>
		<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Headaches]]></category>
		<category><![CDATA[Input Url]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Lot]]></category>
		<category><![CDATA[Marcel]]></category>
		<category><![CDATA[Mark Finkle]]></category>
		<category><![CDATA[Mdc]]></category>
		<category><![CDATA[Pow]]></category>
		<category><![CDATA[Prism Project]]></category>
		<category><![CDATA[Project Mozilla]]></category>
		<category><![CDATA[thanksgiving]]></category>
		<category><![CDATA[Ui]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=297</guid>
		<description><![CDATA[[[UPDATED - 08/11/22 to include Linux paths]]
A lot of people have been having problems getting extensions to work with Prism. This is kind of an expected situation considering that the extensions that are being targeted are designed for use under Firefox, which has a different UI than Prism. This can cause a lot of headaches [...]]]></description>
			<content:encoded><![CDATA[<p><b style="color:red;">[[UPDATED - 08/11/22 to include Linux paths]]</b><br />
A lot of people have been having problems getting extensions to work with Prism. This is kind of an expected situation considering that the extensions that are being targeted are designed for use under Firefox, which has a different UI than Prism. This can cause a lot of headaches trying to figure out what&#8217;s wrong. There are ways around some of these problems, especially if the extension includes a xul overlay that is compatible with the browser xul for Prism. Or if you can load the chrome url to the main xul overlay in Prism&#8217;s input url (which of course requires that you already have the extension installed). Other extensions however, have no hope of working with Prism unless changes are made to the overlays.</p>
<p>I&#8217;ve also been running into a problem described by commenter <a href="http://stinkdigital.tv/" target="_blank">Marcel</a>, <a href="http://www.luckydisasters.com/2008/06/10/heres-how-to-make-an-extension-compatible-with-prism-two-ish/#comment-1123">here</a>. I&#8217;ve been getting a similar error under Windows for different extensions when I try to install them. Don&#8217;t know why, and what makes it worse is that these errors crop up in extensions that I&#8217;ve had no problems installing before on other computers (maybe I need to have Webrunner installed along side Prism?). I&#8217;ve also had problems with version 0.9 not installing and using the included icons for webapp files. I&#8217;m going to have to look into that one a bit further before I can comment more on it though.</p>
<p>At any rate, I&#8217;m going to list as much information in this post as I can find on Prism to refer back to, then I&#8217;m going to create a new post on how to install an extension for Prism manually. I&#8217;d also like to post a how-to on getting POW to work under Prism as well, but I don&#8217;t know whether or not I&#8217;ll get to that (maybe over Thanksgiving break). So, first some links.</p>
<p><strong id="prismlinks">LINKS:</strong><br />
<a href="http://labs.mozilla.com/2007/10/prism/" target="_blank">Mozilla Labs&#8217; Prism Page</a> &#8211; A broad overview of the goals of the Mozilla Prism Project<br />
<a href="https://developer.mozilla.org/en/Prism" target="_blank">Mozilla Developer Center&#8217;s Prism Page<br />
</a><a style="margin-left:15px;" href="https://developer.mozilla.org/en/Prism/Extensions" target="_blank">MDC&#8217;s Prism Page on Extensions</a><br />
<a href="https://labs.mozilla.com/forum/?CategoryID=16" target="_blank">Mozilla Labs&#8217; Prism Forum</a><br />
<a href="https://wiki.mozilla.org/WebRunner" target="_blank">Mozilla Wiki Prism Page</a> &#8211; Along with the Dev Center&#8217;s page, a good source for documentation on  Prism<br />
<a href="http://starkravingfinkle.org/blog/2008/08/fennec-m6/" target="_blank">Mark Finkle&#8217;s Blog</a> (one of Prism&#8217;s developers &#8211; BTW &#8211; THANK YOU MARK!!!)<br />
<a href="http://viewvc.svn.mozilla.org/vc/projects/webrunner/" target="_blank">SVN for Prism&#8217;s source code</a><br />
<a href="http://www.ohloh.net/projects/prism/contributors" target="_blank">List of Prism Contributors on ohloh.net</a><br />
<a href="http://douglasjmeyer.blogspot.com/2008/09/google-gears-in-prism.html" target="_blank">Douglas Meyer&#8217;s Blog post on getting Google Gears to work with Prism</a><br />
<a href="http://www.arnoldroa.com/software/remember-the-milk-gmail-y-prism/" target="_blank">Commenter Manlo&#8217;s blog post on getting RTM working with Prism</a> (does not appear to be working)<br />
<a href="http://en.wikipedia.org/wiki/Mozilla_Prism" target="_blank">Wikipedia Entry</a></p>
<p>Next, here&#8217;s a list of all the files that Prism makes use of in the user&#8217;s profile directory on Windows and Mac OS X &#8211; Linux to come (I don&#8217;t have access to my Linux box at the moment).</p>
<p><strong id="prismwinfiles">Default Prisim Folders in User&#8217;s Home directory (Windows as of Prism v0.9):</strong></p>
<p><span style="text-decoration: underline;">Under C:\Documents and Settings\{user name}\Application Data\</span></p>
<pre>Prism\
Prism\profiles.ini
Prism\Profiles\
Prism\Profiles\{random string}.default\
Prism\Profiles\{random string}.default\cert8.db
Prism\Profiles\{random string}.default\compatibility.ini
Prism\Profiles\{random string}.default\compreg.dat
Prism\Profiles\{random string}.default\cookies.sqlite
Prism\Profiles\{random string}.default\extensions
Prism\Profiles\{random string}.default\extensions.cache
Prism\Profiles\{random string}.default\extensions.ini
Prism\Profiles\{random string}.default\key3.db
Prism\Profiles\{random string}.default\localstore.rdf
Prism\Profiles\{random string}.default\mimeTypes.rdf
Prism\Profiles\{random string}.default\permissions.sqlite
Prism\Profiles\{random string}.default\places.sqlite
Prism\Profiles\{random string}.default\prefs.js
Prism\Profiles\{random string}.default\secmod.db
Prism\Profiles\{random string}.default\xpti.dat
Prism\Profiles\{random string}.default\extensions\</pre>
<p><span style="text-decoration: underline;">Under C:\Documents and Settings\{user name}\Local Settings\Application Data\</span></p>
<pre>Prism\Prism\
Prism\Prism\updates\
Prism\Prism\updates\0\</pre>
<p><strong id="webappwinfiles">For Each WebApp Prism creates (Windows as of Prism v0.9):</strong></p>
<p><span style="text-decoration: underline;">Under C:\Documents and Settings\{user name}\Application Data\Prism\</span></p>
<pre>{webapp name}\
{webapp name}\profiles.ini
{webapp name}\Profiles\
{webapp name}\Profiles\{random string}.default\
{webapp name}\Profiles\{random string}.default\cert8.db
{webapp name}\Profiles\{random string}.default\compatibility.ini
{webapp name}\Profiles\{random string}.default\compreg.dat
{webapp name}\Profiles\{random string}.default\cookies.sqlite
{webapp name}\Profiles\{random string}.default\extensions
{webapp name}\Profiles\{random string}.default\extensions.cache
{webapp name}\Profiles\{random string}.default\extensions.ini
{webapp name}\Profiles\{random string}.default\extensions.rdf
{webapp name}\Profiles\{random string}.default\key3.db
{webapp name}\Profiles\{random string}.default\localstore.rdf
{webapp name}\Profiles\{random string}.default\mimeTypes.rdf
{webapp name}\Profiles\{random string}.default\permissions.sqlite
{webapp name}\Profiles\{random string}.default\places.sqlite
{webapp name}\Profiles\{random string}.default\pluginreg.dat
{webapp name}\Profiles\{random string}.default\prefs.js
{webapp name}\Profiles\{random string}.default\secmod.db
{webapp name}\Profiles\{random string}.default\signons3.txt
{webapp name}\Profiles\{random string}.default\xpti.dat
{webapp name}\Profiles\{random string}.default\extensions\</pre>
<p><span style="text-decoration: underline;">Under C:\Documents and Settings\{user name}\Application Data\WebApps\</span></p>
<pre>{webapp name}@{webappaddr}\
{webapp name}@{webappaddr}\localstore.json
{webapp name}@{webappaddr}\override.ini
{webapp name}@{webappaddr}\webapp.ini
{webapp name}@{webappaddr}\webapp.js
{webapp name}@{webappaddr}\icons\
{webapp name}@{webappaddr}\icons\default\
{webapp name}@{webappaddr}\icons\default\{icons included in webapp bundle}</pre>
<p><span style="text-decoration: underline;">Under C:\Documents and Settings\{user name}\Local Settings\Application Data\Prism\</span></p>
<pre>{webapp name}\
{webapp name}\Prism\
{webapp name}\Prism\updates\
{webapp name}\Prism\updates\0\
{webapp name}\Profiles\
{webapp name}\Profiles\l05apnbh.default\
{webapp name}\Profiles\l05apnbh.default\XPC.mfl
{webapp name}\Profiles\l05apnbh.default\XUL.mfl
{webapp name}\Profiles\l05apnbh.default\Cache\
{webapp name}\Profiles\l05apnbh.default\Cache\_CACHE_001_
{webapp name}\Profiles\l05apnbh.default\Cache\_CACHE_002_
{webapp name}\Profiles\l05apnbh.default\Cache\_CACHE_003_
{webapp name}\Profiles\l05apnbh.default\Cache\_CACHE_MAP_
{webapp name}\Profiles\l05apnbh.default\Cache\{other cache files}</pre>
<p><strong id="prismmacfiles">Default Prisim Folders in User&#8217;s Home directory (Mac OS X as of Prism v0.9):</strong><br />
<span style="text-decoration: underline;">Under /Users/{user name}/Library/Application Support/Prism/</span></p>
<pre>Profiles/
Profiles/profiles.ini
Profiles/{random string}.default/
Profiles/{random string}.default/cert8.db
Profiles/{random string}.default/compatibility.ini
Profiles/{random string}.default/compreg.dat
Profiles/{random string}.default/cookies.sqlite
Profiles/{random string}.default/extensions.cache
Profiles/{random string}.default/extensions.ini
Profiles/{random string}.default/key3.db
Profiles/{random string}.default/localstore.rdf
Profiles/{random string}.default/mimeTypes.rdf
Profiles/{random string}.default/permissions.sqlite
Profiles/{random string}.default/places.sqlite
Profiles/{random string}.default/pluginreg.dat
Profiles/{random string}.default/prefs.js
Profiles/{random string}.default/secmod.db
Profiles/{random string}.default/xpti.dat
Profiles/{random string}.default/extensions/</pre>
<p><strong id="webappmacfiles">For Each WebApp Prism creates (Mac OS X as of Prism v0.9):</strong></p>
<p><span style="text-decoration: underline;">Under /Users/{user name}/Library/Application Support/{webapp name}/</span></p>
<pre>Profiles/
Profiles/profiles.ini
Profiles/{random string}.default/
Profiles/{random string}.default/cert8.db
Profiles/{random string}.default/compatibility.ini
Profiles/{random string}.default/compreg.dat
Profiles/{random string}.default/cookies.sqlite
Profiles/{random string}.default/extensions.cache
Profiles/{random string}.default/extensions.ini
Profiles/{random string}.default/key3.db
Profiles/{random string}.default/localstore.rdf
Profiles/{random string}.default/mimeTypes.rdf
Profiles/{random string}.default/permissions.sqlite
Profiles/{random string}.default/places.sqlite
Profiles/{random string}.default/pluginreg.dat
Profiles/{random string}.default/prefs.js
Profiles/{random string}.default/secmod.db
Profiles/{random string}.default/xpti.dat
Profiles/{random string}.default/extensions/</pre>
<p><span style="text-decoration: underline;">Under /Users/{user name}/Library/WebApps/{webapp name}@{webappaddr}/</span></p>
<pre>{webapp name}@{webappaddr}/localstore.json
{webapp name}@{webappaddr}/override.ini
{webapp name}@{webappaddr}/webapp.ini
{webapp name}@{webappaddr}/webapp.js
{webapp name}@{webappaddr}/icons/
{webapp name}@{webappaddr}/icons/default/
{webapp name}@{webappaddr}/icons/default/{icons included in webapp bundle}</pre>
<p><strong id="prismwinfiles">Default Prisim Folders in User&#8217;s Home directory (Linux as of Prism v0.9):</strong></p>
<p><span style="text-decoration: underline;">Under /home/{user name}/</span></p>
<pre>
.prism/prismdir.lin.txt
.prism/profiles.ini
.prism/{randomstring}.default/
.prism/{randomstring}.default/Cache/
.prism/{randomstring}.default/cert8.db
.prism/{randomstring}.default/compatibility.ini
.prism/{randomstring}.default/compreg.dat
.prism/{randomstring}.default/cookies.sqlite
.prism/{randomstring}.default/extensions/
.prism/{randomstring}.default/extensions.cache
.prism/{randomstring}.default/extensions.ini
.prism/{randomstring}.default/key3.db
.prism/{randomstring}.default/localstore.rdf
.prism/{randomstring}.default/mimeTypes.rdf
.prism/{randomstring}.default/.parentlock
.prism/{randomstring}.default/permissions.sqlite
.prism/{randomstring}.default/places.sqlite
.prism/{randomstring}.default/prefs.js
.prism/{randomstring}.default/secmod.db
.prism/{randomstring}.default/XPC.mfasl
.prism/{randomstring}.default/xpti.dat
.prism/{randomstring}.default/XUL.mfasl
.prism/{randomstring}.default/Cache/
.prism/{randomstring}.default/Cache/_CACHE_001_
.prism/{randomstring}.default/Cache/_CACHE_002_
.prism/{randomstring}.default/Cache/_CACHE_003_
.prism/{randomstring}.default/Cache/_CACHE_MAP_
</pre>
<p><strong id="webappwinfiles">For Each WebApp Prism creates (Linux as of Prism v0.9):</strong></p>
<p><span style="text-decoration: underline;">Under /home/{user name}/.prism/</span></p>
<pre>
{webapp name}/
{webapp name}/{randomstring}.default/
{webapp name}/{randomstring}.default/Cache/
{webapp name}/{randomstring}.default/Cache/_CACHE_001_
{webapp name}/{randomstring}.default/Cache/_CACHE_002_
{webapp name}/{randomstring}.default/Cache/_CACHE_003_
{webapp name}/{randomstring}.default/Cache/_CACHE_MAP_
{webapp name}/{randomstring}.default/cert8.db
{webapp name}/{randomstring}.default/compatibility.ini
{webapp name}/{randomstring}.default/compreg.dat
{webapp name}/{randomstring}.default/cookies.sqlite
{webapp name}/{randomstring}.default/extensions/
{webapp name}/{randomstring}.default/extensions.cache
{webapp name}/{randomstring}.default/extensions.ini
{webapp name}/{randomstring}.default/key3.db
{webapp name}/{randomstring}.default/localstore.rdf
{webapp name}/{randomstring}.default/mimeTypes.rdf
{webapp name}/{randomstring}.default/.parentlock
{webapp name}/{randomstring}.default/permissions.sqlite
{webapp name}/{randomstring}.default/places.sqlite
{webapp name}/{randomstring}.default/prefs.js
{webapp name}/{randomstring}.default/secmod.db
{webapp name}/{randomstring}.default/XPC.mfasl
{webapp name}/{randomstring}.default/xpti.dat
{webapp name}/{randomstring}.default/XUL.mfasl
{webapp name}/profiles.ini
</pre>
<p>From the above lists of file locations, it should be apparent (okay, if you really <i>really</i> look, <i>hard</i>) that there are two ways to go about installing an extension for Prism. The first is install that extension &#8220;globally&#8221;, which is to say that you install that extension for every webapp. For this method the extension gets installed into Prism&#8217;s extension directory. The second method is to install the extension &#8220;locally&#8221;, or on a per-webapp basis. In this case each extension is installed in the individual webapp&#8217;s extension directory.</p>
<p>The first method is more difficult because by default, installing an extension will be done when you have a webapp loaded, so it will install the extension into that webapp&#8217;s extension folder. In order to install a webapp globally, you&#8217;ll need to perform a manual installation or open a new webapp that loads the addon&#8217;s xul (chrome://global/content/config.xul). I should mention that this worked on Prism/Webrunner 0.8, but I have yet to test this on Prism 0.9, so this may no longer work.</p>
<p>&#8230;</p>
<p>So, why they heck would I list all the files and directories here? Well, I want a reference to point at when I start explaining which files to make changes to in order to install an extension manually.</p>
<p><strong id="codesnipinstrdf">Code Snippit for Prism Extensions&#8217; install.rdf</strong></p>
<pre><code>&lt;em:targetApplication&gt;
  &lt;!– Prism –&gt;
  &lt;Description&gt;
    &lt;em:id&gt;prism@developer.mozilla.org&lt;/em:id&gt;
    &lt;em:minVersion&gt;0.8&lt;/em:minVersion&gt;
    &lt;em:maxVersion&gt;1.0.0.*&lt;/em:maxVersion&gt;
   &lt;/Description&gt;
&lt;/em:targetApplication&gt;</code>
</pre>
<p><strong id="codesnipextrdf">Code Snippit for Prism Extensions&#8217; extension.rdf (information is required from the **install.rdf**)</strong></p>
<pre>
<code>&lt;RDF:Description
    RDF:about="urn:mozilla:item:{**extension id from install.rdf**}"
    NS1:installLocation="app-profile"
    NS1:version="**from install.rdf**"
    NS1:optionsURL="**from install.rdf**"
    NS1:iconURL="**from install.rdf**"
    NS1:name="**from install.rdf**"
    NS1:description="**from install.rdf**"
    NS1:creator="**from install.rdf**"
    NS1:homepageURL="http://**from install.rdf**"
    NS1:contributor="**from install.rdf**"&gt;</code>
</pre>
<p>More to come&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/11/06/prism-information-in-depth/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Take your 3D graphics to the next level, trueSpace 7.6 released, for FREE!</title>
		<link>http://www.luckydisasters.com/2008/07/24/take-your-3d-graphics-to-the-next-level-truespace-76-released-for-free/</link>
		<comments>http://www.luckydisasters.com/2008/07/24/take-your-3d-graphics-to-the-next-level-truespace-76-released-for-free/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 12:43:39 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Wow]]></category>
		<category><![CDATA[w00t!]]></category>
		<category><![CDATA[3d Graphics]]></category>
		<category><![CDATA[3d Modeling]]></category>
		<category><![CDATA[3d Rendering]]></category>
		<category><![CDATA[Caligari]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Feature Set]]></category>
		<category><![CDATA[File Formats]]></category>
		<category><![CDATA[Library Browser]]></category>
		<category><![CDATA[Model Views]]></category>
		<category><![CDATA[Next Level]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[Shelves]]></category>
		<category><![CDATA[Tabs]]></category>
		<category><![CDATA[Tool Bars]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Training Videos]]></category>
		<category><![CDATA[Truespace 5]]></category>
		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=287</guid>
		<description><![CDATA[I&#8217;ve been a fan of trueSpace for years (I&#8217;ve been using it since version 2 hit the shelves!), the software from Caligari Corp is a medium to low end (cost wise) 3D modeling and rendering package that has an excellent feature set, is compatible with most industry standard file formats and is extensible through addons. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a fan of trueSpace for years (I&#8217;ve been using it since version 2 hit the shelves!), the software from <a href="http://www.caligari.com/">Caligari Corp</a> is a medium to low end (cost wise) 3D modeling and rendering package that has an excellent feature set, is compatible with most industry standard file formats and is extensible through addons. I&#8217;ve used it both personally and professionally for various purposes. I just got an email from Caligari this morning stating that the latest version, <a href="http://www.caligari.com/Products/trueSpace/tS75/brochure/intro.asp?Cate=BIntro">tureSpace7.6</a>, has been released to everyone for free! Not only that, but the training videos and manual are included as well! AWESOME!!</p>
<p><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2008/07/ts76.png"><img class="alignright size-medium wp-image-288" title="ts76" src="http://www.luckydisasters.com/wp-content/uploads/2008/07/ts76-300x229.png" alt="" width="300" height="229" /></a>trueSpace may be daunting for those who are not familiar with it&#8217;s user interface, but once you get used to how tools and tool bars are arranged, it becomes much more intuitive than you may originally think. Since I haven&#8217;t used a new version since trueSpace 5.5, looks like I&#8217;ve got some catching up to do. They&#8217;ve added tabbed interfaces for views so that you can switch between workspaces and multi-angled model views and a panel with library browser and settings tabs. One of the reasons I&#8217;ve stuck with version 5.5 for so long has been that it can import stl, igs and other industrial modeling files. I use these at work to render products that are in concept phases of production or that we can&#8217;t get samples of in time for photos we may need. Unfortunately, this doesn&#8217;t seem to be supported under the new version. Guess I&#8217;ll have to keep digging to see if I can find out anything more about this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/07/24/take-your-3d-graphics-to-the-next-level-truespace-76-released-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here&#8217;s How To Make An Extension Compatible With Prism (Two-ish)</title>
		<link>http://www.luckydisasters.com/2008/06/10/heres-how-to-make-an-extension-compatible-with-prism-two-ish/</link>
		<comments>http://www.luckydisasters.com/2008/06/10/heres-how-to-make-an-extension-compatible-with-prism-two-ish/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 03:57:07 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Prism]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[7zip]]></category>
		<category><![CDATA[C Program]]></category>
		<category><![CDATA[Correct Target]]></category>
		<category><![CDATA[Developers]]></category>
		<category><![CDATA[Dom Inspector]]></category>
		<category><![CDATA[Editors]]></category>
		<category><![CDATA[Extension Folder]]></category>
		<category><![CDATA[Folder C]]></category>
		<category><![CDATA[Insta]]></category>
		<category><![CDATA[Installation Directory]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Mozilla Org]]></category>
		<category><![CDATA[Mud]]></category>
		<category><![CDATA[Notepad]]></category>
		<category><![CDATA[Prism Gt]]></category>
		<category><![CDATA[Rdf File]]></category>
		<category><![CDATA[String Changes]]></category>
		<category><![CDATA[Targetapplication]]></category>
		<category><![CDATA[Targets]]></category>
		<category><![CDATA[Version String]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=281</guid>
		<description><![CDATA[I know it&#8217;s been a while since I&#8217;ve posted. There&#8217;s been a lot going on &#8211; school, work, home, you get the point. Anyway, I&#8217;ve been trying to keep my last post on how to make extensions compatible with Prism up-to-date, but this is turning out to be a difficult task. So I&#8217;m just going [...]]]></description>
			<content:encoded><![CDATA[<p>I know it&#8217;s been a while since I&#8217;ve posted. There&#8217;s been a lot going on &#8211; school, work, home, you get the point. Anyway, I&#8217;ve been trying to keep <a href="http://www.luckydisasters.com/2007/10/29/webrunner-now-prism-whatever-heres-how-to-make-an-extension-compatible-with-at-least-one/">my last post</a> on how to make extensions compatible with Prism up-to-date, but this is turning out to be a difficult task. So I&#8217;m just going to post new instructions as needed. Basically, everything remains the same but the version string changes. The DOM inspector is the key to figuring out the correct target to put into your extension&#8217;s install.rdf. Clear as mud yet? Well, let me lay out the steps for you again here.</p>
<p><strong>Step 1</strong><br />
Navigate to the Prism installation directory, in Windows this is:<br />
<span style="font-family: Courier New;">C:\Program Files\Prism\</span><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2008/06/firstrdf.png"><img class="alignright alignnone size-medium wp-image-286" style="float: right;" title="firstrdf" src="http://www.luckydisasters.com/wp-content/uploads/2008/06/firstrdf-300x208.png" alt="" width="300" height="208" /></a></p>
<p>Open up the extensions folder, then the DOM inspector extension folder:<br />
<span style="font-family: Courier New;">C:\Program Files\Prism\extensions\inspector@mozilla.org<br />
</span></p>
<p>Now open the &#8220;install.rdf&#8221; file and find this section of code which can be used (usually) as-is in most extensions pasted in the right place (just use the extension&#8217;s preconfigured targets as your guide on where to place it):</p>
<p><span style="font-family: Courier New;"><br />
&lt;em:targetApplication&gt;<br />
&lt;!&#8211; Prism &#8211;&gt;<br />
&lt;Description&gt;<br />
&lt;em:id&gt;prism@developer.mozilla.org&lt;/em:id&gt;<br />
&lt;em:minVersion&gt;0.4&lt;/em:minVersion&gt;<br />
&lt;em:maxVersion&gt;1.0.0.*&lt;/em:maxVersion&gt;<br />
&lt;/Description&gt;<br />
&lt;/em:targetApplication&gt;</span></p>
<p><strong>Step 2</strong><br />
Open up your extension&#8217;s xpi file using 7zip or your favorite archiving tool and extract the install.rdf file.<br />
<a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2008/06/extractinstallrdf.png"><img class="alignnone size-medium wp-image-285" title="extractinstallrdf" src="http://www.luckydisasters.com/wp-content/uploads/2008/06/extractinstallrdf-300x135.png" alt="" width="300" height="135" /></a></p>
<p>Open that install.rdf file with a text editor (other than notepad which doesn&#8217;t understand the line breaks used by other editors) and find the area where it lists the installation targets and insert your copied text into that or modify one of the install targets with the appropriate information from the DOM inspector extension install.rdf file.</p>
<p><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2008/06/secondinstallrdf.png"><img class="alignnone size-medium wp-image-282" title="secondinstallrdf" src="http://www.luckydisasters.com/wp-content/uploads/2008/06/secondinstallrdf-300x170.png" alt="" width="300" height="170" /></a></p>
<p><strong>Step 3</strong><img class="alignright alignnone size-full wp-image-283" style="float: right; margin: 2px;" title="addonsmenu" src="http://www.luckydisasters.com/wp-content/uploads/2008/06/addonsmenu.png" alt="" width="232" height="120" /><br />
Install the extension. This will get tricky due to the way Prism&#8217;s developers have modified the profiles and what not. Well, I say that, but it really only gets that tricky if you&#8217;re manually installing the extension. Prism developers have seen fit to include the Addons menu item from the Prism menu in the lower right of Prism&#8217;s window to help things go more smoothly.</p>
<p>One of the ways to use this new install feature for an extension is globally, which means all webapps will be able to use the extension. This is the least preferred manner due to the fact that you won&#8217;t want all extensions available for all webapps in most cases. An example would be having the Better Gmail extension available for <a href="http://www.luckydisasters.com/wp-content/uploads/2007/10/bloglines.webapp">Bloglines</a> &#8211; don&#8217;t think that&#8217;s real necessary, do you? So plan accordingly.</p>
<p>Using the second, and more preferred method, you just open your webapp. Open your webapp&#8217;s Addons panel, then install by either dragging and dropping the extension onto it, or by clicking the &#8220;Install&#8230;&#8221; button and navigating to the extension and selecting it for installation.</p>
<p><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2008/06/browseforextension.png"><img class="alignnone size-medium wp-image-284" title="browseforextension" src="http://www.luckydisasters.com/wp-content/uploads/2008/06/browseforextension-300x168.png" alt="" width="300" height="168" /></a></p>
<p><strong>Conclusion</strong><br />
That should be about it. My next Prism post will be about how to make one of two stand alone Firefox/Prism exention webapps &#8211; POW local server or Scribefire standalone webapp. Stay tuned, we get to play with chrome!!</p>
<p>Links:</p>
<p><a href="http://wiki.mozilla.org/Prism">Prism</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/06/10/heres-how-to-make-an-extension-compatible-with-prism-two-ish/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>The Hollow Economy</title>
		<link>http://www.luckydisasters.com/2008/04/13/the-hollow-economy/</link>
		<comments>http://www.luckydisasters.com/2008/04/13/the-hollow-economy/#comments</comments>
		<pubDate>Sun, 13 Apr 2008 16:31:32 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Economy]]></category>
		<category><![CDATA[Government]]></category>
		<category><![CDATA[Anomaly]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Currencies]]></category>
		<category><![CDATA[Current Administration]]></category>
		<category><![CDATA[Current Affairs]]></category>
		<category><![CDATA[Current State]]></category>
		<category><![CDATA[Dollar]]></category>
		<category><![CDATA[Downturn]]></category>
		<category><![CDATA[Durable Goods]]></category>
		<category><![CDATA[Economic Affairs]]></category>
		<category><![CDATA[Euro]]></category>
		<category><![CDATA[Exportable Products]]></category>
		<category><![CDATA[Important Point]]></category>
		<category><![CDATA[Joblessness]]></category>
		<category><![CDATA[Manufacturing Jobs]]></category>
		<category><![CDATA[Moving]]></category>
		<category><![CDATA[Oriented Businesses]]></category>
		<category><![CDATA[Single Most Important Thing]]></category>
		<category><![CDATA[Taplin]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=280</guid>
		<description><![CDATA[Another great post on Jon Taplin&#8217;s Blog that&#8217;s well worth the read. In it he points out some of the current administrations delusions of joblessness (look at the chart!), and other political stagnations that are affecting our current state of economic affairs.
One of the major points of his post is how our economy has shifted [...]]]></description>
			<content:encoded><![CDATA[<p>Another great <a href="http://jtaplin.wordpress.com/2008/04/12/hollowed-out-economy/" target="_blank">post</a> on <a href="http://jtaplin.wordpress.com/" target="_blank">Jon Taplin&#8217;s</a> Blog that&#8217;s well worth the read. In it he points out some of the current administrations delusions of joblessness (look at the chart!), and other political stagnations that are affecting our current state of economic affairs.</p>
<p>One of the major points of his post is how our economy has shifted to a service base, which is largely non-exportable (at least to smaller, more locally oriented businesses). This also means we&#8217;re not manufacturing as much as we used to, and therefore don&#8217;t have the export power we&#8217;ve had in the past. In other words, as the dollar has fallen against the Euro and other currencies, we&#8217;ve not seen an increase in exported manufactured goods as you&#8217;d expect.</p>
<p>This is an extremely important point to take in. If the current administration can&#8217;t see that the single most important thing we need to do in order to help the economy is to save/rejuvenate manufacturing jobs (read as: jobs that create exportable products and services) in the US, then we&#8217;re really sunk.</p>
<p>I tend to think, however, that the market will correct for this. We&#8217;ve already heard of some manufacturers moving operations to the US from the EU as a means to cut manufacturing costs. This is a trend that will probably continue, but only if businesses wake up to the fact that the current downturn in the economy isn&#8217;t a short term anomaly. Rather, it&#8217;s a long term (think several years) condition.</p>
<p><a href="http://jtaplin.wordpress.com/2008/04/12/hollowed-out-economy/" target="_blank">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/04/13/the-hollow-economy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yet Another Open Source Software Portal</title>
		<link>http://www.luckydisasters.com/2008/04/07/yet-another-open-source-software-portal/</link>
		<comments>http://www.luckydisasters.com/2008/04/07/yet-another-open-source-software-portal/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 19:34:27 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[Disasters]]></category>
		<category><![CDATA[Good Software]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Net]]></category>
		<category><![CDATA[Inventory Management]]></category>
		<category><![CDATA[Management Inventory]]></category>
		<category><![CDATA[Management Softwares]]></category>
		<category><![CDATA[Management System]]></category>
		<category><![CDATA[Missing Person]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Person Registry]]></category>
		<category><![CDATA[Registry Organization]]></category>
		<category><![CDATA[Request Management]]></category>
		<category><![CDATA[Situation Awareness]]></category>
		<category><![CDATA[Software Portal]]></category>
		<category><![CDATA[Unesco]]></category>
		<category><![CDATA[United Nations]]></category>
		<category><![CDATA[United Nations Educational Scientific And Cultural Orga]]></category>
		<category><![CDATA[Volunteer Management]]></category>
		<category><![CDATA[Web Based Management]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=279</guid>
		<description><![CDATA[I recently came across yet another free and open source software portal, this on is from the United Nations Educational, Scientific and Cultural Organization (UNESCO). A lot of good software listed on this site, stuff you wouldn&#8217;t normally get quickly by searching Google or SourceForge.net. One of the interesting pieces of web based management softwares [...]]]></description>
			<content:encoded><![CDATA[<p>I recently came across yet another free and open source software portal, this on is from the United Nations Educational, Scientific and Cultural Organization (UNESCO). A lot of good software listed on this site, stuff you wouldn&#8217;t normally get quickly by searching Google or SourceForge.net. One of the interesting pieces of web based management softwares I came across was SAHANA.</p>
<p><a href="http://www.sahana.lk" target="_blank">SAHANA</a> runs on a LAMP/WAMP server and enables fast setup and web based management of disaster recovery networks. Features include a missing person registry, organization registry, request management system, camp registry, volunteer management, inventory management, and situation awareness. SAHANA has been used in several recent disasters for various applications. More can be found on <a href="http://www.sahana.lk/overview" target="_self">its website</a>.<br />
<a href="http://www.unesco.org/webworld/portal_freesoft" target="_blank"></a></p>
<p>Link<a href="http://www.unesco.org/webworld/portal_freesoft" target="_blank"><br />
UNESCO Free &amp; Open Source Software Portal</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/04/07/yet-another-open-source-software-portal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five Opensource/Freeware Graphics Applications You Shouldn&#8217;t Be Without</title>
		<link>http://www.luckydisasters.com/2008/04/05/five-opensourcefreeware-graphics-applications-you-shouldnt-be-without/</link>
		<comments>http://www.luckydisasters.com/2008/04/05/five-opensourcefreeware-graphics-applications-you-shouldnt-be-without/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 20:36:46 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[Artrage 2]]></category>
		<category><![CDATA[Borderless Window]]></category>
		<category><![CDATA[Fax Viewer]]></category>
		<category><![CDATA[Feature Version]]></category>
		<category><![CDATA[Freeware Program]]></category>
		<category><![CDATA[Freeware Replacement]]></category>
		<category><![CDATA[Graphics Applications]]></category>
		<category><![CDATA[Honest To Goodness]]></category>
		<category><![CDATA[Hotkey Support]]></category>
		<category><![CDATA[Image Effects]]></category>
		<category><![CDATA[Linux Graphics]]></category>
		<category><![CDATA[Linux Version]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[Paint Brush]]></category>
		<category><![CDATA[Paint Brushes]]></category>
		<category><![CDATA[Pen Input]]></category>
		<category><![CDATA[Pen Tablets]]></category>
		<category><![CDATA[Photo Editing Program]]></category>
		<category><![CDATA[Right Job]]></category>
		<category><![CDATA[Vector Graphics Program]]></category>
		<category><![CDATA[Xara Xtreme]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=278</guid>
		<description><![CDATA[By now, everybody&#8217;s heard of the GIMP and Paint.net, but there are a lot of other great graphics programs out there for special situations which are lightweight and easy to use. And like the saying goes, the right tool for the right job&#8230;
Xara Xtreme
A while back, Xara released their vector graphics program Xara Xtreme into [...]]]></description>
			<content:encoded><![CDATA[<p>By now, everybody&#8217;s heard of the <a href="http://www.gimp.org/" target="_blank">GIMP</a> and <a href="http://www.getpaint.net/" target="_blank">Paint.net</a>, but there are a lot of other great graphics programs out there for special situations which are lightweight and easy to use. And like the saying goes, the right tool for the right job&#8230;</p>
<p><strong>Xara Xtreme</strong></p>
<p>A while back, <a href="http://www.xara.com/us/" target="_blank">Xara</a> released their vector graphics program Xara Xtreme into the wilds of the WWW as open source software. While the Windows version is still payware, the Linux version is completely free (as in speech!) and makes a great addition to any Linux graphics suite. While Xara Xtreme is comparable to InkScape, they don&#8217;t share all of the same functions, and they are a good complement to one another. GNU/Linux only.<br />
<a href="http://www.xaraxtreme.org/" target="_blank">Link</a></p>
<p><a href="http://www.xaraxtreme.org/" target="_blank"></a><strong></strong><strong>Artweaver</strong></p>
<p>Artweaver is a freeware program for use with tablet PCs and pen tablets. It can simulate paint brushes of various types, includes layering, standard image formats and plug-in support, and has standard editing features like croping, area selecting and some built-in image effects. Not bad for around 8 Mb. Windows only.<br />
<a href="http://www.artweaver.de/index.php?en_version" target="_blank">Link</a></p>
<p><strong>ArtRage 2</strong></p>
<p><a style="float:left;" rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/sketchcapar2.png"><img style="width:200px;150px;" src="http://www.luckydisasters.com/wp-content/uploads/sketchcapar2.png" alt="" /></a>Along the same lines as Artweaver, but more focused on the painting aspects of pen input, ArtRage 2 is a free, limited feature download with a payware, full feature version available. The main advantage of ArtRage 2 is that it really does feel like an honest to goodness drawing pad right there on your PC. The free version, includes pencil, paint brush and a few other tools that allow you to really have a lot of fun with your tablet. Windows only.<br />
<a href="http://www.ambientdesign.com/artrage.html" target="_blank">Link</a></p>
<p><strong>FastStone MaxView</strong></p>
<p><a href="http://www.faststone.org/" target="_blank">FastStone offers several freeware and shareware programs</a> for manipulating and viewing images. FastStone MaxView is a great freeware replacement for Windows XP&#8217;s Photo and Fax Viewer. MaxView is faster and has more options and features than Photo and Fax Viewer, and has a borderless window as well as auto-hiding controls and hotkey support. Windows only.<br />
<a href="http://www.faststone.org/FSMaxViewDetail.htm" target="_blank">Link</a></p>
<p><strong>Photoscape</strong></p>
<p>Photoscape is a freeware photo editing program which includes features that allow you to do general photo editing and enhancements. You can also use it as a batch editing tool and it also allows you to make animated GIFs. Windows only.<br />
<a href="http://www.photoscape.org/ps/main/index.php" target="_blank">Link</a></p>
<p><strong>BONUS!! Imageditor</strong></p>
<p>I&#8217;ve recently come across a handy tool for editing the Windows registry to change which programs open image files by default. Windows automatically associates certain right-click actions (chiefly open and edit) with built-in programs. I&#8217;ve been using Paint.net as a replacement for MS Paint for a while, but I wanted to associate it with all the same image formats that Paint was. This way, Paint.net would use the built-in &#8220;Edit&#8221; context menu item.</p>
<p>Imageditor allows you to do just that, with no manual editing of the registry or going through the hassle of changing multiple items in the Folder Settings dialog. There are instructions on the Imageditor page on how to use it. Windows only.<br />
<a href="http://windowsxp.mvps.org/imgeditor.htm" target="_blank">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/04/05/five-opensourcefreeware-graphics-applications-you-shouldnt-be-without/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thee More NASA Images</title>
		<link>http://www.luckydisasters.com/2008/04/05/thee-more-nasa-images/</link>
		<comments>http://www.luckydisasters.com/2008/04/05/thee-more-nasa-images/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 19:31:10 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Neatorific]]></category>
		<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Guess]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[nasa]]></category>
		<category><![CDATA[Nasa Images]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[Shuttle Mission]]></category>
		<category><![CDATA[Sts]]></category>
		<category><![CDATA[Time Of Year]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=272</guid>
		<description><![CDATA[I&#8217;ve been meaning to post these, just that time of year I guess, everything happening at once. Anywho &#8211; these are from the most recent (STS-123) shuttle mission, enjoy!

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been meaning to post these, just that time of year I guess, everything happening at once. Anywho &#8211; these are from the most recent (STS-123) shuttle mission, enjoy!</p>
<p><a href="http://www.nasa.gov/multimedia/imagegallery/image_feature_1044.html" target="_blank"><img class="alignnone size-medium wp-image-277" style="border: 0; margin: 2px;" title="nasascreengrab2" src="http://www.luckydisasters.com/wp-content/uploads/2008/04/nasascreengrab2.png" alt="" width="200" height="150" /></a><a href="http://www.nasa.gov/multimedia/imagegallery/image_feature_1038.html" target="_blank"><img class="alignnone size-medium wp-image-276" style="border: 0; margin: 2px;" title="nasascreengrab1" src="http://www.luckydisasters.com/wp-content/uploads/2008/04/nasascreengrab1.png" alt="" width="200" height="150" /></a><a href="http://www.nasa.gov/multimedia/imagegallery/image_feature_1043.html" target="_blank"><img class="alignnone size-medium wp-image-275" style="border: 0; margin: 2px;" title="nasascreengrab3" src="http://www.luckydisasters.com/wp-content/uploads/2008/04/nasascreengrab3.png" alt="" width="200" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/04/05/thee-more-nasa-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve Been HACKED! Well, LifeHacked Any Way&#8230;</title>
		<link>http://www.luckydisasters.com/2008/04/04/ive-been-hacked-well-lifehacked-any-way/</link>
		<comments>http://www.luckydisasters.com/2008/04/04/ive-been-hacked-well-lifehacked-any-way/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 01:22:46 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Prism]]></category>
		<category><![CDATA[WebRunner]]></category>
		<category><![CDATA[better gcal]]></category>
		<category><![CDATA[better gmail]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[lifehacker]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/?p=274</guid>
		<description><![CDATA[Link to LifeHacker Post
LifeHacker&#8217;s linked to my post on how to install extensions in Prism/Webrunner. For anyone having trouble with some extensions, have a look at my comment dated today (080404), I&#8217;ve addressed Better GCal specifically, but this should also work for Better Gmail and a few others as well.
Prism/Webrunner extensions post
]]></description>
			<content:encoded><![CDATA[<p><a href="http://lifehacker.com/375830/create-distraction+free-customized-webapps-with-prism">Link to LifeHacker Post</a></p>
<p>LifeHacker&#8217;s linked to my post on how to install extensions in Prism/Webrunner. For anyone having trouble with some extensions, have a look at my comment dated today (080404), I&#8217;ve addressed Better GCal specifically, but this should also work for Better Gmail and a few others as well.</p>
<p><a href="http://www.luckydisasters.com/2007/10/29/webrunner-now-prism-whatever-heres-how-to-make-an-extension-compatible-with-at-least-one">Prism/Webrunner extensions post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/04/04/ive-been-hacked-well-lifehacked-any-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.04 &#8211; Installed and AWESOME!!</title>
		<link>http://www.luckydisasters.com/2008/03/21/ubuntu-804-installed-in-awesome/</link>
		<comments>http://www.luckydisasters.com/2008/03/21/ubuntu-804-installed-in-awesome/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 02:51:56 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Acpi]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Bios]]></category>
		<category><![CDATA[Compatibility]]></category>
		<category><![CDATA[Conjunction]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[Dual Screen]]></category>
		<category><![CDATA[Fades]]></category>
		<category><![CDATA[Feature Set]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[Gnu Linux]]></category>
		<category><![CDATA[hardy heron]]></category>
		<category><![CDATA[Heron]]></category>
		<category><![CDATA[Intel]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Laptop Toshiba]]></category>
		<category><![CDATA[Laptops]]></category>
		<category><![CDATA[Test Releases]]></category>
		<category><![CDATA[Toshiba Satellite]]></category>
		<category><![CDATA[Toshiba Satellite P105]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Visual Enhancements]]></category>
		<category><![CDATA[Wpa]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/2008/03/21/ubuntu-804-installed-in-awesome/</guid>
		<description><![CDATA[I just finished basic configuration of Ubuntu 8.04 Beta (Hardy Heron) on my laptop &#8211; AND IT&#8217;S AWESOME!! My laptop is a Toshiba Satellite P105-S6024, and I&#8217;ve been having no end of problems getting the audio to work in conjunction with the ACPI. Turns out the Toshiba provided ACPI code for the BIOS isn&#8217;t all [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" title="screenshot" href="http://www.luckydisasters.com/wp-content/uploads/2008/03/screenshot.png"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/03/screenshot.thumbnail.png" border="0" alt="screenshot" hspace="2" vspace="2" align="left" /></a>I just finished basic configuration of <a href="http://www.ubuntu.com/testing/hardy/beta" target="_blank">Ubuntu 8.04 Beta</a> (Hardy Heron) on my laptop &#8211; AND IT&#8217;S AWESOME!! My laptop is a Toshiba Satellite P105-S6024, and I&#8217;ve been having no end of problems getting the audio to work in conjunction with the ACPI. Turns out the Toshiba provided ACPI code for the BIOS isn&#8217;t all that great under GNU/Linux, and in order to fix the problem you&#8217;ve got to either recompile the kernel (which was the direction I had finally decided to take this weekend), or if you could get it to work, there&#8217;s a way to add the code to the initrid.</p>
<p>I had read this morning that there was a new Ubuntu release and, as I was having problems with Debian and was about to reinstall Ubuntu 7.10, so I decided to give it a try. Well, it&#8217;s a Beta, but I&#8217;m not going to hold that against it! Compiz is installted by default (but just subtley enough you don&#8217;t know it till you&#8217;re seeing the tell tail fades and such), Firefox 3 Beta 4, wireless support includes WPA (which it has had built-in since the 7.10 release), improved dual screen support for laptops, hell &#8211; I didn&#8217;t even have to install 915resolution to setup my Intel display to 1440&#215;900! I still had to install Amorok and vlc manually, but that&#8217;s cake compared to recompiling a kernel.</p>
<ol>
<li>So far so good, performance is a bit sluggish (especially with the extra visual enhancements enabled), but I&#8217;m thoroughly tickled pink by the feature set and compatibility! THANK YOU UBUNTU COMMUNITY!!</li>
</ol>
<p>Link:</p>
<p><a href="http://www.ubuntu.com/testing/hardy/beta" target="_blank">Ubuntu Test Releases</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/03/21/ubuntu-804-installed-in-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sir Arthur Charles Clarke, 1917 &#8211; 2008 &#8211; RIP</title>
		<link>http://www.luckydisasters.com/2008/03/18/sir-arthur-charles-clarke-1917-2008-rip/</link>
		<comments>http://www.luckydisasters.com/2008/03/18/sir-arthur-charles-clarke-1917-2008-rip/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 02:18:24 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Passing]]></category>
		<category><![CDATA[Advanced Technology]]></category>
		<category><![CDATA[Arthur C Clark]]></category>
		<category><![CDATA[Arthur C Clarke]]></category>
		<category><![CDATA[Arthur Charles Clarke]]></category>
		<category><![CDATA[Arthur Clarke]]></category>
		<category><![CDATA[Charles Clarke]]></category>
		<category><![CDATA[Communications Satellites]]></category>
		<category><![CDATA[Creators]]></category>
		<category><![CDATA[Favorite Quotes]]></category>
		<category><![CDATA[Indistinguishable From Magic]]></category>
		<category><![CDATA[La Times]]></category>
		<category><![CDATA[Los Angeles Times]]></category>
		<category><![CDATA[Modern Communications]]></category>
		<category><![CDATA[Photo Credit]]></category>
		<category><![CDATA[Sci Fi]]></category>
		<category><![CDATA[Science Fiction]]></category>
		<category><![CDATA[Sir Arthur]]></category>
		<category><![CDATA[Times Article]]></category>
		<category><![CDATA[Wikipedia]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/2008/03/18/sir-arthur-charles-clarke-1917-2008-rip/</guid>
		<description><![CDATA[I hate that this is true, but it looks like the LA Times (and others) is reporting that Arthur C. Clarke, father of HAL, the concept of modern communications satellites and countless sci-fi stories/books/movies is dead at age 90. I&#8217;ve always loved Sir Clarke&#8217;s work, and he&#8217;s the source of one of my favorite quotes [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.luckydisasters.com/wp-content/uploads/2008/03/sir_arthur_charles_clarke.png" border="0" alt="sirarthurcclarke" hspace="2" vspace="2" align="left" />I hate that this is true, but it looks like the <a href="http://www.latimes.com/news/local/la-me-clarke19mar19,0,393161.story" target="_blank">LA Times</a> (and others) is reporting that <a href="http://en.wikipedia.org/wiki/Arthur_C_Clark" target="_blank">Arthur C. Clarke</a>, father of HAL, the concept of modern communications satellites and countless sci-fi stories/books/movies is dead at age 90. I&#8217;ve always loved Sir Clarke&#8217;s work, and he&#8217;s the source of one of my favorite quotes (actually his third law &#8211; google it):</p>
<blockquote><p><em>Any sufficiently advanced technology is indistinguishable from magic.</em></p></blockquote>
<p>With his passing, the genre of science fiction looses one of it&#8217;s greatest creators and has been dealt a serious blow.</p>
<p>Links:</p>
<p><a href="http://www.latimes.com/news/local/la-me-clarke19mar19,0,393161.story">Los Angeles Times Article</a><br />
Via <a href="http://www.boingboing.net/2008/03/18/arthur-c-clarke-dead.html">Boing-Boing</a><br />
Photo Credit: Anuradha Ratnaweera, <a href="http://www.flickr.com/photos/anuradha/">anuradha on flickr.com</a>, <a href="http://www.flickr.com/photos/anuradha/57993644/">source</a><br />
<a href="http://en.wikipedia.org/wiki/Arthur_C_Clark">Arthur C. Clark</a> on <a href="http://www.wikipedia.org">Wikipedia.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/03/18/sir-arthur-charles-clarke-1917-2008-rip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Vatican and the Not So New &#8220;Seven Social Sins&#8221;</title>
		<link>http://www.luckydisasters.com/2008/03/12/the-vatican-and-the-not-so-new-seven-social-sins/</link>
		<comments>http://www.luckydisasters.com/2008/03/12/the-vatican-and-the-not-so-new-seven-social-sins/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 02:44:20 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Religion]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Aids Deaths]]></category>
		<category><![CDATA[Aids In Africa]]></category>
		<category><![CDATA[Bioethical]]></category>
		<category><![CDATA[Birth Control]]></category>
		<category><![CDATA[Catholic Church]]></category>
		<category><![CDATA[Condoms]]></category>
		<category><![CDATA[Conscience]]></category>
		<category><![CDATA[Current Technologies]]></category>
		<category><![CDATA[Drug Abuse]]></category>
		<category><![CDATA[Envy]]></category>
		<category><![CDATA[Excessive Wealth]]></category>
		<category><![CDATA[Greed]]></category>
		<category><![CDATA[Immorality]]></category>
		<category><![CDATA[Mahatma Gandhi]]></category>
		<category><![CDATA[Morality]]></category>
		<category><![CDATA[Nothing New Under The Sun]]></category>
		<category><![CDATA[Seven Deadly Sins]]></category>
		<category><![CDATA[Stem Cell Research]]></category>
		<category><![CDATA[Vices]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/2008/03/12/the-vatican-and-the-not-so-new-seven-social-sins/</guid>
		<description><![CDATA[The Vatican this week released a &#8220;new&#8221; list of seven social sins to augment the original seven cardinal vices better known as the seven deadly sins. The new list is as follows:

&#8220;Bioethical&#8221; violations such as birth control
&#8220;Morally dubious&#8221; experiments such as stem cell research
Drug abuse
Polluting the environment
Contributing to widening divide between rich and poor
Excessive wealth
Creating [...]]]></description>
			<content:encoded><![CDATA[<p>The Vatican this week <a href="http://www.bloomberg.com/apps/news?pid=20601102&amp;sid=aizloDFbRPRM&amp;refer=uk" target="_blank">released a &#8220;new&#8221; list of seven social sins</a> to augment the original <em>seven cardinal vices</em> better known as the <em>seven deadly sins</em>. The new list is as follows:</p>
<ol>
<li>&#8220;Bioethical&#8221; violations such as birth control</li>
<li>&#8220;Morally dubious&#8221; experiments such as stem cell research</li>
<li>Drug abuse</li>
<li>Polluting the environment</li>
<li>Contributing to widening divide between rich and poor</li>
<li>Excessive wealth</li>
<li>Creating poverty</li>
</ol>
<p>The original seven deadly sins:</p>
<ol>
<li> Pride</li>
<li> Envy</li>
<li> Gluttony</li>
<li> Lust</li>
<li> Anger</li>
<li> Greed</li>
<li> Sloth</li>
</ol>
<p>The first two new sins might as well be the same. I&#8217;m still trying to figure out what the deal is with the catholic church being ok with not advocating birth control (<a href="http://en.wikipedia.org/wiki/AIDS_in_Africa" target="_blank">24 million cases of AIDS and 2 million deaths in 2005 due to AIDS in Africa</a> is A-OK with the Pope, just as long as they&#8217;re not using condoms). The last three new sins could also be the same. Granted, contributing to poverty, possessing great wealth, and creating more poverty are morally reprehensible, but could easily be grouped under &#8211; oh, let&#8217;s say &#8211; &#8220;Fiscal Immorality.&#8221;</p>
<p>I think the Vatican would be better served looking outside their own ranks for more universally accepted truths rather than trying to update their narrow views to &#8220;jive&#8221; with todays youth (geez, how old do I sound there??) or current technologies. In other words:</p>
<blockquote><p>What has been is what will be,<br />
and what has been done is what will be done;<br />
there is nothing new under the sun.</p></blockquote>
<p>Ecclesiastes 1:9</p>
<p>If this is true, then we&#8217;ve already gotten ourselves figured out, and all we have to do is listen to the voices of the past and allow that to point our way. For instance, the Vatican should really have just gone with the original Seven Social Sins as written by Mahatma Gandhi around 1925:</p>
<p><a rel="lightbox" href="http://www.luckydisasters.com/wp-content/uploads/2008/03/gandhi_studio_1931.jpg" title="Gandhi"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/03/gandhi_studio_1931.thumbnail.jpg" alt="Gandhi" align="right" border="0" hspace="2" vspace="2" /></a></p>
<ol>
<li>Politics without principles</li>
<li>Wealth without work</li>
<li>Pleasure without conscience</li>
<li>Knowledge without character</li>
<li>Commerce without morality</li>
<li>Science without humanity</li>
<li>Worship without sacrifice</li>
</ol>
<p>From &#8220;Young India&#8221;, 1925, Mahatma Gandhi</p>
<p>Notice numbers 2 and 6. Huh, way back around the turn of the century people were worried about science/wealth and morality too. All-in-all, this list is more eloquent, more thoughtful and better articulated. These seem to be better oriented towards modern lifestyles and concerns. They even feel more universal and timeless &#8211; like they&#8217;ll even withstand the test of time &#8211; go figure. Sounds like Vatican scholars really need to do a better job of researching their subject matter.</p>
<p>Links:</p>
<p><a href="http://www.bloomberg.com/apps/news?pid=20601102&amp;sid=aizloDFbRPRM&amp;refer=uk" target="_blank">News item on Bloomburg</a><br />
<a href="http://www.boingboing.net/2008/03/10/vatican-comes-up-wit.html" target="_blank">via BoingBoing</a><br />
<a href="http://www.gandhiserve.org/cwmg/cwmg.html" target="_blank">The complete works</a> of <a href="http://en.wikipedia.org/wiki/Mohandas_Karamchand_Gandhi" target="_blank">Mohandas Karamchand Gandhi</a> (see Volume 33 page 135 for his list)<br />
<a rel="lightbox" href="http://en.wikipedia.org/wiki/Image:Gandhi_studio_1931.jpg" target="_blank">Image Credit</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/03/12/the-vatican-and-the-not-so-new-seven-social-sins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You Will Read This Blog:</title>
		<link>http://www.luckydisasters.com/2008/03/07/you-will-read-this-blog/</link>
		<comments>http://www.luckydisasters.com/2008/03/07/you-will-read-this-blog/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 03:50:53 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Government]]></category>
		<category><![CDATA[Wow]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Pundits]]></category>
		<category><![CDATA[Short Sightedness]]></category>
		<category><![CDATA[Stupidity]]></category>
		<category><![CDATA[Taplin]]></category>
		<category><![CDATA[Wing Nut]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/2008/03/07/you-will-read-this-blog/</guid>
		<description><![CDATA[You will go to Jon Taplin&#8217;s blog.
You will read his every word.
You will learn!
I&#8217;ve been reading Mr. Taplin&#8217;s blog now for a few weeks. Everything I&#8217;ve read on his blog has been incredibly well thought through, logical and currently relevant. He is in the know, and amongst those who are  in the know. I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>You will go to <a href="http://jtaplin.wordpress.com/" target="_blank">Jon Taplin&#8217;s blog</a>.</p>
<p>You will read his every word.</p>
<p>You will learn!</p>
<p>I&#8217;ve been reading Mr. Taplin&#8217;s blog now for a few weeks. Everything I&#8217;ve read on his blog has been incredibly well thought through, logical and currently relevant. He is in the know, and amongst those who are  in the know. I&#8217;ve not seen any of the stupidity and short sightedness found in the position of pundits of either wing nut variety (right or left) in his writings, and that more than anything else is a tremendous tell.</p>
<p>In short if you don&#8217;t read his blog, well, you&#8217;re missing out&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/03/07/you-will-read-this-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zumwalt Class Destroyer DD(X) &#8211; Cool, but Sounds Like Something out of Gundam</title>
		<link>http://www.luckydisasters.com/2008/02/21/zumwalt-class-destroyer-ddx-cool-but-sounds-like-something-out-of-gundam/</link>
		<comments>http://www.luckydisasters.com/2008/02/21/zumwalt-class-destroyer-ddx-cool-but-sounds-like-something-out-of-gundam/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 19:51:27 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Government]]></category>
		<category><![CDATA[Military]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Battle Ships]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[Class Destroyer]]></category>
		<category><![CDATA[destroyer]]></category>
		<category><![CDATA[Destroyer Dd]]></category>
		<category><![CDATA[Domain Link]]></category>
		<category><![CDATA[Fire Support]]></category>
		<category><![CDATA[gun]]></category>
		<category><![CDATA[Gun Systems]]></category>
		<category><![CDATA[Hull Designs]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[Impressive Images]]></category>
		<category><![CDATA[Ingalls Shipbuilding]]></category>
		<category><![CDATA[Iowa Bb]]></category>
		<category><![CDATA[Lynxos Rtos]]></category>
		<category><![CDATA[naval]]></category>
		<category><![CDATA[Naval Surface]]></category>
		<category><![CDATA[Naval Vessel]]></category>
		<category><![CDATA[Northrup Grumman]]></category>
		<category><![CDATA[Radar Signature]]></category>
		<category><![CDATA[Shaky Ground]]></category>
		<category><![CDATA[ship]]></category>
		<category><![CDATA[Surface Fire]]></category>
		<category><![CDATA[Two Ships]]></category>
		<category><![CDATA[Us Navy]]></category>
		<category><![CDATA[Uss Iowa]]></category>
		<category><![CDATA[vessel]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/2008/02/21/zumwalt-class-destroyer-ddx-cool-but-sounds-like-something-out-of-gundam/</guid>
		<description><![CDATA[The Navy&#8217;s latest Class of Destroyer, the Zumwalt Class, once on shaky ground, has finally had its contract awarded. There will be two ships of this class built simultaneously, one in Maine by General Dynamics&#8217; Bath Iron Works the other by Northrup Grumman&#8217;s Ingalls Shipbuilding in Mississippi. What makes this class of ship so unique, [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" title="ddx" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/ddx.png"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/ddx.thumbnail.png" border="0" alt="ddx" align="right" /></a>The Navy&#8217;s latest Class of Destroyer, the <a href="http://en.wikipedia.org/wiki/Zumwalt_class_destroyer" target="_blank">Zumwalt Class</a>, once on shaky ground, has finally had its contract awarded. There will be two ships of this class built simultaneously, one in Maine by General Dynamics&#8217; Bath Iron Works the other by Northrup Grumman&#8217;s Ingalls Shipbuilding in Mississippi. What makes this class of ship so unique, aside from it&#8217;s Animesque name, is all the high-tech goodness that will be pumped into it. From it&#8217;s stealth hull which, purportedly, <a href="http://www.military.com/features/0,15240,162267,00.html?ESRC=navy.nl" target="_blank">reduces radar signature more than 50x over current hull designs</a>, to its Advanced Gun Systems, to its automated cargo handling system, to its use of the <a href="http://en.wikipedia.org/wiki/LynxOS" target="_blank">LynxOS RTOS</a> as a systems OS this ship has many seemingly incredible advances.</p>
<p><a rel="lightbox" title="AWESOME!!" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/470px-bb61_uss_iowa_bb61_broadside_usn.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/470px-bb61_uss_iowa_bb61_broadside_usn.thumbnail.jpg" border="0" alt="AWESOME!!" align="left" /></a>Maybe too incredible, many concerns over the design (especially the hull which is said to be unstable during high seas) have made this class of Naval vessel controversial to say the least. With the <a href="http://en.wikipedia.org/wiki/USS_Iowa_%28BB-61%29" target="_blank">USS Iowa (BB-61)</a> being stricken from the Naval Register in 2006, no more battle ships exist  in the US fleet, which means there are no ships with the capacity for truly frightening naval surface fire support. That&#8217;s one of the roles the Zumwalt class should address, but even that is role is in doubt.</p>
<p>Still, have a look at the specs, pretty impressive&#8230;</p>
<p>Images courtesy of Wikipedia, the US Navy and the Public Domain (<a rel="lightbox" href="http://en.wikipedia.org/wiki/Image:DD%28X%29.png" target="_blank">link</a>, <a rel="lightbox" href="http://commons.wikimedia.org/wiki/Image:BB61_USS_Iowa_BB61_broadside_USN.jpg" target="_blank">link</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/02/21/zumwalt-class-destroyer-ddx-cool-but-sounds-like-something-out-of-gundam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meet Pumpkin</title>
		<link>http://www.luckydisasters.com/2008/02/18/meet-pumpkin/</link>
		<comments>http://www.luckydisasters.com/2008/02/18/meet-pumpkin/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 02:44:15 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Cats]]></category>
		<category><![CDATA[Adoption Group]]></category>
		<category><![CDATA[Affection]]></category>
		<category><![CDATA[Animal Adoption]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[Cuteness]]></category>
		<category><![CDATA[Flu]]></category>
		<category><![CDATA[Four Cats]]></category>
		<category><![CDATA[Halloween]]></category>
		<category><![CDATA[Havin Fun]]></category>
		<category><![CDATA[Hello]]></category>
		<category><![CDATA[house]]></category>
		<category><![CDATA[House Cats]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[Lap Cat]]></category>
		<category><![CDATA[Local Animal]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[pumpkin]]></category>
		<category><![CDATA[River To The Sea]]></category>
		<category><![CDATA[Sq Ft]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/2008/02/18/meet-pumpkin/</guid>
		<description><![CDATA[Hello from Flu-land! I&#8217;m writing this as my nose flows as free as a river to the sea, and I cannot hear from my left right ear. Yeah, that&#8217;s an attractive picture. I&#8217;ve got the flu, and I ain&#8217;t havin&#8217; fun yet. So forgive me it this post don&#8217;t come together well.

This is Pumpkin. She&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Hello from Flu-land! I&#8217;m writing this as my nose flows as free as a river to the sea, and I cannot hear from my <span style="text-decoration: line-through;">left</span> right ear. Yeah, that&#8217;s an attractive picture. I&#8217;ve got the flu, and I ain&#8217;t havin&#8217; fun yet. So forgive me it this post don&#8217;t come together well.</p>
<p><a rel="lightbox" title="pumpkin" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/img_11651024x768.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/img_11651024x768.thumbnail.jpg" border="0" alt="pumpkin" /></a></p>
<p>This is Pumpkin. She&#8217;s a fosterino who came to live with us on Halloween (hence the name). She&#8217;s made herself at home and we&#8217;d love to keep her, but our 900 sq ft just isn&#8217;t enough house for four cats (barely enough for the three we have). I can post more later, but for now, have fun bathing in her cuteness.</p>
<p>We&#8217;re keeping her for the local animal adoption group <a href="http://www.aarfanimals.org" target="_blank">AARF</a>. She&#8217;s been a bit sick lately, so she hasn&#8217;t been able to get all of her shots, but when she does, she&#8217;ll be able to find a permanent home. She&#8217;s extremely playful, affection aggressive, and a great lap cat.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/02/18/meet-pumpkin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Workstation Floppy Image Howto</title>
		<link>http://www.luckydisasters.com/2008/02/16/vmware-workstation-floppy-image-howto/</link>
		<comments>http://www.luckydisasters.com/2008/02/16/vmware-workstation-floppy-image-howto/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 18:57:43 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Add Button]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[Button Step]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[Classroom Servers]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[Drive Hardware]]></category>
		<category><![CDATA[Floppy]]></category>
		<category><![CDATA[Floppy Image]]></category>
		<category><![CDATA[Floppy Images]]></category>
		<category><![CDATA[Gnu Linux]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[Graphical Tutorial]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[Hardware Tab]]></category>
		<category><![CDATA[Hardware Type]]></category>
		<category><![CDATA[Hardware Wizard]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[Img Format]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Skills]]></category>
		<category><![CDATA[Machine Settings]]></category>
		<category><![CDATA[Radio Button]]></category>
		<category><![CDATA[RHA]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[Virtual Floppy Disk]]></category>
		<category><![CDATA[Virtual Floppy Drive]]></category>
		<category><![CDATA[Virtual Machine]]></category>
		<category><![CDATA[Vmware Workstation 6]]></category>
		<category><![CDATA[VPN]]></category>
		<category><![CDATA[Vpn Connection]]></category>
		<category><![CDATA[Workstation]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/2008/02/16/vmware-workstation-floppy-image-howto/</guid>
		<description><![CDATA[I&#8217;m taking the RedHat RHA030 and 130 right now at ECU.  The really cool thing about the class is that it&#8217;s all online. We use VMware Workstation 6 and connect to the classroom servers through a VPN connection. The biggest drawback to the class is that it&#8217;s all online. Weird how that works.
Any-who, one [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m taking the <a href="https://www.redhat.com/solutions/education/academy/" target="_blank">RedHat RHA030 and 130</a> right now at <a href="http://www.ecu.edu/">ECU</a>.  The really cool thing about the class is that it&#8217;s all online. We use <a href="http://store.vmware.com/servlet/ControllerServlet?Action=DisplayPage&amp;Locale=en_US&amp;SiteID=vmware&amp;id=ProductDetailsPage&amp;productID=82469900" target="_blank">VMware Workstation 6</a> and connect to the classroom servers through a VPN connection. The biggest drawback to the class is that it&#8217;s all online. Weird how that works.</p>
<p>Any-who, one of our labs has us using <a href="http://linux.die.net/man/8/mount" target="_blank"><code>mount</code></a> and <a href="http://linux.die.net/man/2/umount" target="_blank"><code>umount</code></a> (did I mention that RHA030 is a basic GNU/Linux skills class with a RedHat flavor?) with a floppy drive. There are a couple of problems with this, however. One, there&#8217;s no virtual floppy disk on the virtual machine that&#8217;s been configured for class. Two, VMware Workstation 6 has this weird quirk (at least the version we have) that won&#8217;t allow you to create floppy images in the img format. It adds flp to the end of whatever you put want to name your file, and then gives this error that the file already exists, which doesn&#8217;t make a lot of sense since the Workstation just created the file and should know that.</p>
<p>So, here&#8217;s a (mostly) graphical tutorial that allows you to create your own floppy image and use it with VMware Workstation 6.</p>
<p>Step 1. Open VMware Workstation and select the virtual machine you want to add a virtual floppy drive to.</p>
<p>Step 2. Select &#8220;Edit Virtual Machine Settings&#8221; from that virtual machine&#8217;s &#8220;Commands&#8221; menu.<br />
<a rel="lightbox[vfdt]" title="vfd01" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial01.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial01.thumbnail.jpg" border="0" alt="vfd01" /></a></p>
<p>Step 3. From the &#8220;Virtual Machine Settings&#8221; dialog&#8217;s &#8220;Hardware&#8221; tab, click the &#8220;Add&#8230;&#8221; button<br />
<a rel="lightbox[vfdt]" title="vfd02" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial02.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial02.thumbnail.jpg" border="0" alt="vfd02" /></a></p>
<p>Step 4. On the &#8220;Hardware Wizard&#8221; dialog, select the &#8220;Floppy Drive&#8221; hardware type and then click the &#8220;Next&#8221; button.<br />
<a rel="lightbox[vfdt]" title="vfd03" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial03.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial03.thumbnail.jpg" border="0" alt="vfd03" /></a></p>
<p>Step 5. On the &#8220;Hardware Wizard&#8221; dialog, choose  the  &#8220;Create a blank floppy image&#8221; radio button and then click the &#8220;Next&#8221; button. <a rel="lightbox[vfdt]" title="vfd04" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial04.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial04.thumbnail.jpg" border="0" alt="vfd04" /></a></p>
<p>Step 6.  On the &#8220;Hardware Wizard&#8221; dialog, click the &#8220;Bowse&#8221; button to choose a location for your floppy image.<br />
<a rel="lightbox[vfdt]" title="vfd05" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial05.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial05.thumbnail.jpg" border="0" alt="vfd05" /></a></p>
<p>Step 7. Type in the name of the image file you want to create. Notice I tried to input an &#8220;.img&#8221; extension which is one of the types listed in the file type select box. Don&#8217;t bother trying that because Workstation will automatically tack on a &#8220;.flp&#8221; extension regardless of what you input.<br />
<a rel="lightbox[vfdt]" title="vfd06" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial06.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial06.thumbnail.jpg" border="0" alt="vfd06" /></a></p>
<p>Step 8. Check your file&#8217;s path and then click &#8220;Finish&#8221;. What&#8217;s <em>supposed</em> to happen is, Workstation creates an image file with the name in the text box.<br />
<a rel="lightbox[vfdt]" title="vfd07" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial07.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial07.thumbnail.jpg" border="0" alt="vfd07" /></a></p>
<p>Step 9. What <em>happens</em> is Workstation adds the &#8220;.flp&#8221; extension, creates the image file, then gives you this Alert box stating: &#8220;Unable to create floppy image. File exists.&#8221; Idiotic really. Just click the &#8220;OK&#8221; button and proceed as follows.<br />
<a rel="lightbox[vfdt]" title="vfd08" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial08.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial08.thumbnail.jpg" border="0" alt="vfd08" /></a></p>
<p>Step 10. You&#8217;ll now see that your file name has been appended with the &#8220;.flp&#8221; extension and that and further &#8220;Finish&#8221; clicking will merely give you to opportunity to view the Alert box again. But don&#8217;t worry, because even though you&#8217;re getting error a strange and magical thing has happened. Click &#8220;Cancel&#8221; to proceed to the next step.<br />
<a rel="lightbox[vfdt]" title="vfd09" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial09.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial09.thumbnail.jpg" border="0" alt="vfd09" /></a></p>
<p>Step 11. Click &#8220;OK&#8221; on the &#8220;Virtual Machine Settings&#8221; dialog.<br />
<a rel="lightbox[vfdt]" title="vfd10" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial10.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial10.thumbnail.jpg" border="0" alt="vfd10" /></a></p>
<p>Step 12. Ok, this is less of a step than just a view of the results. Remember that &#8220;strange and magical&#8221; thing I mentioned? Well, as it turns out Workstation has added the floppy drive to your virtual hardware and created and added the floppy image to your floppy drive just fine even with those errors. Weird, weird, weird, but I&#8217;m not really complaining, now I can do my lab!<br />
<a rel="lightbox[vfdt]" title="vfd11" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial11.jpg"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/floppytutorial11.thumbnail.jpg" border="0" alt="vfd11" /></a></p>
<p>Hope this helps anyone still having problems with this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/02/16/vmware-workstation-floppy-image-howto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stuff that will piss you off.</title>
		<link>http://www.luckydisasters.com/2008/02/15/stuff-that-will-piss-you-off/</link>
		<comments>http://www.luckydisasters.com/2008/02/15/stuff-that-will-piss-you-off/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 15:20:03 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Military]]></category>
		<category><![CDATA[Temper Level: Red]]></category>
		<category><![CDATA[Custody Of Children]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[Lawyers]]></category>
		<category><![CDATA[Open Eyes]]></category>
		<category><![CDATA[Service Member]]></category>
		<category><![CDATA[Stupidity]]></category>
		<category><![CDATA[Time Of War]]></category>
		<category><![CDATA[Tour Of Duty]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/2008/02/15/stuff-that-will-piss-you-off/</guid>
		<description><![CDATA[It seems there&#8217;s a growing trend to use a service member&#8217;s tour of duty against them when it comes to custody of children. The most disturbing quote from the article was from the attorney against the service member:
&#8220;She was not drafted. This was a job choice. She went into it with open eyes.&#8221;
It&#8217;s stupidity like [...]]]></description>
			<content:encoded><![CDATA[<p>It seems there&#8217;s <a href="http://www.npr.org/templates/story/story.php?storyId=18966053" target="_blank">a growing trend to use a service member&#8217;s tour of duty against them</a> when it comes to custody of children. The most disturbing quote from the article was from the attorney against the service member:</p>
<blockquote><p>&#8220;She was not drafted. This was a job choice. She went into it with open eyes.&#8221;</p></blockquote>
<p>It&#8217;s stupidity like that that makes you want to get rid of all lawyers &#8211; in a permanent sort of way. Why do we feel we can treat people in such a way just because they&#8217;ve done their duty to they&#8217;re country in time of war?!?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/02/15/stuff-that-will-piss-you-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010 or NASA photo?</title>
		<link>http://www.luckydisasters.com/2008/02/15/2010-or-nasa-photo/</link>
		<comments>http://www.luckydisasters.com/2008/02/15/2010-or-nasa-photo/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 15:09:08 +0000</pubDate>
		<dc:creator>Kris</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Neatorific]]></category>
		<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[Wow]]></category>
		<category><![CDATA[Contact]]></category>
		<category><![CDATA[Gallery Photo]]></category>
		<category><![CDATA[Iss]]></category>
		<category><![CDATA[nasa]]></category>
		<category><![CDATA[Nasa Image Of The Day]]></category>
		<category><![CDATA[Nasa Photo]]></category>
		<category><![CDATA[niotd]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[Science Fiction Movie]]></category>

		<guid isPermaLink="false">http://www.luckydisasters.com/2008/02/15/2010-or-nasa-photo/</guid>
		<description><![CDATA[Looking unnervingly similar to a scene  from 2010: The Year We Make Contact, this photo of the ISS at night looks less like NASA Image of the Day material and more like material from a science fiction movie! All-in-all, an incredible photo of the present meeting the future&#8230;
Links:
the NASA Image of the Day Gallery
The [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" title="spacewalk_nasa" href="http://www.luckydisasters.com/wp-content/uploads/2008/02/spacewalk_cap.png"><img src="http://www.luckydisasters.com/wp-content/uploads/2008/02/spacewalk_cap.thumbnail.png" border="0" alt="spacewalk_nasa" align="left" /></a>Looking unnervingly similar to a scene  from <a title="Wikipedia entry" href="http://en.wikipedia.org/wiki/2010:_The_Year_We_Make_Contact" target="_blank">2010: The Year We Make Contact</a>, <a title="NIotD" href="http://www.nasa.gov/multimedia/imagegallery/image_feature_1020.html" target="_blank">this photo</a> of the <a href="http://en.wikipedia.org/wiki/International_space_station" target="_blank">ISS</a> at night looks less like NASA Image of the Day material and more like material from a science fiction movie! All-in-all, an incredible photo of the present meeting the future&#8230;</p>
<p>Links:<br />
<a title="NIotDG" href="http://www.nasa.gov/multimedia/imagegallery/iotd.html" target="_blank">the NASA Image of the Day Gallery</a><br />
<a title="NIotD" href="http://www.nasa.gov/multimedia/imagegallery/image_feature_1020.html" target="_blank">The above photo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.luckydisasters.com/2008/02/15/2010-or-nasa-photo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
