<?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>JavaChap Blog</title>
	<atom:link href="http://blog.javachap.com/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.javachap.com</link>
	<description>Java and Technology musings for the masses</description>
	<lastBuildDate>Tue, 15 Nov 2011 10:19:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>&#9733; 6th Grader and iPhone Application Developer</title>
		<link>http://blog.javachap.com/index.php/6th-grader-and-iphone-application-developer/</link>
		<comments>http://blog.javachap.com/index.php/6th-grader-and-iphone-application-developer/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 10:19:31 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=614</guid>
		<description><![CDATA[Not sure which makes me feel like more of a slacker, his mutliple apps in the App Store or his excellent public speaking]]></description>
			<content:encoded><![CDATA[<p>Not sure which makes me feel like more of a slacker, his mutliple apps in the App Store or his excellent public speaking</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/ehDAP1OQ9Zw" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/6th-grader-and-iphone-application-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#9733; The 5 Biggest Ways to Boost MySQL Scalability</title>
		<link>http://blog.javachap.com/index.php/the-5-biggest-ways-to-boost-mysql-scalability/</link>
		<comments>http://blog.javachap.com/index.php/the-5-biggest-ways-to-boost-mysql-scalability/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 18:43:09 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[scalability]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=605</guid>
		<description><![CDATA[Sean Hall with some really good MySQL advice: Tune those queries. Biggest bang for your buck. Enable the slow query log and watch it. Once you've found a heavy resource intensive query, optimize it! Tune what receives real-world traffic. Employ Master-Master Replication. Immediately have a read-only slave for your application to hit as well. Use Your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iheavy.com/" target="_blank">Sean Hall</a> with some really good <a href="http://www.iheavy.com/2011/07/28/5-ways-to-boost-mysql-scalability/" target="_blank">MySQL advice</a>:</p>
<ol>
<li><strong>Tune those queries</strong>. Biggest bang for your buck. Enable the slow query log and watch it. Once you've found a heavy resource intensive query, optimize it! Tune what receives real-world traffic.</li>
<li><strong>Employ Master-Master Replication</strong>. Immediately have a read-only slave for your application to hit as well.</li>
<li><strong>Use Your Memory</strong>. Set innodb_buffer_pool_size, key_buffer_size and other key options.</li>
<li><strong>RAID Your Disk I/O</strong>. Use RAID 10 mirroring and striping. On EC2 striping across a number of EBS volumes using the Linux md software raid.</li>
<li><strong>Tune Key Parameters</strong>. speeds up inserts &amp; updates with innodb_flush_log_at_trx_commit=2; create a tablespace and underlying datafile for each table with innodb_file_per_table.</li>
</ol>
<p>Full details at the <a href="http://www.iheavy.com/2011/07/28/5-ways-to-boost-mysql-scalability/" target="_blank">original article</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/the-5-biggest-ways-to-boost-mysql-scalability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#9733; Enumeration Mapping in Hibernate</title>
		<link>http://blog.javachap.com/index.php/enumeration-mapping-in-hibernate/</link>
		<comments>http://blog.javachap.com/index.php/enumeration-mapping-in-hibernate/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 03:25:51 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[annotation]]></category>
		<category><![CDATA[enum]]></category>
		<category><![CDATA[enumeration]]></category>
		<category><![CDATA[hbm]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[java5]]></category>
		<category><![CDATA[mapping]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=566</guid>
		<description><![CDATA[In this simple tutorial i will show you, how to map a Java 5 Enumeration (enum) to a varchar column in Hibernate. The use-case that i'm going to demonstrate is very simple, I have a User class which has a reference to an Enumeration Gender. Gender Enumeration User Domain: Hibernate Mapping (HBM): By default Hibernate [...]]]></description>
			<content:encoded><![CDATA[<p>In this simple tutorial i will show you, how to map a Java 5 Enumeration (enum) to a varchar column in Hibernate. The use-case that i'm going to demonstrate is very simple, I have a <strong>User</strong> class which has a reference to an Enumeration <strong>Gender</strong>. </p>
<h5>Gender Enumeration</h5>
<pre class="brush: java; title: ; notranslate">
package com.javachap.domain.user;
/**
 * Male or Female. Used to customize Account messages (e.g. he or she usage) and
 * to choose the default profile picture.
 */
public enum Gender {
    Male, Female;
}
</pre>
<h5>User Domain:</h5>
<pre class="brush: java; title: ; notranslate">
package com.javachap.domain.user;

public class User {

    private String firstName;
    private String lastName;
    private Gender gender;
    private String email

    /**
     * Gets the &lt;code&gt;User&lt;/code&gt;'s firstName
     *
     * @return the firstName
     */
    public String getFirstName() {
        return firstName;
    }

    /**
     * Sets the &lt;code&gt;User&lt;/code&gt;'s firstName
     *
     * @param firstName the firstName to set
     */
    public void setFirstName(String firstName) {
        this.firstName = firstName;
    }

    /**
     * Gets the &lt;code&gt;User&lt;/code&gt;'s lastName
     *
     * @return the lastName
     */
    public String getLastName() {
        return lastName;
    }

    /**
     * Sets the &lt;code&gt;User&lt;/code&gt;'s lastName
     *
     * @param lastName the lastName to set
     */
    public void setLastName(String lastName) {
        this.lastName = lastName;
    }

    /**
     * Gets the &lt;code&gt;User&lt;/code&gt;'s email
     *
     * @return the email
     */
    public String getEmail() {
        return email;
    }

    /**
     * Sets the &lt;code&gt;User&lt;/code&gt;'s email
     *
     * @param email the email to set
     */
    public void setEmail(String email) {
        this.email = email;
    }
}
</pre>
<h5>Hibernate Mapping (HBM):</h5>
<pre class="brush: xml; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot;?&gt;
&lt;!DOCTYPE hibernate-mapping PUBLIC &quot;-//Hibernate/Hibernate Mapping DTD 3.0//EN&quot;
    &quot;http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd&quot;&gt;

&lt;hibernate-mapping&gt;
  &lt;class table=&quot;user&quot; name=&quot;com.javachap.domain.user.User&quot;&gt;

    &lt;id name=&quot;uid&quot; column=&quot;usr_uid&quot;&gt;
      &lt;generator class=&quot;increment&quot;/&gt;
    &lt;/id&gt;

    &lt;property name=&quot;firstName&quot; type=&quot;java.lang.String&quot; column=&quot;usr_first_name&quot;/&gt;

    &lt;property name=&quot;lastName&quot; type=&quot;java.lang.String&quot; column=&quot;usr_last_name&quot; /&gt;

    &lt;property name=&quot;gender&quot; column=&quot;usr_gender&quot; not-null=&quot;true&quot;&gt;
	  &lt;type name=&quot;org.hibernate.type.EnumType&quot;&gt;
         &lt;param name=&quot;enumClass&quot;&gt;com.javaachap.domain.user.Gender&lt;/param&gt;
         &lt;param name=&quot;type&quot;&gt;12&lt;/param&gt;
      &lt;/type&gt;
    &lt;/property&gt;

    &lt;property name=&quot;email&quot; type=&quot;java.lang.String&quot; column=&quot;usr_email&quot;/&gt;

  &lt;/class&gt;
&lt;/hibernate-mapping&gt;</pre>
<p>By default Hibernate persists the enumeration value as integer in the database when type param is not specified, In order to store the enum display name, we use a param <strong>type</strong>, which should be pointed to value in java.sql.Types. Since we want to store the enum display name in database we have mapped it to <strong>12</strong> which is equivalent to java.sql.Types.VARCHAR<strong>.<br />
</strong></p>
<h5>Hibernate Annotation Based Mapping:</h5>
<p>If you prefer convention over configuration, below is the way to map an enum using annotation.</p>
<pre class="brush: java; title: ; notranslate">
public class User {

   @Enumerated(EnumType.STRING)
   Gender gender

}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/enumeration-mapping-in-hibernate/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title><![CDATA[Java 7&#8242;s Fork/Join Framework]]></title>
		<link><![CDATA[http://drdobbs.com/blogs/java/231000556]]></link>
		<comments>http://blog.javachap.com/index.php/java-7s-forkjoin-framework/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 06:24:27 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[features]]></category>
		<category><![CDATA[forkjoin]]></category>
		<category><![CDATA[java7]]></category>
		<category><![CDATA[reference]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=558</guid>
		<description><![CDATA[Eric Bruno: Fork/Join is an enhancement to the ExecutorService implementation that allows you to more easily break up processing to be executed concurrently, and recursively, with little effort on your part. It's based on the work of Doug Lea, a thought leader on Java concurrency, at SUNY Oswego. Fork/Join deals with the threading hassles; you just [...]<p><a href="http://blog.javachap.com/index.php/java-7s-forkjoin-framework/" rel="bookmark" title="Permanent link to 'Java 7&#8242;s Fork/Join Framework'" class="glyph">&#9733;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Eric Bruno:</p>
<blockquote><p>Fork/Join is an enhancement to the <code>ExecutorService</code> implementation that allows you to more easily break up processing to be executed concurrently, and recursively, with little effort on your part. It's based on the work of Doug Lea, a thought leader on Java concurrency, at SUNY Oswego. Fork/Join deals with the threading hassles; you just indicate to the framework which portions of the work can be broken apart and handled recursively. It employs a<em>divide and conquer</em> algorithm that works like this in pseudocode (as taken from <a href="http://gee.cs.oswego.edu/dl/papers/fj.pdf">Doug Lea's paper</a> on the subject):</p></blockquote>
<p><a href="http://drdobbs.com/blogs/java/231000556">http://drdobbs.com/blogs/java/231000556</a></p>
<p><a href="http://blog.javachap.com/index.php/java-7s-forkjoin-framework/" rel="bookmark" title="Permanent link to 'Java 7&#8242;s Fork/Join Framework'" class="glyph">&#9733;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/java-7s-forkjoin-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title><![CDATA[Understanding Java Weak References]]></title>
		<link><![CDATA[http://weblogs.java.net/blog/2006/05/04/understanding-weak-references]]></link>
		<comments>http://blog.javachap.com/index.php/understanding-weak-references/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 07:09:24 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[weak-references]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=540</guid>
		<description><![CDATA[Ethan Nicholas : I'm sure some of you are grumbling by now, as I'm talking about an API which is nearly a decade old and haven't said anything which hasn't been said before. While that's certainly true, in my experience many Java programmers really don't know very much (if anything) about weak references, and I [...]<p><a href="http://blog.javachap.com/index.php/understanding-weak-references/" rel="bookmark" title="Permanent link to 'Understanding Java Weak References'" class="glyph">&#9733;</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Ethan Nicholas :</p>
<blockquote><p>I'm sure some of you are grumbling by now, as I'm talking about an API which is nearly a decade old and haven't said anything which hasn't been said before. While that's certainly true, in my experience many Java programmers really don't know very much (if anything) about weak references, and I felt that a refresher course was needed. Hopefully you at least learned a <em>little</em> something from this review.</p></blockquote>
<blockquote><p>A <em>weak reference</em>, simply put, is a reference that isn't strong enough to force an object to remain in memory. Weak references allow you to leverage the garbage collector's ability to determine reachability for you, so you don't have to do it yourself.</p></blockquote>
<p><a href="http://weblogs.java.net/blog/2006/05/04/understanding-weak-references">http://weblogs.java.net/blog/2006/05/04/understanding-weak-references</a></p>
<p><a href="http://blog.javachap.com/index.php/understanding-weak-references/" rel="bookmark" title="Permanent link to 'Understanding Java Weak References'" class="glyph">&#9733;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/understanding-weak-references/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#9733; Learning by Doing</title>
		<link>http://blog.javachap.com/index.php/learning-by-doing/</link>
		<comments>http://blog.javachap.com/index.php/learning-by-doing/#comments</comments>
		<pubDate>Mon, 16 May 2011 01:13:48 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=502</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe width="480" height="390" src="http://www.youtube.com/embed/bzEjYZnZSqE?rel=0" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/learning-by-doing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#9733; Must see Telugu movies of the Decade (2001-2010)</title>
		<link>http://blog.javachap.com/index.php/must-see-telugu-movies-of-the-decade-2001-2010/</link>
		<comments>http://blog.javachap.com/index.php/must-see-telugu-movies-of-the-decade-2001-2010/#comments</comments>
		<pubDate>Wed, 04 May 2011 20:41:55 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[must-watch-movies]]></category>
		<category><![CDATA[telugu]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=482</guid>
		<description><![CDATA[In developing ‘My Top Telugu Movies of the Decade’, I knew there was no way I could rank my movies from 1st to 25th.  Any attempt would be futile.  How do I pit my favorite comedy against my favorite action? I instead organized them by year of release. Not only does this relieve the pressure [...]]]></description>
			<content:encoded><![CDATA[<p>In developing ‘My Top Telugu Movies of the Decade’, I knew there was no way I could rank my movies from 1st to 25th.  Any attempt would be futile.  How do I pit my favorite comedy against my favorite action? I instead organized them by year of release. Not only does this relieve the pressure of ranking each one, but emphasizes the time and context of its release.</p>
<p>I know that this list is completely subjective. It is not the ’25 best ever’, it is simply my favorites and recommendations. Chances are, there are a couple films here that you disliked or were greatly disappointed in. But again these are my favorites and recommendations.</p>
<table style="font-size: 116%;" border="0" cellspacing="0" cellpadding="0" width="285" align="center">
<colgroup>
<col width="180"></col>
</colgroup>
<colgroup>
<col width="64"></col>
</colgroup>
<thead>
<tr>
<th>Movie</th>
<th>Year</th>
</tr>
</thead>
<tbody>
<tr height="21">
<td width="221" height="21">Nuvvu Naaku Nachchav</td>
<td width="64">2001</td>
</tr>
<tr height="21">
<td height="21">Murari</td>
<td>2001</td>
</tr>
<tr height="21">
<td height="21">Khushi</td>
<td>2001</td>
</tr>
<tr height="21">
<td height="21">Manmadhudu</td>
<td>2002</td>
</tr>
<tr height="21">
<td height="21">Indra</td>
<td>2002</td>
</tr>
<tr height="21">
<td height="21">Santosham</td>
<td>2002</td>
</tr>
<tr height="21">
<td height="21">Idiot</td>
<td>2002</td>
</tr>
<tr height="21">
<td height="21">Missamma</td>
<td>2003</td>
</tr>
<tr height="21">
<td height="21">Tagore</td>
<td>2003</td>
</tr>
<tr height="21">
<td height="21">Shankar Dada MBBS</td>
<td>2004</td>
</tr>
<tr height="21">
<td height="21">Varsham</td>
<td>2004</td>
</tr>
<tr height="21">
<td height="21">Anand</td>
<td>2004</td>
</tr>
<tr height="21">
<td height="21">Arya</td>
<td>2004</td>
</tr>
<tr height="21">
<td height="21">Nuvvostanante Nenoddantana</td>
<td>2005</td>
</tr>
<tr height="21">
<td height="21">Atadu</td>
<td>2005</td>
</tr>
<tr height="21">
<td height="21">Chatrapathi</td>
<td>2005</td>
</tr>
<tr height="21">
<td height="21">Bommarillu</td>
<td>2006</td>
</tr>
<tr height="21">
<td height="21">Aa Naluguru</td>
<td>2006</td>
</tr>
<tr height="21">
<td height="21">Pokiri</td>
<td>2006</td>
</tr>
<tr height="21">
<td height="21">Sri Ramadasu</td>
<td>2006</td>
</tr>
<tr height="21">
<td height="21">Chandamama</td>
<td>2007</td>
</tr>
<tr height="21">
<td height="21">Happy Days</td>
<td>2007</td>
</tr>
<tr height="21">
<td height="21">Gamyam</td>
<td>2008</td>
</tr>
<tr height="21">
<td height="21">Magadheera</td>
<td>2009</td>
</tr>
<tr height="21">
<td height="21">Arundathi</td>
<td>2009</td>
</tr>
<tr height="21">
<td height="21">Ye  Maya Chesave</td>
<td>2010</td>
</tr>
<tr height="21">
<td height="21">Leader</td>
<td>2010</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/must-see-telugu-movies-of-the-decade-2001-2010/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>&#9733; MySQL Import and Export</title>
		<link>http://blog.javachap.com/index.php/mysql-import-and-export/</link>
		<comments>http://blog.javachap.com/index.php/mysql-import-and-export/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 16:01:05 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=359</guid>
		<description><![CDATA[Here are few MySQL Queries/commands that i regularly use for exporting and importing MySQL data.  This is for my reference, but just thought this might be useful for newbies. MySQL Table Data Export and Import To export the just table data please use the following query To import the csv file into table execute the [...]]]></description>
			<content:encoded><![CDATA[<p>Here are few MySQL Queries/commands that i regularly use for exporting and importing MySQL data.  This is for my reference, but just thought this might be useful for newbies.</p>
<h5 style="line-height: 40px;">MySQL Table Data Export and Import</h5>
<ul>
<li>To export the just table data please use the following query
<pre class="brush: sql; light: true; title: ; notranslate">
SELECT * INTO OUTFILE 'data.txt' FIELDS TERMINATED BY ',' FROM mytable;
</pre>
</li>
<li>To import the csv file into table execute the following SQL Query.
<pre class="brush: sql; light: true; title: ; notranslate">
LOAD DATA INFILE 'data.txt' INTO TABLE mytable FIELDS TERMINATED BY ',';
</pre>
</li>
</ul>
<h5 style="line-height: 40px;">Copy the contents of one database to another</h5>
<ul>
<li> First, create the new database
<pre class="brush: sql; light: true; title: ; notranslate">
create database db2;
</pre>
</li>
<li> Then, from the command-line, do the following to copy the contents from db1 to db2.
<pre class="brush: bash; light: true; title: ; notranslate">
$ mysqldump -u root --password=pass db1 | mysql -u root --password=pass db2
</pre>
</li>
</ul>
<h5 style="line-height: 30px;">MySQL Dump</h5>
<ul>
<li>To export the MySQL database into a dump file, please execute the following command
<pre class="brush: bash; light: true; title: ; notranslate">
$ mysqldump -u root --password=pass db1 &amp;gt; dbdump.sql
</pre>
</li>
</ul>
<h5 style="line-height: 30px;">Create MySQL User</h5>
<ul>
<li>Creating MySQL user and granting access
<pre class="brush: sql; light: true; title: ; notranslate">
CREATE USER 'myuser'@'localhost' IDENTIFIED BY 'myuser';
GRANT ALL ON *.* TO 'myuser'@'localhost' IDENTIFIED BY 'myuser';
</pre>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/mysql-import-and-export/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#9733; iPhone 4 first impressions</title>
		<link>http://blog.javachap.com/index.php/iphone-4-first-impressions/</link>
		<comments>http://blog.javachap.com/index.php/iphone-4-first-impressions/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 04:09:16 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iphone4]]></category>
		<category><![CDATA[retina-display]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=337</guid>
		<description><![CDATA[I have been using this baby for about 4 weeks. So decided to write my thoughts about the latest and greatest iPhone 4 The Retina Display -  Boy you gotta use it to understand how cool it is. When i looked at my old 2G  after using 4G i feel like 'wait a minute is [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using this baby for about 4 weeks. So decided to write my thoughts about the latest and greatest iPhone 4</p>
<p><img class="alignnone" title="iPhone 4" src="http://storeimages.apple.com/1733/store.apple.com/Catalog/US/Images/iphone/img/product-hero-iphone4.jpg" alt="" /> <strong> </strong></p>
<p><strong>The Retina Display</strong> -  Boy you gotta use it to understand how cool it is. When i looked at my old 2G  after using 4G i feel like 'wait a minute is this the display i have been using all these days", it looks so crappy. This is best resolution i have ever seen. I just feel like touching the objects, fonts look so amazing.<strong></strong></p>
<p><strong>The Hardware</strong> - This is the first overhaul of the design since the original iPhone. All i can say is its just super super sexy. It feel's like a rock solid in your hand. Its 25% thinner than 3GS. Feels so good in my hand that i want to carry it without a case, but I'm scared that i may damage the phone without the case. So i have to put the case on even if i don't like it. <strong></strong></p>
<p><strong>The Camera - </strong>iPhone 4 comes with 5 MP Camera with Flash and front facing VGA Cam. The pictures are really cool, and the best part is the HD (720p) video recording. Even though its tough to copy large videos over 1GB of size.</p>
<p><strong>iOS 4 - </strong>Multitasking is a welcome feature. Even though its limited, its a good start.  Enjoying the ability to set background for the home screen.</p>
<p><strong>Issues - <span style="font-weight: normal;">Some basic features are not supported by iPhone. Wish Cupertino company will add these features soon.</span></strong></p>
<ul>
<li><span style="font-weight: normal;"><strong><strong> </strong>No File transfer using Bluetooth.</strong></span></li>
<li><span style="font-weight: normal;"><strong>File Explorer is missing.</strong></span></li>
<li><span style="font-weight: normal;"><strong>Unable to close all running applications in single shot.</strong></span></li>
</ul>
<p><strong></strong></p>
<p><strong>Conclusion</strong> - I'm loving it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/iphone-4-first-impressions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>&#9733; How to Enable Permalinks in WordPress &#8211; Yahoo Hosting</title>
		<link>http://blog.javachap.com/index.php/how-to-enable-permalinks-in-wordpress-yahoo-hosting/</link>
		<comments>http://blog.javachap.com/index.php/how-to-enable-permalinks-in-wordpress-yahoo-hosting/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 14:01:21 +0000</pubDate>
		<dc:creator>JavaChap</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://blog.javachap.com/?p=289</guid>
		<description><![CDATA[Problem : WordPress Permalinks don’t work on Yahoo! hosting because they do not give their users access to the htaccess file – which means you cannot create the mod_rewrite rules needed for custom permlinks. Any other WordPress feature.. addon or plugin that you may need your .htaccess file for? Forget it – they do not [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem </strong>: WordPress Permalinks don’t work on Yahoo! hosting because they do not give their users access to the htaccess file – which means you cannot create the mod_rewrite rules needed for custom permlinks. Any other WordPress feature.. addon or plugin that you may need your .htaccess file for? Forget it – they do not give you access to it. Period.</p>
<p><strong>Solution: </strong>Go to Permalink Settings &gt; Select Custom Structure. And define the value as<strong> /index.php/%postname%/</strong> Then your URL will look like http://yoursite.com/index.php/your-post-title.</p>
<p>Huh finally Permanlinks are enabled for my blog. Just incase if you dont know, Permalinks will help you on SEO. Yes Yahoo hosting sucks !</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.javachap.com/index.php/how-to-enable-permalinks-in-wordpress-yahoo-hosting/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

