<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>BlogIT!</title>
	<atom:link href="http://workaholic.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://workaholic.wordpress.com</link>
	<description>IT BLOG HTTP://TWITTER.COM/WHOLICS SINCE 2009</description>
	<lastBuildDate>Wed, 30 Mar 2011 14:10:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='workaholic.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>BlogIT!</title>
		<link>http://workaholic.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://workaholic.wordpress.com/osd.xml" title="BlogIT!" />
	<atom:link rel='hub' href='http://workaholic.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Ruby (1): The simplest programming language yet</title>
		<link>http://workaholic.wordpress.com/2010/01/27/ruby-1-the-simplest-programming-language-yet/</link>
		<comments>http://workaholic.wordpress.com/2010/01/27/ruby-1-the-simplest-programming-language-yet/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 04:15:32 +0000</pubDate>
		<dc:creator>wholics</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://workaholic.wordpress.com/?p=44</guid>
		<description><![CDATA[If you have some experience on programming especially based on linux kind operating systems (Ubuntu, Mac OS X, so on.), you will find Ruby easy to get familiar with and very simple to use. This article is just for those who have some programming knowledge or experience such as Java, C#, VB.NET, C, C++ or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=44&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">If you have some experience on programming especially based on linux kind operating systems (Ubuntu, Mac OS X, so on.), you will find Ruby easy to get familiar with and very simple to use. This article is just for those who have some programming knowledge or experience such as Java, C#, VB.NET, C, C++ or even Objective-C, assuming that you are somewhat familiar with the concept of OOP and basic idea of programming language. Ruby is quite not the same as those legendary language like C or java. It is very interactive and simple. If you are using Mac OS X, you already have Ruby development environment. Most of linux OS also include any necessary development tools. &#8211; You can find further information on some other many websites that can be found by googling. (i.e. http://www.ruby-lang.org)</div>
<div id="_mcePaste">I will let you look up those websites for Ruby installation and set-ups. It is as simple as just typing a couple of lines on Terminal if you are on Linux-based-OS, or even you may not need to install in case it is already installed on your operating system.</div>
<div id="_mcePaste">Firstly, open a terminal and use &#8216;rib&#8217; commend to get into the Ruby interpreter. You may find it different from other IDE, in fact, this is not IDE at all. However, this is the easiest way to test your code or try out some code quickly.</div>
<div id="_mcePaste">Basic operators from other languages work almost the same way.</div>
<div id="_mcePaste">+ &#8211; / * (addition, subtraction, multiplication, division)</div>
<div id="_mcePaste">** (exponent)</div>
<div id="_mcePaste">% (remainder)</div>
<div id="_mcePaste">#null type is called &#8220;nil&#8221; in Ruby.</div>
<div id="_mcePaste">There are some basic classes that are useful to know.</div>
<div id="_mcePaste">Integer &#8211; integer type</div>
<div id="_mcePaste">methods: +, -, /, *, %, **, to_s, to_f</div>
<div id="_mcePaste">Float &#8211; float type (decimal)</div>
<div id="_mcePaste">methods: +, -, /, *, %, **, to_s, to_i</div>
<div id="_mcePaste">String &#8211; text type</div>
<div id="_mcePaste">methods: capitalise, reverse, length, upcase, to_i, to_f</div>
<div id="_mcePaste">To use method with a class, it is simple as the following.</div>
<div id="_mcePaste">&#8220;hello&#8221;.capitalize</div>
<div id="_mcePaste">=&gt; &#8220;Hello&#8221;</div>
<div id="_mcePaste">(This is &#8220;hello&#8221; object of String class and the object used &#8216;captalize&#8217; method like putting &#8216;.methodName&#8217; in front of the class object.</div>
<div id="_mcePaste">*To know more about methods of some classes, just use &#8216;ri&#8217; commend on Terminal window.</div>
<p>If you have some experience on programming especially based on linux kind operating systems (Ubuntu, Mac OS X, so on.), you will find Ruby easy to get familiar with and very simple to use. This article is just for those who have some programming knowledge or experience such as Java, C#, VB.NET, C, C++ or even Objective-C, assuming that you are somewhat familiar with the concept of OOP and basic idea of programming language. Ruby is quite not the same as those legendary language like C or java. It is very interactive and simple. If you are using Mac OS X, you already have Ruby development environment. Most of linux OS also include any necessary development tools. &#8211; You can find further information on some other many websites that can be found by googling. (i.e. http://www.ruby-lang.org)I will let you look up those websites for Ruby installation and set-ups. It is as simple as just typing a couple of lines on Terminal if you are on Linux-based-OS, or even you may not need to install in case it is already installed on your operating system. Firstly, open a terminal and use &#8216;rib&#8217; commend to get into the Ruby interpreter. You may find it different from other IDE, in fact, this is not IDE at all. However, this is the easiest way to test your code or try out some code quickly.<br />
Basic operators from other languages work almost the same way. + &#8211; / * (addition, subtraction, multiplication, division)** (exponent)% (remainder)<br />
#null type is called &#8220;nil&#8221; in Ruby.<br />
There are some basic classes that are useful to know. Integer &#8211; integer type  methods: +, -, /, *, %, **, to_s, to_fFloat &#8211; float type (decimal) methods: +, -, /, *, %, **, to_s, to_iString &#8211; text type methods: capitalise, reverse, length, upcase, to_i, to_f<br />
To use method with a class, it is simple as the following. &#8221;hello&#8221;.capitalize=&gt; &#8220;Hello&#8221;(This is &#8220;hello&#8221; object of String class and the object used &#8216;captalize&#8217; method like putting &#8216;.methodName&#8217; in front of the class object.*To know more about methods of some classes, just use &#8216;ri&#8217; commend on Terminal window.</p>
<p>** For more basic and detailed information, please refer to the website http://www.ruby-lang.org/en/</p>
<p>(There are some tutorials for beginners)</p>
<p>&#8211; coming up next: your own methods and classes</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/workaholic.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/workaholic.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/workaholic.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/workaholic.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/workaholic.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/workaholic.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/workaholic.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/workaholic.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/workaholic.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/workaholic.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/workaholic.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/workaholic.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/workaholic.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/workaholic.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=44&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://workaholic.wordpress.com/2010/01/27/ruby-1-the-simplest-programming-language-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be995b65dd65da5be03be31832ca11eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wholics</media:title>
		</media:content>
	</item>
		<item>
		<title>C# Polymorphism</title>
		<link>http://workaholic.wordpress.com/2010/01/25/c-polymorphism/</link>
		<comments>http://workaholic.wordpress.com/2010/01/25/c-polymorphism/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 09:54:37 +0000</pubDate>
		<dc:creator>wholics</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[OOP]]></category>

		<guid isPermaLink="false">http://workaholic.wordpress.com/?p=41</guid>
		<description><![CDATA[Ok, this is very basic stuff (i mean concept.:D ) but also important. Polymorphism provides a way for a subclass (child class) to define its own version of a method defined by its base class (parent class). This is called &#8220;method overriding&#8221; and is very common concept in OOP (Object Oriented Programming) such as Java. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=41&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ok, this is very basic stuff (i mean concept.:D ) but also important. Polymorphism provides a way for a subclass (child class) to define its own version of a method defined by its base class (parent class). This is called &#8220;method overriding&#8221; and is very common concept in OOP (Object Oriented Programming) such as Java.</p>
<p>Let&#8217;s see how this concept works within C#. To re-build your current design, you need to understand the modifiers; <em>virtual</em> and <em>override</em> keywords, and their meanings. Overriding methods in C# is a bit different from doing so in Java, however, the main concept of it remains the same.</p>
<p>If a super class (base class) wishes to define a method that may be (or may be not) overridden by a subclass, it must mark the method with the <em>virtual</em> keyword. These methods with the <em>virtual</em> keyword are called <strong>virtual methods</strong>.</p>
<blockquote><p>public class ClassName</p>
<p>{</p>
<p>// This method can be overridden by a derived class.</p>
<p>public <em>virtual</em> void VirtualMethodName(int paraInt)</p>
<p>{</p>
<p>&#8230;</p>
<p>}</p>
<p>}</p></blockquote>
<p>The same rule is applied to a subclass. When a subclass wishes to change the implementation details of a virtual method, it does so using the override keyword.</p>
<blockquote><p>class Subclass : SuperClass</p>
<p>{</p>
<p>&#8230;</p>
<p>public <em>override</em> void Method1(int intV)</p>
<p>{</p>
<p>&#8230;.</p>
<p>base.Method1(10);</p>
<p>}</p>
<p>&#8230;.</p>
<p>}</p></blockquote>
<p>Unlike Java, you can leverage the default behavior using the <em>base</em> keyword. In this way (the same as the Java overriding concept, but for those who are new OOP with C#), there is no need to completely re-implement the logic behind Method1(), but can reuse and extend the default behavior of the parent class.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/workaholic.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/workaholic.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/workaholic.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/workaholic.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/workaholic.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/workaholic.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/workaholic.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/workaholic.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/workaholic.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/workaholic.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/workaholic.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/workaholic.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/workaholic.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/workaholic.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=41&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://workaholic.wordpress.com/2010/01/25/c-polymorphism/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be995b65dd65da5be03be31832ca11eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wholics</media:title>
		</media:content>
	</item>
		<item>
		<title>Mac OS X 6 : Snow Leopard</title>
		<link>http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/</link>
		<comments>http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 15:50:59 +0000</pubDate>
		<dc:creator>wholics</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://workaholic.wordpress.com/?p=29</guid>
		<description><![CDATA[Snow Leopard was released by 28th Aug 2009. I have pre-ordered it a couple of days ago, and it was shipped 27th and arrived on 28th. The package was simple with nice Leopard picture on the front cover. Here is the Installation screen, And also Utilities for restoring after installation of the new OS X. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=29&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Snow Leopard was released by 28th Aug 2009. I have pre-ordered it a couple of days ago, and it was shipped 27th and arrived on 28th. The package was simple with nice Leopard picture on the front cover.</p>

<a href='http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/screen-shot-2009-08-29-at-12-48-05-am/' title='OS X 6 Installation folder'><img width="150" height="129" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-05-am.png?w=150&#038;h=129" class="attachment-thumbnail" alt="OS X 6 Installation folder" title="OS X 6 Installation folder" /></a>
<a href='http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/screen-shot-2009-08-29-at-12-48-44-am/' title='Install Mac OS X'><img width="150" height="119" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-44-am.png?w=150&#038;h=119" class="attachment-thumbnail" alt="Install Mac OS X" title="Install Mac OS X" /></a>
<a href='http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/screen-shot-2009-08-29-at-12-49-00-am/' title='Mac OS X Utilities'><img width="150" height="119" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-49-00-am.png?w=150&#038;h=119" class="attachment-thumbnail" alt="Mac OS X Utilities" title="Mac OS X Utilities" /></a>
<a href='http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/screen-shot-2009-08-29-at-12-49-19-am/' title='Xcode 3.2 for Mac OS X 10.6 Snow Leopard'><img width="150" height="111" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-49-19-am.png?w=150&#038;h=111" class="attachment-thumbnail" alt="Xcode 3.2 for Mac OS X 10.6 Snow Leopard" title="Xcode 3.2 for Mac OS X 10.6 Snow Leopard" /></a>
<a href='http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/screen-shot-2009-08-29-at-12-48-09-am/' title='Xcode 3.2 packages'><img width="150" height="52" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-09-am.png?w=150&#038;h=52" class="attachment-thumbnail" alt="Xcode 3.2 packages" title="Xcode 3.2 packages" /></a>
<a href='http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/img_0387/' title='Snow Leopard DVD : Front'><img width="150" height="112" src="http://workaholic.files.wordpress.com/2009/08/img_0387.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Snow Leopard DVD : Front" title="Snow Leopard DVD : Front" /></a>
<a href='http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/img_0388/' title='Snow Leopard'><img width="150" height="112" src="http://workaholic.files.wordpress.com/2009/08/img_0388.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="Snow Leopard" title="Snow Leopard" /></a>

<p>Here is the Installation screen,</p>
<div id="attachment_33" class="wp-caption alignnone" style="width: 510px"><a href="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-05-am.png"><img class="size-full wp-image-33" title="OS X 6 Installation folder" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-05-am.png?w=500&#038;h=431" alt="OS X 6 Installation folder" width="500" height="431" /></a><p class="wp-caption-text">OS X 6 Installation folder</p></div>
<div id="attachment_34" class="wp-caption alignnone" style="width: 510px"><a href="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-44-am.png"><img class="size-full wp-image-34" title="Install Mac OS X" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-44-am.png?w=500&#038;h=398" alt="Install Mac OS X" width="500" height="398" /></a><p class="wp-caption-text">Install Mac OS X</p></div>
<p>And also Utilities for restoring after installation of the new OS X.</p>
<div id="attachment_35" class="wp-caption alignnone" style="width: 510px"><a href="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-49-00-am.png"><img class="size-full wp-image-35" title="Mac OS X Utilities" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-49-00-am.png?w=500&#038;h=398" alt="Mac OS X Utilities" width="500" height="398" /></a><p class="wp-caption-text">Mac OS X Utilities</p></div>
<p>The DVD has a full OS installation package, NOT just upgrade kit. This is pretty good bargain with $29 of price. Apple&#8217;s price policy has been a bit high, however, not for this time, not for this one. lol</p>
<p>Snow Leopard package DVD also contains Xcode 3.2 for Snow Leopard which has up-to-date version of the developer packages. You can simply install Xcode 3.2 after installed snow leopard.</p>
<div id="attachment_37" class="wp-caption alignnone" style="width: 510px"><a href="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-09-am.png"><img class="size-full wp-image-37" title="Xcode 3.2 packages" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-09-am.png?w=500&#038;h=176" alt="Xcode 3.2 packages" width="500" height="176" /></a><p class="wp-caption-text">Xcode 3.2 packages</p></div>
<div id="attachment_36" class="wp-caption alignnone" style="width: 510px"><a href="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-49-19-am.png"><img class="size-full wp-image-36" title="Xcode 3.2 for Mac OS X 10.6 Snow Leopard" src="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-49-19-am.png?w=500&#038;h=371" alt="Xcode 3.2 for Mac OS X 10.6 Snow Leopard" width="500" height="371" /></a><p class="wp-caption-text">Xcode 3.2 for Mac OS X 10.6 Snow Leopard</p></div>
<p>After upgrade OS X 5 to 6 Snow Leopard, the hard drive became about 10GB more space. It is approximately measured since I had to clean up some applications and files before upgrade it but not so sure how much I had got rid of them. Anyway, after some time playing around with Snow leopard, the speed of running or moving around was felt bit faster and much smoother.</p>
<p>Feature that most interests me about Snow Leopard: iCal, Email and Address Book MS Exchange support. Not only for MS Exchange but also other CalDAV and Gmail on iCal. This makes me use the default apps more often and efficiently. By using these you can almost make Mobile Me iPhone Sync for iCal, Address Book and Mail, if you do not want to spend 100 bucks a year, although I like Mobile Me service.</p>
<p>Just in case you have not heard about Snow Leopard (OMG!). Snow Leopard is not a major OS upgrade or significantly new version of OS. Probably not like upgrading from windows XP to Windows Vista or 7 I guess. But definitely improved performance and enhanced other features on Leopard (OS X 10.5.x).</p>
<p>I know it is too early to say anything about pros and cons about Snow Leopard, but it is getting quite interesting and I would also like to know about others getting Apple&#8217;s upgraded OS X, Snow Leopard.</p>
<p>&#8211;Updated on 29 Aug 2009 1:50 am&#8211;</p>
<p>I forgot to mention about some other good features, firstly Expose has got better on performance and also interface. The old version of Expose was bit cumbersome and hassle prone to use but now it is much easier to navigate and notice apps through.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/workaholic.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/workaholic.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/workaholic.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/workaholic.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/workaholic.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/workaholic.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/workaholic.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/workaholic.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/workaholic.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/workaholic.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/workaholic.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/workaholic.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/workaholic.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/workaholic.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=29&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://workaholic.wordpress.com/2009/08/29/mac-os-x-6-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be995b65dd65da5be03be31832ca11eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wholics</media:title>
		</media:content>

		<media:content url="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-05-am.png" medium="image">
			<media:title type="html">OS X 6 Installation folder</media:title>
		</media:content>

		<media:content url="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-44-am.png" medium="image">
			<media:title type="html">Install Mac OS X</media:title>
		</media:content>

		<media:content url="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-49-00-am.png" medium="image">
			<media:title type="html">Mac OS X Utilities</media:title>
		</media:content>

		<media:content url="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-48-09-am.png" medium="image">
			<media:title type="html">Xcode 3.2 packages</media:title>
		</media:content>

		<media:content url="http://workaholic.files.wordpress.com/2009/08/screen-shot-2009-08-29-at-12-49-19-am.png" medium="image">
			<media:title type="html">Xcode 3.2 for Mac OS X 10.6 Snow Leopard</media:title>
		</media:content>
	</item>
		<item>
		<title>Logitech Bluetooth Mouse V470 review</title>
		<link>http://workaholic.wordpress.com/2009/07/10/logitech-bluetooth-mouse-v470-review/</link>
		<comments>http://workaholic.wordpress.com/2009/07/10/logitech-bluetooth-mouse-v470-review/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 07:06:56 +0000</pubDate>
		<dc:creator>wholics</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Bluetooth mouse]]></category>
		<category><![CDATA[Logitech]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://workaholic.wordpress.com/?p=18</guid>
		<description><![CDATA[I am sure that all of those people who use a laptop or even desktop computers have an experience using USB connection for those devices such as Keyboard or Mouse. No one enjoys to get hustled when using those accessories including a mouse. So today I would like to bring the review about one of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=18&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-19" title="logitech-v470-white-mighty-mouse" src="http://workaholic.files.wordpress.com/2009/07/logitech-v470-white-mighty-mouse.jpg?w=400&#038;h=400" alt="logitech-v470-white-mighty-mouse" width="400" height="400" /></p>
<p>I am sure that all of those people who use a laptop or even desktop computers have an experience using USB connection for those devices such as Keyboard or Mouse. No one enjoys to get hustled when using those accessories including a mouse. So today I would like to bring the review about one of those Bluetooth Mice, Logitech V470. It has taken my attention when I was trying to get rid of my wired mouse(Microsoft Laptop mini mouse) and looking for something that can give not only better portability but also greater usability. This device has a number of features that impress me over other mice with rather cheaper price.</p>
<p>1. Bluetooth connectivity</p>
<p>This device works with Mac or Windows PCs. The experiences I had previously with other bluetooth mice were not so good at finding devices and connecting with host computer, however, this one gives a best connectivity yet. Especially even the Mac OS has not been loaded yet the mouse works as good as  just like a normal wired mouse.</p>
<p>2. Design</p>
<p>It comes with three different colors as I am aware of; White, Black and Blue. Well blue looks great on the picture but I have chosen white since white suits more for Mac computer and it is simple and nice. It shows the Logitech designer&#8217;s effort for this mouse to make the product better and convenience. I personally just like this mouse.</p>
<p>3. Battery</p>
<p>It comes with two AA batteries. Again, it is not a miss-typing or anything. It works with two AA batteries not AAA batteries. Therefore it works longer and easier to replace the batteries since AA batteries are more commonly used around everywhere than AAA. Well, it sounds like the mouse must be bigger and ugly just because it uses AA bigger batteries, however, it is just the size for laptop-use and comfortable size for your hand.</p>
<p>4. Laser technology</p>
<p>It has laser precision technology rather optical controllers which makes this mouse great at performance and better than normal optical mice. You wouldn&#8217;t feel any difference between this mouse and a regular wired mouse.</p>
<p>5. Price</p>
<p>Even though these great features come with this mouse, the price of it is considerably cheap. The price varies depending on your country but it would be somewhere around AU$99. It also comes with 1~3 year warranty (differs upon the countries), so here you go.</p>
<p>To sum up, this is recommended if you are looking for a mouse with good accessibility, portability, usability and fairly cheap price. This is also good for those who wants a bluetooth mouse with great performance.</p>
<p><img class="alignnone size-full wp-image-20" title="bluetooth Logitech mouse Blue V470" src="http://workaholic.files.wordpress.com/2009/07/3186.jpg?w=400&#038;h=350" alt="bluetooth Logitech mouse Blue V470" width="400" height="350" /></p>
<p>Below is the general features and specifications from Logitech.</p>
<h4 style="font-weight:bold;font-size:1.08em;margin:0;padding:0 0 .1em;">Control</h4>
<ul style="list-style-type:square;list-style-position:initial;list-style-image:initial;margin:10px 0 0 15px;padding:0 0 10px;">
<li><strong>Laser precision</strong>: Outperforms optical mice. Laser technology delivers smoother cursor control on virtually any surface.*</li>
<li><strong>Side-to-Side Scrolling Plus Zoom</strong>**: Perfect for viewing digital photos and spreadsheets. Instantly zoom in and out. Scroll horizontally or vertically.</li>
</ul>
<h4 style="font-weight:bold;font-size:1.08em;margin:0;padding:0 0 .1em;">System Requirements</h4>
<h5 style="font-weight:bold;font-size:1em;margin:5px 0;padding:0 0 .1em;">PC</h5>
<ul style="list-style-type:square;list-style-position:initial;list-style-image:initial;margin:5px 0 15px 15px;padding:0;">
<li>
<ul style="list-style-type:square;list-style-position:initial;list-style-image:initial;margin:5px 0 12px 15px;padding:0;">
<li>Windows® XP, Windows Vista™</li>
<li>Computer with Bluetooth® wireless technology</li>
<li>Broadcom/Widcomm Bluetooth® BTW 1.4.2.21 or later, Windows® XP SP2, or Windows® XP Professional x64 Edition</li>
<li>CD-ROM drive</li>
</ul>
</li>
</ul>
<h5 style="font-weight:bold;font-size:1em;margin:5px 0;padding:0 0 .1em;">Mac</h5>
<ul style="list-style-type:square;list-style-position:initial;list-style-image:initial;margin:5px 0 15px 15px;padding:0;">
<li>
<ul style="list-style-type:square;list-style-position:initial;list-style-image:initial;margin:5px 0 12px 15px;padding:0;">
<li>Mac OS® X (10.3.9 or later)</li>
<li>Computer with Bluetooth® wireless technology</li>
<li>CD-ROM drive</li>
</ul>
</li>
</ul>
<h4 style="font-weight:bold;font-size:1.08em;margin:0;padding:0 0 .1em;">Package Contents</h4>
<ul style="list-style-type:square;list-style-position:initial;list-style-image:initial;margin:5px 0 15px 15px;padding:0;">
<li>
<ul style="list-style-type:square;list-style-position:initial;list-style-image:initial;margin:5px 0 12px 15px;padding:0;">
<li>Logitech®  V470 Cordless Laser Mouse</li>
<li>Logitech®  SetPoint software CD</li>
<li>Protective pouch</li>
<li>Installation guide</li>
<li>2 AA batteries</li>
<li>3-year limited hardware warranty</li>
</ul>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/workaholic.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/workaholic.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/workaholic.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/workaholic.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/workaholic.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/workaholic.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/workaholic.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/workaholic.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/workaholic.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/workaholic.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/workaholic.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/workaholic.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/workaholic.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/workaholic.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=18&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://workaholic.wordpress.com/2009/07/10/logitech-bluetooth-mouse-v470-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be995b65dd65da5be03be31832ca11eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wholics</media:title>
		</media:content>

		<media:content url="http://workaholic.files.wordpress.com/2009/07/logitech-v470-white-mighty-mouse.jpg" medium="image">
			<media:title type="html">logitech-v470-white-mighty-mouse</media:title>
		</media:content>

		<media:content url="http://workaholic.files.wordpress.com/2009/07/3186.jpg" medium="image">
			<media:title type="html">bluetooth Logitech mouse Blue V470</media:title>
		</media:content>
	</item>
		<item>
		<title>VMWare Fusion 2 for Mac</title>
		<link>http://workaholic.wordpress.com/2009/07/08/15/</link>
		<comments>http://workaholic.wordpress.com/2009/07/08/15/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 04:37:43 +0000</pubDate>
		<dc:creator>wholics</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Virtual Machine]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://workaholic.wordpress.com/?p=15</guid>
		<description><![CDATA[I have purchased VMWare Fusion 2 for Mac after playing around the trial version of it. I have both Mac and PC so there was no interest in this application until I have come up with trying it. &#8211; Just for those who are not familiar with the term, VMWare is one of those applications [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=15&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#000000;">I have purchased VMWare Fusion 2 for Mac after playing around the trial version of it. I have both Mac and PC so there was no interest in this application until I have come up with trying it.</span></p>
<p><span style="color:#000000;">&#8211; Just for those who are not familiar with the term, VMWare is one of those applications that gives a particular OS an ability to launch different kinds of OSs within the machine, which is what we calls Virtual Machine. For example, VMWare Fusion 2 is for Mac OS to run Windows XP, Vista, or Linux OSs on Mac OS. &#8211;</span></p>
<div><span style="font-family:'Trebuchet MS', Trebuchet, Verdana, sans-serif;color:#cccccc;"><span style="line-height:20px;"><span style="color:#000000;">Anyway, my impression using this application on my MacBook was just great. I was not really expecting from one of those applications for virtual machines as I have used some of them already and quite disappointed. However, this application works smoothly with my machine and it really gives virtual real. The application I have installed on my Mac was Windows 7 RC which officially not specified and verified to use within the VMWare as I am aware of, however, the OS seems just great and smooth as a single windows PC running Windows 7. If I put the virtual machine on full screen mode then it is so confusing whether it is running mac or windows 7 originally. After a couple of days playing around I have purchased and am so satisfied with this great program. You can also download VMWare Fusion 2 for Mac on the VMWare website (</span><a style="text-decoration:none;" href="http://tinyurl.com/2tkz8p"><span style="color:#0000ff;">http://tinyurl.com/2tkz8p</span></a><span style="color:#000000;">) as 30-day-trial. Once the trial period is finished, you do not have to uninstall if you want to keep using it. Just type the registration number once you have purchased. If you are using Mac, I assume that you are either using the application or about to use this application! it is great.</span></span></span></div>
<div><span style="font-family:'Trebuchet MS', Trebuchet, Verdana, sans-serif;color:#cccccc;"><span style="line-height:20px;"><img class="alignleft size-medium wp-image-14" title="scshot_windows7OSX" src="http://workaholic.files.wordpress.com/2009/07/scshot_windows7osx1.png?w=300&#038;h=187" alt="scshot_windows7OSX" width="300" height="187" /><br />
</span></span></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/workaholic.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/workaholic.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/workaholic.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/workaholic.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/workaholic.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/workaholic.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/workaholic.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/workaholic.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/workaholic.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/workaholic.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/workaholic.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/workaholic.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/workaholic.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/workaholic.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=15&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://workaholic.wordpress.com/2009/07/08/15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be995b65dd65da5be03be31832ca11eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wholics</media:title>
		</media:content>

		<media:content url="http://workaholic.files.wordpress.com/2009/07/scshot_windows7osx1.png?w=300" medium="image">
			<media:title type="html">scshot_windows7OSX</media:title>
		</media:content>
	</item>
		<item>
		<title>Download Sega Columns Deluxe for free</title>
		<link>http://workaholic.wordpress.com/2009/07/04/10/</link>
		<comments>http://workaholic.wordpress.com/2009/07/04/10/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 12:29:56 +0000</pubDate>
		<dc:creator>wholics</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[sega]]></category>

		<guid isPermaLink="false">http://workaholic.wordpress.com/?p=10</guid>
		<description><![CDATA[Download Sega Columns deluxe for free (only limited time) Good news! If here&#8217;s anyone who likes Sega games then this is your chance to get one of the Sega games for free. Sega Columns Deluxe download You can download it just by clicking the line above, the link will redirect you to iTunes App store [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=10&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="font:normal normal normal 12px/normal Helvetica;margin:0;">Download Sega Columns deluxe for free (only limited time)</p>
<p style="font:normal normal normal 12px/normal Helvetica;min-height:14px;margin:0;">
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;">Good news! If here&#8217;s anyone who likes Sega games then this is your chance to get one of the Sega games for free.</p>
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;">
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;"><img class="alignnone" src="http://1.bp.blogspot.com/_wMiw7ql1rt0/Sk9dvfWGQLI/AAAAAAAABIM/p-z4FkHOMv8/s320/Picture+1.png" alt="" width="320" height="319" /></p>
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;">
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;"><span style="font-family:Helvetica, Trebuchet, Verdana, sans-serif;"><span style="font-size:small;"><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284694625&amp;mt=8" target="_blank">Sega Columns Deluxe download</a></span></span></p>
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;">
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;"><span style="font-family:Helvetica, Trebuchet, Verdana, sans-serif;"><span style="font-size:x-small;"><span style="font-size:small;"><span style="font-size:small;">You can download it just by clicking the line above, the link will redirect you to iTunes App store automatically. This promotion is from 4th July 2009 during the weekends (US).</span></span></span></span></p>
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;">
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;"><span style="font-family:Helvetica, Trebuchet, Verdana, sans-serif;"><span style="font-size:x-small;"><span style="font-size:small;"><span style="font-size:small;"><img class="alignnone" src="http://3.bp.blogspot.com/_wMiw7ql1rt0/Sk9c_glTeQI/AAAAAAAABH8/3uMVfkWa4WM/s320/Picture+3.png" alt="" width="266" height="320" /></span></span></span></span></p>
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;">
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;"><span style="font-family:Helvetica, Trebuchet, Verdana, sans-serif;"><span style="font-size:x-small;"><span style="font-size:small;"><span style="font-size:small;"><span style="font-size:small;">Enjoy it!!</span></span></span></span></span></p>
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;">
<p style="font:normal normal normal 12px/normal Helvetica;margin:0;"><span style="font-family:Helvetica, Trebuchet, Verdana, sans-serif;"><span style="font-size:x-small;"><span style="font-size:small;"><span style="font-size:small;"><span style="font-size:small;"><br />
</span></span></span></span></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/workaholic.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/workaholic.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/workaholic.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/workaholic.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/workaholic.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/workaholic.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/workaholic.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/workaholic.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/workaholic.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/workaholic.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/workaholic.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/workaholic.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/workaholic.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/workaholic.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=10&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://workaholic.wordpress.com/2009/07/04/10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be995b65dd65da5be03be31832ca11eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wholics</media:title>
		</media:content>

		<media:content url="http://1.bp.blogspot.com/_wMiw7ql1rt0/Sk9dvfWGQLI/AAAAAAAABIM/p-z4FkHOMv8/s320/Picture+1.png" medium="image" />

		<media:content url="http://3.bp.blogspot.com/_wMiw7ql1rt0/Sk9c_glTeQI/AAAAAAAABH8/3uMVfkWa4WM/s320/Picture+3.png" medium="image" />
	</item>
		<item>
		<title>Three reasons I like about iPhone</title>
		<link>http://workaholic.wordpress.com/2009/07/04/three-reasons-i-like-about-iphone/</link>
		<comments>http://workaholic.wordpress.com/2009/07/04/three-reasons-i-like-about-iphone/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 04:25:29 +0000</pubDate>
		<dc:creator>wholics</dc:creator>
				<category><![CDATA[Blank]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://workaholic.wordpress.com/?p=7</guid>
		<description><![CDATA[I have been using iPhone 3G since this year (2009). However I wasn&#8217;t the one who worships Apple or its products until I happened to use iPhone. Actually I was a kind of person who does not even care about what Apple does or whatsoever. A couple of weeks after using iPhone, it changed my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=7&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-8" title="iPhone screenshot" src="http://workaholic.files.wordpress.com/2009/07/img_0002.png?w=320&#038;h=480" alt="iPhone screenshot" width="320" height="480" />I have been using iPhone 3G since this year (2009). However I wasn&#8217;t the one who worships Apple or its products until I happened to use iPhone. Actually I was a kind of person who does not even care about what Apple does or whatsoever. A couple of weeks after using iPhone, it changed my life pattern in a such simple and easy way. I used to use a touch screen mobile phone or smart phones before, but iPhone was different. First of all, iPhone changed my view of using mobile devices. I have never thought I would be able to do most of things that iPhone can do such as web browsing as the same way as I do using my laptop. In addition, emails (not only particular email account but most of accounts that can be used in MS Outlook or Mozilla Thunderbird) are checked and downloaded without my attention. Secondly, it changed the way of doing things. I had to bring my iPod for music, mobile phone, dictionary for my English emergency, laptop for using internet and word processing etc., and small note for memo on the go. Now? With iPhone, I don&#8217;t need to bring any of them at all. All I need is my iPhone. That&#8217;s it. Even I can do more than I need with my iPhone. I can play games when I am waiting for the bus or sitting in subway. I can transfer my finance anytime anywhere as well as putting note about what I have spent for. Now I do things without limiting possibility. Finally, integrity between devices is really good if you are using other Apple products with iPhone. Indeed, Apple would love the fact that people want to use more Apple&#8217;s products, but think of what we get? Services. Using Mac and iPhone along with mobile me make our life simpler and easier to manage without hustles. I used a Windows Mobile 6 device with Windows Vista, of course. I found that using Windows Mobile 6 to sync with Microsoft product is cumbersome while a couple of mouse clicks makes it happen between iPhone and Mac. Alright, to be clear I am not an Apple worshiper or anything. But what I found and realized by using iPhone and MacBook or any other Apple products (AirPort Express; this is pretty good, Time Capsule; a bit of issues for some people, but otherwise great piece of work.) what is to make for customers. POSTED BY WORKAHOLIC AT 10:48 PM 0 COMMENTS LINKS TO THIS POST LABELS: APPLE, IPHONE, MICROSOFT, MOBILE, WINDOWS Subscribe to: Posts (Atom) BLOG ARCHIVE  ▼ 2009 (3) ▼ July (3) VMWare Fusion v2.0 for Mac Download Sega Columns deluxe for free (only limite&#8230; Three reasons I like about iPhone TAGS  Apple (2) iPhone (2) Application (1) Apps (1) Download (1) Mac (1) MacBook (1) Microsoft (1) Mobile (1) SEGA (1) VMWare fusion (1) Windows (1) SUBSCRIBEIT!     Posts    All Comments SEARCHIT!  	 powered by</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/workaholic.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/workaholic.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/workaholic.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/workaholic.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/workaholic.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/workaholic.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/workaholic.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/workaholic.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/workaholic.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/workaholic.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/workaholic.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/workaholic.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/workaholic.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/workaholic.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=workaholic.wordpress.com&amp;blog=702169&amp;post=7&amp;subd=workaholic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://workaholic.wordpress.com/2009/07/04/three-reasons-i-like-about-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be995b65dd65da5be03be31832ca11eb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">wholics</media:title>
		</media:content>

		<media:content url="http://workaholic.files.wordpress.com/2009/07/img_0002.png" medium="image">
			<media:title type="html">iPhone screenshot</media:title>
		</media:content>
	</item>
	</channel>
</rss>
