<?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/"
	>

<channel>
	<title>Xtremax  - Web Design</title>
	<atom:link href="http://xtremax.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://xtremax.com/blog</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Mon, 22 Feb 2010 17:23:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Neat and Tidy Web Development</title>
		<link>http://xtremax.com/blog/2010/02/neat-and-tidy-web-development/</link>
		<comments>http://xtremax.com/blog/2010/02/neat-and-tidy-web-development/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 17:22:45 +0000</pubDate>
		<dc:creator>Mr Otter</dc:creator>
		
		<category><![CDATA[eclipse]]></category>

		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/2010/02/neat-and-tidy-web-development/</guid>
		<description><![CDATA[I am not the tidy soft of person.&#160; In fact, I hate doing housework.&#160; But something about untidy codes really irks me.&#160; Recently, we adopted the use of crucible as a code review tool.&#160; It revealed a whole lot of badly formatted codes in our projects.
 
The codes look innocently neat and tidy in the [...]]]></description>
			<content:encoded><![CDATA[<p>I am not the tidy soft of person.&#160; In fact, I hate doing housework.&#160; But something about untidy codes really irks me.&#160; Recently, we adopted the use of crucible as a code review tool.&#160; It revealed a whole lot of badly formatted codes in our projects.</p>
<p> <span id="more-420"></span>
<p><font color="#666666">The codes look innocently neat and tidy in the Eclipse IDE, i.e.</font></p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2010/02/image.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2010/02/image-thumb.png" width="382" height="299" /></a> </p>
<p>However, the minute they are committed to the server, the formatting runs in fisheye.</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2010/02/image1.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2010/02/image-thumb1.png" width="380" height="258" /></a> </p>
<p>So what’s the reason?&#160; The main culprit is the use of tabs.&#160; Tabs render inconsistently between the IDE and the web interface.&#160; As a matter of fact, this is a common problem, and most open source projects have a rule to forbid the use of tabs in their source codes.</p>
<p>However, such stringent coding policy will require a powerful code formatting tool which will ensure that our developers can easily adhere to the standards.</p>
<p>Ah.. that is solved by our PHPEclipse, with its nice tab to space conversion tool…</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2010/02/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2010/02/image-thumb2.png" width="401" height="280" /></a> </p>
<p>All we need to do is to go to Preferences &gt;&gt; PHP &gt;&gt; Code Style &gt;&gt; Formatter and set the tab policy to convert all tabs to a 4 space indent.&#160; Once that is done, all we need to do is to do a </p>
<p><strong>Ctrl + Shift + F</strong></p>
<p>To perform source code formating in eclipse… and hey presto!&#160; Nicely formatted codes in both Eclipse and Fisheye.</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2010/02/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2010/02/image-thumb3.png" width="399" height="324" /></a> </p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2010/02/image4.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2010/02/image-thumb4.png" width="400" height="280" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2010/02/neat-and-tidy-web-development/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Amazing Krumo &#8211; Alternative to J!Dump</title>
		<link>http://xtremax.com/blog/2009/12/amazing-krumo-alternative-to-jdump/</link>
		<comments>http://xtremax.com/blog/2009/12/amazing-krumo-alternative-to-jdump/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 00:34:13 +0000</pubDate>
		<dc:creator>Mr Otter</dc:creator>
		
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/2009/12/amazing-krumo-alternative-to-jdump/</guid>
		<description><![CDATA[After doing quite a bit of development in Joomla, I was getting used to the very friendly J!Dump to list out all the objects value in a dhtml tree format.&#160; Recently, I have been tasked to customise some e-marketing product codes.&#160; Hmmm… sounds like I needed something handy like J!Dump…
Thankfully, there was Krumo.&#160; Once Krumo [...]]]></description>
			<content:encoded><![CDATA[<p>After doing quite a bit of development in Joomla, I was getting used to the very friendly J!Dump to list out all the objects value in a dhtml tree format.&#160; Recently, I have been tasked to customise some e-marketing product codes.&#160; Hmmm… sounds like I needed something handy like J!Dump…</p>
<p>Thankfully, there was Krumo.&#160; Once Krumo has been installed properly, you can do a dhtml tree dumb of an object values with 2 simple lines:</p>
<blockquote><p>require_once(&#8217;Krumo/class.krumo.php&#8217;);     <br />krumo($dumpObject);&#160;&#160;&#160;&#160;&#160;&#160;&#160; </p>
</blockquote>
<p>Some screenshots to illustrate the power of Krumo:</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image9.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb9.png" width="462" height="332" /></a> </p>
<p>Tada… the entire dhtml tree of the object:</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image10.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb10.png" width="641" height="439" /></a> </p>
<p>The installation is also mightily simple.&#160; Just download the entire Krumo project and dump it into your php include path.</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image11.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb11.png" width="450" height="172" /></a> </p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image12.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb12.png" width="317" height="298" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2009/12/amazing-krumo-alternative-to-jdump/feed/</wfw:commentRss>
		</item>
		<item>
		<title>FTP Client - FTP Voyager</title>
		<link>http://xtremax.com/blog/2009/12/ftp-client-ftp-voyager/</link>
		<comments>http://xtremax.com/blog/2009/12/ftp-client-ftp-voyager/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 02:03:21 +0000</pubDate>
		<dc:creator>Mr Otter</dc:creator>
		
		<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/2009/12/ftp-client-ftp-voyager/</guid>
		<description><![CDATA[Needed to help a client retrieve certain files from the web server through FTP and the default Windows FTP just does not work&#8230;
Decided to download a ftp client, FTP Voyager for the job.&#160; For the 30 day trial version, it can be downloaded here.
&#160;
Step 1:&#160; Click on the Connect Link
 
Step 2: Click on Create [...]]]></description>
			<content:encoded><![CDATA[<p>Needed to help a client retrieve certain files from the web server through FTP and the default Windows FTP just does not work&#8230;</p>
<p>Decided to download a ftp client, FTP Voyager for the job.&#160; For the 30 day trial version, it can be downloaded <a href="http://dl.dropbox.com/u/405271/fvsetup.exe">here</a>.</p>
<p>&#160;</p>
<p>Step 1:&#160; Click on the Connect Link</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb.png" width="524" height="306" /></a> </p>
<p>Step 2: Click on Create a NEW site profile and Finish</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image1.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb1.png" width="522" height="380" /></a> </p>
<p>Step 3:&#160; Enter Profile Name and click Next</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image2.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb2.png" width="511" height="373" /></a> </p>
<p>Step 4:&#160; Enter either IP Address of Domain Name to connect to and click Next</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image3.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb3.png" width="516" height="381" /></a> </p>
<p>Step 5: Click Next Again.&#160; Do not check Anonymous Login</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image4.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb4.png" width="513" height="370" /></a> </p>
<p>&#160;</p>
<p>Step 6:&#160; Enter FTP User Id and Password and click Next</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image5.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb5.png" width="508" height="365" /></a> </p>
<p>&#160;</p>
<p>Step 7: Select the folder which you will want to transfer your file to and click Next</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image6.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb6.png" width="518" height="405" /></a> </p>
<p>Step 8: Click Finish</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image7.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb7.png" width="514" height="379" /></a> </p>
<p>Step 9:&#160; Just click and drag across the files between remote server and your computer.</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/12/image8.png"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/12/image-thumb8.png" width="815" height="520" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2009/12/ftp-client-ftp-voyager/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Eclipse DB Connection to Microsoft SQL Server</title>
		<link>http://xtremax.com/blog/2009/11/eclipse-db-connection-to-sql-server/</link>
		<comments>http://xtremax.com/blog/2009/11/eclipse-db-connection-to-sql-server/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 08:58:16 +0000</pubDate>
		<dc:creator>Mr Otter</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/2009/11/eclipse-db-connection-to-sql-server/</guid>
		<description><![CDATA[Well, with limited memory on my computer, I needed an easy way to access the table data and perform simple CRUD operations on it.&#160; I ended up trying DBViewer.
Update Site URL for DBViewer is at:
http://www.ne.jp/asahi/zigen/home/plugin/dbviewer/
After installing the plugin, you will also need to install the JDBC driver as well for DBViewer to work.&#160; Installation of [...]]]></description>
			<content:encoded><![CDATA[<p>Well, with limited memory on my computer, I needed an easy way to access the table data and perform simple CRUD operations on it.&#160; I ended up trying DBViewer.</p>
<p>Update Site URL for DBViewer is at:</p>
<p><a href="http://www.ne.jp/asahi/zigen/home/plugin/dbviewer/">http://www.ne.jp/asahi/zigen/home/plugin/dbviewer/</a></p>
<p>After installing the plugin, you will also need to install the JDBC driver as well for DBViewer to work.&#160; Installation of the JDBC driver is at:</p>
<p><a title="http://www.microsoft.com/downloads/details.aspx?familyid=99B21B65-E98F-4A61-B811-19912601FDC9&amp;displaylang=en" href="http://www.microsoft.com/downloads/details.aspx?familyid=99B21B65-E98F-4A61-B811-19912601FDC9&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?familyid=99B21B65-E98F-4A61-B811-19912601FDC9&amp;displaylang=en</a></p>
<p>Do not be mislead by the seemingly htm download.&#160; Inside the htm file, they will provide a link for u to continue on with the real download… :P</p>
<p>Upon successful Installation:</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/11/image.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/11/image-thumb.png" width="383" height="487" /></a> </p>
<p>Data Editing Capabilities</p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/11/image1.png"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/11/image-thumb1.png" width="538" height="266" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2009/11/eclipse-db-connection-to-sql-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>.NET Development in Eclipse</title>
		<link>http://xtremax.com/blog/2009/11/net-development-in-eclipse/</link>
		<comments>http://xtremax.com/blog/2009/11/net-development-in-eclipse/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 06:04:13 +0000</pubDate>
		<dc:creator>Mr Otter</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/2009/11/net-development-in-eclipse/</guid>
		<description><![CDATA[I just hating with for my Visual Studio to recover from its periodic hangs.&#160; I was thinking about it.. man.&#160; why not I just do the .NET development on my Eclipse IDE?&#160; Surely, all I need is a XML editor for the front end files, i.e. .ascx and a .NET editor for the CSharp codes?
Well, [...]]]></description>
			<content:encoded><![CDATA[<p>I just hating with for my Visual Studio to recover from its periodic hangs.&#160; I was thinking about it.. man.&#160; why not I just do the .NET development on my Eclipse IDE?&#160; Surely, all I need is a XML editor for the front end files, i.e. .ascx and a .NET editor for the CSharp codes?</p>
<p>Well, for the XML, I can easily use the Eclipse built in ant editor.&#160; For those that have installed the enterprise version of eclipse, I think they did include a pretty good HTML editor plugin as well.</p>
<p>For CSharp there is not so much choices.&#160; Guess we will need to go with Emonic.&#160; They do provide quite a decent CSharp editor.</p>
<p>Emonic - <a href="http://emonic.sourceforge.net/updatesite/internap/site.xml">http://emonic.sourceforge.net/updatesite/internap/site.xml</a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2009/11/net-development-in-eclipse/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Content Migration in Dot Net Nuke (DNN)</title>
		<link>http://xtremax.com/blog/2009/11/content-migration-in-dot-net-nuke-dnn/</link>
		<comments>http://xtremax.com/blog/2009/11/content-migration-in-dot-net-nuke-dnn/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 04:45:40 +0000</pubDate>
		<dc:creator>Mr Otter</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[DNN]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/2009/11/content-migration-in-dot-net-nuke-dnn/</guid>
		<description><![CDATA[If you have worked on a DNN project, one of the problems are that the images entered using the HtmlModule is hardcoded with the location of the context path.&#160; This essentially means that any changes in the context path of the web application will result in a tonne load of missing images.
Well, I did remember [...]]]></description>
			<content:encoded><![CDATA[<p>If you have worked on a DNN project, one of the problems are that the images entered using the HtmlModule is hardcoded with the location of the context path.&#160; This essentially means that any changes in the context path of the web application will result in a tonne load of missing images.</p>
<p>Well, I did remember that MySQL had some simple string replace function to address the problem… and after some surfing on the net… wola… The solution to changing all the image path:</p>
<blockquote><p>update dbo.dnn_HtmlText set DesktopHtml = REPLACE(Cast(DesktopHtml as NVARCHAR(4000)), &#8216;/aapaf/Portals/0/banners/side&#8217; ,&#8217;/aapaf2/Portals/0/banners/side&#8217;);</p>
</blockquote>
<p>Yes… I know this is not rocket science… just wanted to blog it down here to remind myself during the migration process… and hopefully.. who knows?&#160; It might just help some frustrated soul in the future…</p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2009/11/content-migration-in-dot-net-nuke-dnn/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Revival of the Blog</title>
		<link>http://xtremax.com/blog/2009/09/revival-of-the-blog/</link>
		<comments>http://xtremax.com/blog/2009/09/revival-of-the-blog/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 17:03:14 +0000</pubDate>
		<dc:creator>Mr Otter</dc:creator>
		
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/?p=365</guid>
		<description><![CDATA[Well, our blog had been down for some time after some meddling by me I guess. Did not have time to fix it till today&#8230; Just could not stand the site of the error message anymore&#8230;.
Some other minor stuff that I kind of figured out today was this date time mismatch on my windows machine [...]]]></description>
			<content:encoded><![CDATA[<p>Well, our blog had been down for some time after some meddling by me I guess. Did not have time to fix it till today&#8230; Just could not stand the site of the error message anymore&#8230;.</p>
<p>Some other minor stuff that I kind of figured out today was this date time mismatch on my windows machine when I do some PHP date(d-M-y) stuff.  I realised that the php.ini actually sets your timezone.. and if it kind of mismatches what you have set in your computer&#8230; you will get the mismatch.</p>
<p>Wanted to find out about that quite some time ago.. but alas&#8230; it a world so busy&#8230;  its really getting hard to find the time to deeply understand things&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2009/09/revival-of-the-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scribd</title>
		<link>http://xtremax.com/blog/2009/07/scribd/</link>
		<comments>http://xtremax.com/blog/2009/07/scribd/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 03:36:20 +0000</pubDate>
		<dc:creator>Tabby Cat</dc:creator>
		
		<category><![CDATA[test category]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/2009/07/scribd/</guid>
		<description><![CDATA[How to publish pdf files online.
Xtremax Company Profile 2009 
]]></description>
			<content:encoded><![CDATA[<p>How to publish pdf files online.</p>
<p><a title="View Xtremax Company Profile 2009 on Scribd" style="display: block; margin: 12px auto 6px; font: 14px helvetica,arial,sans-serif; text-decoration: underline; font-size-adjust: none; font-stretch: normal; -x-system-font: none" href="http://www.scribd.com/doc/17487441/Xtremax-Company-Profile-2009">Xtremax Company Profile 2009</a> <object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="doc_214440012075790" name="doc_214440012075790" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" align="middle"	height="500" width="100%" ><param name="movie" value="http://d.scribd.com/ScribdViewer.swf?document_id=17487441&amp;access_key=key-1u95nlyg09z719yqlg5m&amp;page=1&amp;version=1&amp;viewMode="><param name="quality" value="high"><param name="play" value="true"><param name="loop" value="true"><param name="scale" value="showall"><param name="wmode" value="opaque"><param name="devicefont" value="false"><param name="bgcolor" value="#ffffff"><param name="menu" value="true"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="salign" value=""><embed src="http://d.scribd.com/ScribdViewer.swf?document_id=17487441&amp;access_key=key-1u95nlyg09z719yqlg5m&amp;page=1&amp;version=1&amp;viewMode=" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" play="true" loop="true" scale="showall" wmode="opaque" devicefont="false" bgcolor="#ffffff" name="doc_214440012075790_object" menu="true" allowfullscreen="true" allowscriptaccess="always" salign="" type="application/x-shockwave-flash" align="middle" height="500" width="100%"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2009/07/scribd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Opera Unite</title>
		<link>http://xtremax.com/blog/2009/07/opera-unite/</link>
		<comments>http://xtremax.com/blog/2009/07/opera-unite/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 09:48:36 +0000</pubDate>
		<dc:creator>Mr Otter</dc:creator>
		
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/2009/07/opera-unite/</guid>
		<description><![CDATA[The idea is cool.. but the wordings of the video&#8230; well, I liked it so much as to type out everything&#8230;
We start our story with the invention of the modern day computer&#8230;
&#160;
Over the years, computers grew in numbers and the next natural step in their evolution is to connect them together.. to share things.
&#160;
And as [...]]]></description>
			<content:encoded><![CDATA[<p>The idea is cool.. but the wordings of the video&#8230; well, I liked it so much as to type out everything&#8230;</p>
<blockquote><p>We start our story with the invention of the modern day computer&#8230;</p>
<p>&#160;</p>
<p>Over the years, computers grew in numbers and the next natural step in their evolution is to connect them together.. to share things.</p>
<p>&#160;</p>
<p>And as these little networks grew into huge networks, some computers gain more power than the rest and call themselves servers.</p>
<p>&#160;</p>
<p>Today millions of people are connected online at the mercy of middlemen who control the servers of the world.</p>
<p>&#160;</p>
<p>Its okay.. but we want more&#8230;</p>
<p>&#160;</p>
<p>We want our computers to be first class citizen on the web, allowing for collaboration, online gatherings and sharing of information that does not require servers belong to strangers.</p>
<p>&#160;</p>
<p>If we can achieve that, a whole new whole of possibilities opens up on the web.&#160; </p>
<p>&#160;</p>
<p>At opera, we want to put you on the web.. so that you can interact directly with who you want.. how you want. </p>
<p>&#160;</p>
<p>Welcome to Opera Unite.&#160;&#160;&#160; The web you know&#8230; just re-invented.</p>
</blockquote>
<p>&#160;</p>
<h2>Intro Video </h2>
<p> <embed src="http://www.youtube.com/v/D5hr-6cw4M8&amp;hl=en&amp;fs=1&amp;" width="420" height="255" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" /><br />
<h2>Instructions</h2>
<p> <embed src="http://www.youtube.com/v/-omonwFkkrY&amp;hl=en&amp;fs=1&amp;" width="420" height="255" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" /></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2009/07/opera-unite/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Explorer on Eclipse</title>
		<link>http://xtremax.com/blog/2009/04/windows-explorer-on-eclipse/</link>
		<comments>http://xtremax.com/blog/2009/04/windows-explorer-on-eclipse/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 07:12:03 +0000</pubDate>
		<dc:creator>Mr Otter</dc:creator>
		
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://xtremax.com/blog/2009/04/windows-explorer-on-eclipse/</guid>
		<description><![CDATA[If you are an avid programmer on Eclipse, there will be many times, when you will need to access a folder on eclipse via the traditional Windows Explorer.&#160; I have been searching for a plugin like this for no avail for a long, long, long time&#8230;.
Finally, it has arrived&#8230; and it works like magic.&#160; Basically [...]]]></description>
			<content:encoded><![CDATA[<p>If you are an avid programmer on Eclipse, there will be many times, when you will need to access a folder on eclipse via the traditional Windows Explorer.&#160; I have been searching for a plugin like this for no avail for a long, long, long time&#8230;.</p>
<p>Finally, it has arrived&#8230; and it works like magic.&#160; Basically with this plugin, we can just highlight the folder and trigger the Windows Explorer screen by using a shortcut key -&gt; Ctrl + Alt + E.&#160; (Just in case you do not know.. the Microsoft Key + E is the traditional way of triggering a default Windows Explorer.. so I find this new arrangement very intuitive&#8230; ) </p>
<p>Windows Explorer Plugin:&#160; <b><a href="http://startexplorer.sourceforge.net/update">http://startexplorer.sourceforge.net/update</a></b></p>
<p><a href="http://xtremax.com/blog/wp-content/uploads/2009/04/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="215" alt="image" src="http://xtremax.com/blog/wp-content/uploads/2009/04/image-thumb.png" width="244" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremax.com/blog/2009/04/windows-explorer-on-eclipse/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

