<?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>Master Mind</title>
	<atom:link href="http://blog.projectabsolute.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.projectabsolute.com</link>
	<description>Key To Success</description>
	<lastBuildDate>Mon, 23 Aug 2010 16:43:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Learned A Lot From My Recent Mistake</title>
		<link>http://blog.projectabsolute.com/?p=53</link>
		<comments>http://blog.projectabsolute.com/?p=53#comments</comments>
		<pubDate>Mon, 23 Aug 2010 16:43:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Self-Help]]></category>
		<category><![CDATA[always allot time for you task]]></category>
		<category><![CDATA[can't make it]]></category>
		<category><![CDATA[give daily updates]]></category>
		<category><![CDATA[how you progress with th tasks]]></category>
		<category><![CDATA[it's up to you]]></category>
		<category><![CDATA[Learned A Lot From Recent Mistake]]></category>
		<category><![CDATA[lessons learned]]></category>
		<category><![CDATA[mastermind group]]></category>
		<category><![CDATA[maybe one or two hours a day]]></category>
		<category><![CDATA[need to review tasks]]></category>
		<category><![CDATA[plan your time for your tasks]]></category>
		<category><![CDATA[someone your boss]]></category>
		<category><![CDATA[task once a day]]></category>
		<category><![CDATA[tell your boss]]></category>
		<category><![CDATA[the deadline for the task]]></category>
		<category><![CDATA[too early deadline]]></category>
		<category><![CDATA[very careful in choosing your mastermind group]]></category>
		<category><![CDATA[you can't make it on time]]></category>

		<guid isPermaLink="false">http://blog.projectabsolute.com/?p=53</guid>
		<description><![CDATA[I learned a lot from my recent mistake. These are the lessons learned:
1. If someone (your boss or someone you work for) asked you to do a task, you need to review tasks. If you think the deadline for that tasks is too early and you can&#8217;t make it, tell your boss that you can&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I learned a lot from my recent mistake. These are the lessons learned:</p>
<p>1. If someone (your boss or someone you work for) asked you to do a task, you need to review tasks. If you think the deadline for that tasks is too early and you can&#8217;t make it, tell your boss that you can&#8217;t make it on time. Always give daily updates on how you progress with your tasks.</p>
<p>2. Be very careful in choosing your mastermind group.</p>
<p>3. Always allot time for your task once a day. Maybe one or two hours a day. It&#8217;s up to you to plan your time for your tasks.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.projectabsolute.com/?feed=rss2&amp;p=53</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using DateFormat and SimpleDateFormat in Java</title>
		<link>http://blog.projectabsolute.com/?p=40</link>
		<comments>http://blog.projectabsolute.com/?p=40#comments</comments>
		<pubDate>Mon, 12 Oct 2009 11:28:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://blog.projectabsolute.com/?p=40</guid>
		<description><![CDATA[DateFormat is an abstract class for date/time formatting subclasses which formats and parses dates or time in a language-independent manner.
class Object
class java.text.Format extends Object
class java.text.DateFormat extends java.text.Format
// 

SimpleDateFormat is a concrete class for formatting and parsing dates in a locale-sensitive manner. It allows for formatting (date -&#62; text), parsing (text -&#62; date), and normalization.
class java.text.SimpleDateFormat [...]]]></description>
			<content:encoded><![CDATA[<p>DateFormat is an abstract class for date/time formatting subclasses which formats and parses dates or time in a language-independent manner.</p>
<p>class Object<br />
class java.text.Format extends Object<br />
class java.text.DateFormat extends java.text.Format</p>
<p><script type="text/javascript">// <![CDATA[
google_ad_client = "pub-2272178075175931";
/* blog.projectabsolute.com */
google_ad_slot = "2215103399";
google_ad_width = 300;
google_ad_height = 250;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p>SimpleDateFormat is a concrete class for formatting and parsing dates in a locale-sensitive manner. It allows for formatting (date -&gt; text), parsing (text -&gt; date), and normalization.</p>
<p>class java.text.SimpleDateFormat extends java.text.DateFormat</p>
<p>Here&#8217;s the sample program:</p>
<p>import java.text.DateFormat;<br />
import java.text.SimpleDateFormat;<br />
import java.text.ParseException;<br />
import java.util.Date;</p>
<p>public class StringToDate<br />
{<br />
   public static void main(String[] args)<br />
   {<br />
      DateFormat df = new SimpleDateFormat(&#8221;yyyyMMdd&#8221;);</p>
<p>      Date tdate;</p>
<p>      try<br />
      {<br />
         tdate = df.parse(&#8221;20091008&#8243;);<br />
         DateFormat df2 = DateFormat.getDateInstance(DateFormat.SHORT);<br />
         String cstr1 = df2.format(tdate);<br />
         System.out.println(&#8221;SHORT Style: &#8221; + cstr1);</p>
<p>         df2 = DateFormat.getDateInstance(DateFormat.LONG);<br />
         String cstr2 = df2.format(tdate);<br />
         System.out.println(&#8221;LONG Style: &#8221; + cstr2);     </p>
<p>         df2 = DateFormat.getDateInstance(DateFormat.MEDIUM);<br />
         String cstr3 = df2.format(tdate);<br />
         System.out.println(&#8221;MEDIUM Style: &#8221; + cstr3);</p>
<p>         df2 = DateFormat.getDateInstance(DateFormat.FULL);<br />
         String cstr4 = df2.format(tdate);<br />
         System.out.println(&#8221;FULL Style: &#8221; + cstr4);<br />
      }<br />
      catch(ParseException e)<br />
      {<br />
      }<br />
   }<br />
}</p>
<p>Here&#8217;s the output:</p>
<p>SHORT Style: 10/8/09<br />
LONG Style: October 8, 2009<br />
MEDIUM Style: Oct 8, 2009<br />
FULL Style: Thursday, October 8, 2009</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.projectabsolute.com/?feed=rss2&amp;p=40</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ms. Elsa Arias</title>
		<link>http://blog.projectabsolute.com/?p=36</link>
		<comments>http://blog.projectabsolute.com/?p=36#comments</comments>
		<pubDate>Mon, 12 Oct 2009 06:00:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Describing People I Met]]></category>

		<guid isPermaLink="false">http://blog.projectabsolute.com/?p=36</guid>
		<description><![CDATA[Ms Elsa Arias was my teacher when I was in Grade 4.
// 


In 1995, Ms. Arias was still single. Many of my classmates had a crush on her for she&#8217;s cute.  
I learned Philippine History and English Grammar from her class.
]]></description>
			<content:encoded><![CDATA[<p>Ms Elsa Arias was my teacher when I was in Grade 4.</p>
<p><script type="text/javascript">// <![CDATA[
google_ad_client = "pub-2272178075175931";
/* blog.projectabsolute.com */
google_ad_slot = "2215103399";
google_ad_width = 300;
google_ad_height = 250;
// ]]&gt;</script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script></p>
<p>In 1995, Ms. Arias was still single. Many of my classmates had a crush on her for she&#8217;s cute. <img src='http://blog.projectabsolute.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I learned Philippine History and English Grammar from her class.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.projectabsolute.com/?feed=rss2&amp;p=36</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
