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

<channel>
	<title>Simon Scullion &#187; Technology</title>
	<atom:link href="http://www.simonscullion.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simonscullion.com</link>
	<description>The public musings of a collaboration lifeguard</description>
	<lastBuildDate>Wed, 08 Feb 2012 17:33:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/es/</creativeCommons:license>
		<item>
		<title>Dogbert on Twitter</title>
		<link>http://www.simonscullion.com/2009/11/24/dogbert-on-twitter/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dogbert-on-twitter</link>
		<comments>http://www.simonscullion.com/2009/11/24/dogbert-on-twitter/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 12:14:32 +0000</pubDate>
		<dc:creator>Simon Scullion</dc:creator>
				<category><![CDATA[Humour]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[dlibert]]></category>
		<category><![CDATA[dogbert]]></category>
		<category><![CDATA[riboflavin]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.simonscullion.com/2009/11/24/dogbert-on-twitter/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;"><a href="http://dilbert.com/strips/comic/2009-11-24/" title="Dilbert.com"><img src="http://dilbert.com/dyn/str_strip/000000000/00000000/0000000/000000/70000/4000/800/74830/74830.strip.gif" alt="Dilbert.com" border="0" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.simonscullion.com/2009/11/24/dogbert-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>MS Excel moving with the times</title>
		<link>http://www.simonscullion.com/2008/12/01/ms-excel-moving-with-the-times/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ms-excel-moving-with-the-times</link>
		<comments>http://www.simonscullion.com/2008/12/01/ms-excel-moving-with-the-times/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 11:29:37 +0000</pubDate>
		<dc:creator>Simon Scullion</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[concatenate]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[gripe]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[msoffice]]></category>

		<guid isPermaLink="false">http://www.simonscullion.com/2008/12/01/ms-excel-moving-with-the-times/</guid>
		<description><![CDATA[Over the last few days I have been spending more time in MS Excel than can be considered good for my health! As I tweeted this morning, this has obviously hasn&#8217;t been without its frustrations! I don&#8217;t often use Excel for more than basic stuff, but this time I am putting together a front end [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last few days I have been spending more time in MS Excel than can be considered good for my health! As I <a target="_blank" href="http://twitter.com/sscullion/status/1031978455">tweeted</a> this morning, this has obviously hasn&#8217;t been without its frustrations!</p>
<p>I don&#8217;t often use Excel for more than basic stuff, but this time I am putting together a front end to a simple reporting tool in our internal <a target="_blank" href="http://www.atlassian.com/software/confluence/">Confluence</a> wiki. More to come on that in a later post, but allow me to get this off my chest first!</p>
<p>First up, I wanted to do some string concatenation. Easy I thought, only to find out that the <code>CONCATENATE()</code> function does not allow a cell range to be used as a parameter!</p>
<p>Google to the rescue, where I came across <a href="http://www.mcgimpsey.com/excel/udfs/multicat.html" target="_blank">this great little snippet of VB</a> which does the job nicely:<br />
<blockquote><code>'*****************************************<br />  'Purpose: Concatenate all cells in a range<br />  'Inputs:  rRng - range to be concatenated<br />  '         sDelimiter - optional delimiter<br />  '            to insert between cell Texts<br />  'Returns: concatenated string<br />  '*****************************************<br />  Public Function MultiCat( _<br />        ByRef rRng As Excel.Range, _<br />        Optional ByVal sDelim As String = "") _<br />             As String<br />     Dim rCell As Range<br />     For Each rCell In rRng<br />         MultiCat = MultiCat &amp; sDelim &amp; rCell.Text<br />     Next rCell<br />     MultiCat = Mid(MultiCat, Len(sDelim) + 1)<br />  End Function<br /></code></p></blockquote>
<p>Next I wanted to create some links between workbooks. Easy right!? Its easy enough to create the links, but I didn&#8217;t like the full filepaths it was using:<br />
<blockquote><code>C:\Documents and Settings\User\My Documents....\</code></p></blockquote>
<p>So I went to look for a way of creating relative links&#8230;.</p>
<p>It turns out that in some areas, Excel hasn&#8217;t exactly kept up with the times. <a href="http://en.allexperts.com/q/Excel-1059/Linking-files-relative-path.htm" target="_blank">This article</a> gives us some insight:<br />
<blockquote>it just can&#8217;t be done in Excel. A *LONG* time ago Microsoft wrote the original Excel version 1 for 512K Macs. Those beasts had a nonhierarchical file system and mostly only one floppy drive and no harddrive, so there could only be one file open with a given base filename. And Microsoft decreed this was Good &amp; Sufficient, and it hasn&#8217;t changed at all since. Yes, all OS&#8217;s under which the most recent 3 or 4 versions of Excel runs now have hierarchical file systems spanning multiple local and networked drives, but Microsoft seems not to care to expend the resources to bring this bit of Excel functionality out of the mid 1980&#8242;s. </p></blockquote>
<p>So a dead-end there then! <img src='http://www.simonscullion.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>The same article goes on to finish with an assessment of things&#8230;.<br />
<blockquote>Excel simply hasn&#8217;t evolved from its original implementation in this respect. It&#8217;s nice to imagine Microsoft fixing this, but it probably won&#8217;t happen until well after they provide built-in support for flashing text. Microsoft seems to prefer adding eyewash to adding serious features that have been in competing spreadsheets for over a decade.</p></blockquote>
<p>Sad, but likely true. I had to chuckle, rather than cry.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonscullion.com/2008/12/01/ms-excel-moving-with-the-times/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>“New-Generation Workers” Want Technology Their Way</title>
		<link>http://www.simonscullion.com/2008/11/26/%e2%80%9cnew-generation-workers%e2%80%9d-want-technology-their-way/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=%25e2%2580%259cnew-generation-workers%25e2%2580%259d-want-technology-their-way</link>
		<comments>http://www.simonscullion.com/2008/11/26/%e2%80%9cnew-generation-workers%e2%80%9d-want-technology-their-way/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 09:48:13 +0000</pubDate>
		<dc:creator>Simon Scullion</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[culture]]></category>

		<guid isPermaLink="false">http://www.simonscullion.com/2008/11/26/%e2%80%9cnew-generation-workers%e2%80%9d-want-technology-their-way/</guid>
		<description><![CDATA[Today I caught a discussion on the findings of a survey carried out by Accenture. Millennial generation students and employees (those aged 14 to 27) expect to use their own technology and mobile devices for work and are increasingly choosing their place of employment based on how accommodating companies are to their personal technology preferences [...]]]></description>
			<content:encoded><![CDATA[<p>Today I caught a discussion on the findings of a <a href="http://newsroom.accenture.com/article_display.cfm?article_id=4767" target="_blank">survey carried out by Accenture</a>.</p>
<blockquote><p>Millennial generation students and employees (those aged 14 to 27) expect to use their own technology and mobile devices for work and are increasingly choosing their place of employment based on how accommodating companies are to their personal technology preferences</p></blockquote>
<p>Yet more evidence demonstrating how our consumer technology choices are making their way into the workplace, meaning that the companies that best accommodate these demands will gain a competitive advantage through attracting, and most importantly, retaining, the best young talent.</p>
<p>Observing this, it appears we are increasingly demanding in our requirements for consumer technology, increasingly fickle with our choices and loyalties, and increasingly adept at managing the change new technology presents us.</p>
<p>Yet this often goes against our corporate mandated use of technology, where we are stuck in our old ways, show blind loyalty to old technology, and told that change is painful and risky! (I&#8217;d love you to chip in with candidates for each category! <img src='http://www.simonscullion.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> )</p>
<p>So why is this still the case?</p>
<p>Will the &#8220;Millennial generation&#8221; win over their elders?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonscullion.com/2008/11/26/%e2%80%9cnew-generation-workers%e2%80%9d-want-technology-their-way/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>RIM, RBC and Thomson Reuters to Anchor a $150 Million BlackBerry Partners Fund Focused on Investing in Mobile Applications and Services</title>
		<link>http://www.simonscullion.com/2008/05/13/rim-rbc-and-thomson-reuters-to-anchor-a-150-million-blackberry-partners-fund-focused-on-investing-in-mobile-applications-and-services/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rim-rbc-and-thomson-reuters-to-anchor-a-150-million-blackberry-partners-fund-focused-on-investing-in-mobile-applications-and-services</link>
		<comments>http://www.simonscullion.com/2008/05/13/rim-rbc-and-thomson-reuters-to-anchor-a-150-million-blackberry-partners-fund-focused-on-investing-in-mobile-applications-and-services/#comments</comments>
		<pubDate>Tue, 13 May 2008 14:15:52 +0000</pubDate>
		<dc:creator>Simon Scullion</dc:creator>
				<category><![CDATA[Mobility]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[RBC]]></category>
		<category><![CDATA[rim]]></category>
		<category><![CDATA[Thomson Reuters]]></category>

		<guid isPermaLink="false">http://www.simonscullion.com/2008/05/13/rim-rbc-and-thomson-reuters-to-anchor-a-150-million-blackberry-partners-fund-focused-on-investing-in-mobile-applications-and-services/</guid>
		<description><![CDATA[I have been dabbling in the Balckberry applications area for quite some time now, and for those of us interested in this stuff, thie following looks like a big announcement. I will be following this with some interest, particularly with regard to how it keeps the pressure on Apple with their iPhone. Toronto, ON (May [...]]]></description>
			<content:encoded><![CDATA[<p>I have been dabbling in the Balckberry applications area for quite some time now, and for those of us interested in this stuff, thie following looks like a big announcement.</p>
<p>I will be following this with some interest, particularly with regard to how it keeps the pressure on Apple with their iPhone.</p>
<blockquote><p><span style="font-weight: bold;">Toronto, ON (May 12, 2008) – </span>Research In Motion (RIM) (TSX: RIM; NASDAQ: RIMM), RBC (RY: TSX; RY: NYSE) and Thomson Reuters (NYSE: TRI; TSX: TRI; LSE: TRIL; NASDAQ: TRIN), today announced plans to launch the BlackBerry® Partners Fund, a US$150 million venture capital fund, to invest in mobile applications and services for the BlackBerry® platform and other mobile platforms. The Fund is to be co-managed by JLA Ventures and RBC Venture Partners.</p>
<p>Agnostic to both stage and balance sheet, the BlackBerry Partners Fund will not restrict the development of mobile applications and services to any single mobile platform or any specific industry segment. The Fund will be designed to advance the industry by fostering development and driving the entrepreneurial spirit to create the most innovative mobile offerings for customers.</p>
<p>“The mobile world has evolved well beyond phone calls and simple messaging to require more empowering and liberating solutions that connect people to everything that matters most to them, wherever and whenever they want,” said Jim Balsillie, Co-CEO, Research In Motion.  “RIM, RBC and Thomson Reuters share the common belief that mobile applications and services will propel the industry forward and the BlackBerry Partners Fund is being formed to help fuel innovation and activity in the mobile ecosystem.”</p>
<p>“Thomson Reuters is committed to supporting the development of next generation mobile applications that will provide our professional and business customers with anywhere, anytime capabilities,” said Devin Wenig, Chief Executive Officer, Markets Division of Thomson Reuters.  “The ability to make business critical decisions with intelligent information available on mobile devices will give our customers a clear competitive advantage.”</p>
<p>“The BlackBerry Partners Fund will focus on evaluating companies in all regions of the world and investing in the long term success of those that demonstrate market leadership and unique differentiation,” said John Albright, Managing Partner of JLA Ventures, who will also assume the role of Co-Managing Partner of the BlackBerry Partners Fund.   “Whether it&#8217;s access to corporate data or the latest craze in mobile entertainment, we want to fund companies that are forerunners in driving adoption and further enriching the mobile experience.”</p>
<p>&#8220;The BlackBerry Partners Fund will be a catalyst for the development of next generation mobile applications and services,&#8221; said Kevin Talbot, RBC Vice President and Managing Director of RBC Venture Partners, who will also assume the role of Co-Managing Partner of the BlackBerry Partners Fund. &#8220;The BlackBerry Partners Fund will focus exclusively on mobile applications and services and our close alliance with RIM will bring unparalleled access and value to our portfolio companies.&#8221;</p></blockquote>
<p><cite><a href="http://www.blackberrypartnersfund.com/pressrelease.html">FullPress Release</a></cite><!-- technorati tags begin --></p>
<p style="font-size:10px;text-align:right;">Tags: <a rel="tag" href="http://technorati.com/tag/%20BlackBerry"></a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonscullion.com/2008/05/13/rim-rbc-and-thomson-reuters-to-anchor-a-150-million-blackberry-partners-fund-focused-on-investing-in-mobile-applications-and-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>How to load Web site faster in Mozilla Firefox</title>
		<link>http://www.simonscullion.com/2006/11/20/how-to-load-web-site-faster-in-mozilla-firefox/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-load-web-site-faster-in-mozilla-firefox</link>
		<comments>http://www.simonscullion.com/2006/11/20/how-to-load-web-site-faster-in-mozilla-firefox/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 21:40:10 +0000</pubDate>
		<dc:creator>Simon Scullion</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.malapata.com/blog/2006/11/20/how-to-load-web-site-faster-in-mozilla-firefox/</guid>
		<description><![CDATA[The title says it all! I guess this applies to any install of Firefox, not just a linux version. Check it out, mine was almost unusable before making these changes. Begs the question why the settings weren&#8217;t defaults&#8230;.? Update: Following a little more digging, also found these quite useful: lifehacker.com: top firefox 2 config tweaks [...]]]></description>
			<content:encoded><![CDATA[<p><a title="How to load Web site faster in Mozilla Firefox" href="http://ubuntuguide.org/wiki/Ubuntu_Edgy#How_to_load_Web_site_faster_in_Mozilla_Firefox">The title says it all!</a></p>
<p>I guess this applies to any install of Firefox, not just a linux version. Check it out, mine was almost unusable before making these changes. Begs the question why the settings weren&#8217;t defaults&#8230;.?</p>
<p>Update:</p>
<p>Following a little more digging, also found these quite useful:</p>
<p><a target="_blank" title="lifehacker.com" href="http://www.lifehacker.com/software/firefox-2/geek-to-live-top-firefox-2-config-tweaks-209941.php"><font size="2" face="sans-serif">lifehacker.com: top firefox 2 config tweaks</font></a><font size="2" face="sans-serif"><br />
</font></p>
<p><font size="2" face="sans-serif"><a target="_blank" title="tweakguides.com" href="http://www.tweakguides.com/Firefox_8.html">tweakguides.com</a></font><font size="1" face="Georgia" color="#000022"><br />
</font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonscullion.com/2006/11/20/how-to-load-web-site-faster-in-mozilla-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>Mozilla software really is cross-platform</title>
		<link>http://www.simonscullion.com/2006/09/25/mozilla-software-really-is-cross-platform/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mozilla-software-really-is-cross-platform</link>
		<comments>http://www.simonscullion.com/2006/09/25/mozilla-software-really-is-cross-platform/#comments</comments>
		<pubDate>Mon, 25 Sep 2006 21:36:12 +0000</pubDate>
		<dc:creator>Simon Scullion</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Thunderbird]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.malapata.com/blog/2006/09/25/mozilla-software-really-is-cross-platform/</guid>
		<description><![CDATA[So I have my ubuntu linux system up, running and online. So now the next challenge. How do you go about pulling across from WinXP your most important files, which for me are my email and bookmarks? Easy! If you&#8217;re like me and using mozilla Thunderbird and Firefox! And when I say easy, it really [...]]]></description>
			<content:encoded><![CDATA[<p>So I have my ubuntu linux system up, running and online. So now the next challenge. How do you go about pulling across from WinXP your most important files, which for me are my email and bookmarks?</p>
<p>Easy! If you&#8217;re like me and using mozilla <a title="mozilla products" target="_blank" href="http://www.mozilla.com/products/">Thunderbird and Firefox</a>!</p>
<p>And when I say easy, it really couldn&#8217;t have been easier! I am talking of simply copying two folders. Yes, a simple copy and paste!</p>
<p>So I thought I&#8217;d write this up, firstly to remind myself if one day I have to rinse and repeat, but also on the off chance someone else stumbles across this whilst trying to do the same thing. It would be nice to know this helped someone somewhere, or there is any way of making this even easier! If so, please leave a comment and say hi! Oh, and check out my little disclaimer before blaming me for breaking something!</p>
<p>I started with a <a title="google search" target="_blank" href="http://www.google.com/search?q=migrate+thunderbird+email">quick search</a> on google, but it didn&#8217;t really come up with anything concrete. So I took the plunge and said, well, lets see if this works. My steps were basically what I thought as a logical extension to the backup method you will find in the google search above.<br />
So just to explain the tricky bit in a little more detail(no, thats not a gotcha!), what to copy, and where to paste it.</p>
<p style="font-weight: bold">Firefox</p>
<ol>
<li>Open Firefox on your linux systym and make sure you&#8217;re online. This will ensure you have a profiles folder created. Don&#8217;t bookmark anything new, as we&#8217;ll be over-writing this.</li>
<li>Copy the folder containing your profile folder in WinXP to the clipboard if you are able to see these files in linux (I was as my ubuntu installation mounted my windows partitions! Cool huh!). If you can&#8217;t access your windows files from your linux system (maybe you&#8217;re moving to another pc) copy them to a usb pendrive or some other media you can then access in linux. I mean the whole folder, including the following three files/folders:</li>
</ol>
<blockquote>
<ul>
<li>Profiles folder</li>
<li>pluginreg.dat</li>
<li>profiles.ini</li>
</ul>
</blockquote>
<blockquote><p>Mine were located in C:\Documents and Settings\User\Application Data\Mozilla</p></blockquote>
<ol>
<li>Find the folder containing your profile in linux. Mine was here: home\.mozilla\firefox (you may need to check you have selected the option to view hidden files)</li>
<li>As I had already been using firefox on my linux system, I had a profile created anyway. I created a new folder &#8220;temp&#8221; and moved all the existing files there just in case.</li>
<li>Paste your files copied from WinXP into this folder (not the temp folder!).</li>
<li>Now rename the pluginreg.dat file (I called it pluginreg1.dat) and move the original back out from the &#8220;temp&#8221; folder. Otherwise firefix won&#8217;t start up. I found this one out the hard way. I am guessing it is because the plugins are different on linux and windows.</li>
<li>Start firefox!</li>
</ol>
<p>Yes, thats it! You should now have all your extensions, bookmarks, history, passwords, everything. Just as it was in WinXP!</p>
<p style="font-weight: bold">Thunderbird</p>
<p>I actually did this one first, as I was dreading having to recreate all my accounts and export/inport all my email and contacts. I shouldn&#8217;t have worried!</p>
<ol>
<li>Open Thunderbird on your linux systym and make sure you&#8217;re online. This will ensure you have a profiles folder created. I don&#8217;t think you need to bother creating a new account or anything new, although I did whilst investigating.</li>
<li>As for firefox, copy the folder containing your profile folder in WinXP to the clipboard or a usb pendrive. Again, I mean the whole folder, including the following three files/folders:</li>
</ol>
<blockquote>
<ul>
<li>Profiles folder</li>
<li>profiles.ini</li>
<li>registry.dat</li>
</ul>
</blockquote>
<blockquote><p>Mine were located in C:\Documents and Settings\User\Application Data\Thunderbird</p></blockquote>
<ol>
<li>Find the folder containing your profile in linux. Mine was here: home\.mozilla-thunderbird (you may need to check you have selected the option to view hidden files)</li>
<li>As I had already been using thunderbird, I had a profile created anyway. I created a new folder &#8220;temp&#8221; and moved all the existing files there just in case.</li>
<li>Paste your files copied from WinXP into this folder. (not the temp folder!)</li>
<li>Start thunderbird!</li>
</ol>
<p>I&#8217;m getting repetitive, but again, that should be it! All your email, accounts, contacts and extensions up and running on linux!</p>
<p style="font-weight: bold">Disclaimer!</p>
<p>I managed this with no real idea whether it would work or not, and I certainly have no idea whether it is the &#8220;correct&#8221; way of going about it! I can say it worked for me, and I don&#8217;t consider it risky as long as you keep your original files in linux. Your WinXP configurations are obviously untouched.</p>
<p>What amazed me is how simple it was to move it all from windows to linux, and I guess any other supported OS.</p>
<p>Mozilla software really is cross-platform! Great stuff!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simonscullion.com/2006/09/25/mozilla-software-really-is-cross-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/es/</creativeCommons:license>
	</item>
	</channel>
</rss>

