<?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>adventures of a blogjunkie</title>
	<atom:link href="http://blogjunkie.net/feed" rel="self" type="application/rss+xml" />
	<link>http://blogjunkie.net</link>
	<description>thoughts and ramblings of David Wang</description>
	<lastBuildDate>Mon, 30 Aug 2010 04:45:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Absolute basic Subversion for newbies with svnX</title>
		<link>http://blogjunkie.net/2010/08/absolute-basic-subversion-for-newbies-with-svnx?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=absolute-basic-subversion-for-newbies-with-svnx</link>
		<comments>http://blogjunkie.net/2010/08/absolute-basic-subversion-for-newbies-with-svnx#comments</comments>
		<pubDate>Sat, 28 Aug 2010 14:55:10 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[beginner's guide]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[svnX]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/?p=884</guid>
		<description><![CDATA[I&#8217;m not a programmer, but occasionally need to do programmer type things. One of these things is to use Subversion to keep collaborate on projects with other people. This is a tutorial on how to use Subversion on your Mac, for non-programmers like me. I&#8217;ll only cover the basics and what is absolutely necessary to...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not a programmer, but occasionally need to do programmer type things. One of these things is to use Subversion to keep collaborate on projects with other people. This is a tutorial on how to use <a href="http://subversion.tigris.org/">Subversion</a> on your Mac, for non-programmers like me. I&#8217;ll only cover the basics and what is absolutely necessary to get started with it. Ready? Let&#8217;s dive in.</p>
<h3>What is Subversion?</h3>
<p>So your latest project requires that you use Subversion (or SVN for short). What the heck is it? Subversion is a version control system that allows its users to <a href="http://en.wikipedia.org/wiki/Revision_control">keep track and manage changes to documents and files</a>. So for example, if you create a website and track it with Subversion, you will be able to keep track of different versions of your HTML, CSS and JavaScript files, and revert to earlier versions if you need to.</p>
<p>If it&#8217;s a team project, you can split the work with different people and work on the same files at the same time. So if there are 2 people making changes to style.css, you can merge the different copies with Subversion to create the latest version. Cool huh?</p>
<h3>Install Subversion and svnX</h3>
<p>To get started the first step is to install Subversion on your Mac. You can do that by downloading the latest Subversion binary from here:</p>
<p><a href="http://www.open.collab.net/downloads/community/">http://www.open.collab.net/downloads/community/</a></p>
<p>Next, download and install svnX. This is an open source (free) application that allows you to work with Subversion in a GUI, rather than from the Terminal or command line. Download the latest version of svnX from here:</p>
<p><a href="http://code.google.com/p/svnx/">http://code.google.com/p/svnx/</a></p>
<h3>Basic Subversion concepts with svnX</h3>
<p><em><strong>Repository a.k.a. repo</strong></em></p>
<p>A Subversion repository is the central place where all files are stored. This repo usually resides on a web server, or a computer in your intranet. The latest version of your project is always on the repo, so if you and your team mates&#8217; computers all crash the project will still be safe. In this tutorial, I&#8217;m assuming someone has already set up the repo for you.</p>
<p>Now you need to connect to the repo. Launch svnX and look for the Repositories window. If you don&#8217;t see it, press Shift+Command+R. Click the plus button to add a new repo. Fill in your SVN login details and click on the repo name to finish.<span id="more-884"></span></p>
<p><img class="alignnone size-full wp-image-885" title="01-repo-settings" src="http://blogjunkie.net/media/2010/08/01-repo-settings.jpg" alt="" width="500" height="338" /></p>
<p>Now double-click the repo name. If your login details are correct, a new window will appear and show you the contents of the repo. In the example below, my Demo Repository is still empty because it&#8217;s brand new.</p>
<div id="attachment_886" class="wp-caption alignnone" style="width: 496px"><a href="http://blogjunkie.net/media/2010/08/02-repo-blank.jpg"><img class="size-large wp-image-886" title="02-repo-blank" src="http://blogjunkie.net/media/2010/08/02-repo-blank-486x500.jpg" alt="" width="486" height="500" /></a><p class="wp-caption-text">Click for larger version</p></div>
<p><em><strong>Checking Out</strong></em></p>
<p>To start editing the project files, you need to download them from the repo to your computer. This is known as checking out the repo.</p>
<p><img class="alignnone size-large wp-image-887" title="03-checkout" src="http://blogjunkie.net/media/2010/08/03-checkout-500x360.jpg" alt="" width="500" height="360" /></p>
<p><em><strong>Working Copy</strong></em></p>
<p>When you checkout a repo, it gets downloaded onto your computer as a Working Copy. This is where you make your edits and changes. To checkout and create a Working Copy of the project, click the Checkout button in svnX and choose where you want to store the project files.</p>
<p>This will also automatically create an entry in svnX&#8217;s Working Copies window.</p>
<p><img class="alignnone size-large wp-image-888" title="04-local-working-copy" src="http://blogjunkie.net/media/2010/08/04-local-working-copy-500x338.jpg" alt="" width="500" height="338" /></p>
<p><em><strong>Updating your Working Copy</strong></em></p>
<p>Updating your Working Copy syncs your local files to the repo and ensures that it is at the latest version. Remember to update often so that you are working on the latest version of the project files.</p>
<p><em><strong>Adding files to SVN</strong></em></p>
<p>If you want a file to be tracked by Subversion, you must first add it to the repo. Let&#8217;s assume that I&#8217;ve created a file called <code>hello.txt</code> and added it into my local <code>working copy demo</code> folder. svnX will now see the file and highlight it in blue indicating that it has detected a new file. Select the file and click the Add button. <code>hello.txt</code> is now being tracked, but not yet uploaded to the repo.</p>
<p><img class="alignnone size-large wp-image-889" title="05-add-hellotxt" src="http://blogjunkie.net/media/2010/08/05-add-hellotxt-500x169.jpg" alt="" width="500" height="169" /></p>
<p><em><strong>Committing files and changes</strong></em></p>
<p>When you make changes to the project – either by adding new files or editing files – the changes have only taken place on your local files (Working Copy). To share this changes back to the central repo, you need to commit the files and changes.</p>
<p>Before committing, be sure to update to the latest version. svnX will then highlight new files that you&#8217;ve added and changes. Select the highlighted files and click Commit. A window will appear for you to enter a Commit Message. These are notes to explain the changes in this commit. Click Commit and svnX will send your changes up to the repo.</p>
<p><img class="alignnone size-full wp-image-890" title="06-commit-message" src="http://blogjunkie.net/media/2010/08/06-commit-message.jpg" alt="" width="494" height="294" /></p>
<p>If you open your repo window you will see the revision number, the date of the commit, the person who made the commit and the commit message. Now if my team members update their working copy, they will get <code>hello.txt</code>.</p>
<p><img class="alignnone size-large wp-image-893" title="07-repo-committed" src="http://blogjunkie.net/media/2010/08/07-repo-committed-500x149.jpg" alt="" width="500" height="149" /></p>
<p>All of us can work on <code>hello.txt</code> at the same time. When we commit our changes, Subversion will automatically merge them so that <code>hello.txt</code> in the repo will incorporate all the changes and always be the latest version.</p>
<p><em><strong>Ignore files</strong></em></p>
<p>Finally, you may want to ignore files in your Working Copy. Let&#8217;s say I create a file called <code>_reminders.txt</code> and I place it together with the other files in the Working Copy. svnX will show that there&#8217;s a new file and keep nagging you about it.</p>
<p><img class="alignnone size-large wp-image-891" title="07-ignore" src="http://blogjunkie.net/media/2010/08/07-ignore-500x184.jpg" alt="" width="500" height="184" /></p>
<p>Fortunately, you can tell Subversion to ignore the file. First, switch to the tree view. This will allow you to see the directory structure. Select the folder the file you want to ignore resides in. Since my <code>_reminders.txt</code> is located in the root of my Working Copy, I have to select the root folder, which is named &#8216;.&#8217; in svnX.</p>
<p>Next, click Properties and the property dialog will appear. From the dropdown, choos <code>svn:ignore</code> and type in the name of the file(s) you want to ignore in the space at the bottom. Finally click the plus sign. svnX will ask you to confirm that you want to ignore the files. Click OK and svnX will no longer track these files, and will not commit them to the repo.</p>
<div id="attachment_892" class="wp-caption alignnone" style="width: 510px"><a href="http://blogjunkie.net/media/2010/08/08-ignore-properties.jpg"><img class="size-large wp-image-892" title="08-ignore-properties" src="http://blogjunkie.net/media/2010/08/08-ignore-properties-500x417.jpg" alt="" width="500" height="417" /></a><p class="wp-caption-text">Click for larger version</p></div>
<p><em><strong>Now you try it</strong></em></p>
<p>The above should be enough for non-programmers to get started with Subversion. I hope that the tutorial was useful. Feel free to ask questions in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/08/absolute-basic-subversion-for-newbies-with-svnx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IOI Boulevard Parking Fail</title>
		<link>http://blogjunkie.net/2010/08/ioi-boulevard-parking-fail?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ioi-boulevard-parking-fail</link>
		<comments>http://blogjunkie.net/2010/08/ioi-boulevard-parking-fail#comments</comments>
		<pubDate>Mon, 23 Aug 2010 04:00:32 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Asides]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/?p=868</guid>
		<description><![CDATA[Pei Chyi had a bad experience at IOI Boulevard Puchong. Parking management #FAIL]]></description>
			<content:encoded><![CDATA[<p>Pei Chyi had a bad experience at <a href="http://peichyi.yummacious.net/2010/08/ioi-boulevard-parking-fail-inconvenienced-by-payment-system">IOI Boulevard Puchong</a>. Parking management #FAIL</p>
]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/08/ioi-boulevard-parking-fail/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[REVIEW] P1 W1MAX-1NSiDE 4G devices</title>
		<link>http://blogjunkie.net/2010/08/p1-wimax-inside-4g?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=p1-wimax-inside-4g</link>
		<comments>http://blogjunkie.net/2010/08/p1-wimax-inside-4g#comments</comments>
		<pubDate>Thu, 19 Aug 2010 03:38:48 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[P1]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[wimax]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/?p=849</guid>
		<description><![CDATA[Back in June, I was lucky enough to be invited to P1 and Intel&#8217;s launch of their embedded WiMAX devices at Sunway Lagoon Resort Hotel. The event, officially dubbed the Launch of Malaysia&#8217;s First WiMAX-Inside 4G laptops, felt more like a disco than media event. They dressed up the hotel&#8217;s ballroom and had 3 giant...]]></description>
			<content:encoded><![CDATA[<p>Back in June, I was lucky enough to be invited to P1 and Intel&#8217;s launch of their embedded WiMAX devices at Sunway Lagoon Resort Hotel. The event, officially dubbed the Launch of Malaysia&#8217;s First WiMAX-Inside 4G laptops, felt more like a disco than media event.</p>
<p><img class="aligncenter size-full wp-image-850" title="20100629 Intel P1W1max 4G laptop launch003" src="http://blogjunkie.net/media/2010/08/20100629-Intel-P1W1max-4G-laptop-launch003.jpg" alt="" width="500" height="312" /></p>
<p>They dressed up the hotel&#8217;s ballroom and had 3 giant laptops in the front, and there were slick, dressed-up hostesses with face paint who were taking pictures with guests.</p>
<p><img class="aligncenter size-medium wp-image-851" title="20100629 Intel P1W1max 4G laptop launch100" src="http://blogjunkie.net/media/2010/08/20100629-Intel-P1W1max-4G-laptop-launch100-300x300.jpg" alt="" width="300" height="300" /></p>
<p>The two pics above from TianChad.com &#8211; <a href="http://www.tianchad.com/2010/06/malaysias-first-wimax-inside-4g-laptops.html">see his post from the event</a>.</p>
<p>Why the face paint? Coz that was the campaign creative:</p>
<p><a href="http://www.wimaxinside.com.my"><img class="aligncenter size-medium wp-image-854" title="wimax-inside" src="http://blogjunkie.net/media/2010/08/wimax-inside-300x228.jpg" alt="" width="300" height="228" /></a></p>
<h3>P1 W1MAX-1NSiDE Review</h3>
<p>I was also lucky enough to get a Dell Inspiron Mini 10 which had the new embedded WiMAX chip to test out for 2 weeks. I don&#8217;t have any pictures of the device itself because the review is more of the WiMAX service (and also because the Dell still had the cling wrap on it).</p>
<p>So how is the performance of P1 WiMAX on the go? Here&#8217;s a speedtest I did from The Curve in Mutiara Damansara:</p>
<p><img class="alignnone size-full wp-image-852" title="886692031" src="http://blogjunkie.net/media/2010/08/886692031.png" alt="" width="300" height="135" /></p>
<p>I was impressed at the sustained download speed of nearly 2Mbps. It&#8217;s as good as my DSL Streamyx connection at home.</p>
<p>Here&#8217;s another one I did from Kota Kemuning (where I live):</p>
<p><img class="alignnone size-full wp-image-853" title="886870790-kk" src="http://blogjunkie.net/media/2010/08/886870790-kk.png" alt="" width="300" height="135" /></p>
<p>Holy frickin&#8217; crap!!! That&#8217;s a sustained download speed of more than 9Mbps. I&#8217;ve never seen that on any local broadband provider, so that really blew my socks off (No, I haven&#8217;t tested out Unifi yet) and live up to their claims that the service can achieve speeds of 10 Mbps.<span id="more-849"></span></p>
<p>Granted, the tests are to servers based in Malaysia but it&#8217;s still pretty impressive. Many of the popular sites that I visit with a decent CDN (Content Delivery Network) like Yahoo, YouTube and Facebook loaded really quickly.</p>
<h3>Who Needs W1MAX-1NSiDE?</h3>
<p>I&#8217;m not the target market for these embedded WiMAX devices. I work mainly from a single location (my home office) &#8211; plus, I&#8217;m a Mac <img src='http://blogjunkie.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>However, I think these WiMAX-inside netbooks and laptops are great if you</p>
<p><strong>1. Spend lots of time in cafes and on the go.</strong> If you mainly use your laptop on the go you&#8217;ll find that you&#8217;re pretty much tethered to places with WiFi. With WiMAX you don&#8217;t need to squeeze into crowded cafes and share the WiFi with everyone else. And on the occasion that you are out of WiMAX coverage, you can always fall back to WiFi since the devices are both WiMAX &amp; WiFi capable.</p>
<p><strong>2. You are a minimalist who likes to travel light.</strong> I prefer my MacBook but maybe you like something that is half the weight. And you don&#8217;t want to carry extra USB dongles to connect to 3G or WiMAX. These additional dongles also drain your battery faster, so another plus point for embedded WiMAX.</p>
<p><strong>3. You are sick of Streamyx</strong>. I have a pretty good Streamyx connection but it&#8217;s not very reliable. Just 2 days ago, I had problems connecting. Turns out, apparently someone stole TM&#8217;s cables.</p>
<ul></ul>
<p style="text-align: center;"><a href="http://twitter.com/blogjunkie/status/21389101488"><img class="size-large wp-image-855 aligncenter" title="streamyx-cables-cut" src="http://blogjunkie.net/media/2010/08/streamyx-cables-cut-500x207.jpg" alt="" width="500" height="207" /></a></p>
<h3>Where To Get W1MAX-1NSiDE</h3>
<p>If you want to find out more about these embedded WiMAX netbooks and laptops, head on over to <a href="http://www.wimaxinside.com.my">www.wimaxinside.com.my</a>.</p>
<p>On the site, you&#8217;ll find out details about the plans and the locations where you can buy the devices. They even have an <a href="http://wimaxinside.com.my/p1wimax1nside_plan.html">introductory promotion</a> where you get the first 3-6 months WiMAX subscription free and pay a discounted rate if you continue later.</p>
<h3>Finally&#8230;</h3>
<p><a title="Candles 'n' Cupcakes by SpecialKolin, on Flickr" href="http://www.flickr.com/photos/candelabrumdanse/4516648037/"><img src="http://farm3.static.flickr.com/2797/4516648037_6f2176ebd1.jpg" alt="Candles 'n' Cupcakes" width="500" height="333" /></a></p>
<p>Happy birthday P1! Packet One Networks turns 2 today. They&#8217;ve done a great job to push innovation and competition in the broadband industry. Thanks for inviting me to the launch and providing me the review unit, and I wish you all the best.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/08/p1-wimax-inside-4g/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[RANT] Why I stopped trusting Google</title>
		<link>http://blogjunkie.net/2010/08/why-i-stopped-trusting-google?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=why-i-stopped-trusting-google</link>
		<comments>http://blogjunkie.net/2010/08/why-i-stopped-trusting-google#comments</comments>
		<pubDate>Sat, 14 Aug 2010 04:55:42 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/?p=835</guid>
		<description><![CDATA[Lately I&#8217;ve been telling many of my friends to be very careful about Facebook because they don&#8217;t take our privacy seriously. This past week another company joins that list &#8211; Google. In addition to privacy, their business practices also make me highly suspicious of them. Google&#8217;s recent actions have made me stop trusting them. I...]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-836" title="Google Logo" src="http://blogjunkie.net/media/2010/08/google_logo-e1281761692632.jpg" alt="" width="450" height="200" /></p>
<p>Lately I&#8217;ve been telling many of my friends to be very careful about Facebook because they don&#8217;t take our privacy seriously. This past week another company joins that list &#8211; Google. In addition to privacy, their business practices also make me highly suspicious of them.</p>
<p>Google&#8217;s recent actions have made me stop trusting them. I admit, these are very geek reasons that many of my friends won&#8217;t understand, but they&#8217;ve made me seriously reconsider my relationship to Google and how much I should support them.</p>
<p>Here&#8217;s the short version. They&#8217;re a great company but they hide behind their unoficial motto of &#8220;Don&#8217;t be evil&#8221; when they are clearly happy to be a little evil. I hate it that they&#8217;re two-faced, because I can&#8217;t trust people that are two-faced.</p>
<p>So now, if you&#8217;ve got a little time to listen to me rant, here&#8217;s why I stopped trusting Google:</p>
<h3>Privacy</h3>
<h4>1. Google CEO Eric Schmidt dismisses privacy</h4>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/A6e7wfDHzew?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/A6e7wfDHzew?fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>&#8220;If you have something that you don&#8217;t want anyone to know, maybe you shouldn&#8217;t be doing it in the first place,&#8221; said Eric Schmidt.</p>
<p>After recently reading <a href="http://craphound.com/littlebrother/">Cory Doctorow&#8217;s Little Brother</a>, I&#8217;ve got a new appreciation of the importance of privacy and it makes me very concerned that the company that handles my email, calendar, search and more seems so unconcerned about privacy.<br />
<span id="more-835"></span></p>
<p>I highly encourage reading EFF&#8217;s editorial on this: <a href="http://www.eff.org/deeplinks/2009/12/google-ceo-eric-schmidt-dismisses-privacy">Google CEO Eric Schmidt Dismisses the Importance of Privacy</a>. Here&#8217;s a great quote:</p>
<blockquote><p>Google, governments, and technologists need to understand more broadly that ignoring privacy protections in the innovations we incorporate into our lives not only invites invasions of our personal space and comfort, but opens the door to future abuses of power.</p></blockquote>
<h4>2. So many privacy &#8220;blunders&#8221;.. maybe they&#8217;re intentional?</h4>
<p>Google does not have a good track record when it comes to handling our private information:</p>
<ul>
<li><a href="http://news.cnet.com/8301-31322_3-10451428-256.html">Molly Wood: Google Buzz privacy</a></li>
<li><a href="http://arstechnica.com/tech-policy/news/2010/03/google-keeps-your-data-to-learn-from-good-guys-fight-off-bad-guys.ars">Why Google keeps your data forever, tracks you with ads</a></li>
<li><a href="http://news.bbc.co.uk/2/hi/technology/8632517.stm">BBC: Google rapped over privacy by 10 nations<br />
</a></li>
</ul>
<p>In the last link, a watchdog group sent an open letter to Google. Here&#8217;s a quote from the letter:</p>
<blockquote><p>Launching a product in &#8216;beta&#8217; form is not a substitute for ensuring that new services comply with fair information principles before they are introduced</p></blockquote>
<h3>Business Practices</h3>
<p>Google was probably my 2nd favourite company after Apple. However, I began to lose my adoration of them once they started competing directly with Apple in the phone space.</p>
<h4>3. Google copies iPhone design</h4>
<p>Google announced their Android project a long time ago. At that time Eric Schmidt was a member of the Apple board. After Apple introduced the iPhone, <a href="http://tech.fortune.cnn.com/2010/07/09/larry-page-jobs-is-rewriting-history/">Google changed it&#8217;s direction for Android</a>.</p>
<blockquote><p>According to a former Apple employee, the day that the Apple-Google relationship started to crumble was the introduction of the T-Mobile G1.  According to him, Steve Jobs and Apple Mobile Software VP Scott Forstall had only seen Android prototypes that looked like Blackberries.  The new form factor was &#8220;way too similar to the iPhone for Jobs&#8217; tastes&#8221;.</p></blockquote>
<p>Sure, there&#8217;s no direct evidence of Google stealing Apple&#8217;s ideas, but I think it&#8217;s pretty obvious. Google has terrible design sense, and their phone OS suddenly gets lots of similar features to the iPhone. All the while, <a href="http://kara.allthingsd.com/20100521/viral-video-googles-laughable-but-not-funny-apple-tantrum/?mod=ATD_rss">they&#8217;re taking potshots at Apple</a>.</p>
<h4>4. Google sells internet users out under pretense of &#8216;better internet&#8217;</h4>
<p>Google and Verizon put together a proposal that they want the US Congress to ratify that would split the internet into the &#8220;public internet&#8221; and &#8220;better internets&#8221;. This would open the door to ISPs being able to charge you more money for premium content and services on the &#8220;better internets&#8221;.</p>
<p>On principle I hate the idea of a tiered internet. It should be open for everyone. But what really gets me is Google&#8217;s 180-degree turn of their stance on this tiered internet (net neutrality issue). Ars Technica put together a great <a href="http://arstechnica.com/telecom/news/2010/08/a-paper-trail-of-betrayal-googles-net-neutrality-collapse.ars">paper trail of betrayal: Google&#8217;s net neutrality collapse</a>.</p>
<p>Also read:</p>
<ul>
<li><a href="http://io9.com/5610328/how-the-googleverizon-proposal-could-kill-the-internet-in-5-years">How the Google/Verizon proposal could kill the internet in 5 years</a></li>
<li><a href="http://www.wired.com/epicenter/2010/08/why-google-became-a-carrier-humping-net-neutrality-surrender-monkey/">Why Google Became A Carrier-Humping, Net Neutrality Surrender Monkey</a></li>
</ul>
<h3>Stop Being Two-Faced</h3>
<p>Ultimately what I have come to realise is that Google is just a super two-faced company. Like MG Siegler says, &#8220;<a href="http://techcrunch.com/2010/08/13/google-net-neutrality/">Google, Just Cut The BS And Give The Gordon Gekko Speech Already</a>&#8220;. Seriously.</p>
<p>Google, you were one of the good guys (or at least so I thought). I don&#8217;t mind you wanting to make money. I <em>want</em> you to make money so you can continue providing us great products.</p>
<p>But please don&#8217;t pretend to be the goody-two-shoes with your &#8220;Don&#8217;t be evil&#8221; mantra and then turn around and stab us in the back later. Because when you do that, people who don&#8217;t know better fall into your trap, and along the way you spoil what&#8217;s important to geeks like me.</p>
<p>And that&#8217;s why I&#8217;m so disappointed, and I can&#8217;t trust Google any more.</p>
<p><ins datetime="2010-08-30T04:44:04+00:00">Update</ins>: Another article from TechCrunch that captures what I&#8217;m feeling: <a href="http://techcrunch.com/2010/08/21/google-anakin-verizon-dark-side/">Google Is Anakin, Verizon Is The Emperor, And The Dark Side Is Winning</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/08/why-i-stopped-trusting-google/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Zachary rolls over</title>
		<link>http://blogjunkie.net/2010/08/zachary-rolls-over?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=zachary-rolls-over</link>
		<comments>http://blogjunkie.net/2010/08/zachary-rolls-over#comments</comments>
		<pubDate>Sun, 01 Aug 2010 15:07:16 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[parenthood]]></category>
		<category><![CDATA[zachary]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/2010/08/zachary-rolls-over</guid>
		<description><![CDATA[Zack was exhausted after all the effort in rolling over You can&#8217;t imagine how proud Pei Chyi &#038; I are as parents]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/rzIJ6CriYFg&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed  src="http://www.youtube.com/v/rzIJ6CriYFg&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Zack was exhausted after all the effort in rolling over</p>
<p>You can&#8217;t imagine how proud Pei Chyi &#038; I are as parents <img src='http://blogjunkie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/08/zachary-rolls-over/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reading on the iPad: iBooks vs Kindle</title>
		<link>http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ipad-ebooks-ibooks-vs-kindle</link>
		<comments>http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle#comments</comments>
		<pubDate>Thu, 29 Jul 2010 10:05:23 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[iBooks]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/?p=762</guid>
		<description><![CDATA[So I&#8217;ve had my iPad for a little over a month now. By far the thing that I do the most on it is to read ebooks. In fact that was one of my main motivations of buying the iPad in the first place. In this past month, I&#8217;ve read at least 3 whole novels...]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-797" title="Kindle vs iBooks" src="http://blogjunkie.net/media/2010/07/p_1024_768_140AC23F-E9A1-435F-80C4-576CF08501F0-e1280473463200.jpeg" alt="" /></p>
<p>So I&#8217;ve had my iPad for a little over a month now. By far the thing that I do the most on it is to read ebooks. In fact that was one of my main motivations of buying the iPad in the first place. In this past month, I&#8217;ve read at least 3 whole novels on my iPad and this blog post aims to share my experience of using the iPad as an ebook reader.</p>
<p>Books on the iPad comes in many forms, from PDFs that you read with a PDF reader, to apps that only contain a single book, to library-style apps which allow you to download and manage entire book collections. The reading experience depends a lot on what you use to read the text of the book and my review is based on 2 library style apps – Apple&#8217;s iBooks app and Amazon&#8217;s Kindle app.</p>
<p>(Click on the images for larger versions)</p>
<div id="attachment_767" class="wp-caption alignleft" style="width: 190px"><a href="http://blogjunkie.net/media/2010/07/p_1024_768_C2A4F6C7-0F20-4F6D-8B17-826A21FF4508.jpeg"><img class="size-medium wp-image-767 " title="The iBooks bookshelf" src="http://blogjunkie.net/media/2010/07/p_1024_768_C2A4F6C7-0F20-4F6D-8B17-826A21FF4508-225x300.jpg" alt="" width="180" height="240" /></a><p class="wp-caption-text">iBooks</p></div>
<div id="attachment_764" class="wp-caption alignleft" style="width: 190px"><a href="http://blogjunkie.net/media/2010/07/p_1024_768_5F297E91-1B24-4B1D-AAF1-42FFA8BE7E43.jpeg"><img class="size-medium wp-image-764 " title="Kindle app bookshelf" src="http://blogjunkie.net/media/2010/07/p_1024_768_5F297E91-1B24-4B1D-AAF1-42FFA8BE7E43-225x300.jpg" alt="" width="180" height="240" /></a><p class="wp-caption-text">Kindle</p></div>
<p><span id="more-762"></span></p>
<h3 style="clear: both;">iBooks vs Kindle</h3>
<p>iBooks is a beautifully designed application which makes reading on the iPad a joy. The Kindle app is good enough. Both have some common features:</p>
<p>Automatic sync reading location and bookmarks across all devices that are reading the same book</p>
<ul>
<li>Multiple font sizes &amp; colours</li>
<li>Change screen brightness</li>
<li>Search</li>
<li>Table of contents &amp; bookmarks</li>
<li>Highlights &amp; notes</li>
</ul>
<p>Additional iBook features</p>
<ul>
<li>More fonts to choose from</li>
<li>Much better highlighting and notes feature</li>
<li>Pretty much a lot better looking</li>
</ul>
<p>Additional Kindle app features</p>
<ul>
<li>You can also read your Kindle books on other Kindle platforms – the Kindle reader itself, as well as PC or Mac, Android and Blackberry phones.</li>
<li>You can turn off the page flip (I feel that it&#8217;s a bit distracting).</li>
</ul>
<p>I prefer iBooks&#8217; reading experience over Kindle. In iBooks, the line-height and spacing are a lot better, and it has a helpful &#8216;X pages left in this chapter&#8217; at the bottom of the page. I can&#8217;t understand why the Kindle uses a gray background instead of white. If Kindle switches to a white background I would automatically like it twice as much.</p>
<h3>Where to Get Books</h3>
<p>Unfortunately, getting books into iBooks and Kindle is a bit tricky.</p>
<p><strong>iBooks &amp; iBookstore</strong></p>
<p>iBooks supports ePub and PDF books. ePub files can be copy protected &#8211; meaning you can&#8217;t email the files to your friends. ePub is also a popular ebook format that is supported by many online book stores. The bad news is that the iPad can only read copy-protected ePub files from the iBookstore. This isn&#8217;t Apple&#8217;s fault, it&#8217;s a feature that publishers require all ebook readers to have.</p>
<p>Luckily, there are places you can find ePub books that are not copy protected. <a href="http://manybooks.net/">Manybooks</a> is an example of a directory where you can find legal ePub books for free. I&#8217;ll let you figure out how to find illegal ePubs on your own <img src='http://blogjunkie.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Finally, iBooks also supports PDF. Unfortunately, PDFs don&#8217;t enjoy all the same features like a regular ePub. For example, you can&#8217;t take notes and resize the text.</p>
<p>If you download ePub or PDF books from the internet, you can easily transfer them to iBooks by importing them into iTunes and syncing with your iPad.</p>
<p><strong>Kindle &amp; Amazon</strong></p>
<p>Being an Amazon product, the Kindle mainly to help Amazon sell paper-less books, and thus Amazon is the main way to get books for the Kindle app. You simply go to Amazon, find the Kindle version of the book and click the &#8216;Buy now&#8217; button. Next, launch your Kindle and the newly purchased book will download into your iPad. Pretty magical. The other advantage is that the Kindle boasts the largest ebook library in the world.</p>
<p>The Kindle actually also supports other formats like PDF and copy protection-free ePub files. However, you&#8217;ll need to email these files to Amazon and pay them to convert it to Kindle format for you. Bummer. I haven&#8217;t tried this feature out myself &#8211; I&#8217;m not about to pay to get my book converted when I can read it in iBooks!</p>
<p>The difficult part is to create an Amazon account that has access to Kindle books. Amazon only has rights to sell ebooks in certain parts of the world, and Malaysia is not on that list. So if you want to use your Kindle, you need to convince Amazon that you are in a country where they can legally sell you ebooks. It&#8217;s a pretty complicated process, so I&#8217;m glad that I created my Amazon account long ago before these shenanigans. If you want to create an Amazon account today for use with Kindle, you&#8217;ll need to do a little research. Here are 2 articles that may be helpful:</p>
<ul>
<li><a href="http://forum.lowyat.net/topic/1053076">Lowyat forum post: How to use Amazon Kindle 2 in Malaysia, The What, the Where, the Hows</a></li>
<li><a href="http://www.michaelyung.com/blog/services-and-products/2009/03/21/buy-a-kindle-2-outside-us/">Michael Yung: Buy Kindle 2 from outside US</a></li>
</ul>
<h3>Conclusion</h3>
<p>Amazon&#8217;s Kindle Store beats Apple&#8217;s iBookstore hands down in terms of the breadth of the library. The Amazon website offers more browsing and rating features to help me decide which book to buy.</p>
<p>However, in terms of reading experience and the ease of transferring books to the iPad, iBooks comes out on top.</p>
<p>Personally I prefer reading with iBooks. If I can find an ePub or PDF that is not copy-protected I&#8217;ll read it in my iBooks. After all, you don&#8217;t buy <em>everything</em> you read right? With real books you can borrow from friends. If not, I&#8217;ll buy it from Amazon and put up with the bearable reading experience on Kindle. Hopefully the process of creating ePubs will become easier and more and more independent publishers will release their ebooks in ePub format.</p>
<p>I hope this review helped you in your research!</p>
<h3>Gallery</h3>

<a href='http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle/p_1024_768_5f297e91-1b24-4b1d-aaf1-42ffa8be7e43' title='Kindle app bookshelf'><img width="112" height="150" src="http://blogjunkie.net/media/2010/07/p_1024_768_5F297E91-1B24-4B1D-AAF1-42FFA8BE7E43-112x150.jpg" class="attachment-thumbnail" alt="Kindle app bookshelf" title="Kindle app bookshelf" /></a>
<a href='http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle/p_1024_768_58e09184-ac80-4b85-9298-a4cea08d72fb' title='Kindle app display options'><img width="112" height="150" src="http://blogjunkie.net/media/2010/07/p_1024_768_58E09184-AC80-4B85-9298-A4CEA08D72FB-112x150.jpg" class="attachment-thumbnail" alt="Kindle app display options" title="Kindle app display options" /></a>
<a href='http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle/p_1024_768_edae7ccd-74fd-4f1c-b805-9715f2d7be1c' title='Text on the Kindle app'><img width="112" height="150" src="http://blogjunkie.net/media/2010/07/p_1024_768_EDAE7CCD-74FD-4F1C-B805-9715F2D7BE1C-112x150.jpg" class="attachment-thumbnail" alt="Text on the Kindle app" title="Text on the Kindle app" /></a>
<a href='http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle/p_1024_768_c2a4f6c7-0f20-4f6d-8b17-826a21ff4508' title='The iBooks bookshelf'><img width="112" height="150" src="http://blogjunkie.net/media/2010/07/p_1024_768_C2A4F6C7-0F20-4F6D-8B17-826A21FF4508-112x150.jpg" class="attachment-thumbnail" alt="The iBooks bookshelf" title="The iBooks bookshelf" /></a>
<a href='http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle/p_1024_768_1b7bba20-e741-4319-824f-def8d78b2bce' title='Display options in iBooks'><img width="112" height="150" src="http://blogjunkie.net/media/2010/07/p_1024_768_1B7BBA20-E741-4319-824F-DEF8D78B2BCE-112x150.jpg" class="attachment-thumbnail" alt="Display options in iBooks" title="Display options in iBooks" /></a>
<a href='http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle/p_1024_768_52cce69a-dbd9-4ddd-9534-13f018cccdfb' title='Text on iBooks'><img width="112" height="150" src="http://blogjunkie.net/media/2010/07/p_1024_768_52CCE69A-DBD9-4DDD-9534-13F018CCCDFB-112x150.jpg" class="attachment-thumbnail" alt="Text on iBooks" title="Text on iBooks" /></a>
<a href='http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle/p_1024_768_95417c28-1b36-4265-aeee-72fafea68db4-jpeg' title='iBooks horizontal'><img width="150" height="112" src="http://blogjunkie.net/media/2010/07/p_1024_768_95417C28-1B36-4265-AEEE-72FAFEA68DB4-e1280473514720-150x112.jpg" class="attachment-thumbnail" alt="iBooks horizontal" title="iBooks horizontal" /></a>
<a href='http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle/p_1024_768_7caceff6-0306-4b5c-bde0-dc7953de3ba8-jpeg' title='PDF in iBooks'><img width="112" height="150" src="http://blogjunkie.net/media/2010/07/p_1024_768_7CACEFF6-0306-4B5C-BDE0-DC7953DE3BA8-112x150.jpg" class="attachment-thumbnail" alt="PDF in iBooks" title="PDF in iBooks" /></a>

]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/07/ipad-ebooks-ibooks-vs-kindle/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>I thought I got attacked by spammers but it was just my birthday</title>
		<link>http://blogjunkie.net/2010/07/i-thought-i-got-attacked-by-spammers-but-was-just-my-birthday?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=i-thought-i-got-attacked-by-spammers-but-was-just-my-birthday</link>
		<comments>http://blogjunkie.net/2010/07/i-thought-i-got-attacked-by-spammers-but-was-just-my-birthday#comments</comments>
		<pubDate>Thu, 22 Jul 2010 01:20:53 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/?p=750</guid>
		<description><![CDATA[Yesterday I turned 29. It was a fun day and I wanted to record this day for posterity. The day started off with my awesome wife Pei Chyi making me breakfast in bed. I honestly thought I was dreaming. She woke me and said, &#8220;I&#8217;ve got a surprise for you. But you can&#8217;t leave the...]]></description>
			<content:encoded><![CDATA[<p>Yesterday I turned 29. It was a fun day and I wanted to record this day for posterity. The day started off with my awesome wife Pei Chyi making me breakfast in bed.</p>
<p><img src="http://farm5.static.flickr.com/4139/4814482669_bd67a82b40.jpg" alt="Breakfast in Bed Birthday Edition" width="500" height="375" /></p>
<p>I honestly thought I was dreaming. She woke me and said, &#8220;I&#8217;ve got a surprise for you. But you can&#8217;t leave the bedroom.&#8221; And thus I enjoyed my 1st ever breakfast in bed.</p>
<p>This was followed up with an amazing lunch with chocolate fondue for dessert.</p>
<p><img src="http://farm5.static.flickr.com/4138/4815062250_3f7ea71519.jpg" alt="Birthday dessert" width="500" height="375" /></p>
<p>Mmm.. now you know why I&#8217;ve put on weight since getting married.</p>
<p>Pei Chyi took a day off for my birthday so we went out to run a few errands, and I got a back massage in Circle Art of Massage at The Curve. First time I tried them and I was pleased with the results. Don&#8217;t let the demure Chinese female masseuse fool you &#8211; she&#8217;s really strong. I also managed to write a blog post about <a href="http://buzzmedia.com.my/case-study/friendster-ceo-bad-social-media">Friendster Group CEO Ganesh Kumar Bangah</a>.</p>
<p>My birthday felt like a nice little holiday in the middle of a crazy busy period at work. Thanks Pei Chyi, I really enjoyed it and spending time with you and the boy.</p>
<p><img src="http://farm5.static.flickr.com/4076/4814485775_e1402dcbf3.jpg" alt="Goo Goo" width="500" height="375" /></p>
<p style="text-align: center;"><em>Goo goo gaa gaa</em></p>
<h3>Thank You Internet (and Real Life) Friends</h3>
<p>I received Facebook wall posts and Tweets all day long from all of you. Like I said, I thought I got attacked by spammers when I woke up yesterday. I know that I don&#8217;t meet up with you often enough so I want to say thank  you publicly on my blog.</p>
<p>I&#8217;m really lucky to know all of you and I appreciate our friendship. Thanks for being part of my special day yesterday. Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/07/i-thought-i-got-attacked-by-spammers-but-was-just-my-birthday/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Father&#8217;s Day: This Time Was Different</title>
		<link>http://blogjunkie.net/2010/06/fathers-day-time-was-different?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=fathers-day-time-was-different</link>
		<comments>http://blogjunkie.net/2010/06/fathers-day-time-was-different#comments</comments>
		<pubDate>Mon, 21 Jun 2010 04:36:52 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[parenthood]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/?p=742</guid>
		<description><![CDATA[This year&#8217;s Father&#8217;s Day was extra special. It was the first time I celebrated Father&#8217;s Day as a son and as a new father. With only 3 months of experience I&#8217;m not the most experienced dad. My experience to date has mainly been cradling baby to sleep at all hours of the day, pulling boogers...]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm5.static.flickr.com/4049/4719941304_984f6c0a54.jpg" alt="Peaceful" width="500" height="375" /></p>
<p>This year&#8217;s Father&#8217;s Day was extra special. It was the first time I celebrated Father&#8217;s Day as a son and as a new father. With only 3 months of experience I&#8217;m not the most experienced dad. </p>
<p>My experience to date has mainly been cradling baby to sleep at all hours of the day, pulling boogers out of baby Zack&#8217;s little nose (don&#8217;t ask), baby baths and poop disasters. It&#8217;s been quite a ride and can be pretty exhausting. For example, my Father&#8217;s Day was met with baby Zack waking up 3 times at night.</p>
<p>Despite the lack of beauty sleep, fatherhood has been wonderful. Every time I look at baby Zack peacefully sound asleep my heart just melts. </p>
<p>I&#8217;m looking forward to many more happy Father&#8217;s Days to come.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/06/fathers-day-time-was-different/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Now I understand all the fuss about the Kindle</title>
		<link>http://blogjunkie.net/2010/06/kindle?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=kindle</link>
		<comments>http://blogjunkie.net/2010/06/kindle#comments</comments>
		<pubDate>Wed, 16 Jun 2010 01:53:28 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[epiphanies]]></category>
		<category><![CDATA[iBooks]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Kindle]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/?p=739</guid>
		<description><![CDATA[So I got an iPad. Don&#8217;t worry, I&#8217;ll spare you the fanboy gushing. I actually want to talk about Amazon&#8217;s Kindle service. I&#8217;ve been wanting to stop buying paper books for a while now. I&#8217;ve also been buying ebooks in PDF and ePub format. Reading these ebooks have been less than ideal because I&#8217;ve had...]]></description>
			<content:encoded><![CDATA[<p>So I got an iPad. Don&#8217;t worry, I&#8217;ll spare you the fanboy gushing. I actually want to talk about Amazon&#8217;s Kindle service.</p>
<p>I&#8217;ve been wanting to stop buying paper books for a while now. I&#8217;ve also been buying ebooks in PDF and ePub format. Reading these ebooks have been less than ideal because I&#8217;ve had to read them on my computer (inconvenient) or on my iPhone (too difficult).</p>
<p><img src="http://farm5.static.flickr.com/4013/4704394393_c538eeeac9.jpg" alt="Kindle on iPad" /><span id="more-739"></span></p>
<p>Knowing that I was getting an iPad, I started investigating iBooks–Apple&#8217;s ebook solution. The other contender was Amazon&#8217;s Kindle application. I couldn&#8217;t test iBooks since it only works on the iPad (which had not yet arrived) so I thought I would buy a Kindle book. I planned to start reading the book on my iPhone and finish it on the iPad.</p>
<p>I bought <a href="http://www.amazon.com/gp/product/B001P22HK8?ie=UTF8&#038;tag=buzzmedia-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B001P22HK8">Daemon by Daniel Suarez</a> which I had heard rave reviews about and started reading on my iPhone. I found that I was reading more because I always had my phone with me and could whip it out to read anywhere–in the backseat of the car, in the dark room while waiting for baby Zack to sleep, at the in-laws when there&#8217;s nothing to do. If I had a hardcover book, I wouldn&#8217;t even have bothered to bring it along with me. By the way, I ended up liking the book so much that I finished it in 3 days and immediately bought the sequel, <a href="http://www.amazon.com/gp/product/B002VUFKDY?ie=UTF8&#038;tag=buzzmedia-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B002VUFKDY">Freedom</a>.</p>
<p>The other really cool thing about the Kindle is that you can send yourself samples of a book. I&#8217;ve downloaded tons of samples that I can read before deciding if I want to buy the book. Reading reviews of books isn&#8217;t really the same as reading the 1st few chapters, so this feature is really great for me too.</p>
<p>I&#8217;ve already started to read more with my Kindle service. 2 books in the last 2 weeks already and already itching to buy a few more. Compare that to the 3-5 books I have sitting on my bookshelf (which I bought!) that are still not read. The amount that I read has greatly decreased since finishing university and in the meantime the only things I read are articles on web sites and blogs which have completely spoilt my attention span and comprehension, so I&#8217;m definitely looking forward to reading more books on my iPad.</p>
<p>Quick comparison to iBooks–Apple&#8217;s solution also allows you to download samples. However it&#8217;s more difficult to buy books (from Malaysia) because you need to have iTunes credit. Amazon also requires a work around but it&#8217;s generally easier to buy Amazon credit which I use to pay for the books. Plus, Amazon&#8217;s catalog is much wider and slightly cheaper. On the plus side for iBooks, the application is a lot more polished and it&#8217;s also easier to import books from other sources. Long story short, eBooks (digital format books) will hopefully get me reading regularly again.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/06/kindle/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Do your friends bug you with blogging questions? Please send them my way</title>
		<link>http://blogjunkie.net/2010/06/blogging-questions?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=blogging-questions</link>
		<comments>http://blogjunkie.net/2010/06/blogging-questions#comments</comments>
		<pubDate>Fri, 04 Jun 2010 07:39:27 +0000</pubDate>
		<dc:creator>blogjunkie</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[buzzmedia]]></category>

		<guid isPermaLink="false">http://blogjunkie.net/?p=732</guid>
		<description><![CDATA[I'm sure that many of your friends and family has asked you "What's this blogging thing?" or "Can you help me with my blog?"

And then.. you want to help them but sometimes they have so many questions and you need to go off and do your own thing but you're paiseh to say no to them because this is your friend / favourite auntie...]]></description>
			<content:encoded><![CDATA[<p>Dear blogger friends,</p>
<p>I&#8217;m sure that many of your friends and family has asked you &#8220;What&#8217;s this blogging thing?&#8221; or &#8220;Can you help me with my blog?&#8221;</p>
<p>And then.. you want to help them but sometimes they have so many questions and you need to go off and do your own thing but you&#8217;re <em>paiseh</em> to say no to them because this is your friend / favourite auntie&#8230;</p>
<p>If that&#8217;s ever happened to you before, I&#8217;d like to ask you a favour. Please send your friends and family with blogging questions to me, or more specifically my upcoming workshop called <a href="http://buzzmedia.com.my/events/nst-blogging">Blogging Your Way To Success</a>. Here, I even made a video to explain what the workshop is about.</p>
<p><object width="400" height="300" ><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.facebook.com/v/396618316804" /><embed src="http://www.facebook.com/v/396618316804" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="300"></embed></object><br />
<span id="more-732"></span><br />
For those of you who prefer to read (or you&#8217;re experiencing #streamyxsucks), here are the highlights:</p>
<ul>
<li>We&#8217;ll start at the basics &#8211; how to create a blog &amp; write posts, upload images, etc</li>
<li>We&#8217;ll learn about WordPress 3.0, the latest and the greatest</li>
<li>We&#8217;ll learn how to get more readers, promote your business and everybody&#8217;s favourite topic &#8211; how to make money online!</li>
<li>The workshop is suitable for beginners with no experience, people on Blogspot who want to switch to WordPress, those who want to launch a blog shop and those who need a simple website but have no budget</li>
</ul>
<p>If they have questions, please direct them to my Buzzmedia website to find out the full details &amp; to contact me &#8211; <a href="http://buzzmedia.com.my/events/nst-blogging">http://buzzmedia.com.my/events/nst-blogging</a></p>
<p>If you don&#8217;t have anyone you can think of to recommend to attend the workshop, please go to the <a href="http://buzzmedia.com.my/events/nst-blogging">event page</a> and click the Facebook Like / Recommend button. At least your Facebook friends will see it and can decide if they want to come. </p>
<p>And if you do refer me a few friends, I will do something nice for you. Maybe I can buy you lunch, or help you with your blog theme or buy you <a href="http://www.problogger.net/31dbbb-workbook/">Problogger&#8217;s book</a> &#8211; I&#8217;m open to suggestions.</p>
<p>Thanks! You&#8217;re the greatest <img src='http://blogjunkie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Sincerely,</p>
<p>David a.k.a. <a href="http://twitter.com/blogjunkie">@blogjunkie</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogjunkie.net/2010/06/blogging-questions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
