<?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>Ashik’s IT Thoughts</title>
	<atom:link href="http://ashikuzzaman.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ashikuzzaman.wordpress.com</link>
	<description>Where I talk about my works and thoughts on my profession, IT Industry trends and technologies</description>
	<lastBuildDate>Thu, 05 Nov 2009 03:46:50 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ashikuzzaman.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/7015f769331f77a8d0caf7534dadcb13?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Ashik’s IT Thoughts</title>
		<link>http://ashikuzzaman.wordpress.com</link>
	</image>
			<item>
		<title>How To Unescape HTML in Java</title>
		<link>http://ashikuzzaman.wordpress.com/2009/11/04/how-to-unescape-html-in-java/</link>
		<comments>http://ashikuzzaman.wordpress.com/2009/11/04/how-to-unescape-html-in-java/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 03:46:17 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Java java unescape html algorithm]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=99</guid>
		<description><![CDATA[I was writing an Html unescape algorithm in Java today. What I came out with is the one below. There is a problem in the algorithm below that eats up some space or characters for some corner cases. Can you figure out what the problem is?
I wrote the class in a way so that you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=99&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was writing an Html unescape algorithm in Java today. What I came out with is the one below. There is a problem in the algorithm below that eats up some space or characters for some corner cases. Can you figure out what the problem is?</p>
<p>I wrote the class in a way so that you can compile and run it in command prompt and can see the output right away. You can do some trial and error and figure out the issue in the algorithm below.</p>
<p><code>package com.salesforce.test;</p>
<p>import java.util.*;</p>
<p>/**<br />
 * To compiple: javac -d . StringUtils.java<br />
 * To run: java com.salesforce.test.StringUtils<br />
 *<br />
 * @authot ashik<br />
 */<br />
public class StringUtils {</p>
<p>  private StringUtils() {}</p>
<p>  /**<br />
   * the characters to unescape<br />
   */<br />
  public static HashMap htmlEntities = new HashMap();<br />
  static {<br />
    htmlEntities.put("&#60;","&lt;&quot;); htmlEntities.put(&quot;&lt;&quot;,&quot;"); htmlEntities.put("&gt;","&gt;");<br />
    htmlEntities.put("&#39;","\'"); htmlEntities.put("&apos;","\'");<br />
    htmlEntities.put("&#34;","\""); htmlEntities.put("&quot;","\"");<br />
    htmlEntities.put("&#38;","&amp;"); htmlEntities.put("&amp;","&amp;");<br />
    htmlEntities.put("&#32;"," "); htmlEntities.put("&nbsp;"," ");<br />
  }</p>
<p>  public static final String unescapeHTML(String source, int start){<br />
     int i,j;</p>
<p>     i = source.indexOf("&amp;", start);<br />
     if (i &gt; -1) {<br />
        j = source.indexOf(";" ,i);<br />
        if (j &gt; i) {<br />
           String entityToLookFor = source.substring(i , j + 1);<br />
           System.out.println("source = " + source + ", entityToLookFor = " + entityToLookFor + ", i = " + i + " and j = " + j);<br />
           if(entityToLookFor.lastIndexOf("&amp;") &gt; entityToLookFor.indexOf("&amp;")) {<br />
	           i = entityToLookFor.lastIndexOf("&amp;") + 1;<br />
	           System.out.println("Before source = " + source + ", entityToLookFor = " + entityToLookFor + ", i = " + i + " and j = " + j);<br />
	           entityToLookFor = entityToLookFor.substring(entityToLookFor.lastIndexOf("&amp;"));<br />
	           System.out.println("After  source = " + source + ", entityToLookFor = " + entityToLookFor + ", i = " + i + " and j = " + j);<br />
           }<br />
           String value = (String)htmlEntities.get(entityToLookFor);<br />
           if (value != null) {<br />
             source = new StringBuffer().append(source.substring(0 , i)).append(value).append(source.substring(j + 1)).toString();<br />
             return unescapeHTML(source, i + 1); // recursive call<br />
           }<br />
         }<br />
     }<br />
     return source;<br />
  }</p>
<p>  public static void main(String args[]) throws Exception {<br />
      // to see accented character to the console<br />
      java.io.PrintStream ps = new java.io.PrintStream(System.out, true, "Cp850");</p>
<p>      ps.println("Finally: Ashik's Quote &lt;Test Ok = &quot; + unescapeHTML(&quot;Ashik&#39;s Quote &lt;Test Ok&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Finally: M&amp; M &gt; 5 = &quot; + unescapeHTML(&quot;M&amp; M &gt; 5&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Finally: M &amp; M &gt; 5 = &quot; + unescapeHTML(&quot;M &amp; M &gt; 5&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Finally: M &amp;M &gt; 5 = &quot; + unescapeHTML(&quot;M &amp;M &gt; 5&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Finally: M&amp; M&gt; 5 = &quot; + unescapeHTML(&quot;M&amp; M&gt; 5&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Also: \n--&gt;&quot; + unescapeHTML(&quot;Apos\&#39;trophie &amp; &quot;quote&quot; is &lt;present&gt;&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Also: \n--&gt;&quot; + unescapeHTML(&quot;Please check for empty&nbsp;space in Order&nbsp;Review tab.&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Also: \n--&gt;&quot; + unescapeHTML(&quot;Also check for Billing Information &amp; Subscription Information &amp; Order&nbsp;Review tabs.&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Also: \n--&gt;&quot; + unescapeHTML(&quot;It&apos;s difficult to check today&apos;s capitalization strategy for all tabs.&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Also: \n--&gt;&quot; + unescapeHTML(&quot;Remember that 12 is &gt; 9 is &gt; 4&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Also: \n--&gt;&quot; + unescapeHTML(&quot;Similarly 8 is &lt; 10 is &lt; 15&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Also: \n--&gt;&quot; + unescapeHTML(&quot;Shakespeare said,&quot;To be or not to be that is the question.&quot;&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Also: \n--&gt;&quot; + unescapeHTML(&quot;Think &amp; think about New York&#39;s &lt;best pizza&gt; as the \&quot;ultimate\&quot; pizza!&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
      ps.println(&quot;Also: \n--&gt;&quot; + unescapeHTML(&quot;Apos&#39;trophie &amp; &quot;quote&quot; is &lt;present&gt;&quot;, 0));<br />
      ps.println(&quot;-----------&quot;);<br />
  }</p>
<p>}<br />
</code></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=99&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2009/11/04/how-to-unescape-html-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>
	</item>
		<item>
		<title>Behind The Cloud by CEO Marc Benioff</title>
		<link>http://ashikuzzaman.wordpress.com/2009/10/14/behind-the-cloud-by-ceo-march-benioff/</link>
		<comments>http://ashikuzzaman.wordpress.com/2009/10/14/behind-the-cloud-by-ceo-march-benioff/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 06:41:26 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=87</guid>
		<description><![CDATA[Morning today when I walked into my cube in office, I found a copy of our CEO Marc Beniof&#8217;s new book Behind The Cloud at my desk.

I liked the chapter headings and the forward by Michael Dell. Just 2 days earlier a friend of mine forwarded me the article on some top paying fortune companies [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=87&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Morning today when I walked into my cube in office, I found a copy of our CEO Marc Beniof&#8217;s new book <a title="Behind The Cloud" href="http://www.amazon.com/Behind-Cloud-Salesforce-com-Billion-Dollar-Company/dp/0470521163/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1255545729&amp;sr=8-1-catcorr">Behind The Cloud</a> at my desk.</p>
<p><a href="http://picasaweb.google.com/lh/photo/kXV-a2xW5-ZN1WXrsUDtqA?feat=embedwebsite"><img src="http://lh6.ggpht.com/_Ukfp6yZvVtw/StYdU6Hcs0I/AAAAAAAAEhU/biq7rA-F_Zc/s800/Behind_the_Cloud_book_cover_Marc_Benioff.jpg" alt="" /></a></p>
<p>I liked the chapter headings and the forward by Michael Dell. Just 2 days earlier a friend of mine forwarded me the article on some top paying fortune companies &#8211; <a href="http://finance.yahoo.com/career-work/article/107916/how-10-top-paying-companies-stack-up?mod=career-salary_negotiation">http://finance.yahoo.com/career-work/article/107916/how-10-top-paying-companies-stack-up?mod=career-salary_negotiation</a> where salesforce.com is in a pretty good position at number seven!</p>
<p>In this book Marc talks about how in 10 years this company has evolved from a startup to a billion dollar player in the industry.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=87&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2009/10/14/behind-the-cloud-by-ceo-march-benioff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>

		<media:content url="http://lh6.ggpht.com/_Ukfp6yZvVtw/StYdU6Hcs0I/AAAAAAAAEhU/biq7rA-F_Zc/s800/Behind_the_Cloud_book_cover_Marc_Benioff.jpg" medium="image" />
	</item>
		<item>
		<title>My Thoughts On SCJP Java 6 Exam</title>
		<link>http://ashikuzzaman.wordpress.com/2009/09/16/my-thoughts-on-scjp-java-6-exam/</link>
		<comments>http://ashikuzzaman.wordpress.com/2009/09/16/my-thoughts-on-scjp-java-6-exam/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 14:07:32 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[6]]></category>
		<category><![CDATA[bert]]></category>
		<category><![CDATA[certified]]></category>
		<category><![CDATA[kathy]]></category>
		<category><![CDATA[mughal]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[rolf]]></category>
		<category><![CDATA[saifur]]></category>
		<category><![CDATA[scjp]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=81</guid>
		<description><![CDATA[

Recently I have been thinking about the industry standard technology certifications, particularly around Java/JEE technologies. I am not exactly sure how valuable the technology certifications are when you are already an experienced veteran in the industry. But I can guess that it will give an impression to your upper management to accommodate you for the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=81&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div style="text-align:justify;"><span style="font-family:verdana;font-size:x-small;"><span style="font-family:'Times New Roman';"></p>
<div style="width:auto;font-style:normal;font-variant:normal;font-weight:normal;line-height:normal;text-align:left;border-width:0;margin:0;padding:3px;">
<div style="text-align:justify;"><span style="font-family:verdana;">Recently I have been thinking about the industry standard technology certifications, particularly around Java/JEE technologies. I am not exactly sure how valuable the technology certifications are when you are already an experienced veteran in the industry. But I can guess that it will give an impression to your upper management to accommodate you for the next level (higher level than where you are) or while switching jobs will justify you to apply for a higher title than you are in now.</span></div>
<div style="text-align:justify;"><span style="font-family:verdana;"><br />
</span></div>
<div style="text-align:justify;"><span style="font-family:verdana;">Once I am successfully done with my hiking in Half Dome of Yosemite a few weeks later, I will be focusing on the </span><strong><span style="font-family:verdana;">Sun Certified Java Programmer (SCJP)<span style="font-weight:normal;"> exam</span></span></strong><span style="font-family:verdana;"> on <span style="font-weight:bold;">Java 6</span> platform. Although in my current project we use Java 5, we will be moving to Java 6 sooner or later as some other teams as well as the core platform team in Salesforce uses Java 6. Also it makes sense to get certified on the latest version of Java so that it can around your neck for a longer period of time in your career. I already talked to my manager and he was convinced that it&#8217;s relevant to my work and career development plan.</span></div>
<div style="text-align:justify;"><span style="font-family:verdana;"><span style="line-height:18px;"><span style="line-height:normal;"><br />
</span></span></span></div>
<div style="text-align:justify;"><span style="font-family:verdana;">While looking for the best resources, I always refer to my favorite site </span><a href="http://www.javaranch.com/"><span style="font-family:verdana;">JavaRanch</span></a><span style="font-family:verdana;">. Even without looking much into all the books it was evidently clear that there are 2 outstanding study guides for this exam &#8211; </span><a href="http://www.amazon.com/SCJP-Certified-Programmer-Java-310-065/dp/0071591060/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1252201778&amp;sr=8-1"><span style="font-family:verdana;">Kathy Sierra and Bert Bates SCJP 6 Study Guide</span></a><span style="font-family:verdana;"> and Khalid Mughal and Rolf Rusmussen&#8217;s </span><a href="http://www.amazon.com/Programmers-Guide-Java-SCJP-Certification/dp/0321556054/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1252227494&amp;sr=8-1"><span style="font-family:verdana;">A Programmer&#8217;s Guide to Java Certification</span></a><span style="font-family:verdana;">. <span style="line-height:18px;">Kathy&amp;Bert book is targeted very much at making you pass the certification. But the strong points of Khalid&amp;Rolf books is that it&#8217;s more thorough, details and explained subjects outside of the exam objectives if that should be useful to a programmer. So Khalid&#8217;s book should be better at teaching you Java. But I would recommend the K&amp;B if you are already an experienced java programmer and just want to squeeze through the exam. I am thinking of reading the K&amp;B first and then, time permitting, go through Khalid Mughal. </span></span></div>
<div style="text-align:justify;"><span style="font-family:verdana;"><span style="line-height:18px;"><br />
</span></span></div>
<div style="text-align:justify;"><span style="font-family:verdana;line-height:18px;">One place that every SCJP aspirants should frequently visit is the <a href="http://www.coderanch.com/forums/f-24/Programmer-Certification-SCJP">SCJP forum of JavaRanch</a>. Try using only a text editor, even if Notepad and command prompt. Don&#8217;t copy paste codes, just type it yourself to see how you are introducing the compile and runtime errors. Here are the <a href="http://www.sun.com/training/catalog/courses/CX-310-065.xml">exam details and objectives</a>. While looking for free mock exams for SCJP 6, I found the followings good at initial look. </span></div>
<div style="text-align:justify;">
<ul>
<li><span style="font-family:verdana;"><span style="line-height:18px;"><a href="http://www.javaprepare.com/quests/test.html">http://www.javaprepare.com/quests/test.html</a></span></span></li>
<li><span style="font-family:verdana;"><span style="line-height:18px;"><a href="http://www.valoxo.ch/jr/mocks/mock01a.html">http://www.valoxo.ch/jr/mocks/mock01a.html</a></span></span></li>
<li><span style="font-family:verdana;"><span style="line-height:18px;"><a href="http://www.skill-guru.com/skill/login/testDetails.faces?testId=18&amp;testName=SCJP-6-mock-test">http://www.skill-guru.com/skill/login/testDetails.faces?testId=18&amp;testName=SCJP-6-mock-test</a></span></span></li>
<li><span style="font-family:verdana;"><span style="line-height:18px;"><a href="http://www.irixtech.com/java/scjp/mock-exam/practice-test-1">http://www.irixtech.com/java/scjp/mock-exam/practice-test-1</a></span></span></li>
<li><span style="font-family:verdana;"><span style="line-height:18px;"><a href="http://scjptest.com">http://scjptest.com</a></span></span></li>
<li><span style="font-family:verdana;"><span style="line-height:18px;"><a href="http://www.whizlabs.com/examprep/mod/quiz/view.php?id=414">http://www.whizlabs.com/examprep/mod/quiz/view.php?id=414</a></span></span></li>
<li><span style="font-family:verdana;"><span style="line-height:18px;"><a href="http://skillassert.com/freetest.seam">http://skillassert.com/freetest.seam</a></span></span></li>
</ul>
</div>
<div><span style="font-family:verdana;"><span style="line-height:18px;"></p>
<div id="_mcePaste" style="text-align:justify;position:absolute;left:-10000px;top:195px;width:1px;height:1px;">One place that every SCJP aspirants should frequently visit is the SCJP forum of JavaRanch. Try using only a text editor, even if Notepad and command prompt. Don&#8217;t copy paste codes, just type it yourself to see how you are introducing the compile and runtime errors.</div>
<p><span style="font-family:'Times New Roman';"><span style="line-height:normal;"></p>
<div style="text-align:justify;"><span style="font-family:verdana;line-height:18px;">If you plan to buy a commercial mock exam, <a href="http://enthuware.com/web/index.php/Products/mockexamproducttemplate.html?Itemid=92">JQPlus from Enthuware</a> is best amongst them &#8211; although I think you won&#8217;t need to spend $28 for this as K&amp;B book already has some mock exams. </span></div>
<div style="text-align:justify;"><span style="font-family:verdana;"><span style="line-height:18px;"><br />
</span></span></div>
<p></span></span></span></span></div>
<div style="text-align:justify;"><span style="font-family:verdana;">Last 2 weeks were one of my most extensive work hours spent in office. I was going early in the morning and coming back at midnight. Good that Shusmita was understanding enough towards my deadline in office and didn&#8217;t complain much. For this I had to skip hiking last week so that I can help her in preparation for the iftari and dinner invitations at our house.</span></div>
<div style="text-align:justify;"><span style="font-family:verdana;font-size:x-small;"><span style="font-family:'Times New Roman';"><span style="font-family:verdana;"><br />
One good news, Pearl Law Group applied for my PERM process on behalf of Salesforce.com in EB-2 Category, the day before yesterday. I hope all the paper processing happens very smoothly and fast for me.</span></span></span><br />
<span style="line-height:19px;"><span style="font-family:verdana;"><span style="line-height:normal;"><br />
</span></span></span></div>
</div>
<p></span></span></div>
<p><!--Session data--></p>
<p><!--Session data--></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=81&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2009/09/16/my-thoughts-on-scjp-java-6-exam/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>
	</item>
		<item>
		<title>Title Revision from Software Engineer to Senior Member of Technical Staff</title>
		<link>http://ashikuzzaman.wordpress.com/2009/09/01/title-revision-from-software-engineer-to-senior-member-of-technical-staff/</link>
		<comments>http://ashikuzzaman.wordpress.com/2009/09/01/title-revision-from-software-engineer-to-senior-member-of-technical-staff/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 02:42:26 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Official]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[engineer]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[member]]></category>
		<category><![CDATA[mts]]></category>
		<category><![CDATA[salesforce.com]]></category>
		<category><![CDATA[senior]]></category>
		<category><![CDATA[smts]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[staff]]></category>
		<category><![CDATA[technical]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=78</guid>
		<description><![CDATA[Recently I got a title revision in Salesforce.com as a Senior Member of Technical Staff (SMTS) although without any salary hike. When I joined Salesforce at November 5, 2007 I was assigned the title of Software Engineer. My grade was already high within the Software Engineer title holders at that time falling a little short [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=78&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Recently I got a title revision in Salesforce.com as a <strong>Senior Member of Technical Staff (SMTS) </strong>although without any salary hike. When I joined Salesforce at November 5, 2007 I was assigned the title of <strong>Software Engineer</strong>. My grade was already high within the Software Engineer title holders at that time falling a little short of the next title Senior Software Engineer. In IT we had the hierarchy like &#8211; <em>Associate Software Engineer &gt; Software Engineer &gt; Senior Software Engineer &gt; Lead Software Engineer &gt; Principal Engineer</em>. But in R&amp;D which is a bigger team in Salesforce, the similar titles were <em>Associate Member of Technical Staff (AMTS), Member of Technical Staff (MTS), Senior Member of Technical Staff (SMTS), Lead Member of Technical Staff (LMTS) and Principle Member of Technical Staff (PMTS)</em>. So in a recent alignment initiative between R&amp;D and IT team, management decided to follow the conventions of R&amp;D team for both of these groups. This resulted in converting out Software Engineers to MTS. Only for my case in AppStore team, I was levelled as SMTS although my earlier title was Software Engineer. This means I am still eligible for my next level promotion to Lead Member of Technical Staff as per our <em>Merit Increase Process</em>. Let&#8217;s see how things go.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=78&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2009/09/01/title-revision-from-software-engineer-to-senior-member-of-technical-staff/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>
	</item>
		<item>
		<title>Quillpad Made Bangla Typing Easier</title>
		<link>http://ashikuzzaman.wordpress.com/2009/06/12/quillpad-made-bangla-typing-easier/</link>
		<comments>http://ashikuzzaman.wordpress.com/2009/06/12/quillpad-made-bangla-typing-easier/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 20:57:19 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[Bengali]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=76</guid>
		<description><![CDATA[Quillpad is a free online typing tool for 10 south asial languages. Yesterday I was having time free time in office so thought of searching for an API that helps writing bengali. And I landed in http://www.quillpad.in/bengali which is more than what I was looking for.
It&#8217;s very easy to type in Bengali in Quillpad. For [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=76&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Quillpad is a free online typing tool for 10 south asial languages. Yesterday I was having time free time in office so thought of searching for an API that helps writing bengali. And I landed in <a href="http://www.quillpad.in/bengali">http://www.quillpad.in/bengali</a> which is more than what I was looking for.</p>
<p>It&#8217;s very easy to type in Bengali in Quillpad. For example, type <em>&#8216;apni kemon achen&#8217;</em> in the Quillpad editor. Quillpad will convert it directly into Bengali script. If you write a word like &#8216;<em>bishesh</em>&#8216;, first <em>sh</em> should become &#8216;শ&#8217; and the second <em>sh</em> should become &#8216;ষ&#8217;. Quillpad will intelligently do that for you. No need to use shift keys or to memorize any key mappings. So &#8216;রাষ্ট্রপতি&#8217; can be written by typing <em>&#8216;rashtrapati&#8217; </em>or<em> &#8216;raashtrapathi&#8217;</em>. Quillpad can also predict if multiple words are possible for your input. You can click on the word to select from those options. In addition Quillpad allows you to type English words freely in between Bengali words. It intelligently transliterates them into Bengali. Here is one example -</p>
<p><span style="font-size:medium;">বাংলা টাইপ করা সহজ</span></p>
<p>As a quick test of using the WYSIWYG editor of Quillpad, I created to a blog in wordpress <a href="http://probasheamardingulo.wordpress.com/">http://probasheamardingulo.wordpress.com</a> and a blog in blogger <a href="http://probasheamardingulo.blogspot.com/">http://probasheamardingulo.blogspot.com/</a>. It looks so easy and convenient to me. I think I will continue writing in the blogger because it allows me to increase the font size of the content while to increase font in WordPress I have to upgrade to premium.</p>
<p>Here is a <a href="http://www.nytimes.com/2008/12/31/technology/internet/31hindi.html">New York Times article </a>that you might find interseting and relevant.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=76&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2009/06/12/quillpad-made-bangla-typing-easier/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>
	</item>
		<item>
		<title>Amazon Kindle: A Great Gadget</title>
		<link>http://ashikuzzaman.wordpress.com/2009/06/11/amazon-kindle-a-great-gadget/</link>
		<comments>http://ashikuzzaman.wordpress.com/2009/06/11/amazon-kindle-a-great-gadget/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 20:49:50 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=71</guid>
		<description><![CDATA[This June 2009 is a special month for gadget lovers. Yesterday Amazon&#8217;s Kindle DX was released and 18th of this month Apple&#8217;s iPhone 3G S will be released. While I and my wife Shusmita already have our iPhone 3G, I am particularly in favor of Kindle to consider as the best gadget I can ever [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=71&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div id="attachment_72" class="wp-caption alignnone" style="width: 140px"><a href="http://picasaweb.google.com/lh/photo/lEENQsvdq_nfdgJwLCGX5g?feat=directlink"><img class="size-full wp-image-72" title="kindle-dx" src="http://ashikuzzaman.files.wordpress.com/2009/06/kindle-dx.jpg?w=130&#038;h=117" alt="Amazon Kindle DX" width="130" height="117" /></a><p class="wp-caption-text">Amazon Kindle DX</p></div>
<p>This June 2009 is a special month for gadget lovers. Yesterday Amazon&#8217;s Kindle DX was released and 18th of this month Apple&#8217;s iPhone 3G S will be released. While I and my wife Shusmita already have our iPhone 3G, I am particularly in favor of Kindle to consider as the best gadget I can ever have.</p>
<p>Amazon&#8217;s Kindle DX is an electronic book reader, the third of it&#8217;s kind after it&#8217;s successful debut in late 2007 with the first generation followed by early this year with second generation also known as Kindle 2. Like I waited for iPhone to mature a little bit before I bought that, I also waited for Kindle platform to mature before I made up my mind to buy the latest generation Kindle (DX).</p>
<p>I love reading books, both in English and in my mother language Bengali. My decision behind buying the new larger size Kindle DX is primarily because it has a native PDF reader and hence I will be able to read Bengali PDF books which I won&#8217;t be in the case of Kindle 1 or 2. My only concern is the bigger size of DX makes it less portable. Before coming into this decision I have roamed around the Amazon Kindle discussion forum for a while along with some other online resources. If you look at my facebook news feed or my recent delicious bookmarks (http://delicious.com/ashikuzzaman/Kindle) you can easily guess that I am in Kindle fever. I am expecting a reading habit and experience change once I get my Kindle DX in my hand. I am going to order it 15th of this month and hence I should recieve it in my hand sometime early July. But whatever I have read so far about it, I can&#8217;t just wait to recieve it.</p>
<p>I have read (I think pretty extensively) on Sony Reader, Kindle 2 and Kindle DX and decided to go for Kindle DX. Here are my rationale behind my choice -</p>
<p>First, I love Amazon (and also Google) and want to be around them. When it comes to books and reading I consider Amazon the primary authority and expect creative innovations from them(one small example is the idea they came up with accessing the notes and highlights of the books online). I like the vision that Amazon has &#8211; to kindlize each and every book ever printed in any language. This pretty much removes Sony or any other non-Amazon platform (despite Google Books efforts) from my choice.</p>
<p>Second, I like the idea of bigger screen size.</p>
<p>Third, I want to read PDF books and documents. I have a good collection of non-english books in PDF formats. The ones I am more interested about are in Bengali language which I am sure Amazon&#8217;s PDF conversion program won&#8217;t support. So I will need a native PDF reader. This pretty much restricts me to Kindle DX instead of Kindle 2 despite the less portability of DX compared to K2 and Sony Reader.</p>
<p>Fourth, the larger memory 3.3 GB is not a must-have but a good incentive to me as I want to carry a huge library around without ever thinking of removing any of this.</p>
<p>Fifth, the accelerometer in DX is a plus for me.</p>
<p>But if I buy a second copy of Kindle for my wife or my father or brothers, I will buy Kindle 2 for them because of the portability issue.</p>
<p>One more thing I would like to add with interest here. I have published this blog a little earlier as a Kindle Blog available for subscription via Kindle. Amazon has made it so easy and trivial. I will post an entry or two every week to keep myself recorded in words here.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=71&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2009/06/11/amazon-kindle-a-great-gadget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>

		<media:content url="http://ashikuzzaman.files.wordpress.com/2009/06/kindle-dx.jpg" medium="image">
			<media:title type="html">kindle-dx</media:title>
		</media:content>
	</item>
		<item>
		<title>Bowling with Friends</title>
		<link>http://ashikuzzaman.wordpress.com/2009/04/07/bowling-with-friends/</link>
		<comments>http://ashikuzzaman.wordpress.com/2009/04/07/bowling-with-friends/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 10:05:13 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=66</guid>
		<description><![CDATA[Last week I went to bowling with my friends in Fremont and we enjoyed it a lot. I paid on behalf of them for the game so that everyone else pay me back later. Despite their repeated query to know how much they should pay me, I was too busy the whole last week to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=66&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Last week I went to bowling with my friends in Fremont and we enjoyed it a lot. I paid on behalf of them for the game so that everyone else pay me back later. Despite their repeated query to know how much they should pay me, I was too busy the whole last week to calculate that. Right now, having a little relax time, so I downloaded JDK 6 in my new laptop from office and wrote the small java program to calculate it. Compile and run the program to know how much I owe to each of them.<br />
<code><br />
/**<br />
 *    To compile: javac -d . BowlingCost.java<br />
 *    To run: java BowlingCost<br />
 */</p>
<p>import java.util.Map;<br />
import java.util.HashMap;<br />
import java.util.Iterator;<br />
public class BowlingCost {<br />
    public static final double shoeRent = 4.0;<br />
    public static final double perGame = 4.25;<br />
    private static int male = 5;<br />
    private static int female = 4;<br />
    private static Map payersMaritalStatus = new HashMap();<br />
    public BowlingCost() {<br />
        payersMaritalStatus.put("Shahriar", Boolean.TRUE);<br />
        payersMaritalStatus.put("Ezaz", Boolean.TRUE);<br />
        payersMaritalStatus.put("Hasinur", Boolean.TRUE);<br />
        payersMaritalStatus.put("Nitol", Boolean.FALSE);<br />
        payersMaritalStatus.put("Ashik", Boolean.TRUE);<br />
    }<br />
    public static void main(String []args) {<br />
        BowlingCost cost = new BowlingCost();<br />
        System.out.println("Total Cost of Bowling = " + calculateTotal() + " dollars.\n");<br />
        displayPaymentAmounts();<br />
        System.out.println("\nThank you! It was a pleasure playing bowling with you guys!!");<br />
    }<br />
    private static double calculateTotal() {<br />
        return    perGame * (male * 3 + female * 1) + shoeRent * (male + female);<br />
    }<br />
    private static void displayPaymentAmounts() {<br />
        Iterator it = payersMaritalStatus.keySet().iterator();<br />
        String payerName = null;<br />
        boolean isMarried = false;<br />
        while(it.hasNext()) {<br />
            payerName = (String) it.next();<br />
            isMarried = ((Boolean) payersMaritalStatus.get(payerName)).booleanValue();<br />
            if(isMarried) {<br />
                System.out.println(payerName + " should pay " + (perGame * (3 + 1) + shoeRent * (1 + 1)) + " dollars.");<br />
            } else {<br />
                System.out.println(payerName + " should pay " + (perGame * 3 + shoeRent * 1) + " dollars.");<br />
            }<br />
        }<br />
    }<br />
}</code></p>
<p>If you don&#8217;t want to run the program in command line or opening your favorite IDE, then you can use the following online java compiler to copy paste the code there (select Java SE 1.4 class from the drop down box at the bottom).</p>
<p>http://www.zamples.com/JspExplorer/index.jsp?format=jdk16cl</p>
<p>Here is the output if you run the program:</p>
<p><em>Total Cost of Bowling = 116.75 dollars.</p>
<p>Ezaz should pay 25.0 dollars.<br />
Ashik should pay 25.0 dollars.<br />
Hasinur should pay 25.0 dollars.<br />
Shahriar should pay 25.0 dollars.<br />
Nitol should pay 16.75 dollars.</p>
<p>Thank you! It was a pleasure playing bowling with you guys!!<br />
</em></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=66&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2009/04/07/bowling-with-friends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>
	</item>
		<item>
		<title>Spectrum and 5 Other Bangladeshi IT Companies are now CMMI Level 3 Certified</title>
		<link>http://ashikuzzaman.wordpress.com/2009/02/19/spectrum-is-now-cmmi-level-3-certified/</link>
		<comments>http://ashikuzzaman.wordpress.com/2009/02/19/spectrum-is-now-cmmi-level-3-certified/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 18:58:36 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=59</guid>
		<description><![CDATA[I got an email morning today that Spectrum Engineering Consortium Ltd. (SECL) has been awarded CMMI Level 3 certification recently. I was so happy to read it because I was part of the initial team in SECL that started this effort. It took long, hard 8 years but now they are here. It&#8217;s a great [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=59&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I got an email morning today that Spectrum Engineering Consortium Ltd. (SECL) has been awarded CMMI Level 3 certification recently. I was so happy to read it because I was part of the initial team in SECL that started this effort. It took long, hard 8 years but now they are here. It&#8217;s a great achievement for Bangladeshi Software Industry.</p>
<p>I also got to know that DataSoft, Leads, Southtect and IBCS-Primax have also been awarded CMMI Level 3 certificate. Bangladesh Internet Press Limited (BIPL) was the pioneer in Bangladesh Software Industry when they recieved it back in 2007.</p>
<p>All these are so wonderful for Bangladesh Software Industry! This is in recognition of implementing international best practices and process approach in software development process. The more companies join this race, the more overseas clients will gain confidence over Software Industry of Bangladesh. Congratulations to all these IT companies for the giant step forward to showcase their overall capability in a positive manner.</p>
<p>Last November (2008) I worked with Zeeshan Bhai and AABEA to organize a round table session and Cisco Telepresence Demonstration in San Jose with Khandakar Asif Hasan, Director &amp; CTO and Mushfiqur Rahman, Deputy Managing Director of Spectrum Engineering Consortium Ltd. There they mentioned that Spectrum and some other companies are already at the last stage for fulfilling all the necessary requirements for CMMI Level 3 certifications. It&#8217;s great to see that it worked well with them.</p>
<p>Reference: <a href="http://aabeat.com/forum/index.php?topic=28.0">http://aabeat.com/forum/index.php?topic=28.0</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=59&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2009/02/19/spectrum-is-now-cmmi-level-3-certified/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>
	</item>
		<item>
		<title>Attended DreamForce 2008</title>
		<link>http://ashikuzzaman.wordpress.com/2008/11/04/attended-dreamforce-2008/</link>
		<comments>http://ashikuzzaman.wordpress.com/2008/11/04/attended-dreamforce-2008/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 12:27:11 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[dreamforce 2008 cloud moscone]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=56</guid>
		<description><![CDATA[As a Salesforce.com employee I got free pass to attend DreamForce 2008 which started today. I rushed into the BART to reach San Francisco Moscone Center early in the morning so that I don&#8217;t miss Marc Benioff&#8217;s keynote speech. Indeed he did an amazing speech in front of approx 10000 attendees in the huge Moscone [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=56&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:left;">As a Salesforce.com employee I got free pass to attend <a href="http://www.salesforce.com/dreamforce/DF08/">DreamForce 2008</a> which started today. I rushed into the BART to reach San Francisco Moscone Center early in the morning so that I don&#8217;t miss Marc Benioff&#8217;s keynote speech. Indeed he did an amazing speech in front of approx 10000 attendees in the huge Moscone Center Expo. I liked the dramatic way the <a href="http://www.lincvolt.com/">LincVolt</a> car entered into the stage and how Marc introduced Neil Young&#8217;s dream of a newer generation of cars and the way it forecasts it&#8217;s battery usage, location, angles through Salesforce.com sites. Salesforce.com&#8217;s parntership with Facebook and Amazon Web Services clouds were really encouraging. The theme of this year was Cloud. Marc is so good presented and he made quite a nice humors on some MS technologies including their newest announcement in the Cloud computing platform Windows Azure which Marc titled as Vapourware.</p>
<p style="text-align:left;">I wont a iPOD docking station with radio in a booth through wheel of fortune. My colleague Shishir won a iPod nano in another booth. The whole day went quite  busy and by the time I was returning home in the evening, I had to walk in the rain a little to reach the Powell BART station.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=56&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2008/11/04/attended-dreamforce-2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>
	</item>
		<item>
		<title>Google&#8217;s Web Browser Chrome</title>
		<link>http://ashikuzzaman.wordpress.com/2008/09/04/googles-web-browser-chrome/</link>
		<comments>http://ashikuzzaman.wordpress.com/2008/09/04/googles-web-browser-chrome/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 20:20:35 +0000</pubDate>
		<dc:creator>ashikuzzaman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[google chrome browser]]></category>

		<guid isPermaLink="false">http://ashikuzzaman.wordpress.com/?p=51</guid>
		<description><![CDATA[I started using Google&#8217;s new Web Browser Chrome since morning. It looks so good to me so far although I am not going to move away from Firefox pretty soon. First 2 things I noticed are that it doesn&#8217;t have a toolbar other than the address bar (nothing like File, Edit etc) and the tabs look very good/clearly [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=51&subd=ashikuzzaman&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I started using Google&#8217;s new Web Browser <strong>Chrome</strong> since morning. It looks so good to me so far although I am not going to move away from Firefox pretty soon. First 2 things I noticed are that it doesn&#8217;t have a toolbar other than the address bar (nothing like File, Edit etc) and the tabs look very good/clearly distinguishable. Also the browser is so far neutral about Google&#8217;s services or adding the Google toolbar by default on it. It&#8217;s beta, so it will change a lot in near future&#8230;still exploring what&#8217;s inside&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ashikuzzaman.wordpress.com/51/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ashikuzzaman.wordpress.com/51/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ashikuzzaman.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ashikuzzaman.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ashikuzzaman.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ashikuzzaman.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ashikuzzaman.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ashikuzzaman.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ashikuzzaman.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ashikuzzaman.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ashikuzzaman.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ashikuzzaman.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ashikuzzaman.wordpress.com&blog=679859&post=51&subd=ashikuzzaman&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ashikuzzaman.wordpress.com/2008/09/04/googles-web-browser-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abb0fb1e422697731365d56e1ab8692b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ashik</media:title>
		</media:content>
	</item>
	</channel>
</rss>