<?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>Must a Blog Have a Name?</title>
	<atom:link href="http://www.dreamcubes.com/b2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dreamcubes.com/b2</link>
	<description></description>
	<lastBuildDate>Sat, 20 Aug 2011 20:43:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Thrift with Python on Win32</title>
		<link>http://www.dreamcubes.com/b2/software-development/20/thrift-with-python-on-win32/</link>
		<comments>http://www.dreamcubes.com/b2/software-development/20/thrift-with-python-on-win32/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 12:31:39 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=288</guid>
		<description><![CDATA[Thrift is a wonderful protocol, it&#8217;s all sum up in a single paragraph: Thrift is a software framework for scalable cross-language services development. It combines a powerful software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, and Ruby. Thrift was developed at Facebook and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamcubes.com/b2/wp-content/uploads/2010/01/python-thrift.png" rel="lightbox[288]"><img class="alignnone size-medium wp-image-302" title="python-thrift" src="http://www.dreamcubes.com/b2/wp-content/uploads/2010/01/python-thrift-300x52.png" alt="" width="300" height="52" /></a><br />
<a href="http://incubator.apache.org/thrift/">Thrift</a> is a wonderful protocol, it&#8217;s all sum up in a single paragraph:</p>
<blockquote><p><br/>Thrift is a software framework for scalable cross-language services development. It combines a powerful software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, and Ruby. Thrift was developed at Facebook and released as open source.</p></blockquote>
<p>And I really like it especially now since the system I&#8217;ve build and supporting now are written in python / c++ / ruby, these systems need to talk to each other, thrift, it&#8217;s like the answers to the prayers! : )</p>
<p>I have back-end systems that runs in Linux, and has client app that runs in Windows. Compiling and using thrift in Linux based system are straight forward, but unfortunately its not as easy in MS Windows platform.</p>
<p>At this time of writing, the code checkout from <a href="http://incubator.apache.org/thrift/download/">Thrift Apache Incubator</a> still need to be further modify so that it can be compile with MSVC. These are the steps I&#8217;ve went through to get the thrift for python to build:</p>
<p>Ingredient:<br />
1. <a href="http://www.python.org/ftp/python/2.6.4/python-2.6.4.msi">Python 2.6.4</a><br />
2. <a href="http://www.microsoft.com/express/Downloads/">Visual C++ 2008 Express Edition</a><br />
3. <a href="http://incubator.apache.org/thrift/download/">thrift-incubating-0.2.0.tar.gz</a><br />
4. <a href="http://www.microsoft.com/windows/windows-xp/default.aspx">Windows Xp (obviously)</a></p>
<p>Read this post at <a href="http://issues.apache.org/jira/browse/THRIFT-252">http://issues.apache.org/jira/browse/THRIFT-252</a> to understands what needs to be edit.</p>
<p>Build thrift for python:<br />
1. On Linux machine, apply the patch to the thrift source. Yes, on Linux machine, or you&#8217;ll have line ending problem.<br />
2. Install python 2.6.4 and Visual C++ 2008 Express Edition on your Windows XP machine.<br />
3. Copy the patched thrift source to your Windows machine, e.g: C:\tmp\thrift-0.2.0\<br />
4. Start a command prompt and follow the following steps:</p>
<pre class="mono-block">C:\&gt; cd c:\tmp\thrift-0.2.0\lib\py\
C:\tmp\thrift-0.2.0\lib\py&gt; python setup.py install</pre>
<p>That&#8217;s it! Everything should compile and install to your python site-package directory. To test just do the following:</p>
<pre class="mono-block">C:\&gt; python
Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
&gt;&gt;&gt; import thrift
&gt;&gt;&gt;</pre>
<p>No error is good news : )</p>
<p>I had to modify the patch by <a href="http://issues.apache.org/jira/browse/THRIFT-252">Michael Greene</a> to fix a problem where the LITTLE_ENDIAN and BIG_ENDIAN was not define in my attempt of getting it build with MSVC9, other than that, everything else he did work marvelously, thanks! : )</p>
<p>Here&#8217;s the diff file that work for me, and the binary build that should work for python 2.6.4 on Windows.</p>
<p>just the diff file to modify fastbinary.c and setup.py<br />
<a href="http://www.dreamcubes.com/webdrive/thrift/thrift-0.2.0-msvc-patch.diff">thrift-0.2.0-msvc-patch.diff</a></p>
<p>the patched source package:<br />
<a href="http://www.dreamcubes.com/webdrive/thrift/thrift-0.2.0-msvc-patched.tar.gz">thrift-0.2.0-msvc-patched.tar.gz</a></p>
<p>if you want to skip the compilation and just want to thrift right away with python 2.6.4, here&#8217;s the binary, extract and copy to C:\Python26\Lib\site-packages\<br />
<a href="http://www.dreamcubes.com/webdrive/thrift/thrift-python-2.6.4-win32.zip">thrift-python-2.6.4-win32.zip</a></p>
<p>NOTE: <span style="color: red;">Due to the source of thrift are still actively being improve, it&#8217;s best not to apply the diff to the source you&#8217;ve just check out, as it MAY have already been fix, its best to open up the related files, and read through, to make sure the patch is still needed.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/software-development/20/thrift-with-python-on-win32/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Goodbye NucleusCMS.</title>
		<link>http://www.dreamcubes.com/b2/computing/12/goodbye-nucleuscms/</link>
		<comments>http://www.dreamcubes.com/b2/computing/12/goodbye-nucleuscms/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 11:51:19 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=144</guid>
		<description><![CDATA[I&#8217;ve been a happy NucleusCMS user since the beginning of me blogging years back, but the recent problem with the spam on the comment is forcing me to move to a blog engine that has better spam management interface. i.e: comment approval system&#8230; etc. Believe me, I&#8217;ve tried all the spam fighting plugins available to NucleusCMS already, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been a happy <a href="http://nucleuscms.org/">NucleusCMS</a> user since the beginning of me blogging years back, but the recent problem with the spam on the comment is forcing me to move to a blog engine that has better spam management interface. i.e: comment approval system&#8230; etc. Believe me, I&#8217;ve tried all the spam fighting plugins available to <a href="http://nucleuscms.org/">NucleusCMS</a> already, but it work to an extend that I still need to manually clear out hundreds of spam message manually.</p>
<p>A short searching around the web shows me that <a href="http://www.wordpress.org/">wordpress</a> seems to be a good replacement, I really like the admin interface, and it even come with import engine to convert an existing blog!</p>
<p>Following the <a href="http://codex.wordpress.org/Importing_Content">guide at wordpress</a>, with some luck, I&#8217;ve manage to get all the entry from my Nucleus blog into the newly installed wordpress : )</p>
<p>Some comment in blog post are missing, not sure why, and I can&#8217;t tell if this will help be combat the comment spam more effectively, but I&#8217;m still happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/computing/12/goodbye-nucleuscms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading my laptop in Starbuck</title>
		<link>http://www.dreamcubes.com/b2/computing/12/upgrading-my-laptop-in-starbuck/</link>
		<comments>http://www.dreamcubes.com/b2/computing/12/upgrading-my-laptop-in-starbuck/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 18:10:59 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=71</guid>
		<description><![CDATA[I&#8217;ve just got myself two stick of 2GB RAM and a 400GB HDD. Sat in a Starbuck, with my screw driver from my backpack and a Ubuntu 9.04 64Bit CD. 30 minutes passed and tada!!! Yes, I did it in Starbuck ^_^]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamcubes.com/b2/wp-content/uploads/2009/07/20090712-DSC000961.jpg" rel="lightbox[71]"><img class="alignnone size-thumbnail wp-image-87" title="20090712-DSC00096" src="http://www.dreamcubes.com/b2/wp-content/uploads/2009/07/20090712-DSC000961-150x112.jpg" alt="" width="150" height="112" /></a></p>
<p>I&#8217;ve just got myself two stick of 2GB RAM and a 400GB HDD. Sat in a Starbuck, with my screw driver from my backpack and a Ubuntu 9.04 64Bit CD. 30 minutes passed and tada!!!</p>
<p>Yes, I did it in Starbuck ^_^</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/computing/12/upgrading-my-laptop-in-starbuck/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Getting Audacious2 onto your Ubuntu 9.04&#8230;</title>
		<link>http://www.dreamcubes.com/b2/computing/03/getting-audacious2-onto-your-ubuntu-904/</link>
		<comments>http://www.dreamcubes.com/b2/computing/03/getting-audacious2-onto-your-ubuntu-904/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 18:11:39 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=70</guid>
		<description><![CDATA[The default apt-get from 9.04 does not gives me audacious2, so, compiling it myself seems to be the only option. 1. Install the required build lib: $ sudo apt-get install libglib2.0-dev libgtk2.0-dev libmowgli-dev libmcs-dev libdbus-1-dev libdbus-glib-1-dev libxml2-dev libmad0-dev gstreamer0.10-fluendo-mp3 build-essential linux-headers-`uname -r` timidity 2. Download audacious2 source: $ wget http://redmine.atheme.org/attachments/download/69/audacious-2.0.1.tgz $ wget http://redmine.atheme.org/attachments/download/71/audacious-plugins-2.0.1.tgz 3. Extract [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamcubes.com/b2/wp-content/uploads/2009/07/20090703-audacious21.png" rel="lightbox[70]"><img class="alignnone size-thumbnail wp-image-84" title="audacious2" src="http://www.dreamcubes.com/b2/wp-content/uploads/2009/07/20090703-audacious21-150x60.png" alt="" width="150" height="60" /></a></p>
<p>The default apt-get from 9.04 does not gives me audacious2, so, compiling it myself seems to be the only option.</p>
<pre class="mono-block">1. Install the required build lib:
   $ sudo apt-get install libglib2.0-dev libgtk2.0-dev libmowgli-dev libmcs-dev libdbus-1-dev libdbus-glib-1-dev libxml2-dev libmad0-dev gstreamer0.10-fluendo-mp3 build-essential linux-headers-`uname -r` timidity

2. Download audacious2 source:
   $ wget http://redmine.atheme.org/attachments/download/69/audacious-2.0.1.tgz
   $ wget http://redmine.atheme.org/attachments/download/71/audacious-plugins-2.0.1.tgz

3. Extract and build audacious2:
   $ tar xzf audacious-2.0.1.tgz
   $ cd audacious-2.0.1
   $ ./configure
   $ make
   $ sudo make install

4. Extract and build audacious2 plug-ins:
   $ tar xzf audacious-plugins-2.0.1.tgz
   $ cd audacious-plugins-2.0.1
   $ ./configure
   $ make
   $ sudo make install

5. Install EQ presets:
   $ wget http://www.dreamcubes.com/webdrive/eq.preset
   $ mkdir ~/.config/audacious
   $ cp ./eq.preset ~/.config/audacious</pre>
<p>That&#8217;s it!</p>
<p>The default installation has no equalizer presets, you&#8217;ll need to import one from WinAmp or adjust it yourself, thanks to <a href="http://www.mail-archive.com/uug-discuss@clubs.byu.edu/msg09915.html">Bryan Murdock</a> you don&#8217;t need to : )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/computing/03/getting-audacious2-onto-your-ubuntu-904/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Do Not Tilt! or DIE!</title>
		<link>http://www.dreamcubes.com/b2/anything-else/17/do-not-tilt-or-die/</link>
		<comments>http://www.dreamcubes.com/b2/anything-else/17/do-not-tilt-or-die/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 21:52:55 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Anything Else]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=69</guid>
		<description><![CDATA[I was holiday in Singapore, and I am surprise that, almost every vending-machine that I come across on the streets has this stickers on it that says &#8220;Vending machine design prevents dispensing free products or coins. NEVER ROCK OR TILT: Machine can fall over causing serious injury or death!&#8220;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamcubes.com/b2/wp-content/uploads/2009/06/20090617-Do-Not-Tilt.jpg" rel="lightbox[69]"><img class="alignnone size-thumbnail wp-image-113" title="Do-Not-Tilt" src="http://www.dreamcubes.com/b2/wp-content/uploads/2009/06/20090617-Do-Not-Tilt-112x150.jpg" alt="" width="112" height="150" /></a></p>
<p>I was holiday in Singapore, and I am surprise that, almost every vending-machine that I come across on the streets has this stickers on it that says &#8220;<span style="color: red;">Vending machine design prevents dispensing free products or coins. NEVER ROCK OR TILT: Machine can fall over causing serious injury or death!</span>&#8220;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/anything-else/17/do-not-tilt-or-die/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Upgrade on Dell D630!</title>
		<link>http://www.dreamcubes.com/b2/computing/08/free-upgrade-on-dell-d630/</link>
		<comments>http://www.dreamcubes.com/b2/computing/08/free-upgrade-on-dell-d630/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 20:53:00 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=68</guid>
		<description><![CDATA[I could not believe it! I&#8217;ve just got a free upgrade to a dual screen monitor on my 6 months old Dell D630 laptop! The only problem would be its unable to boot into windows anymore&#8230; Contacted the Dell support guys, apparently the motherboard has to be replace, and its back to single screen&#8230; what [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamcubes.com/b2/wp-content/uploads/2009/06/20090608-D630-DualScreen1.jpg" rel="lightbox[68]"><img class="alignnone size-thumbnail wp-image-120" title="D630-DualScreen1" src="http://www.dreamcubes.com/b2/wp-content/uploads/2009/06/20090608-D630-DualScreen1-150x112.jpg" alt="" width="150" height="112" /></a> <a href="http://www.dreamcubes.com/b2/wp-content/uploads/2009/06/20090608-D630-DualScreen2.jpg" rel="lightbox[68]"><img class="alignnone size-thumbnail wp-image-121" title="D630-DualScreen2" src="http://www.dreamcubes.com/b2/wp-content/uploads/2009/06/20090608-D630-DualScreen2-150x112.jpg" alt="" width="150" height="112" /></a><br />
I could not believe it! I&#8217;ve just got a free upgrade to a dual screen monitor on my 6 months old Dell D630 laptop! The only problem would be its unable to boot into windows anymore&#8230; Contacted the Dell support guys, apparently the motherboard has to be replace, and its back to single screen&#8230; what a bummer&#8230;</p>
<p>oh well&#8230; Dell Sucks&#8230; as usual&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/computing/08/free-upgrade-on-dell-d630/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I want pretty and I want my TitleBar!</title>
		<link>http://www.dreamcubes.com/b2/computing/05/i-want-pretty-and-i-want-my-titlebar/</link>
		<comments>http://www.dreamcubes.com/b2/computing/05/i-want-pretty-and-i-want-my-titlebar/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 05:02:01 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=67</guid>
		<description><![CDATA[Just got back my Compaq V3000 laptop from the dealer. Its a little over 2 years old, but it has been sent back for mother board replacement for the 3rd time! (glad that I had the extended warranty period to 3 years) Figure that I can put Ubuntu 8.10 on it while waiting for 9.04 [...]]]></description>
			<content:encoded><![CDATA[<p>Just got back my Compaq V3000 laptop from the dealer. Its a little over 2 years old, but it has been sent back for mother board replacement for the 3rd time! (glad that I had the extended warranty period to 3 years)</p>
<p>Figure that I can put <a href="http://www.ubuntu.com/">Ubuntu 8.10</a> on it while waiting for <a href="http://www.ubuntu.com/">9.04</a> to come alone in about two weeks time.</p>
<p>Installation went well, NVidia  (NVIDIA-Linux-x86_64-96.43.11-pkg2.run) driver seems to install properly as well.</p>
<p>Reboot and damn! Wher&#8217;s my window title bar? and also the Terminal windows is un readable as well. Turning off the visual effect seems to give me back the title bar, but that&#8217;s not the solution.</p>
<p>For the next 5 hours is frantic googling for solutions, and it really is funny that so many had the same problem, and offered bloody lot of suggestion that is not working, until came along this article <a href="http://www.pendrivelinux.com/ubuntu-desktop-effects-fixing-the-missing-titlebar/">Ubuntu Desktop Effects &#8211; Fixing the missing titlebar</a> and it hit the right spot. Just these two lines in your /etc/X11/xorg.conf under the &#8216;Section &#8220;Device&#8221;&#8216;:</p>
<pre class="mono-block">Option "AddARGBVisuals" "True"
Option "AddARGBGLXVisuals" "True"</pre>
<p>: )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/computing/05/i-want-pretty-and-i-want-my-titlebar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is it just me? Or is it just plain spooky ~</title>
		<link>http://www.dreamcubes.com/b2/anything-else/28/is-it-just-me-or-is-it-just-plain-spooky/</link>
		<comments>http://www.dreamcubes.com/b2/anything-else/28/is-it-just-me-or-is-it-just-plain-spooky/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 12:47:17 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Anything Else]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=66</guid>
		<description><![CDATA[Ok&#8230; I went to my local mall today to catch a movie and this is what saw in one of the children fashion outlet&#8230; :-O]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamcubes.com/b2/wp-content/uploads/2009/01/20090128-spooky.jpg" rel="lightbox[66]"><img class="alignnone size-thumbnail wp-image-133" title="20090128-spooky" src="http://www.dreamcubes.com/b2/wp-content/uploads/2009/01/20090128-spooky-150x112.jpg" alt="" width="150" height="112" /></a></p>
<p>Ok&#8230; I went to my local mall today to catch a movie and this is what saw in one of the children fashion outlet&#8230; :-O</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/anything-else/28/is-it-just-me-or-is-it-just-plain-spooky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aptana in Ubuntu 64bit</title>
		<link>http://www.dreamcubes.com/b2/computing/29/aptana-in-ubuntu-64bit/</link>
		<comments>http://www.dreamcubes.com/b2/computing/29/aptana-in-ubuntu-64bit/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 11:31:46 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=65</guid>
		<description><![CDATA[Installing Aptana in Ubuntu 64bit is no fun, every other distribution has its standalone package, but not on Ubuntu 64bit : ( After installed Aptana onto my Eclipse as a plugins, launching Eclipse (now with Aptana) splat me on the face with &#8220;Aptana requires Sun JRE 1.5 or greater to work properly.&#8221; But I&#8217;ve already [...]]]></description>
			<content:encoded><![CDATA[<p>Installing Aptana in Ubuntu 64bit is no fun, every other distribution has its standalone package, but not on Ubuntu 64bit : (</p>
<p>After installed Aptana onto my Eclipse as a plugins, launching Eclipse (now with Aptana) splat me on the face with &#8220;<span style="color:red;">Aptana requires Sun JRE 1.5 or greater to work properly.</span>&#8221;</p>
<p>But I&#8217;ve already had JRE 1.6! Some forumers says I need to update my JAVA_HOME and the symbolic link that points to the &#8220;real&#8221; JRE 1.6:</p>
<pre class="mono-block">
ubuntu:~$ sudo update-alternatives --config java
ubuntu:~$ echo "export JAVA_HOME=/usr/lib/jvm/java-6-sun/jre" &gt;&gt; ~/.bashrc
</pre>
<p>Now there is a problem, the error is gone, only if I launch Eclipse from terminal, if I launched it from the &#8220;Main Menu&#8221;, the error about JRE comes back.</p>
<p>Until much later I found out that Eclipse support a flag -vm to specifically allow one to point to the VM they wish to use, I&#8217;ve added the line &#8220;<span style="color:green;">/usr/bin/eclipse -vm /usr/lib/jvm/java-6-sun/jre/bin/java</span>&#8221; as the command to execute.</p>
<p>So, I dont get it, why is $JAVA_HOME not set if eclipse is launch from the &#8220;Main Menu&#8221;?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/computing/29/aptana-in-ubuntu-64bit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My New Phone :)</title>
		<link>http://www.dreamcubes.com/b2/anything-else/02/my-new-phone/</link>
		<comments>http://www.dreamcubes.com/b2/anything-else/02/my-new-phone/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 18:43:12 +0000</pubDate>
		<dc:creator>merc</dc:creator>
				<category><![CDATA[Anything Else]]></category>

		<guid isPermaLink="false">http://www.dreamcubes.com/b2/?p=64</guid>
		<description><![CDATA[The I.T called me up today and asked me to pickup my new phone from them, its a SonyErricson P1i ! ^_^ I waited I got home, and un-box the package with my washed hand Swap in my SIM card, and plugged in its battery, viola, IT&#8217;s ALIVE~ After fiddling with it for a while, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dreamcubes.com/b2/wp-content/uploads/2008/10/20081002-p1i.jpg" rel="lightbox[64]"><img src="http://www.dreamcubes.com/b2/wp-content/uploads/2008/10/20081002-p1i.jpg" alt="" title="p1i" width="150" height="106" class="alignnone size-full wp-image-142" /></a><br />
The I.T called me up today and asked me to pickup my new phone from them, its a SonyErricson P1i ! ^_^ </p>
<p>I waited I got home, and un-box the package with my washed hand <img src='http://www.dreamcubes.com/b2/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Swap in my SIM card, and plugged in its battery, viola, IT&#8217;s ALIVE~ </p>
<p>After fiddling with it for a while, I realize that it could not connect to my home wifi, which seems odd, my colleague&#8217;s N95 connected to it without any fuss&#8230; </p>
<p>Another problem that I found, is that I can&#8217;t get my Motorola H700 bluetooth head set to pair with my new phone. </p>
<p>A quick browse for solution on the www, found that plenty of people has the exact same problem as I, it is not until I found the following articles that solve both my problem:</p>
<p>1. <a href="http://www.allaboutsymbian.com/forum/showthread.php?p=377216">Unable to connect wifi</a>: </p>
<blockquote><p>In most cases P1i connects to the network but the applications cannot access the web.</p>
<p>I had the same problem but the solution i found was to reduse the threshoud to 2346.</p>
<p>For this go to internet accounts /more/advanced and change RTS threshold to 2346 and powersave to OFF</p>
<p>now ur browser should be able to access the web.</p></blockquote>
<p>
2. <a href="http://forums.wirelessadvisor.com/motorola/54848-motorola-h700-question-not-entering-pairing.html">Unable to pair Motorola H700</a></p>
<blockquote><p>1. With the mic closed, press the call button and hold it for a few seconds.</p>
<p>2. When the purple (or lavender) light comes on, open immediately the mic while the light is on. After you do this, the light will flash two times and then will remain steadily lit (If the light die off after the boom was flip out, then maybe the connection of the boom is loose, so after you flip it out, FORCE it out a little further, that should make sure this steps work).</p>
<p>3. Your headset will be now in pairing mode.</p></blockquote>
<p>I must say that another thing that I&#8217;m actually shock is that it does not come with a &#8220;joy-stick&#8221; like my old K700i, although I&#8217;m expected that its a &#8220;PDA&#8221; phone after all.</p>
<p>Now that I&#8217;m happy, the keys are still something I need to get used to, qw-er-ty keyboard on a phone&#8230; hm&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreamcubes.com/b2/anything-else/02/my-new-phone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

