<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" gd:etag="W/&quot;DkMBQH05eSp7ImA9WhRWFkU.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619</id><updated>2012-01-04T05:40:51.321-08:00</updated><category term="Hindi" /><category term="Aeturnum" /><category term="Internet" /><category term="MSN" /><category term="APIIT" /><category term="cricket" /><category term="Mysql" /><category term="Dialog" /><category term="Hibernate" /><category term="University of Colombo Institute for Agro-technology and Rural Sciences" /><category term="compaq cup" /><category term="Gmail" /><category term="maven" /><category term="web cast" /><category term="DETERMINISTIC" /><category term="ICTA" /><category term="Movies" /><category term="UCSC" /><category term="Yahoo" /><category term="University Of Moratuwa" /><category term="Facebook" /><category term="Google" /><title>The Repository</title><subtitle type="html">Share My knowledge and feelings with People who interest....</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>19</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/TheRepository" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="therepository" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">TheRepository</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><entry gd:etag="W/&quot;DEcFQHs7cSp7ImA9WxFREko.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-5679553254994150179</id><published>2010-04-26T03:00:00.000-07:00</published><updated>2010-04-26T03:00:11.509-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-26T03:00:11.509-07:00</app:edited><title>How to mask a String while showing part of the String (last 4 digits)</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/LWbVKguCv3N-T_-f4eudF7_NzH8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/LWbVKguCv3N-T_-f4eudF7_NzH8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/LWbVKguCv3N-T_-f4eudF7_NzH8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/LWbVKguCv3N-T_-f4eudF7_NzH8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;Following code sample shows how to mask a string while showing last 4 digits.&amp;nbsp;Normally you are not allwoed to save the entire account number or credit card number&amp;nbsp;in your database. Better option is to mask the number and saving.&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="brush: java" type="syntaxhighlighter"&gt;public class Mask {

&amp;nbsp;&amp;nbsp; &amp;nbsp;public static void main(String[] args) {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;String accno = "4444333322221221";
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;StringBuffer sb = new StringBuffer();
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (accno != null &amp;amp;&amp;amp; !accno.isEmpty()) {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Integer length = accno.length();
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Integer mask = length;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if (length &amp;gt; 4) {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;mask = length - 4;
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;for (int i = 0; i &amp;lt; mask; i++) {
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;sb.append("x");
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;sb.append(accno.substring(mask));
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;System.out.println("Masked String : " + sb);
&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}

&amp;nbsp;&amp;nbsp; &amp;nbsp;}

}
&lt;/pre&gt;result wil be shown like this:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Masked String : xxxxxxxxxxxx1221&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here a link that describes why account number should be masked.&lt;br /&gt;
&lt;a href="http://www.pinoytechblog.com/archives/does-your-bank-mask-your-account-number"&gt;http://www.pinoytechblog.com/archives/does-your-bank-mask-your-account-number&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-5679553254994150179?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/5679553254994150179/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2010/04/how-to-mask-string-while-showing-part.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/5679553254994150179?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/5679553254994150179?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2010/04/how-to-mask-string-while-showing-part.html" title="How to mask a String while showing part of the String (last 4 digits)" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CEUNRHY6eCp7ImA9WxBRGEg.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-1426098196702739701</id><published>2009-12-24T00:16:00.000-08:00</published><updated>2010-01-07T00:18:15.810-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-07T00:18:15.810-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Hibernate" /><title>Single-ended association proxies issues</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9ioD4qbWo_Nts_Raa8HFmO3OYtI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9ioD4qbWo_Nts_Raa8HFmO3OYtI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9ioD4qbWo_Nts_Raa8HFmO3OYtI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9ioD4qbWo_Nts_Raa8HFmO3OYtI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;you may often face the following exception in Hibernate.&lt;br /&gt;
&lt;blockquote&gt;java.lang.ClassCastException: &lt;br /&gt;
com.roshan.services.payment.gateway.domain.GatewayProfile_$$_javassist_11&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
This happens when you try to do something like this:&lt;br /&gt;
&lt;pre class="brush: java" type="syntaxhighlighter"&gt;public void doSomething(IPaymentModeProfile paymentModeProfile){
//something goes here
switch (id) {
  // ACH(101), CPA(102), CREDIT(103), DIRECT_DEBIT(104), MAESTRO(105),
  // PINLESS_DEBIT(106)
  case 101: {
   //something goes here
  }
   break;
  case 102: {
   //something goes here
  }
   break;
  case 103: {
   CreditCard creditCard = (CreditCard) paymentModeProfile;
   //do something with creditCard

  }
   break;
  case 104: {
   //something goes here

  }
   break;
  case 105: {
   //something goes here
  }
   break;
  case 106: {
   //something goes here
  }
   break;

  }

}
&lt;/pre&gt;&lt;br /&gt;
Using interface proxies together with polymorphism can lead to sporadic ClassCastExceptions. This problem occurs whenever two mapped subclasses have an identical property and the instances are loaded polymorphically through the base class. &lt;br /&gt;
&lt;br /&gt;
This was due to the fact that a lazily loaded List of objects retrieved by hibernate contained proxied objects. The entities that were proxied were using a single table inheritance strategy, so there is a base class that is subclassed several times. The entities once loaded were being sorted into separate lists that are typed according to the subclasses, they were being cast into the appropriate subclass but this cast was failing because instead of being an instance of say GatewayProfile it was an instance of GatewayProfile_$$_javassist_11 i.e. &lt;br /&gt;
&lt;br /&gt;
Assume CreditCard implements the IPaymentModeProfile interface. The gist of the problem is that Hibernate is trying to optimize and avoid going to the database by returning a proxy object. However, a proxy object cannot be downcast to the subclass object, the exception occurs because of downcasting. There are lot of solution to avoid this problem.&lt;br /&gt;
&lt;br /&gt;
The first solution to this issue is use their own interfaces instead of your entity and its subclass. In this case cglib creates a proxy class that implements all the interfaces specified in the proxy attribute (in both class and joined sub-class tags). Everywhere in your code, you should access the entity through the interfaces &lt;br /&gt;
and not the implementation classes.&lt;br /&gt;
&lt;br /&gt;
Ex: create a Interface Called ICreditCard instead of CreditCard class.&lt;br /&gt;
&lt;br /&gt;
Follow this link for more information.&lt;a href="http://sysin.wordpress.com/2009/02/27/hibernate-inheritance-classcastexception-part-1/"&gt; http://sysin.wordpress.com/2009/02/27/hibernate-inheritance-classcastexception-part-1/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The second solution is that use visitor pattern. &lt;br /&gt;
&lt;br /&gt;
Follow this link for more information. &lt;a href="http://andykayley.blogspot.com/2009/05/how-to-avoid-classcastexceptions-when.html"&gt;http://andykayley.blogspot.com/2009/05/how-to-avoid-classcastexceptions-when.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
The third solution is extract the real object from hibernate proxy. This is very simple and not taking too much time to implement. This is the only solution that you don't need to write extra classes.&lt;br /&gt;
&lt;pre class="brush: java"&gt;if (paymentModeProfile instanceof HibernateProxy) {
// convert the hibernate proxy to an object.
    Object object = paymentModeProfile;
 // get the real object
    CreditCard creditCard = (CreditCard) ((HibernateProxy) object).getHibernateLazyInitializer().getImplementation();
 
 // do anything with creditCard
 }
&lt;/pre&gt;&lt;br /&gt;
cheers..!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-1426098196702739701?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/1426098196702739701/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/12/class-cast-exception-is-hibernate-proxy.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/1426098196702739701?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/1426098196702739701?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/12/class-cast-exception-is-hibernate-proxy.html" title="Single-ended association proxies issues" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DEIEQH0yeSp7ImA9WxBTFEw.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-7134028001071335464</id><published>2009-12-09T19:41:00.000-08:00</published><updated>2009-12-09T19:41:41.391-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-09T19:41:41.391-08:00</app:edited><title>Google Chrome Extensions: Blog This! (by Google)</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/qRpGVMBM5s3JoVUGOBBPYkcSG2k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qRpGVMBM5s3JoVUGOBBPYkcSG2k/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/qRpGVMBM5s3JoVUGOBBPYkcSG2k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qRpGVMBM5s3JoVUGOBBPYkcSG2k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;a href="https://chrome.google.com/extensions/detail/pengoopmcjnbflcjbmoeodbmoflcgjlk"&gt;Google Chrome Extensions: Blog This! (by Google)&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-7134028001071335464?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="related" href="https://chrome.google.com/extensions/detail/pengoopmcjnbflcjbmoeodbmoflcgjlk" title="Google Chrome Extensions: Blog This! (by Google)" /><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/7134028001071335464/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/12/google-chrome-extensions-blog-this-by.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/7134028001071335464?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/7134028001071335464?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/12/google-chrome-extensions-blog-this-by.html" title="Google Chrome Extensions: Blog This! (by Google)" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CEAMQn04eCp7ImA9WxNQF0U.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-6604474803881266028</id><published>2009-09-24T01:59:00.001-07:00</published><updated>2009-09-24T01:59:43.330-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-24T01:59:43.330-07:00</app:edited><title>Easymock Tutorial</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8zTj9-nKmgLaPd7M-Zt3vkuYEhY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8zTj9-nKmgLaPd7M-Zt3vkuYEhY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8zTj9-nKmgLaPd7M-Zt3vkuYEhY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8zTj9-nKmgLaPd7M-Zt3vkuYEhY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;Check out this SlideShare Presentation: &lt;div style="width:425px;text-align:left" id="__ss_1930598"&gt;&lt;a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/subin123/easymock-tutorial" title="Easymock Tutorial"&gt;Easymock Tutorial&lt;/a&gt;&lt;object style="margin:0px" width="425" height="355"&gt;&lt;param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=easymock1-090831050043-phpapp02&amp;stripped_title=easymock-tutorial" /&gt;&lt;param name="allowFullScreen" value="true"/&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=easymock1-090831050043-phpapp02&amp;stripped_title=easymock-tutorial" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;"&gt;View more &lt;a style="text-decoration:underline;" href="http://www.slideshare.net/"&gt;presentations&lt;/a&gt; from &lt;a style="text-decoration:underline;" href="http://www.slideshare.net/subin123"&gt;subin123&lt;/a&gt;.&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-6604474803881266028?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/6604474803881266028/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/easymock-tutorial.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/6604474803881266028?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/6604474803881266028?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/easymock-tutorial.html" title="Easymock Tutorial" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>1</thr:total></entry><entry gd:etag="W/&quot;CUYAQn8-eip7ImA9WxNQFk8.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-3792511291737028477</id><published>2009-09-22T05:28:00.000-07:00</published><updated>2009-09-22T05:39:03.152-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-22T05:39:03.152-07:00</app:edited><title>Spring Security 3.0.0.M2 Released</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/lgQgzp0JG5aakE440oZ8LqkJJMU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lgQgzp0JG5aakE440oZ8LqkJJMU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/lgQgzp0JG5aakE440oZ8LqkJJMU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lgQgzp0JG5aakE440oZ8LqkJJMU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;&lt;a href="http://forum.springsource.org/member.php?u=6881"&gt;Luke Taylor&lt;/a&gt; , A enior Member of Acegi Security System TeamSpring Team announced that they have reached the second milestone release for Spring Security 3.0.0. It&amp;nbsp;contains some notable changes to the configuration namespace which spring users should be aware of.&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Full details can be found in the changelog as usual, but the most notable change is that the use of the "decorator" style namespace elements has been discontinued.&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;To summarize the namespace changes:&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Namespace elements which create an AuthenticationProvider instance must be declared as children of the &amp;lt;authentication-manager&amp;gt;.&lt;/li&gt;
&lt;li&gt;The use of &amp;lt;custom-authentication-provider&amp;gt; has been dropped. Use &amp;lt;authentication-provider ref='yourProviderBeanName'&amp;gt; as a child of the &amp;lt;authentication-manager&amp;gt; element.&lt;/li&gt;
&lt;li&gt;&amp;lt;custom-filter&amp;gt; should no longer be used to decorate filter beans, but used with a ref="yourFilterBean" attribute as a child of the &amp;lt;http&amp;gt; block.&lt;/li&gt;
&lt;li&gt;&amp;lt;custom-after-invocation-provider&amp;gt; declarations should be replaced by &amp;lt;after-invocation-provider ref='yourProviderBeanName'&amp;gt;&amp;nbsp;within the &amp;lt;global-method-security&amp;gt; element.&lt;/li&gt;
&lt;li&gt;The session-controller-ref has been moved to the concurrent-session-control element (SEC-1197).&lt;/li&gt;
&lt;/ul&gt;&lt;ol&gt;&lt;/ol&gt;&lt;div&gt;&lt;div style="text-align: justify;"&gt;All namespace configurations must now include the &lt;authentication-manager&gt; element in order to instantiate the AuthenticationManager (it is no longer created internally).&amp;nbsp;These changes are also described in the updated manual and are used in the sample applications.&lt;/authentication-manager&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;As with Spring 3.0, this is the second release which requires a minimum JDK 1.5 to run and also require Spring 3.0,&amp;nbsp;so you should get hold of the Spring 3.0.0.M3 release if you aren't already using it.&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Reference : &lt;a href="http://www.springsource.com/"&gt;SpringSource&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-3792511291737028477?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/3792511291737028477/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/spring-security-300m2-released.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/3792511291737028477?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/3792511291737028477?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/spring-security-300m2-released.html" title="Spring Security 3.0.0.M2 Released" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CkAHSH0zfCp7ImA9WxNQFUg.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-2683919535846374570</id><published>2009-09-21T09:08:00.000-07:00</published><updated>2009-09-21T09:32:19.384-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-21T09:32:19.384-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Movies" /><category scheme="http://www.blogger.com/atom/ns#" term="Hindi" /><title>Love Aaj Kal [2009] / New Source PDVD Rip / XViD / 700 MB</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/16dIq0qm1b55K1f6cn63RLrG4FU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/16dIq0qm1b55K1f6cn63RLrG4FU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/16dIq0qm1b55K1f6cn63RLrG4FU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/16dIq0qm1b55K1f6cn63RLrG4FU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i27.tinypic.com/2d0h0mo.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="420" src="http://i27.tinypic.com/2d0h0mo.jpg" width="287" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;a href="http://i29.tinypic.com/ibgd5d.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://i29.tinypic.com/ibgd5d.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="font-family: Verdana; font-size: 12px; font-weight: bold; line-height: 19px;"&gt;Complete name : Love aaj kal 2009.avi&lt;br /&gt;
Format : AVI&lt;br /&gt;
Format/Info : Audio Video Interleave&lt;br /&gt;
Format/Family : RIFF&lt;br /&gt;
File size : 697 MiB&lt;br /&gt;
PlayTime : 2h 11mn&lt;br /&gt;
Bit rate : 737 Kbps&lt;br /&gt;
Video #0&lt;br /&gt;
Codec : XviD&lt;br /&gt;
Codec/Family : MPEG-4&lt;br /&gt;
Codec/Info : XviD project&lt;br /&gt;
PlayTime : 2h 11mn&lt;br /&gt;
Bit rate : 636 Kbps&lt;br /&gt;
Width : 688 pixels&lt;br /&gt;
Height : 256 pixels&lt;br /&gt;
Audio #1&lt;br /&gt;
Codec : MPEG-1 Audio layer 3&lt;br /&gt;
Codec profile : Joint stereo&lt;br /&gt;
PlayTime : 2h 11mn&lt;br /&gt;
Bit rate : 94 Kbps&lt;br /&gt;
Bit rate mode : CBR&lt;br /&gt;
Channel(s) : 2 channels&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="font-family: Verdana; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 19px;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://i26.tinypic.com/2zxpkyb.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="62" src="http://i26.tinypic.com/2zxpkyb.jpg" width="200" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="color: #465584; font-family: Courier; font-size: 12px; line-height: 19px;"&gt;&lt;a href="http://rapidshare.com/files/265689739/Love_aaj_kal_2009.avi.001"&gt;http://rapidshare.com/files/265689739/Love_aaj_kal_2009.avi.001&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/265689671/Love_aaj_kal_2009.avi.002"&gt;http://rapidshare.com/files/265689671/Love_aaj_kal_2009.avi.002&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/265689730/Love_aaj_kal_2009.avi.003"&gt;http://rapidshare.com/files/265689730/Love_aaj_kal_2009.avi.003&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/265689755/Love_aaj_kal_2009.avi.004"&gt;http://rapidshare.com/files/265689755/Love_aaj_kal_2009.avi.004&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/265689782/Love_aaj_kal_2009.avi.005"&gt;http://rapidshare.com/files/265689782/Love_aaj_kal_2009.avi.005&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/265690007/Love_aaj_kal_2009.avi.006"&gt;http://rapidshare.com/files/265690007/Love_aaj_kal_2009.avi.006&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://rapidshare.com/files/265689799/Love_aaj_kal_2009.avi.007"&gt;http://rapidshare.com/files/265689799/Love_aaj_kal_2009.avi.007&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="font-family: Verdana; font-size: small;"&gt;&lt;span style="font-size: 12px; line-height: 19px;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-2683919535846374570?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/2683919535846374570/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/love-aaj-kal-2009-new-source-pdvd-rip.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/2683919535846374570?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/2683919535846374570?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/love-aaj-kal-2009-new-source-pdvd-rip.html" title="Love Aaj Kal [2009] / New Source PDVD Rip / XViD / 700 MB" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://i27.tinypic.com/2d0h0mo_th.jpg" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;AkcGSH48fCp7ImA9WxNQEkk.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-5219900421158940481</id><published>2009-09-17T21:23:00.000-07:00</published><updated>2009-09-17T21:27:09.074-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-17T21:27:09.074-07:00</app:edited><title>Log In with Your Facebook Username</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/epJeaWaIF7hxLFjd7zLLC3cFicw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/epJeaWaIF7hxLFjd7zLLC3cFicw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/epJeaWaIF7hxLFjd7zLLC3cFicw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/epJeaWaIF7hxLFjd7zLLC3cFicw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="text-align: justify;"&gt;A couple of months ago, Facebook has introduced a own user name for users. That helps to find and connect with each other very easily. Beginning today, they have introduced another new feature using Facebook user name. With this new feature users will be able to log in to their Facebook accounts using&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Facebook user name a and password from any browser,mobile phone or Facebook Connect-enabled website.   &lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;For example, user can enter username, "&lt;b&gt;roshansn&lt;/b&gt;" in place of my email address when he log in to Facebook.&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SrMK2EX83pI/AAAAAAAAAQk/Sa9x80S_UUE/s1600-h/user+name+logging.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SrMK2EX83pI/AAAAAAAAAQk/Sa9x80S_UUE/s400/user+name+logging.JPG" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;This doesnt mean that logging with email address is dissabled. You will still be able to log in with your email.This is a very convenient way to access your Facebook account compare with logging with email address. A username gives you an easy-to-remember web address for your Facebook profile so your friends can more easily find and connect with you. If you don't have a Facebook username yet, you can choose one &lt;a href="http://www.facebook.com/username/"&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-5219900421158940481?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/5219900421158940481/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/log-in-with-your-facebook-username.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/5219900421158940481?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/5219900421158940481?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/log-in-with-your-facebook-username.html" title="Log In with Your Facebook Username" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SrMK2EX83pI/AAAAAAAAAQk/Sa9x80S_UUE/s72-c/user+name+logging.JPG" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CkAERXY_eip7ImA9WxNQEUo.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-874809044292751531</id><published>2009-09-16T23:56:00.000-07:00</published><updated>2009-09-16T23:58:24.842-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-16T23:58:24.842-07:00</app:edited><title>Channel 4 Video Analysis</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/GsKpAQ5F8an1-k9pKxBg-oNee4o/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GsKpAQ5F8an1-k9pKxBg-oNee4o/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/GsKpAQ5F8an1-k9pKxBg-oNee4o/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GsKpAQ5F8an1-k9pKxBg-oNee4o/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;Analysis of Chanel 4 video. Find the attachment and share it.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://sites.google.com/site/mvnrepository/file-cabinet/Presentation_final.ppt?attredirects=0"&gt;Channel 4 video analysis.ppt&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-874809044292751531?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/874809044292751531/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/channel-4-video-analysis.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/874809044292751531?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/874809044292751531?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/channel-4-video-analysis.html" title="Channel 4 Video Analysis" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CkQFQ3s4fSp7ImA9WxNQEUo.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-7241856417442773930</id><published>2009-09-16T10:34:00.000-07:00</published><updated>2009-09-16T23:51:52.535-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-16T23:51:52.535-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="maven" /><title>How to use source level 5 in Maven projects?</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/SPV--uTw49jVvWKkxOlKYHtWFiY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SPV--uTw49jVvWKkxOlKYHtWFiY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/SPV--uTw49jVvWKkxOlKYHtWFiY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/SPV--uTw49jVvWKkxOlKYHtWFiY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span style="font-family: Verdana; font-size: 12px; line-height: 18px;"&gt;When compiling a project with enableTemplating set to true via maven2, you may have encountered the following error:&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;blockquote&gt;Annotation is not allowed in -source 1.3 use -source 5 or higher to enable&amp;nbsp;annotation.&amp;nbsp;&lt;/blockquote&gt;&lt;blockquote&gt;Generics&amp;nbsp;are not allowed in -source 1.3 use -source 5 or higher to enable&amp;nbsp;generics.&amp;nbsp;&lt;/blockquote&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;To solve this&amp;nbsp;&lt;span style="color: #333333; font-family: Verdana; font-size: 12px;"&gt;you must add the source level at your pom.xml.&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: left;"&gt;&lt;pre class="brush: xml;"&gt;&amp;lt;build&amp;gt;
  &amp;lt;plugins&amp;gt;
   &amp;lt;plugin&amp;gt;
    &amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;
    &amp;lt;artifactId&amp;gt;maven-compiler-plugin&amp;lt;/artifactId&amp;gt;
    &amp;lt;configuration&amp;gt;
     &amp;lt;source&amp;gt;1.5&amp;lt;/source&amp;gt;
     &amp;lt;target&amp;gt;1.5&amp;lt;/target&amp;gt;
    &amp;lt;/configuration&amp;gt;
   &amp;lt;/plugin&amp;gt;
  &amp;lt;/plugins&amp;gt;
 &amp;lt;/build&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-7241856417442773930?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/7241856417442773930/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/how-to-use-source-level-5-in-maven.html#comment-form" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/7241856417442773930?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/7241856417442773930?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/how-to-use-source-level-5-in-maven.html" title="How to use source level 5 in Maven projects?" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>5</thr:total></entry><entry gd:etag="W/&quot;CkIHRXc6cCp7ImA9WxNRFUQ.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-516511617333406099</id><published>2009-09-10T06:48:00.000-07:00</published><updated>2009-09-10T06:48:54.918-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-10T06:48:54.918-07:00</app:edited><title>Live Life Colours</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OAyYU3pjWEmn_U_87va5xq65Y_4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OAyYU3pjWEmn_U_87va5xq65Y_4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OAyYU3pjWEmn_U_87va5xq65Y_4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OAyYU3pjWEmn_U_87va5xq65Y_4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;h2 align="center"&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;span style="background-color: red;"&gt;&lt;span style="color: white; font-family: Arial;"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;White&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;h2 style="text-align: justify;"&gt;&lt;span style="font-family: inherit; font-size: small;"&gt;&lt;span style="font-weight: normal;"&gt;Brides wear white to symbolize innocence and purity. White reflects light and is considered a summer color. White is popular in decorating and in fashion because it is light, neutral, and goes with everything. However, white shows dirt and is therefore more difficult to keep clean than other colors. Doctors and nurses wear white to imply sterility. &lt;/span&gt;&lt;/span&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;span style="background-color: red;"&gt;&lt;span style="color: white; font-family: Arial;"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4Yit24vI/AAAAAAAAAI0/Kabw59Qyajs/s1600-h/white2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4Yit24vI/AAAAAAAAAI0/Kabw59Qyajs/s400/white2.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4gxJ4MII/AAAAAAAAAJc/Jwkr86IVH1I/s1600-h/white7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4gxJ4MII/AAAAAAAAAJc/Jwkr86IVH1I/s400/white7.jpg" /&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4c78K3HI/AAAAAAAAAI8/W9k8akQfRbY/s1600-h/cvet.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4c78K3HI/AAAAAAAAAI8/W9k8akQfRbY/s400/cvet.jpg" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4gYpBuqI/AAAAAAAAAJU/ln5OfCn5wP8/s1600-h/white6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4gYpBuqI/AAAAAAAAAJU/ln5OfCn5wP8/s400/white6.jpg" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4h28zlVI/AAAAAAAAAJk/7SoQMXPHlL0/s1600-h/white9.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4h28zlVI/AAAAAAAAAJk/7SoQMXPHlL0/s400/white9.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4epxJWMI/AAAAAAAAAJE/XhLn3JgQlXw/s1600-h/white3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4epxJWMI/AAAAAAAAAJE/XhLn3JgQlXw/s400/white3.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4fbgef6I/AAAAAAAAAJM/5Yd1ni2gI4k/s1600-h/white4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4fbgef6I/AAAAAAAAAJM/5Yd1ni2gI4k/s400/white4.jpg" /&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4igSb_rI/AAAAAAAAAJs/F8y2BecUjXg/s1600-h/white.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4igSb_rI/AAAAAAAAAJs/F8y2BecUjXg/s400/white.jpg" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;h2 align="center"&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;span style="background-color: red;"&gt;&lt;span style="color: white; font-family: Arial;"&gt;&lt;b&gt;&lt;span style="font-size: large;"&gt; &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: Arial; font-size: 24px; font-weight: bold;"&gt;&lt;span style="background-color: red;"&gt;Black&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;h2 style="text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-family: inherit; font-weight: normal;"&gt;Black is the color of authority and power. It is popular in fashion because it makes people appear thinner. It is also stylish and timeless. Black also implies submission. Priests wear black to signify submission to God. Some fashion experts say a woman wearing black implies submission to men. Black outfits can also be overpowering, or make the wearer seem aloof or evil. Villains, such as Dracula, often wear black. &lt;/span&gt;&lt;/span&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: Arial; font-size: 24px; font-weight: bold;"&gt;&lt;span style="background-color: red;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5vud8ecI/AAAAAAAAAJ0/AdPMZfZk3n8/s1600-h/black1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5vud8ecI/AAAAAAAAAJ0/AdPMZfZk3n8/s400/black1.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5wTg_SDI/AAAAAAAAAJ8/t9AKa77xJyA/s1600-h/black2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5wTg_SDI/AAAAAAAAAJ8/t9AKa77xJyA/s400/black2.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5xR9_EEI/AAAAAAAAAKE/nBB0mZwHFSM/s1600-h/black3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5xR9_EEI/AAAAAAAAAKE/nBB0mZwHFSM/s400/black3.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5yOYMU0I/AAAAAAAAAKM/wSKnTEbxuew/s1600-h/black4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5yOYMU0I/AAAAAAAAAKM/wSKnTEbxuew/s400/black4.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5zB-zG0I/AAAAAAAAAKU/QS3F1g8NAz8/s1600-h/black5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5zB-zG0I/AAAAAAAAAKU/QS3F1g8NAz8/s400/black5.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5z87A8gI/AAAAAAAAAKc/-vdPoIR5hJw/s1600-h/black6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj5z87A8gI/AAAAAAAAAKc/-vdPoIR5hJw/s400/black6.jpg" /&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj501VuKfI/AAAAAAAAAKk/siAIV7N__Uk/s1600-h/black7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj501VuKfI/AAAAAAAAAKk/siAIV7N__Uk/s400/black7.jpg" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj51rxEOWI/AAAAAAAAAKs/9jvo6gjwMgk/s1600-h/black8.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj51rxEOWI/AAAAAAAAAKs/9jvo6gjwMgk/s400/black8.jpg" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;h2 align="center"&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: Arial; font-size: 24px; font-weight: bold;"&gt;&lt;span style="background-color: red;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="background-color: blue; border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="color: red; font-family: Arial; font-size: 24px; font-weight: bold;"&gt;Red&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;h2 style="text-align: justify;"&gt;&lt;span style="font-family: inherit; font-size: small;"&gt;&lt;span style="font-weight: normal;"&gt;The most emotionally intense color, red stimulates a faster heartbeat and breathing. It is also the color of love. Red clothing gets noticed and makes the wearer appear heavier. Since it is an extreme color, red clothing might not help people in negotiations or confrontations. Red cars are popular targets for thieves. In decorating, red is usually used as an accent. Decorators say that red furniture should be perfect since it will attract attention.&lt;/span&gt;&lt;br style="font-weight: normal;" /&gt;&lt;span style="font-weight: normal;"&gt;The most romantic color, pink, is more tranquilizing. Sports teams sometimes paint the locker rooms used by opposing teams bright pink so their opponents will lose energy. &lt;/span&gt;&lt;/span&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;span style="background-color: blue; border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="color: red; font-family: Arial; font-size: 24px; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6lPHN5pI/AAAAAAAAAK0/8IQFVcAfrDo/s1600-h/red1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6lPHN5pI/AAAAAAAAAK0/8IQFVcAfrDo/s400/red1.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6l1apApI/AAAAAAAAAK8/FzKEMQ-vPvw/s1600-h/red2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6l1apApI/AAAAAAAAAK8/FzKEMQ-vPvw/s400/red2.jpg" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6myyXbJI/AAAAAAAAALE/nCVr3FQPrn8/s1600-h/red3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6myyXbJI/AAAAAAAAALE/nCVr3FQPrn8/s400/red3.jpg" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6npjkfBI/AAAAAAAAALM/GH9fmbVrqXs/s1600-h/red4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6npjkfBI/AAAAAAAAALM/GH9fmbVrqXs/s400/red4.jpg" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6otqiP2I/AAAAAAAAALU/vowyix1lRCo/s1600-h/red5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6otqiP2I/AAAAAAAAALU/vowyix1lRCo/s400/red5.jpg" /&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6q8FWNfI/AAAAAAAAALk/LbObVlcg2uU/s1600-h/red7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6q8FWNfI/AAAAAAAAALk/LbObVlcg2uU/s400/red7.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6pxoEIPI/AAAAAAAAALc/sYanfegoYK4/s1600-h/red6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj6pxoEIPI/AAAAAAAAALc/sYanfegoYK4/s400/red6.jpg" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: 'times new roman';"&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;div style="text-align: center;"&gt;&lt;span style="background-color: red; border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="color: blue; font-family: Arial; font-size: 24px; font-weight: bold;"&gt;Blue&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-family: inherit;"&gt;The color of the sky and the ocean, blue is one of the most popular colors. It causes the opposite reaction as red. Peaceful, tranquil blue causes the body to produce calming chemicals, so it is often used in bedrooms. Blue can also be cold and depressing. Fashion consultants recommend wearing blue to job interviews because it symbolizes loyalty. People are more productive in blue rooms. Studies show weightlifters are able to handle heavier weights in blue gyms. &lt;/span&gt;&lt;/span&gt;&lt;span style="background-color: red; border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="color: blue; font-family: Arial; font-size: 24px; font-weight: bold;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div style="background-color: #f3f3f3;"&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj74z_v42I/AAAAAAAAALs/WME6CZjOU2c/s1600-h/blue1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj74z_v42I/AAAAAAAAALs/WME6CZjOU2c/s400/blue1.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj755U1kaI/AAAAAAAAAL0/Xft9pt3B4pI/s1600-h/blue2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj755U1kaI/AAAAAAAAAL0/Xft9pt3B4pI/s400/blue2.jpg" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj76mlItdI/AAAAAAAAAL8/JTpMvbACmek/s1600-h/blue3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj76mlItdI/AAAAAAAAAL8/JTpMvbACmek/s400/blue3.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj77ldyajI/AAAAAAAAAME/oLQ-89hLz4U/s1600-h/blue4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj77ldyajI/AAAAAAAAAME/oLQ-89hLz4U/s400/blue4.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj78741ypI/AAAAAAAAAMM/ENYwb9FtTT8/s1600-h/blue5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj78741ypI/AAAAAAAAAMM/ENYwb9FtTT8/s400/blue5.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj792DJbWI/AAAAAAAAAMU/_yjpsXDvX6w/s1600-h/blue6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj792DJbWI/AAAAAAAAAMU/_yjpsXDvX6w/s400/blue6.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj7-wRdFcI/AAAAAAAAAMc/Hs0MzKzMS4w/s1600-h/blue7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj7-wRdFcI/AAAAAAAAAMc/Hs0MzKzMS4w/s400/blue7.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="background-color: red; border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: Arial; font-weight: bold;"&gt;&lt;span style="color: #99cc00; font-size: large;"&gt;Green&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style="color: black; font-size: small;"&gt;&lt;/span&gt;&lt;div style="text-align: justify;"&gt;&lt;br style="font-family: inherit;" /&gt;&lt;span style="color: black; font-size: small;"&gt;&lt;span style="font-family: inherit;"&gt;Currently the most popular decorating color, green symbolizes nature. It is the easiest color on the eye and can improve vision. It is a calming, refreshing color. People waiting to appear on TV sit in Ã¢â‚¬Å“green roomsÃ¢â‚¬ï¿½ to relax. Hospitals often use green because it relaxes patients. Brides in the Middle Ages wore green to symbolize fertility. Dark green is masculine, conservative, and implies wealth. However, seamstresses often refuse to use green thread on the eve of a fashion show for fear it will bring bad luck.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8sekBvDI/AAAAAAAAAMk/S7Uc912trrQ/s1600-h/green1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8sekBvDI/AAAAAAAAAMk/S7Uc912trrQ/s400/green1.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8vWD3T0I/AAAAAAAAAMs/mKpQ6kl7YHY/s1600-h/green2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8vWD3T0I/AAAAAAAAAMs/mKpQ6kl7YHY/s400/green2.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8wLujYyI/AAAAAAAAAM0/EiKaKakhHEI/s1600-h/green3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8wLujYyI/AAAAAAAAAM0/EiKaKakhHEI/s400/green3.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8xjUJD9I/AAAAAAAAAM8/e7JcTJgcy6A/s1600-h/green4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8xjUJD9I/AAAAAAAAAM8/e7JcTJgcy6A/s400/green4.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8yULazaI/AAAAAAAAANE/MQkEZFu9p3g/s1600-h/green5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8yULazaI/AAAAAAAAANE/MQkEZFu9p3g/s400/green5.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8zdUl40I/AAAAAAAAANM/YkCIcXnNsHo/s1600-h/green6.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj8zdUl40I/AAAAAAAAANM/YkCIcXnNsHo/s400/green6.JPG" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj806eHl8I/AAAAAAAAANU/l0g7cif2pKI/s1600-h/green7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj806eHl8I/AAAAAAAAANU/l0g7cif2pKI/s400/green7.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="background-color: red; border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="color: yellow; font-family: Arial; font-size: 24px; font-weight: bold;"&gt;Yellow&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-family: inherit;"&gt;Cheerful sunny yellow is an attention getter. While it is considered an optimistic color, people lose their tempers more often in yellow rooms, and babies will cry more. It is the most difficult color for the eye to take in, so it can be overpowering if overused. Yellow enhances concentration, hence its use for legal pads. It also speeds metabolism.&lt;/span&gt;&lt;/span&gt;&lt;br style="font-family: inherit;" /&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt; &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj92gJEmPI/AAAAAAAAANc/izn8OOaY5L4/s1600-h/Yellow1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj92gJEmPI/AAAAAAAAANc/izn8OOaY5L4/s400/Yellow1.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj93uBJ0TI/AAAAAAAAANk/DU_VBhl_xVE/s1600-h/Yellow2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj93uBJ0TI/AAAAAAAAANk/DU_VBhl_xVE/s400/Yellow2.jpg" /&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj94rGfXRI/AAAAAAAAANs/1SrMdg6FpOY/s1600-h/Yellow3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj94rGfXRI/AAAAAAAAANs/1SrMdg6FpOY/s400/Yellow3.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj95mRFsTI/AAAAAAAAAN0/6DJFywrIGLk/s1600-h/Yellow4.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj95mRFsTI/AAAAAAAAAN0/6DJFywrIGLk/s400/Yellow4.JPG" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj96uNycuI/AAAAAAAAAN8/x7t6wPWFwCc/s1600-h/Yellow5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj96uNycuI/AAAAAAAAAN8/x7t6wPWFwCc/s400/Yellow5.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj97vHSmrI/AAAAAAAAAOE/JdP2398hl7k/s1600-h/Yellow6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj97vHSmrI/AAAAAAAAAOE/JdP2398hl7k/s400/Yellow6.jpg" /&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj98TS4ShI/AAAAAAAAAOM/a99-Yw-pzmE/s1600-h/Yellow7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj98TS4ShI/AAAAAAAAAOM/a99-Yw-pzmE/s400/Yellow7.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj99PecBFI/AAAAAAAAAOU/kG7M2raHA3g/s1600-h/Yellow8.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj99PecBFI/AAAAAAAAAOU/kG7M2raHA3g/s400/Yellow8.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="background-color: red; border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: Arial; font-weight: bold;"&gt;&lt;span style="color: #bf00bf; font-size: large;"&gt;Purple&lt;/span&gt;&lt;span style="color: magenta; font-size: large;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-family: inherit;"&gt;The color of royalty, purple connotes luxury, wealth, and sophistication. It is also feminine and romantic. However, because it is rare in nature, purple can appear artificial. &lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-xJ8IMzI/AAAAAAAAAOc/6T7mS_T7lNY/s1600-h/Purple+1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-xJ8IMzI/AAAAAAAAAOc/6T7mS_T7lNY/s400/Purple+1.jpg" /&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-0SNI6MI/AAAAAAAAAOk/35HSaVSRJnI/s1600-h/Purple+2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-0SNI6MI/AAAAAAAAAOk/35HSaVSRJnI/s400/Purple+2.jpg" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-3XbR_dI/AAAAAAAAAOs/HJeDqIukiVk/s1600-h/Purple+3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-3XbR_dI/AAAAAAAAAOs/HJeDqIukiVk/s400/Purple+3.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-4VNuwFI/AAAAAAAAAO0/KXxboyzVmTs/s1600-h/Purple+4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-4VNuwFI/AAAAAAAAAO0/KXxboyzVmTs/s400/Purple+4.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-5a4-kuI/AAAAAAAAAO8/KpPLTnzNUZU/s1600-h/Purple+5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-5a4-kuI/AAAAAAAAAO8/KpPLTnzNUZU/s400/Purple+5.jpg" /&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-6FTxGiI/AAAAAAAAAPE/nQhtWGLeuGg/s1600-h/Purple+6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-6FTxGiI/AAAAAAAAAPE/nQhtWGLeuGg/s400/Purple+6.jpg" /&gt;&lt;/a&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-7AsGbcI/AAAAAAAAAPM/iRpb2Va7PP0/s1600-h/Purple+7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-7AsGbcI/AAAAAAAAAPM/iRpb2Va7PP0/s400/Purple+7.jpg" /&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-7wgg5mI/AAAAAAAAAPU/qoO1TUf9IxY/s1600-h/Purple+8.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj-7wgg5mI/AAAAAAAAAPU/qoO1TUf9IxY/s400/Purple+8.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;span style="background-color: red; border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="font-family: Arial; font-weight: bold;"&gt;&lt;span style="color: #aa0000; font-size: large;"&gt;Brown&lt;/span&gt;&lt;span style="color: maroon; font-size: large;"&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;span style="font-family: inherit;"&gt;Solid, reliable brown is the color of earth and is abundant in nature. Light brown implies genuineness while dark brown is similar to wood or leather. Brown can also be sad and wistful. Men are more apt to say brown is one of their favorite colors.&lt;/span&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_55AYWhI/AAAAAAAAAQE/3cUeJvuO05k/s1600-h/Brown+6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_55AYWhI/AAAAAAAAAQE/3cUeJvuO05k/s400/Brown+6.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_4w7FakI/AAAAAAAAAP8/3IyP7qQQ174/s1600-h/Brown+5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_4w7FakI/AAAAAAAAAP8/3IyP7qQQ174/s400/Brown+5.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_6hYqNBI/AAAAAAAAAQM/YDZHz1LXHOc/s1600-h/Brown+7.jpeg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_6hYqNBI/AAAAAAAAAQM/YDZHz1LXHOc/s400/Brown+7.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_1fP2WaI/AAAAAAAAAPc/iRV1kgPawtY/s1600-h/Brown+1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_1fP2WaI/AAAAAAAAAPc/iRV1kgPawtY/s400/Brown+1.jpg" /&gt;&lt;/a&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_2Y5Ix7I/AAAAAAAAAPk/Rjw_75ZhqPw/s1600-h/Brown+2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_2Y5Ix7I/AAAAAAAAAPk/Rjw_75ZhqPw/s400/Brown+2.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_3CGkWWI/AAAAAAAAAPs/AE9WfM3URAA/s1600-h/Brown+3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_3CGkWWI/AAAAAAAAAPs/AE9WfM3URAA/s400/Brown+3.jpg" /&gt;&lt;/a&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_4HZEP9I/AAAAAAAAAP0/W8_MY7Vz_vQ/s1600-h/Brown+4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj_4HZEP9I/AAAAAAAAAP0/W8_MY7Vz_vQ/s400/Brown+4.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;/div&gt;&lt;span style="border-collapse: separate; color: black; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span style="color: blue; font-family: Arial; font-size: 24px; font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-516511617333406099?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/516511617333406099/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/live-life-colours.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/516511617333406099?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/516511617333406099?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/live-life-colours.html" title="Live Life Colours" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_Gvn5ffwoAIo/Sqj4Yit24vI/AAAAAAAAAI0/Kabw59Qyajs/s72-c/white2.jpg" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DUQEQ3w7fCp7ImA9WxNRFEQ.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-8438069910756040618</id><published>2009-09-09T04:41:00.000-07:00</published><updated>2009-09-09T04:55:02.204-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-09T04:55:02.204-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MSN" /><category scheme="http://www.blogger.com/atom/ns#" term="Google" /><category scheme="http://www.blogger.com/atom/ns#" term="Yahoo" /><title>Search Engine Rap Battle</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/FSMJglb1NQhlOyRimQyLoj_bM74/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FSMJglb1NQhlOyRimQyLoj_bM74/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/FSMJglb1NQhlOyRimQyLoj_bM74/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FSMJglb1NQhlOyRimQyLoj_bM74/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;b&gt;&lt;span style="font-size: medium;"&gt;MSN vs Google&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;object height="344" width="520"&gt;&lt;param name="movie" value="http://www.youtube.com/v/_w688s-AURE&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en&amp;amp;feature=player_embedded&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/_w688s-AURE&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en&amp;amp;feature=player_embedded&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="520" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style="font-size: medium;"&gt;MSN vs Yahoo&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;object height="344" width="520"&gt;&lt;param name="movie" value="http://www.youtube.com/v/W9d3zEBIzB4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/W9d3zEBIzB4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="520" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style="font-size: medium;"&gt;Yahoo vs Google&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;object height="344" width="520"&gt;&lt;param name="movie" value="http://www.youtube.com/v/910fLzws7Jo&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/910fLzws7Jo&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="520" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;Now you can select what is the best&amp;nbsp;search&amp;nbsp;engine. Please go to&amp;nbsp;&lt;a href="http://searchenginerapbattle.com/"&gt;http://searchenginerapbattle.com&lt;/a&gt;&amp;nbsp;and vote for &amp;nbsp;Google, Yahoo or MSN. My choice is Google. It is the ever best search engine.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-8438069910756040618?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/8438069910756040618/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/search-engine-rap-battle.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/8438069910756040618?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/8438069910756040618?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/search-engine-rap-battle.html" title="Search Engine Rap Battle" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DUUMQH88fCp7ImA9WxNRGUw.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-801238164959287947</id><published>2009-09-08T03:47:00.000-07:00</published><updated>2009-09-14T01:34:41.174-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-14T01:34:41.174-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="web cast" /><category scheme="http://www.blogger.com/atom/ns#" term="cricket" /><category scheme="http://www.blogger.com/atom/ns#" term="compaq cup" /><title>Watch Compaq Cup Cricket Series 2009 Live Online</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_m6jolAqnrjrKlfzI_AfrTx8A3I/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_m6jolAqnrjrKlfzI_AfrTx8A3I/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_m6jolAqnrjrKlfzI_AfrTx8A3I/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_m6jolAqnrjrKlfzI_AfrTx8A3I/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span style="color: #333333; font-family: Arial; font-size: 13px;"&gt;All of the teams are excellent teams.&amp;nbsp;Sri Lanka, India and&amp;nbsp;New Zealand&amp;nbsp;have awesome players on their teams. But who will get the chance of being the winner of Compaq Cup cricket series 2009? If you want to find out, you should watch Compaq Cup cricket series 2009 live online at&amp;nbsp;&lt;span style="color: black; font-family: 'Times New Roman'; font-size: 16px;"&gt;&lt;a href="http://mvnrepository.blogspot.com/2009/09/watch-compaq-cup-cricket-series-2009.html"&gt;http://mvnrepository.blogspot.com&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;embed height="480" width="550" flashvars="file=http://serve.vdopia.com/adserver/adplaylist.php?id=pl67&amp;amp;frontcolor=0xFFFFFF&amp;amp;backcolor=0x&amp;amp;lightcolor=0x333333&amp;amp;callback=http://serve.vdopia.com/adserver/statistics.php&amp;amp;logo=http%3A%2F%2Fcdn.vdopia.com%2Ffiles%2Fimages%2F&amp;amp;brandedtop=http%3A%2F%2Fserve.vdopia.com%2Fadserver%2Fimgserver.php%3Fpid%3Dpl67%26ad_format%3Dbranded&amp;amp;brandedlink=http%3A%2F%2Fserve.vdopia.com%2Fadserver%2Fclick_stat.php%3Fpid%3Dpl67%26ind%3D0%26ad_format%3Dbranded&amp;amp;xmargin=2&amp;amp;yoff=50&amp;amp;overlayinterval=90&amp;amp;overlayduration=75&amp;amp;baseurl=http://cdn.vdopia.com&amp;amp;overstretch=fit&amp;amp;autostart=true&amp;amp;linktarget=_blank&amp;amp;userParams=liveadurl%3Dhttp%3A%2F%2Fdata.ndtv.com%2FStatus.lv%26reloadin%3D10%26api_key%3De805e0f1491113e27ec34bd1e4a8b9ac%26video_file%3Dnbcuts%253A%252F%252FLIVE_BGNBC1%26runtime%3D10%26api_test%3Dfalse%26ad_format%3Dpreroll%7Cpostroll%7Coverlay%7Cbranded%26numberOfMidrolls%3Dundefined%26isDefault%3Dundefined%26ref_url%3Dhttp%253A%252F%252Fvideo.tensports.com%252Flive%252F%26serveurl%3Dhttp%3A%2F%2Fserve.vdopia.com" allowscriptaccess="always" allowfullscreen="true" quality="high" name="mpl" id="mpl" style="" src="http://cdn.vdopia.com/swf/mediaplayer_skin.swf?skinPath=http://serve.vdopia.com/adserver/imgserver.php?pid%3Dpl67%26ad_format%3Dbranded%26skin%3Dtrue" type="application/x-shockwave-flash"&gt;&lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-801238164959287947?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/801238164959287947/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/watch-compaq-cup-cricket-series-2009.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/801238164959287947?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/801238164959287947?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/watch-compaq-cup-cricket-series-2009.html" title="Watch Compaq Cup Cricket Series 2009 Live Online" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>1</thr:total></entry><entry gd:etag="W/&quot;CkEFR3gzfSp7ImA9WxNRE0k.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-1508015953966162725</id><published>2009-09-07T03:28:00.000-07:00</published><updated>2009-09-07T09:23:36.685-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-07T09:23:36.685-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Internet" /><title>Happy Birthday Internet</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/xjEf39xETFsVoecBSs5a219-ZTA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xjEf39xETFsVoecBSs5a219-ZTA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/xjEf39xETFsVoecBSs5a219-ZTA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xjEf39xETFsVoecBSs5a219-ZTA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SqTe4DOv6bI/AAAAAAAAAIU/HkEVi_gN3dc/s1600-h/happy-40th-birthday_l.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="400" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SqTe4DOv6bI/AAAAAAAAAIU/HkEVi_gN3dc/s400/happy-40th-birthday_l.jpg" width="396" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;Wed, Sep 2nd 2009, the '&lt;a href="http://en.wikipedia.org/wiki/Internet"&gt;Internet&lt;/a&gt;' turned 40 today. It may sound strange, but today it is quite impossible to think oft world without the '&lt;a href="http://en.wikipedia.org/wiki/World_Wide_Web"&gt;World Wide Web&lt;/a&gt;'.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;On Sept 2, 1969, around about 20 people gathered in a lab at the &lt;a href="http://www.ucla.edu/"&gt;University of California&lt;/a&gt;, Los Angeles and two bulky computers were used to pass test data through a 15-foot gray cable. That was the beginning of the Internet. Now, 40 years later, we take a look at the Internet timeline.&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;/div&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SqTfK36XZWI/AAAAAAAAAIc/HXiKsAhag-U/s1600-h/MS-InternetExplorer.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="267" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SqTfK36XZWI/AAAAAAAAAIc/HXiKsAhag-U/s400/MS-InternetExplorer.jpg" width="400" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Key milestones in the development and growth of the Internet&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1969&lt;/b&gt;: On September 2, two computers at &lt;a href="http://www.ucla.edu/"&gt;University of California&lt;/a&gt;, Los Angeles, exchange meaningless data in first test of &lt;a href="http://en.wikipedia.org/wiki/ARPANET"&gt;Arpanet&lt;/a&gt;, an experimental military network. The first connection between two sites &lt;a href="http://en.wikipedia.org/wiki/University_of_California,_Los_Angeles"&gt;UCLA &lt;/a&gt;and the Stanford Research Institute in Menlo Park, California takes place on October 29, though the network crashes after the first two letters of the word "logon." UC Santa Barbara and University of Utah later join.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1970&lt;/b&gt;: &lt;a href="http://en.wikipedia.org/wiki/ARPANET"&gt;Arpanet &lt;/a&gt;gets first East Coast node, at Bolt, Beranek and Newman in Cambridge, Mass.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1972&lt;/b&gt;: Ray Tomlinson brings e-mail to the network, choosing "at" symbol as way to specify e-mail addresses belonging to other systems.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1973&lt;/b&gt;: Arpanet gets first international nodes, in England and Norway.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1974&lt;/b&gt;: Vint Cerf and Bob Kahn develop communications technique called TCP, allowing multiple networks to understand one another, creating a true Internet. Concept later splits into TCP/IP before formal adoption on January 1, 1983.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;b&gt;1983&lt;/b&gt;: Domain name system is proposed. Creation of suffixes such as ".com," ''.gov" and ".edu" comes a year later.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1988&lt;/b&gt;: One of the first Internet worms, Morris, cripples thousands of computers.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;b&gt;1989&lt;/b&gt;: Quantum Computer Services, now AOL, introduces America Online service for Macintosh and Apple II computers, beginning an expansion that would connect nearly 27 million Americans online by 2002.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1990&lt;/b&gt;: Tim Berners-Lee creates the World Wide Web while developing ways to control computers remotely at CERN, the European Organization for Nuclear Research.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;b&gt;1993&lt;/b&gt;: Marc Andreessen and colleagues at University of Illinois create Mosaic, the first Web browser to combine graphics and text on a single page, opening the Web to the world with software that is easy to use.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;b&gt;1994&lt;/b&gt;: Andreessen and others on the Mosaic team form a company to develop the first commercial Web browser, Netscape, piquing the interest of Microsoft Corp. and other developers who would tap the Web's commerce potential. Two immigration lawyers introduce the world to spam, advertising their green card lottery services.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1995&lt;/b&gt;: Amazon.com Inc. opens its virtual doors.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;1996&lt;/b&gt;: Passage of US law curbing pornography online. Although key provisions are later struck down as unconstitutional, one that remains protects online services from liability for their users' conduct, allowing information and misinformation to thrive.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;b&gt;1998&lt;/b&gt;: Google Inc. forms out of a project that began in Stanford dorm rooms. US government delegates oversight of domain name policies to Internet Corporation for Assigned Names and Numbers, or ICANN. Justice Department and 20 states sue Microsoft, accusing the maker of the ubiquitous Windows operating system of abusing its market power to thwart competition from Netscape and others.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;b&gt;1999&lt;/b&gt;: Napster popularizes music file-sharing and spawns successors that have permanently changed the recording industry. World Internet population surpasses 250 million.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SqTf8Zkd3MI/AAAAAAAAAIk/PdiR8EPM3F4/s1600-h/7internet_birth.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="320" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SqTf8Zkd3MI/AAAAAAAAAIk/PdiR8EPM3F4/s400/7internet_birth.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2000&lt;/b&gt;: The dot-com boom of the 1990s becomes a bust as technology companies slide. Amazon.com, eBay and other sites are crippled in one of the first widespread uses of the denial-of-service attack, which floods a site with so much bogus traffic that legitimate users cannot visit.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2002&lt;/b&gt;: World Internet population surpasses 500 million.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2006&lt;/b&gt;: World Internet population surpasses 1 billion.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2008&lt;/b&gt;: World Internet population surpasses 1.5 billion. China's Internet population reaches 250 million, surpassing the United States as the world's largest. Netscape's developers pull the plug on the pioneer browser, though an offshoot, Firefox, remains strong. Major airlines intensify deployment of Internet service on flights.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_Gvn5ffwoAIo/SqTgQxPdzmI/AAAAAAAAAIs/yBjVh5BzDPk/s1600-h/happy-birthday-ryan-thumb.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_Gvn5ffwoAIo/SqTgQxPdzmI/AAAAAAAAAIs/yBjVh5BzDPk/s400/happy-birthday-ryan-thumb.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-1508015953966162725?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/1508015953966162725/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/happy-birthday-internet.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/1508015953966162725?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/1508015953966162725?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/09/happy-birthday-internet.html" title="Happy Birthday Internet" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SqTe4DOv6bI/AAAAAAAAAIU/HkEVi_gN3dc/s72-c/happy-40th-birthday_l.jpg" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;A0UCRH0zeSp7ImA9WxNSFkQ.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-2690070782077808126</id><published>2009-08-30T22:49:00.000-07:00</published><updated>2009-08-30T23:14:25.381-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-30T23:14:25.381-07:00</app:edited><title>Astronauts with Satellite</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/DUT3pLNv-sM7pyA3EvHaqKf0CjA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DUT3pLNv-sM7pyA3EvHaqKf0CjA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/DUT3pLNv-sM7pyA3EvHaqKf0CjA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DUT3pLNv-sM7pyA3EvHaqKf0CjA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SptiZRYHJJI/AAAAAAAAAHk/5K4jRsM5pYk/s1600-h/6256_242477130566_608575566_8425104_7112375_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SptiZRYHJJI/AAAAAAAAAHk/5K4jRsM5pYk/s400/6256_242477130566_608575566_8425104_7112375_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SpthxXGVCYI/AAAAAAAAAGk/RxsqmCp7uQk/s1600-h/6256_241034315566_608575566_8393377_6208412_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SpthxXGVCYI/AAAAAAAAAGk/RxsqmCp7uQk/s400/6256_241034315566_608575566_8393377_6208412_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Spth90r7zgI/AAAAAAAAAG0/o7TK7J1Vpww/s1600-h/6256_241034320566_608575566_8393378_8125315_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/Spth90r7zgI/AAAAAAAAAG0/o7TK7J1Vpww/s400/6256_241034320566_608575566_8393378_8125315_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SptiE80sS9I/AAAAAAAAAG8/nuIIavXxZSc/s1600-h/6256_241034325566_608575566_8393379_2000027_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SptiE80sS9I/AAAAAAAAAG8/nuIIavXxZSc/s400/6256_241034325566_608575566_8393379_2000027_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SptiHxSBtEI/AAAAAAAAAHE/mnXTYImcuAM/s1600-h/6256_241034330566_608575566_8393380_5806296_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SptiHxSBtEI/AAAAAAAAAHE/mnXTYImcuAM/s400/6256_241034330566_608575566_8393380_5806296_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SptiLZrueXI/AAAAAAAAAHM/-UrZW5NNaxI/s1600-h/6256_241034335566_608575566_8393381_6644428_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SptiLZrueXI/AAAAAAAAAHM/-UrZW5NNaxI/s400/6256_241034335566_608575566_8393381_6644428_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SptiRM4kBVI/AAAAAAAAAHU/0Py2U0lz5kA/s1600-h/6256_241034340566_608575566_8393382_8059701_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="250" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SptiRM4kBVI/AAAAAAAAAHU/0Py2U0lz5kA/s400/6256_241034340566_608575566_8393382_8059701_n.jpg" width="400" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SptiU8-Y0lI/AAAAAAAAAHc/sLv9Rb4UtTQ/s1600-h/6256_242477125566_608575566_8425103_2131610_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SptiU8-Y0lI/AAAAAAAAAHc/sLv9Rb4UtTQ/s400/6256_242477125566_608575566_8425103_2131610_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SptidnXEkoI/AAAAAAAAAHs/LJLwrTHrxF4/s1600-h/6256_242477135566_608575566_8425105_5813986_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SptidnXEkoI/AAAAAAAAAHs/LJLwrTHrxF4/s400/6256_242477135566_608575566_8425105_5813986_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SptikXESqdI/AAAAAAAAAH0/mecHwuR3lyU/s1600-h/6256_242477145566_608575566_8425106_1874703_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SptikXESqdI/AAAAAAAAAH0/mecHwuR3lyU/s400/6256_242477145566_608575566_8425106_1874703_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SptpDt4QgbI/AAAAAAAAAIM/J4HoGwNmiPs/s1600-h/6256_242477155566_608575566_8425107_2849403_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SptpDt4QgbI/AAAAAAAAAIM/J4HoGwNmiPs/s400/6256_242477155566_608575566_8425107_2849403_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SptipnlAheI/AAAAAAAAAIE/0-vVZpOCM5Y/s1600-h/6256_242477160566_608575566_8425108_5269535_n.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SptipnlAheI/AAAAAAAAAIE/0-vVZpOCM5Y/s400/6256_242477160566_608575566_8425108_5269535_n.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-2690070782077808126?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/2690070782077808126/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/astronauts-with-satellite.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/2690070782077808126?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/2690070782077808126?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/astronauts-with-satellite.html" title="Astronauts with Satellite" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SptiZRYHJJI/AAAAAAAAAHk/5K4jRsM5pYk/s72-c/6256_242477130566_608575566_8425104_7112375_n.jpg" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;D0MNRH84eSp7ImA9WxNSE0o.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-145802284466480389</id><published>2009-08-27T04:56:00.000-07:00</published><updated>2009-08-27T05:18:15.131-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-27T05:18:15.131-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Mysql" /><category scheme="http://www.blogger.com/atom/ns#" term="DETERMINISTIC" /><title>This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/f2mhcPPdJbRC8nNNCO9z9YAcr-k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f2mhcPPdJbRC8nNNCO9z9YAcr-k/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/f2mhcPPdJbRC8nNNCO9z9YAcr-k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f2mhcPPdJbRC8nNNCO9z9YAcr-k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;span&gt;Today I was struggling while creating a funtion on mysql database. It can be executed with the root privilageds but shows an error massage when it is executed with low privilages. The error massage is shown bellow.&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;ERROR HY000: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its&lt;br /&gt;declaration and binary logging is enabled (you *might* want to use the less safe&lt;br /&gt;log_bin_trust_function_creators variable)&lt;/blockquote&gt;&lt;strong&gt;&gt;&gt;&lt;/strong&gt;To avoid this error you must do one of the following.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Specify the one or more of DETERMINISTIC, NO SQL, and/or READS SQL DATA key words in your stored function definition.&lt;/li&gt;&lt;li&gt;Set the value of "&lt;span style="font-weight: bold;"&gt;log_bin_trust_function_creators&lt;/span&gt;" to '&lt;span style="font-weight: bold;"&gt;1&lt;/span&gt;',&lt;br /&gt;(&lt;code&gt;mysql&lt;/code&gt;&lt;code style="font-weight: bold;"&gt;&gt; SET GLOBAL log_bin_trust_function_creators = 1;&lt;/code&gt;)&lt;/li&gt;&lt;/ol&gt;You can also set this variable by using the &lt;span style="font-weight: bold;"&gt;--log-bin-trust-function-creators=1&lt;/span&gt; option when starting the server.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&gt;&gt;&lt;/span&gt;The current conditions on the use of stored functions in MySQL 5.0 can be summarized as follows. These conditions do not apply to stored procedures and they do not apply unless binary logging is enabled.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;To create or alter a stored function, you must have the &lt;span style="font-weight: bold;"&gt;SUPER &lt;/span&gt;privilege, in addition to the &lt;span style="font-weight: bold;"&gt;CREATE ROUTINE&lt;/span&gt; or &lt;span style="font-weight: bold;"&gt;ALTER ROUTINE&lt;/span&gt; privilege that is normally required.&lt;/li&gt;&lt;li&gt;When you create a stored function, you must declare either that it is deterministic or that it does not modify data. Otherwise, it may be unsafe for data recovery or replication.&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-weight: bold;"&gt;&gt;&gt;&lt;/span&gt;For more information refer this article "&lt;a href="http://dev.mysql.com/doc/refman/5.0/en/stored-programs-logging.html"&gt;Binary Logging of Stored Programs&lt;/a&gt;".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-145802284466480389?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/145802284466480389/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/this-function-has-none-of-deterministic.html#comment-form" title="10 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/145802284466480389?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/145802284466480389?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/this-function-has-none-of-deterministic.html" title="This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><thr:total>10</thr:total></entry><entry gd:etag="W/&quot;CEYGQn87cCp7ImA9WxNSE0o.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-1324368418084243054</id><published>2009-08-27T03:42:00.000-07:00</published><updated>2009-08-27T04:22:03.108-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-27T04:22:03.108-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="University of Colombo Institute for Agro-technology and Rural Sciences" /><category scheme="http://www.blogger.com/atom/ns#" term="ICTA" /><category scheme="http://www.blogger.com/atom/ns#" term="UCSC" /><category scheme="http://www.blogger.com/atom/ns#" term="University Of Moratuwa" /><category scheme="http://www.blogger.com/atom/ns#" term="Dialog" /><category scheme="http://www.blogger.com/atom/ns#" term="APIIT" /><title>Symposium on Localised Systems and Applications</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/IYVY7fT8RYn9ntBwqUvFBgjEogU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IYVY7fT8RYn9ntBwqUvFBgjEogU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/IYVY7fT8RYn9ntBwqUvFBgjEogU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IYVY7fT8RYn9ntBwqUvFBgjEogU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="text-align: right;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SpZnMI4BkUI/AAAAAAAAAGY/Sbat7W3DU4E/s1600-h/symban.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 600px; height: 120px;" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SpZnMI4BkUI/AAAAAAAAAGY/Sbat7W3DU4E/s400/symban.jpg" alt="" id="BLOGGER_PHOTO_ID_5374596663551824194" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;font-family:'Times New Roman';font-size:16px;"  &gt;&lt;span class="Apple-style-span" style="border-collapse: collapse;font-family:arial;font-size:13px;"  &gt;&lt;p align="left"&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;font-family:'Times New Roman';font-size:16px;"  &gt;&lt;span class="Apple-style-span" style="border-collapse: collapse;font-family:arial;font-size:13px;"  &gt;&lt;p align="left"&gt;&lt;a href="http://en.wikipedia.org/wiki/Sri_Lanka"&gt;Sri Lanka&lt;/a&gt; has made impressive progress in developing localised software, systems and applications. Today, our citizens can use computer operating systems, application software, keyboards and mobile phones in their mother tongues of Sinhala and Tamil.&lt;/p&gt;&lt;p align="left"&gt;We can be proud that this has been achieved in &lt;a href="http://en.wikipedia.org/wiki/Sri_Lanka"&gt;Sri Lanka&lt;/a&gt;, by practitioners in the emerging field of local language computing. However, a forum where they can meet and share their experiences has been a long-felt need.&lt;/p&gt;&lt;p align="left"&gt;The inaugural Symposium on Localised Systems and Applications will be held at the &lt;a style="font-weight: bold;" href="http://www.mrt.ac.lk/"&gt;University of Moratuwa&lt;/a&gt; on &lt;span style="font-weight: bold;"&gt;2nd September 2009&lt;/span&gt; from &lt;span style="font-weight: bold;"&gt;8.30 a.m to 5.00 p.m&lt;/span&gt;. This will provide people working in this area an unprecedented opportunity to present and discuss their work with others in the field.&lt;/p&gt;&lt;p align="left"&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;font-family:'Times New Roman';font-size:16px;"  &gt;&lt;span class="Apple-style-span" style="border-collapse: collapse;font-family:arial;font-size:13px;"  &gt;&lt;table width="536" border="1"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;th width="46" valign="top"&gt;Time&lt;/th&gt;&lt;th width="130" valign="top"&gt;Presenter&lt;/th&gt;&lt;th width="90" valign="top"&gt;Organization&lt;/th&gt;&lt;th width="270" valign="top"&gt;Topic&lt;/th&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;08:30&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Inauguration&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;08:45&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.linkedin.com/pub/gihan-dias/2/395/242"&gt;Gihan Dias&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.mrt.ac.lk/"&gt;UoM&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Welcome&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;09:00&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Vice Chancellor&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.mrt.ac.lk/"&gt;UoM&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Address&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;09:15&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;J. B. Disanayaka&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Keynote - Meaning: A Linguistic Analysis&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;09:45&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.linkedin.com/pub/sanath-jayasena/11/a80/274"&gt;Sanath Jayasena&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.mrt.ac.lk/"&gt;UoM&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Vote of Thanks&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;10:00&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;TEA&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;10:30&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.linkedin.com/pub/sanath-jayasena/11/a80/274"&gt;Sanath Jayasena&lt;/a&gt; Dihan Morawaka&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.mrt.ac.lk/"&gt;UoM&lt;/a&gt;&lt;br /&gt;USJP/LKiNG&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;USJP/LKiNG The LAKapps Project&lt;br /&gt;Experiences with Localised Applications Training&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;10:45&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Kanishka Senadheera&lt;br /&gt;Channa Gunasekera&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Felidae&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;1. ViduNena&lt;br /&gt;2. Sinhala Wikipedia&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;11:00&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;G. Balachandaran&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.apiit.lk/"&gt;APIIT&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Tamil Encoding, Keyboard Layout and Collation Standard for ICT Sri Lanka&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;11:15&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Sarves&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.mrt.ac.lk/"&gt;UoM&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Tamil Localisation Process&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;11:25&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;M. Mayuran&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Tamil GNU developments&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;11:35&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Rohana Dasanayaka&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;ACCIMT&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Localising the Thunderbird e-Mail Client&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;11:45&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Rohan Manamudali&lt;br /&gt;Sampath Godamunne&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;ScienceLand&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Interoperable Transliteration Software&lt;br /&gt;Localization of Microsoft Windows Vista and Office&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;12:00&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Chamara&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;LKNIC&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Internationalised Domain Names in Sri Lanka&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;12:10&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;S. Bandusena&lt;br /&gt;Anura Lokugamage&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Official Lang Dept.&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Sinhala Glossaries&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;12:25&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Madura Kulatunga&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Madura&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Madura online English-Sinhala Dictionary&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;12:40&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.linkedin.com/pub/wasantha-deshapriya/9/5a4/b19"&gt;Wasantha Deshapriya&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;I&lt;a href="http://www.icta.lk/"&gt;CTA&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Common repository for Localized Terms&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;13:00&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;LUNCH&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;14:00&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Asoka Karunananda&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.mrt.ac.lk/"&gt;UoM&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Issues and Experiences in Translation&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;14:10&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Ruvan Weerasinghe&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.ucsc.cmb.ac.lk/"&gt;UCSC&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Towards machine translation of local languages&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;14:25&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Dulip Herath&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.ucsc.cmb.ac.lk/"&gt;UCSC&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Building linguistic resources for Sinhala and Tamil&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;14:35&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Viraj Welgama&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.ucsc.cmb.ac.lk/"&gt;UCSC&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Building and extending TTS for Sinhala&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;14:45&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Budditha Hettige&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;USJP&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Sinhala computing work at SJP&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;15:00&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Camillus Jayewardena&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;UoP&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;The Making of a Web Site of Sinhala Song Lyrics&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;15:10&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Shaseevan Ganeshanathan&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Noolaham Foundation&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Local Language Content Preservation through Digitization and Archiving&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;15:25&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;තුසිත රන්දුනුගේ&lt;br /&gt;Suranga Sampath Jayakodi&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;e-Fusion&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;"සිසු උගනා ගම වඩනා" - ශිල්ප සයුර සමගින් ගමට තොරතුරු තාක්‍ෂණය සිංහලෙන්&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;15:35&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Malinda Siriwardana&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;e-Learning &lt;a href="http://www.ucsc.cmb.ac.lk/"&gt;UCSC&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Moodle Localization - The Future&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;15:45&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Nisansala Vidanapathirana&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.cmb.ac.lk/?page_id=991"&gt;University of Colombo Institute for Agro-technology and Rural Sciences&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Farmer Education in Sinhala Using Online Distance Learning&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;15:55&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Sameera Wijeratne&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;a href="http://www.dialog.lk/"&gt;Dialog&lt;/a&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Nenasa TV&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;16:05&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;TEA&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;16:30&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Discussion&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Localization Strategy for Sri Lanka&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;17:00&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;Conclusion&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;td style="margin: 0px; font-family: arial,sans-serif;" valign="top"&gt;&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-1324368418084243054?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/1324368418084243054/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/symposium-on-localised-systems-and.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/1324368418084243054?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/1324368418084243054?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/symposium-on-localised-systems-and.html" title="Symposium on Localised Systems and Applications" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SpZnMI4BkUI/AAAAAAAAAGY/Sbat7W3DU4E/s72-c/symban.jpg" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;Ck8MRHw8eip7ImA9WxNSE0w.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-4807186848453350892</id><published>2009-08-26T11:14:00.000-07:00</published><updated>2009-08-26T11:21:25.272-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-26T11:21:25.272-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Aeturnum" /><title>Aeturnum Cricket Slam 2009</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9D-xm9C50sHF9juCN8igulOBnro/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9D-xm9C50sHF9juCN8igulOBnro/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9D-xm9C50sHF9juCN8igulOBnro/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9D-xm9C50sHF9juCN8igulOBnro/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;The Aeturnum Cricket Team, emerged Runners-up at the Aeturnum Cricket Slam 2009, which was held at Torrington Grounds on 22nd August 2009. Samith Pinnaduwa won the “Man of the Series” award and MilleniumIT carried away the champion’s trophy.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SpV8M3uxdjI/AAAAAAAAAF4/LnwNfq2ubHc/s1600-h/cric4.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 267px;" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SpV8M3uxdjI/AAAAAAAAAF4/LnwNfq2ubHc/s400/cric4.jpg" alt="" id="BLOGGER_PHOTO_ID_5374338290896959026" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SpV8f9z9_qI/AAAAAAAAAGA/OxZ0Z4iUXYg/s1600-h/cric5.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 267px; height: 400px;" src="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SpV8f9z9_qI/AAAAAAAAAGA/OxZ0Z4iUXYg/s400/cric5.jpg" alt="" id="BLOGGER_PHOTO_ID_5374338618946879138" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-4807186848453350892?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/4807186848453350892/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/aeturnum-cricket-slam-2009.html#comment-form" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/4807186848453350892?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/4807186848453350892?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/aeturnum-cricket-slam-2009.html" title="Aeturnum Cricket Slam 2009" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_Gvn5ffwoAIo/SpV8M3uxdjI/AAAAAAAAAF4/LnwNfq2ubHc/s72-c/cric4.jpg" height="72" width="72" /><thr:total>5</thr:total></entry><entry gd:etag="W/&quot;C0QFRn8_cSp7ImA9WxNSE0w.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-4419445615157198831</id><published>2009-08-26T06:03:00.000-07:00</published><updated>2009-08-26T11:28:37.149-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-26T11:28:37.149-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Facebook" /><title>Facebook user interface has been changed</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/mL44sRmfn2_tQSFNtnnPm3AGWLY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mL44sRmfn2_tQSFNtnnPm3AGWLY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/mL44sRmfn2_tQSFNtnnPm3AGWLY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mL44sRmfn2_tQSFNtnnPm3AGWLY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="text-align: justify; font-family: times new roman;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SpUzBsls0nI/AAAAAAAAAFw/UfZDv0vutYs/s1600-h/facebook_ad.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 182px; height: 140px;" src="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SpUzBsls0nI/AAAAAAAAAFw/UfZDv0vutYs/s400/facebook_ad.jpg" alt="" id="BLOGGER_PHOTO_ID_5374257834578727538" border="0" /&gt;&lt;/a&gt;
&lt;br /&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="Word.Document"&gt;&lt;meta name="Generator" content="Microsoft Word 12"&gt;&lt;meta name="Originator" content="Microsoft Word 12"&gt;&lt;link rel="File-List" href="file:///C:%5CDOCUME%7E1%5Croshan.p%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"&gt;&lt;link rel="themeData" href="file:///C:%5CDOCUME%7E1%5Croshan.p%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"&gt;&lt;link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5Croshan.p%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:worddocument&gt;   &lt;w:view&gt;Normal&lt;/w:View&gt;   &lt;w:zoom&gt;0&lt;/w:Zoom&gt;   &lt;w:trackmoves/&gt;   &lt;w:trackformatting/&gt;   &lt;w:punctuationkerning/&gt;   &lt;w:validateagainstschemas/&gt;   &lt;w:saveifxmlinvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt;   &lt;w:ignoremixedcontent&gt;false&lt;/w:IgnoreMixedContent&gt;   &lt;w:alwaysshowplaceholdertext&gt;false&lt;/w:AlwaysShowPlaceholderText&gt;   &lt;w:donotpromoteqf/&gt;   &lt;w:lidthemeother&gt;EN-US&lt;/w:LidThemeOther&gt;   &lt;w:lidthemeasian&gt;X-NONE&lt;/w:LidThemeAsian&gt;   &lt;w:lidthemecomplexscript&gt;TA&lt;/w:LidThemeComplexScript&gt;   &lt;w:compatibility&gt;    &lt;w:breakwrappedtables/&gt;    &lt;w:snaptogridincell/&gt;    &lt;w:wraptextwithpunct/&gt;    &lt;w:useasianbreakrules/&gt;    &lt;w:dontgrowautofit/&gt;    &lt;w:splitpgbreakandparamark/&gt;    &lt;w:dontvertaligncellwithsp/&gt;    &lt;w:dontbreakconstrainedforcedtables/&gt;    &lt;w:dontvertalignintxbx/&gt;    &lt;w:word11kerningpairs/&gt;    &lt;w:cachedcolbalance/&gt;   &lt;/w:Compatibility&gt;   &lt;w:browserlevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt;   &lt;m:mathpr&gt;    &lt;m:mathfont val="Cambria Math"&gt;    &lt;m:brkbin val="before"&gt;    &lt;m:brkbinsub val="--"&gt;    &lt;m:smallfrac val="off"&gt;    &lt;m:dispdef/&gt;    &lt;m:lmargin val="0"&gt;    &lt;m:rmargin val="0"&gt;    &lt;m:defjc val="centerGroup"&gt;    &lt;m:wrapindent val="1440"&gt;    &lt;m:intlim val="subSup"&gt;    &lt;m:narylim val="undOvr"&gt;   &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;  &lt;w:latentstyles deflockedstate="false" defunhidewhenused="true" defsemihidden="true" defqformat="false" defpriority="99" latentstylecount="267"&gt;   &lt;w:lsdexception locked="false" priority="0" semihidden="false" unhidewhenused="false" qformat="true" name="Normal"&gt;   &lt;w:lsdexception locked="false" priority="9" semihidden="false" unhidewhenused="false" qformat="true" name="heading 1"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 2"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 3"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 4"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 5"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 6"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 7"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 8"&gt;   &lt;w:lsdexception locked="false" priority="9" qformat="true" name="heading 9"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 1"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 2"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 3"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 4"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 5"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 6"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 7"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 8"&gt;   &lt;w:lsdexception locked="false" priority="39" name="toc 9"&gt;   &lt;w:lsdexception locked="false" priority="35" qformat="true" name="caption"&gt;   &lt;w:lsdexception locked="false" priority="10" semihidden="false" unhidewhenused="false" qformat="true" name="Title"&gt;   &lt;w:lsdexception locked="false" priority="1" name="Default Paragraph Font"&gt;   &lt;w:lsdexception locked="false" priority="11" semihidden="false" unhidewhenused="false" qformat="true" name="Subtitle"&gt;   &lt;w:lsdexception locked="false" priority="22" semihidden="false" unhidewhenused="false" qformat="true" name="Strong"&gt;   &lt;w:lsdexception locked="false" priority="20" semihidden="false" unhidewhenused="false" qformat="true" name="Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="59" semihidden="false" unhidewhenused="false" name="Table Grid"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Placeholder Text"&gt;   &lt;w:lsdexception locked="false" priority="1" semihidden="false" unhidewhenused="false" qformat="true" name="No Spacing"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" unhidewhenused="false" name="Revision"&gt;   &lt;w:lsdexception locked="false" priority="34" semihidden="false" unhidewhenused="false" qformat="true" name="List Paragraph"&gt;   &lt;w:lsdexception locked="false" priority="29" semihidden="false" unhidewhenused="false" qformat="true" name="Quote"&gt;   &lt;w:lsdexception locked="false" priority="30" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Quote"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 1"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 2"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 3"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 4"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 5"&gt;   &lt;w:lsdexception locked="false" priority="60" semihidden="false" unhidewhenused="false" name="Light Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="61" semihidden="false" unhidewhenused="false" name="Light List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="62" semihidden="false" unhidewhenused="false" name="Light Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="63" semihidden="false" unhidewhenused="false" name="Medium Shading 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="64" semihidden="false" unhidewhenused="false" name="Medium Shading 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="65" semihidden="false" unhidewhenused="false" name="Medium List 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="66" semihidden="false" unhidewhenused="false" name="Medium List 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="67" semihidden="false" unhidewhenused="false" name="Medium Grid 1 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="68" semihidden="false" unhidewhenused="false" name="Medium Grid 2 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="69" semihidden="false" unhidewhenused="false" name="Medium Grid 3 Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="70" semihidden="false" unhidewhenused="false" name="Dark List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="71" semihidden="false" unhidewhenused="false" name="Colorful Shading Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="72" semihidden="false" unhidewhenused="false" name="Colorful List Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="73" semihidden="false" unhidewhenused="false" name="Colorful Grid Accent 6"&gt;   &lt;w:lsdexception locked="false" priority="19" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="21" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Emphasis"&gt;   &lt;w:lsdexception locked="false" priority="31" semihidden="false" unhidewhenused="false" qformat="true" name="Subtle Reference"&gt;   &lt;w:lsdexception locked="false" priority="32" semihidden="false" unhidewhenused="false" qformat="true" name="Intense Reference"&gt;   &lt;w:lsdexception locked="false" priority="33" semihidden="false" unhidewhenused="false" qformat="true" name="Book Title"&gt;   &lt;w:lsdexception locked="false" priority="37" name="Bibliography"&gt;   &lt;w:lsdexception locked="false" priority="39" qformat="true" name="TOC Heading"&gt;  &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;style&gt; &lt;!--  /* Font Definitions */  @font-face 	{font-family:Latha; 	panose-1:2 11 6 4 2 2 2 2 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-2146435069 0 0 0 1 0;} @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:1; 	mso-generic-font-family:roman; 	mso-font-format:other; 	mso-font-pitch:variable; 	mso-font-signature:0 0 0 0 0 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin-top:0in; 	margin-right:0in; 	margin-bottom:10.0pt; 	margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:Latha; 	mso-bidi-theme-font:minor-bidi;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:Calibri; 	mso-fareast-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:Latha; 	mso-bidi-theme-font:minor-bidi;} .MsoPapDefault 	{mso-style-type:export-only; 	margin-bottom:10.0pt; 	line-height:115%;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; &lt;/style&gt;&lt;!--[if gte mso 10]&gt; &lt;style&gt;  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} &lt;/style&gt; &lt;![endif]--&gt;  &lt;/div&gt;&lt;p style="text-align: justify; font-family: times new roman;" class="MsoNormal"&gt;Always Facebook tries to change their user interface. There are two latest changes that are introduced by them today. They’ve changed the blue bar on top of the page; furthermore, they’ve slightly altered the way ad ratings work.&lt;/p&gt;&lt;div style="text-align: justify; font-family: times new roman;"&gt;  &lt;/div&gt;&lt;p style="text-align: justify; font-family: times new roman;" class="MsoNormal"&gt;Before, It displayed little thumbs up/down icons below every advertisement. Now, Facebook has simply added you the option to “like” the ad (below) or to turn it off via an “x” at the top right corner. It’s not groundbreaking by any means, but it does make the page a little less cluttered.&lt;/p&gt;&lt;div style="text-align: justify; font-family: times new roman;"&gt;  &lt;/div&gt;&lt;p style="text-align: justify; font-family: times new roman;" class="MsoNormal"&gt;The other change is very straightforward: the blue bar on the top, one of Facebook’s most recognizable elements, now extends throughout the entire width of the page. &lt;/p&gt;&lt;div style="text-align: justify; font-family: times new roman;"&gt;  &lt;/div&gt;&lt;p style="text-align: justify; font-family: times new roman;" class="MsoNormal"&gt;I am not sure whether people have noticed those changes because I also didn’t notice changes. I am pretty sure the user who works with facebook ads may noticed. &lt;/p&gt;&lt;div style="text-align: justify; font-family: times new roman;"&gt;
&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-4419445615157198831?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/4419445615157198831/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/facebook-user-interface-has-been.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/4419445615157198831?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/4419445615157198831?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/facebook-user-interface-has-been.html" title="Facebook user interface has been changed" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_Gvn5ffwoAIo/SpUzBsls0nI/AAAAAAAAAFw/UfZDv0vutYs/s72-c/facebook_ad.jpg" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CkIAR3g_eSp7ImA9WxNSEks.&quot;"><id>tag:blogger.com,1999:blog-8879738720389529619.post-1596401194356019447</id><published>2009-08-25T21:15:00.000-07:00</published><updated>2009-08-25T21:22:26.641-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-25T21:22:26.641-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Gmail" /><title>Gmail Lets You “Undo” Sent Messages</title><content type="html">
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8n_mP72f3ClYCGib60NSICyd1_A/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8n_mP72f3ClYCGib60NSICyd1_A/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8n_mP72f3ClYCGib60NSICyd1_A/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8n_mP72f3ClYCGib60NSICyd1_A/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpS3SOICcUI/AAAAAAAAAD8/6VsyTAG0Yyk/s1600-h/gmailnew.PNG"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 142px; height: 64px;" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpS3SOICcUI/AAAAAAAAAD8/6VsyTAG0Yyk/s400/gmailnew.PNG" border="0" alt="" id="BLOGGER_PHOTO_ID_5374121779017183554" /&gt;&lt;/a&gt;&lt;p style="text-align: justify;"&gt;Another day, another new feature in Gmail Labs. This one could be more useful than most, as it’s something you probably have a reason to use with some frequency. It’s called “Undo Send,” and as the name suggests, it lets you take back a sent email, as long as you act quickly enough. &lt;/p&gt; &lt;p style="text-align: justify;"&gt;After enabling the feature, Undo Send works much like Gmail’s other “undo” features. When you send an email, you get a message confirming it has been sent, along with a link to “Undo.” This message lasts for 5 seconds, at which point you lose the opportunity to take it back. &lt;/p&gt; &lt;p style="text-align: justify;"&gt;While that might not be much time, it’s probably enough to pull back emails where you forget an attachment, forget to cc someone, or catch an obvious typo. As for emails you later wish you hadn’t sent because of the content, Gmail &lt;span class="blippr-nobr"&gt;&lt;span&gt;still can’t help you there.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8879738720389529619-1596401194356019447?l=mvnrepository.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://mvnrepository.blogspot.com/feeds/1596401194356019447/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/gmail-lets-you-undo-sent-messages.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/1596401194356019447?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/8879738720389529619/posts/default/1596401194356019447?v=2" /><link rel="alternate" type="text/html" href="http://mvnrepository.blogspot.com/2009/08/gmail-lets-you-undo-sent-messages.html" title="Gmail Lets You “Undo” Sent Messages" /><author><name>Roshan Priyadarshana</name><uri>http://www.blogger.com/profile/08622154649319502771</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpTT6yiPsWI/AAAAAAAAAEI/lfBuEDT_eV4/S220/roshan.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_Gvn5ffwoAIo/SpS3SOICcUI/AAAAAAAAAD8/6VsyTAG0Yyk/s72-c/gmailnew.PNG" height="72" width="72" /><thr:total>0</thr:total></entry></feed>

