<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2496709395896452958</id><updated>2011-11-27T15:27:15.752-08:00</updated><category term='Song'/><category term='xampp'/><category term='gsoc'/><category term='H1N1'/><category term='mysql'/><category term='Email'/><category term='Mahinda Rajapaksha'/><category term='php'/><category term='Influenza A'/><category term='OUTLOOK'/><category term='recaptcha'/><category term='uom'/><category term='FileUpload'/><category term='Terrorism'/><category term='search tool'/><category term='LTTE'/><category term='Security'/><category term='swine flu'/><category term='Servlet'/><category term='pgsql'/><category term='tinyurl'/><title type='text'>It's me &amp; My World</title><subtitle type='html'>My Other Side...</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>27</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-1844214572586268389</id><published>2009-10-16T11:53:00.000-07:00</published><updated>2009-10-18T00:13:20.850-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='recaptcha'/><title type='text'>Customize ReCaptcha theme</title><content type='html'>ReCaptcha is a widely use Captcha generation web service which is owned by Google. Yesterday I had the opportunity to use ReCaptcha for one of my project. But there was a problem. Since ReCaptcha is generated to a certain style, width and height using a webservice request, it was hard to put it into the design of the form which I was trying to integrate ReCaptcha.&lt;br /&gt;But finally I could solve the problem using some tricks. This is how I did it.&lt;br /&gt;For using ReCaptcha, first you have to create an account ( account and service is free) in &lt;a href="http://recaptcha.net/"&gt;http://recaptcha.net/&lt;/a&gt; and generate a public key and a private key for accessing ReCaptcha web service. You can choose two option when generating those keys, default is generated keys can only be used in provided ( when generating keys) web site. Other one is you can use generated keys in any server and you have to select the checkbox saying some global key enabling ( I can't remember it) for using this second option.&lt;br /&gt;Then download the ReCaptcha library. It contains recaptchalib.php files and an example page. What do you want is recaptchalib.php.  To use recaptcha, add following php codes in to the top of your php page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;require_once('recaptchalib.php');&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;$publickey = "your_public_key";    // get this from the signup page&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;$privatekey = "your_private_key";// get this from the signup page&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Since you are looking for custom theme for ReCaptcha, add this javascript code to head section of the your php page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&amp;lt;script type= "text/javascript"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;var RecaptchaOptions = {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;   theme: 'custom',&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;   lang: 'en',&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;   custom_theme_widget: 'recaptcha_widget'&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;};&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Value of "custom_theme_widget" which is 'recaptcha_widget' in above code is the name of the div which your recaptcha gadget will put into.&lt;br /&gt;Then add a div with the above mentioned id 'recaptcha_widget' in to the place where you need your recaptcha. All other recaptcha related divs will reside in this created div. Add another div named 'recaptcha_image' inside 'recaptcha_widget' for holding the recaptcha image. You also need to add a input text field named 'recaptcha_response_field' for typing the letters in the captcha image. There are lot of other things you can put as your requirements as a link for audio recaptcha, for error messages, for refreshing recaptcha etc, and I'm not going to put all those things in my example. In addition to that, you also have to put code for getting recaptcha with your publick key (two parts of code, if javascript is disabled, there is an iframe to include).&lt;br /&gt;&lt;br /&gt;So this is the code I finally got as ReCaptcha widget,&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;div id="recaptcha_widget" style="display: none;"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;div id="recaptcha_image"&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;div class="recaptcha_only_if_incorrect_sol" style="color: red;"&amp;gt;Incorrect please try again&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;span class="recaptcha_only_if_image"&amp;gt;Enter the words above:&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;span class="recaptcha_only_if_audio"&amp;gt;Enter the numbers you hear:&amp;lt;/span&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;input id="recaptcha_response_field" name="recaptcha_response_field" type="text"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;strong style="font-size: 10px;"&amp;gt;&amp;lt;a href="javascript:void(0);"&amp;gt;Get another CAPTCHA&amp;lt;/a&amp;gt;&amp;lt;/strong&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;!--div class="recaptcha_only_if_image"&amp;gt;&amp;lt;a href="javascript:Recaptcha.switch_type('audio')"&amp;gt;Get an audio CAPTCHA&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;                                                  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;div class="recaptcha_only_if_audio"&amp;gt;&amp;lt;a href="javascript:Recaptcha.switch_type('image')"&amp;gt;Get an image CAPTCHA&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;                                                  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;div&amp;gt;&amp;lt;a href="javascript:Recaptcha.showhelp()"&amp;gt;Help&amp;lt;/a&amp;gt;&amp;lt;br /&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;/div--&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;script type="text/javascript" src="http://api.recaptcha.net/challenge?k=&amp;lt;?php echo $publickey;?&amp;gt;&amp;amp;lang=en"&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;noscript&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;iframe src="http://api.recaptcha.net/noscript?k=&amp;lt;?php echo $publickey;?&amp;gt;&amp;amp;lang=en" height="200" width="500" frameborder="0"&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;textarea name="recaptcha_challenge_field" rows="3" cols="40"&amp;gt;&amp;lt;/textarea&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;input type="'hidden'" name="'recaptcha_response_field'" value="'manual_challenge'"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;/noscript&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I commented out some fields I did not want to use in this code. After coding to this point, there was another problem came. That is the image generated by ReCaptcha is a standarad size of 300px X 57px. By adding a little css code, I could change the size of the recaptcha image as I wanted. I added following CSS code into the head section ( between head tags) of my php page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;style type="text/css"&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;div#recaptcha_image &amp;gt; img{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;height:46px;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;width:240px;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&amp;lt;/style&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This is the final output of the code.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_TgpxEOM7_c8/Stq5II-AhYI/AAAAAAAAAYU/L7k4rY1w0eA/s1600-h/Screenshot-edited.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 210px; height: 110px;" src="http://1.bp.blogspot.com/_TgpxEOM7_c8/Stq5II-AhYI/AAAAAAAAAYU/L7k4rY1w0eA/s400/Screenshot-edited.png" alt="" id="BLOGGER_PHOTO_ID_5393827053227246978" 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/2496709395896452958-1844214572586268389?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/1844214572586268389/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=1844214572586268389' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/1844214572586268389'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/1844214572586268389'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/10/customize-recaptcha-theme.html' title='Customize ReCaptcha theme'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_TgpxEOM7_c8/Stq5II-AhYI/AAAAAAAAAYU/L7k4rY1w0eA/s72-c/Screenshot-edited.png' height='72' width='72'/><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-5147131800398465436</id><published>2009-09-01T11:28:00.000-07:00</published><updated>2009-09-01T12:04:42.850-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><title type='text'>Use uppercase letters for mysql data table names in Windows</title><content type='html'>When we developing mysql based applications, there is a good probability to developers develop the application on Windows OS and deploy it on a linux server or vice versa. MySQL supports both lowercase and uppercase letters for table names in unix enviroments, but when it came to Windows, the default MySQL configuration does not support upper case letters in table names. This becomes a big headache if you need to restore mysql database backups from windows environments to unix environments ( other way round is not quiet a problem since all table names becomes lowercase in Windows machines) during several times while development.&lt;br /&gt;&lt;br /&gt;Today I found a solution for this case insensitvity of table names in MySQL servers on Windows environment. There is a mysql system variable called "&lt;code class="literal"&gt;lower_case_table_names" &lt;span style="font-family:verdana;"&gt;&lt;/span&gt;&lt;/code&gt;and it has set to 1 in default mysql configuration for Windows. 1 means only lower case table names are supported. For gaining the support for Both lower and upper case letters in table names, what you have to do is find relevant my.ini file for your MySQL installation and add the following line to the end of the file.&lt;br /&gt;&lt;code class="literal"&gt;&lt;/code&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;code class="literal"&gt;lower_case_table_names=2&lt;/code&gt;&lt;/blockquote&gt;Then restart the MySQL server. Now you will be able to create tables with names which include both upper-case and lower-case letters.&lt;br /&gt;&lt;br /&gt;Related MySQL articles,&lt;br /&gt;&lt;a href="http://dev.mysql.com/doc/refman/5.0/en/identifier-case-sensitivity.html"&gt;http://dev.mysql.com/doc/refman/5.0/en/identifier-case-sensitivity.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html#sysvar_lower_case_table_names"&gt;http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html#sysvar_lower_case_table_names&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-5147131800398465436?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/5147131800398465436/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=5147131800398465436' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/5147131800398465436'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/5147131800398465436'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/09/use-uppercase-letters-for-mysql-data.html' title='Use uppercase letters for mysql data table names in Windows'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-6669600397749207132</id><published>2009-07-18T03:12:00.000-07:00</published><updated>2009-07-19T01:15:01.861-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='search tool'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><title type='text'>Searching a MySql database for a Value to find which tables contains it.</title><content type='html'>In my recent works, I needed to do a search for a some string value to find what are the tables contains that value. Although there are easy tools and methods which allows you to search for a value in a known field and known data table, I couldn't found a easy way to search for a value in a entire MySQL database.  So i wrote this simple PHP script for accomplished that task. If somebody needs such functionality, they can use the script. Please change the database host, user name, password ( and database name ) according to your requirements.&lt;br /&gt;&lt;br /&gt;This scripts helps to search a value in an entire mysql database. In main results page, it will displays the tables which contains the search value and what are the fields which contains the search value and number of occurences of the search value. By clicking on the number of results column value in the main results table, You can go to a page which displays the rows which contains the search value in relevant database table.&lt;br /&gt;&lt;br /&gt;Download it from&lt;br /&gt;&lt;a href="http://heidisoft.com/sites/default/files/phpmysearch.zip"&gt;http://heidisoft.com/sites/default/files/phpmysearch.zip&lt;/a&gt;   &lt;br /&gt;or&lt;br /&gt;&lt;a href="http://rapidshare.com/files/257172086/phpmysearch.zip"&gt;http://rapidshare.com/files/257172086/phpmysearch.zip&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-6669600397749207132?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/6669600397749207132/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=6669600397749207132' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6669600397749207132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6669600397749207132'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/07/phpmysearch-searching-mysql-database.html' title='Searching a MySql database for a Value to find which tables contains it.'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-7308514628712387376</id><published>2009-07-05T23:11:00.000-07:00</published><updated>2009-07-05T23:18:41.037-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='xampp'/><title type='text'>Reset passwords for XAMPP pages</title><content type='html'>&lt;strong&gt;When I installed XAMPP on UBUNTU OS in my laptop, I put a password for that. But unfortunately , I couldn't remember it later. So I did some search on it and found a solution for the problem.&lt;br /&gt;&lt;br /&gt;Open a terminal and type following command,&lt;br /&gt;&lt;blockquote style="font-family: courier new;"&gt;sudo /opt/lampp/lampp security&lt;/blockquote&gt;Then it will ask for new password and no need to provide old passwords.&lt;br /&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-7308514628712387376?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/7308514628712387376/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=7308514628712387376' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/7308514628712387376'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/7308514628712387376'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/07/reset-passwords-for-xampp-pages.html' title='Reset passwords for XAMPP pages'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-6823216609618980349</id><published>2009-06-18T21:32:00.001-07:00</published><updated>2009-06-18T21:36:12.343-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='swine flu'/><category scheme='http://www.blogger.com/atom/ns#' term='H1N1'/><title type='text'>Swine Flu (H1N1) : How to protect Yourself &amp; Others</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_TgpxEOM7_c8/SjsVE-KQwiI/AAAAAAAAAVE/T5nTEtYPjCk/s1600-h/noname.jpeg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 494px; height: 559px;" src="http://1.bp.blogspot.com/_TgpxEOM7_c8/SjsVE-KQwiI/AAAAAAAAAVE/T5nTEtYPjCk/s400/noname.jpeg" alt="" id="BLOGGER_PHOTO_ID_5348892157582295586" 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/2496709395896452958-6823216609618980349?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/6823216609618980349/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=6823216609618980349' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6823216609618980349'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6823216609618980349'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/06/swine-flu-h1n1-how-to-protect-yourself.html' title='Swine Flu (H1N1) : How to protect Yourself &amp; Others'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_TgpxEOM7_c8/SjsVE-KQwiI/AAAAAAAAAVE/T5nTEtYPjCk/s72-c/noname.jpeg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-2101857283847682404</id><published>2009-05-21T09:56:00.000-07:00</published><updated>2009-05-21T10:22:24.534-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Song'/><category scheme='http://www.blogger.com/atom/ns#' term='Mahinda Rajapaksha'/><title type='text'>A nice song for a great leader - Ayubowewa Maha Rajanane</title><content type='html'>This is one of my favorite song. It is written for our great president Mahinda Rajapaksha. He has all characteristics of a great king as mentioned in this song. We are very lucky to have such a great leader.&lt;br /&gt;&lt;br /&gt;&lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/kSw6oQ3eV4I&amp;hl=en&amp;fs=1&amp;rel=0"&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/kSw6oQ3eV4I&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-2101857283847682404?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/2101857283847682404/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=2101857283847682404' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/2101857283847682404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/2101857283847682404'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/05/nice-song-for-great-leader-ayubowewa.html' title='A nice song for a great leader - Ayubowewa Maha Rajanane'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-2509342338472000966</id><published>2009-05-18T02:47:00.000-07:00</published><updated>2009-05-18T03:29:36.159-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='LTTE'/><title type='text'>LTTE Terrorist Leader Prabhakaran dead: Sri Lanka is free from from terror after 30 years.</title><content type='html'>Today is a victorious day for All Sri Lankans. Sri Lanka Defence Forces has killed the ruthless murderer Prabhakaran today.  &lt;a href="http://www.afp.com/afpcom/en/taglibrary/activity/web/multimedia/afp-online-news"&gt;http://www.afp.com/afpcom/en/taglibrary/activity/web/multimedia/afp-online-news&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-2509342338472000966?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/2509342338472000966/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=2509342338472000966' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/2509342338472000966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/2509342338472000966'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/05/ltte-terrorist-leader-prabhakaran-dead.html' title='LTTE Terrorist Leader Prabhakaran dead: Sri Lanka is free from from terror after 30 years.'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-2571450048009063381</id><published>2009-05-04T20:33:00.000-07:00</published><updated>2009-05-05T00:57:10.555-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Terrorism'/><category scheme='http://www.blogger.com/atom/ns#' term='LTTE'/><title type='text'>Children of LTTE Leader and LTTE Child Soldiers - How Prabhakaran &amp; LTTE reperesent Tamil peoples</title><content type='html'>&lt;div style="text-align: justify;"&gt;This is how so called "sole representative of Tamil people" treats his children and children of other Tamils who  he says that he represents.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_TgpxEOM7_c8/Sf-1RTjQQzI/AAAAAAAAAUU/ijzB-50TkC0/s1600-h/ForUSForHim5+.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_TgpxEOM7_c8/Sf-1RTjQQzI/AAAAAAAAAUU/ijzB-50TkC0/s400/ForUSForHim5+.jpg" alt="" id="BLOGGER_PHOTO_ID_5332179792740500274" border="0" /&gt;&lt;/a&gt;This left side picture shows a Tamil child killed by LTTE terrorists, because he refused to join LTTE as a child soldier. And Right picture shows LTTE leader Prabhakaran's wife and his son Charles Anthony. Look the difference. For living a luxurious life for Prabhakaran's family, other little children have to live in a hell and they even don't have a right to live if they refuse to join their canibal organization.&lt;br /&gt;&lt;/div&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_TgpxEOM7_c8/Sf-16Ntx_WI/AAAAAAAAAUc/b0OUootjmYo/s1600-h/ForUSForHim6+.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://3.bp.blogspot.com/_TgpxEOM7_c8/Sf-16Ntx_WI/AAAAAAAAAUc/b0OUootjmYo/s400/ForUSForHim6+.jpg" alt="" id="BLOGGER_PHOTO_ID_5332180495548677474" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_TgpxEOM7_c8/Sf-2Ge0DXwI/AAAAAAAAAUk/ctk4oySkMKU/s1600-h/ForUSForHim7+.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 300px;" src="http://2.bp.blogspot.com/_TgpxEOM7_c8/Sf-2Ge0DXwI/AAAAAAAAAUk/ctk4oySkMKU/s400/ForUSForHim7+.jpg" alt="" id="BLOGGER_PHOTO_ID_5332180706296815362" border="0" /&gt;&lt;/a&gt;Left side of these two photos shows a LTTE woman soldier and a child soldier. Right picture shows the LTTE leader Prabhakaran's daughter Dhavaraga. Look in the first photo of these two, what Prabhakaran has given to  these women soldiers to wear in the neck is a Cyanide capsule. But what he has given for his daughter is a Perl necklace. While those young girls in his terrorist organization hold AK47 guns in their hands, what his daughter holds in her hand is a nice rose flower. See the difference. See how the so called leader of the freedom fighters treats his family and his own people who he says to liberate and represent. While thousands of Tamil children were forcefully dragged from schools to join his terrorist organization, his children went  abroad to learn in foreign universities.&lt;br /&gt;LTTE is a ruthless terrorist organization built on heaps of lies and try to deceive international community and Tamil diaspora by those lies and try to justify their crimes using those lies. They  have created lot of pains to Tamil people. They have killed almost all of Tamil intellectuals who stands for democracy and who refuse violent actions of LTTE. They have prevented getting education by those Tamil children in North &amp;amp; Eastern of Sri Lanka. All Tamil peoples in those regions had to live in a hell like environment and with the fear that any moment LTTE will kidnap their loving children to use as child soldiers. These all brutalities should finish one day. Thanking to the Sri Lankan defense forces, I hope within weeks it will be over and Tamil, Sinhalese, Muslim and all other peoples in Sri Lanka can live in harmony after finishing these LTTE barbarians.&lt;br /&gt;Now Sri Lanakan defense forces have defeated almost all of LTTE and going to free those suffered Tamil peoples from the clutches of LTTE barbarians. Sri Lankan army has showed their professionalism and their humanity by achieving their targets by preventing casualties for civilians at all cost.&lt;br /&gt;[images taken from an email]&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-2571450048009063381?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/2571450048009063381/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=2571450048009063381' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/2571450048009063381'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/2571450048009063381'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/05/children-of-ltte-leader-and-ltte-child.html' title='Children of LTTE Leader and LTTE Child Soldiers - How Prabhakaran &amp; LTTE reperesent Tamil peoples'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_TgpxEOM7_c8/Sf-1RTjQQzI/AAAAAAAAAUU/ijzB-50TkC0/s72-c/ForUSForHim5+.jpg' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-785944203357353162</id><published>2009-05-03T22:14:00.000-07:00</published><updated>2009-05-03T23:27:10.393-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Influenza A'/><category scheme='http://www.blogger.com/atom/ns#' term='swine flu'/><category scheme='http://www.blogger.com/atom/ns#' term='H1N1'/><title type='text'>Swine Flu [Influenza A(H1N1)] Outbreak 2009</title><content type='html'>The &lt;span style="font-weight: bold;"&gt;2009&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;s&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;wine flu &lt;/span&gt;outbreak  is the epidemic of a new virus strain of &lt;span style="font-weight: bold;"&gt;influenza A ( H1N1) &lt;/span&gt;virus, which is commonly called the&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;span style="font-weight: bold;" class="mw-redirect"&gt;swine flu&lt;/span&gt;. It is currently a&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;span style="font-weight: bold;" class="mw-redirect"&gt;phase 5&lt;/span&gt; outbreak, one level below an official pandemic. Currently Mexico, USA and some European countries such as UK are the countries which are mainly affected by the &lt;span style="font-weight: bold;"&gt;Swine flu&lt;/span&gt;.&lt;br /&gt;The &lt;span style="font-weight: bold;"&gt;Spanish flu&lt;/span&gt; which spread throughout the world in &lt;span style="font-weight: bold;"&gt;1918&lt;/span&gt; is also caused by a strain of same H1N1 virus. Spanish flu is estimated to have affected nearly one billion people which was more than half of then world population and it is estimated that 70 to 100 million peoples were killed. In &lt;span style="font-weight: bold;"&gt;1976&lt;/span&gt;, there was another outbreak of swine flu (Influenza A or H1N1 virus), but it was limited to Fort Dix in USA.&lt;br /&gt;&lt;br /&gt;These are some important links related to Swine Flu or Influenza A (H1N1).&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;FAQ at WHO:&lt;a href="http://www.who.int/csr/disease/swineflu/frequently_asked_questions/en/index.html"&gt; http://www.who.int/csr/disease/swineflu/frequently_asked_questions/en/index.html&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Swine Flu Distribution Map: &lt;a href="http://flutracker.rhizalabs.com/"&gt;http://flutracker.rhizalabs.com/&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Wikipedia Page for Swine flu outbreak: &lt;a href="http://en.wikipedia.org/wiki/2009_swine_flu_outbreak"&gt;http://en.wikipedia.org/wiki/2009_swine_flu_outbreak&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-785944203357353162?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/785944203357353162/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=785944203357353162' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/785944203357353162'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/785944203357353162'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/05/swine-flu-influenza-ah1n1-outbreak-2009.html' title='Swine Flu [Influenza A(H1N1)] Outbreak 2009'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-3742571105648108967</id><published>2009-04-22T10:24:00.000-07:00</published><updated>2009-04-25T09:05:45.550-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Servlet'/><category scheme='http://www.blogger.com/atom/ns#' term='FileUpload'/><title type='text'>Upload a file to another webpage through a Java Servlet</title><content type='html'>In past few days, I had to work on implementing a functionality for sending an HTTP request to another url and upload a file with that HTTP request  and then get the response for the HTTP request from  a Java servlet. This is the code I finally created for achieving my task. It does,&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Connect to another given URL&lt;/li&gt;&lt;li&gt;Upload given string as a file to the above url&lt;/li&gt;&lt;li&gt;Then read the response for the above HTTP request.&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;Below function is called inside the &lt;span style="color: rgb(0, 0, 153);font-family:courier new;" &gt;protected void processRequest(HttpServletRequest request, HttpServletResponse response)&lt;/span&gt; of a Servlet in my project. I have put the relevant code for achieving this task in below.&lt;br /&gt;&lt;br /&gt;// Import these packages&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(0, 0, 102);font-family:courier new;" &gt;import java.io.*;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);font-family:courier new;" &gt;import java.net.HttpURLConnection;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 102);font-family:courier new;" &gt;import java.net.URL;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;// Code&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;private String uploadFile(String urlstring, String dataXML) {&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;try {&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;      String itemname = "formFile";&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;      &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;String tempfilename = "test.xml";&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;      &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;String lineEnd = "\r\n";&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;      &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;String twoHyphens = "--";&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;      &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;String boundary = "---------------------------24464570528145";&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;  &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;      &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;URL url = new URL(urlstring);&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;      &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;HttpURLConnection connection = (HttpURLConnection) url.openConnection();&lt;/span&gt;  &lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;            &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;connection.setDoOutput(true);&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;connection.setDoInput(true);&lt;/span&gt; &lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;connection.setUseCaches(false);&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;connection.setRequestMethod("POST");&lt;/span&gt; &lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;connection.setRequestProperty("Connection", "keep-alive");&lt;/span&gt; &lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;            connection.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;connection.setRequestProperty("Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7");&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;  &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;DataOutputStream dataoutputstream = new DataOutputStream(connection.getOutputStream());&lt;/span&gt;   &lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;dataoutputstream.writeBytes(twoHyphens + boundary + lineEnd);&lt;/span&gt; &lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;dataoutputstream.writeBytes("Content-Disposition: form-data; name=\"" + itemname + "\"; filename=\"" + tempfilename + "\"" + lineEnd);&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;dataoutputstream.writeBytes("Content-Type: text/plain" + lineEnd + lineEnd);&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;// &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;dataXML is &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;File data, writes a string as the file content of the uploading&lt;br /&gt;// file&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;dataoutputstream.writeBytes(dataXML);&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;" &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;dataoutputstream.writeBytes(lineEnd);&lt;/span&gt; &lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;dataoutputstream.writeBytes(twoHyphens + boundary + twoHyphens +&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;" &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;                    lineEnd);&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;  &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;            dataoutputstream.flush();&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;dataoutputstream.close();&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;" &gt;  &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;        &lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;String inputLine;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;            StringBuffer sbResponseData = new StringBuffer();&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;// Get the response data for the previous HTTP request &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;DataInputStream &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;dis = new DataInputStream(connection.getInputStream());&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;while ((inputLine = dis.readLine()) != null) {&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;                sbResponseData.append(inputLine + "\n");&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;            }&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;" &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;dis.close();&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; return sbResponseData.toString();&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;}&lt;br /&gt;catch (Exception ex) {&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;logger.error("Exception in initiating outdial call request: Details: " + ex.toString());&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;}&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);font-family:courier new;font-size:85%;"  &gt;}&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-3742571105648108967?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/3742571105648108967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=3742571105648108967' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/3742571105648108967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/3742571105648108967'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/04/upload-file-to-another-webpage-through.html' title='Upload a file to another webpage through a Java Servlet'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-4222947387498839679</id><published>2009-04-15T02:25:00.000-07:00</published><updated>2009-04-18T06:40:37.452-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='tinyurl'/><title type='text'>Previewing the URL of a TinyUrl</title><content type='html'>Nowadays, many of us use &lt;a href="http://tinyurl.com/"&gt;TinyURL&lt;/a&gt; s instead of using long urls for the ease of use. Think that a site you visited has a tiny url like &lt;b&gt;http://tinyurl.com/c8yvgr. &lt;/b&gt;We can not directly say whether this tiny url links to a good site or a porn site or a other malicious site by looking at given tiny url . But&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;now you can preview the actual URL before visiting the target site using a feature provided by http://tinyurl.com. What you have to do is go to &lt;a href="http://tinyurl.com/preview.php"&gt;http://tinyurl.com/preview.php&lt;/a&gt;  and then click on the link &lt;i&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;Click here to &lt;/span&gt;&lt;b style="color: rgb(0, 0, 153);"&gt;enable&lt;/b&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; previews&lt;/span&gt;. &lt;/i&gt; After enabling that, each time you click on a tinyURL, it will first show the preview of actual url and then you can proceed as you wish. You can later disable the preview settings using the same page&lt;i&gt;.&lt;br /&gt;&lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-4222947387498839679?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/4222947387498839679/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=4222947387498839679' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/4222947387498839679'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/4222947387498839679'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/04/previewing-url-of-tinyurl.html' title='Previewing the URL of a TinyUrl'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-6126153320476493474</id><published>2009-04-08T04:30:00.000-07:00</published><updated>2009-04-18T06:40:00.753-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='pgsql'/><title type='text'>How to get auto generated field values (primary keys etc)  after inserting a data entry to the database [ for PostgreSQL]</title><content type='html'>In these days I'm involved with a project using a PostgreSQL database. This is the first time I'm working with PGSQL, So I could learn some new features in PGSQL. One of the requirement I needed while coding is to find an easy way to get the auto generated primary key value when inserting a data record to the PGSQL database. I could find several ways to do that and one of method I found was really easy way. Those methods I found are described in this post.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-weight: bold;"&gt;First Method:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style="font-family:courier new;"&gt;    &lt;span style="font-size:85%;"&gt;public int insertData( String name, String address,  String tp_no)&lt;br /&gt;     {&lt;br /&gt;&lt;br /&gt;     int insertedKey = 0;&lt;br /&gt;     try {&lt;br /&gt;      Class.forName("org.postgresql.Driver");&lt;br /&gt;      Connection con = DriverManager.getConnection("jdbc:postgresql://localhost/MyDb", "username", "password");&lt;br /&gt;     &lt;br /&gt;      // Database has a primary key named "recordId"&lt;br /&gt;      String insertSql = "INSERT INTO \"MyTable\" (name, address, tp_no)" + " VALUES (?, ?, ?);";&lt;br /&gt;      PreparedStatement pstmt = con.prepareStatement(insertSql);&lt;br /&gt;      pstmt.setString(1, name);&lt;br /&gt;      pstmt.setString(2, address);&lt;br /&gt;      pstmt.setString(3, tp_no);&lt;br /&gt;      pstmt.executeUpdate();&lt;br /&gt;&lt;br /&gt;      // each table has a sequence named "&lt;span style="color: rgb(255, 153, 0);"&gt;TABLENAME_PRIMARYKEY_seq&lt;/span&gt;"&lt;br /&gt;      // my table name is "MyTable" and it has the auto incremented&lt;br /&gt;      // primary key field called "recordId". So sequence related to&lt;br /&gt;      // following query is "MyTable_recordId_seq"&lt;br /&gt;      String getRecordIdSql = "select &lt;span style="color: rgb(255, 0, 0);"&gt;currval(&lt;/span&gt;'\&lt;span style="color: rgb(255, 153, 0);"&gt;"MyTable_recordId_seq\"&lt;/span&gt;');";&lt;br /&gt;      Statement stmtGetRecId = con.createStatement();&lt;br /&gt;      ResultSet res = stmtGetRecId.executeQuery(getRecordIdSql);&lt;br /&gt;&lt;br /&gt;      if (res.first())&lt;br /&gt;      {&lt;br /&gt;        insertedKey = res.getInt(1);&lt;br /&gt;      }&lt;br /&gt;&lt;br /&gt;       con.close();&lt;br /&gt;&lt;br /&gt;     }&lt;br /&gt;     catch (Exception e)&lt;br /&gt;     {&lt;br /&gt;             System.out.println("Exception occurred: Details: " + e.getLocalizedMessage());&lt;br /&gt;      }&lt;br /&gt;&lt;br /&gt;     return insertedKey;&lt;br /&gt;&lt;br /&gt;    }&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family:courier new;font-size:85%;"&gt;&lt;/span&gt; &lt;/blockquote&gt;&lt;br /&gt;&lt;span style="font-family: arial; font-weight: bold;"&gt;Second &amp;amp; Easy Method:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style="font-family: courier new;"&gt; &lt;span style="font-size:85%;"&gt;public int insertData( String name, String address,  String tp_no)&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;     int insertedKey = 0;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;     try {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            Class.forName("org.postgresql.Driver");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            Connection con = DriverManager.getConnection("jdbc:postgresql://localhost/MyDb", "username", "password");&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            // See the end of the query string&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            // Database has a primary key named "recordId"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            String insertSql = "INSERT INTO \"MyTable\" (name, address, tp_no)" + " VALUES (?, ?, ?) &lt;span style="color: rgb(255, 0, 0);"&gt;RETURNING &lt;/span&gt;&lt;span style="color: rgb(255, 153, 0);"&gt;recordId&lt;/span&gt;;";&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            &lt;span style="color: rgb(255, 153, 0);"&gt;PreparedStatement pstmt = con.prepareStatement(insertSql, ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            pstmt.setString(1, name);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            pstmt.setString(2, address);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            pstmt.setString(3, tp_no);&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            ResultSet res = pstmt.executeQuery();    &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            // Get record id of the newly inserted record              &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            if (res.first()) {                &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;                insertedKey = res.getInt(1);                &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            res.close();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            con.close();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;        } catch (Exception e) {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            // logging&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;            System.out.println("Exception occurred: Details: " + e.getLocalizedMessage());&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;        }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;        return insertedKey;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;        &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;span style="font-weight: bold; font-family: arial;"&gt;Another Method:&lt;/span&gt;&lt;br /&gt;I found later an another way to get the generated keys using JDBC, but I didn't have time to test that. But you can find an example to that method in &lt;a href="http://www.java-tips.org/other-api-tips/jdbc/how-to-get-auto-generated-keys-from-java-class-3.html"&gt;this article&lt;/a&gt; &lt;a href="http://www.java-tips.org/other-api-tips/jdbc/how-to-get-auto-generated-keys-from-java-class-3.html"&gt;http://www.java-tips.org/other-api-tips/jdbc/how-to-get-auto-generated-keys-from-java-class-3.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-6126153320476493474?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/6126153320476493474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=6126153320476493474' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6126153320476493474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6126153320476493474'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/04/how-to-get-auto-generated-field-values.html' title='How to get auto generated field values (primary keys etc)  after inserting a data entry to the database [ for PostgreSQL]'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-7688147713830410492</id><published>2009-04-01T21:43:00.000-07:00</published><updated>2009-04-18T07:17:40.382-07:00</updated><title type='text'>Show hidden files although computer is infected by a virus</title><content type='html'>&lt;span&gt;&lt;span&gt;You can show the hidden files by &lt;span class="IL_SPAN"&gt;&lt;input name="IL_MARKER" type="hidden"&gt;changing&lt;/span&gt; this entry even in a machine infected by a virus. There is another place in the registry that can use to show/hide hidden files, but when the computer is infected  by a virus, it doesn't work:&lt;/span&gt;&lt;/span&gt; &lt;p style="color: rgb(0, 0, 102);"&gt;&lt;/p&gt;&lt;blockquote&gt;+HKEY_LOCAL_MACHINE&lt;br /&gt;+SOFTWARE&lt;br /&gt;+Microsoft&lt;br /&gt;+Windows&lt;br /&gt;+CurrentVersion&lt;br /&gt;+Explorer&lt;br /&gt;+Advanced&lt;br /&gt;+Folder&lt;br /&gt;+Hidden&lt;br /&gt;    NOHIDDEN&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt; &lt;p&gt;In the &lt;span style="font-weight: bold;"&gt;NOHIDDEN &lt;/span&gt;folder, select &lt;span style="font-weight: bold;"&gt;CheckedValue&lt;/span&gt; and set value to &lt;span style="font-weight: bold;"&gt;1&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/2496709395896452958-7688147713830410492?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/7688147713830410492/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=7688147713830410492' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/7688147713830410492'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/7688147713830410492'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2009/04/show-hidden-files-although-computer-is.html' title='Show hidden files although computer is infected by a virus'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-6521155579126334407</id><published>2008-12-31T09:24:00.000-08:00</published><updated>2009-01-01T11:32:15.823-08:00</updated><title type='text'>Best Wishes for New Year 2009</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_TgpxEOM7_c8/SV0ZpQnb_PI/AAAAAAAAAS0/yIqiaqHKX5c/s1600-h/Pic444ture1.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 304px;" src="http://4.bp.blogspot.com/_TgpxEOM7_c8/SV0ZpQnb_PI/AAAAAAAAAS0/yIqiaqHKX5c/s400/Pic444ture1.png" alt="" id="BLOGGER_PHOTO_ID_5286409734228540658" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 153);font-family:comic sans ms,sans-serif;font-size:130%;"  &gt;Wish you a &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 153);font-family:comic sans ms,sans-serif;font-size:130%;"  &gt;very happy and prosperous new year!!!&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-6521155579126334407?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/6521155579126334407/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=6521155579126334407' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6521155579126334407'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6521155579126334407'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/12/best-wishes-for-new-year-2009.html' title='Best Wishes for New Year 2009'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_TgpxEOM7_c8/SV0ZpQnb_PI/AAAAAAAAAS0/yIqiaqHKX5c/s72-c/Pic444ture1.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-8110893427332336517</id><published>2008-09-10T06:46:00.000-07:00</published><updated>2008-11-22T00:39:19.003-08:00</updated><title type='text'>Love ( A poem by Hafiz )</title><content type='html'>&lt;span style=";font-family:courier new;font-size:130%;"  &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: 19px; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;font-size:13;" &gt;&lt;dd style="line-height: 1.5em; margin-left: 2em; margin-bottom: 0.1em; font-family: georgia;"&gt;Even after all this time&lt;br /&gt;&lt;/dd&gt;&lt;dd style="line-height: 1.5em; margin-left: 2em; margin-bottom: 0.1em; font-family: georgia;"&gt;The sun never says to the earth "you owe me".&lt;br /&gt;&lt;/dd&gt;&lt;dd style="line-height: 1.5em; margin-left: 2em; margin-bottom: 0.1em; font-family: georgia;"&gt;Look what happens with a Love like that!&lt;br /&gt;&lt;/dd&gt;&lt;dd style="line-height: 1.5em; margin-left: 2em; margin-bottom: 0.1em; font-family: georgia;"&gt;-&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;It lights the whole Sky.&lt;br /&gt;&lt;/dd&gt;&lt;dd style="line-height: 1.5em; margin-left: 2em; margin-bottom: 0.1em; font-family: georgia;"&gt;&lt;span class="Apple-converted-space"&gt; &lt;/span&gt;                       -By Hafiz&lt;/dd&gt;&lt;dt&gt;&lt;br /&gt;&lt;/dt&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:arial;font-size:100%;"  &gt;This is really a wonderful poem. I think it has the real meaning of love.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-8110893427332336517?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/8110893427332336517/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=8110893427332336517' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/8110893427332336517'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/8110893427332336517'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/09/love-poem-by-hafiz.html' title='Love ( A poem by Hafiz )'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-7362376415726036134</id><published>2008-05-13T05:20:00.000-07:00</published><updated>2008-05-13T05:41:06.264-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='uom'/><category scheme='http://www.blogger.com/atom/ns#' term='gsoc'/><title type='text'>UoM wins GSoC First Place</title><content type='html'>When I read my emails in today morning I found an amazing news. It's about &lt;a href="http://code.google.com/soc/2008"&gt;GSOC 2008&lt;/a&gt;.  It says the largest number of GSOCers in this year are from my university, &lt;a href="http://www.cse.mrt.ac.lk"&gt;University of Moratuwa&lt;/a&gt;. Hey friends, It is cool.&lt;br /&gt;&lt;br /&gt;Read this blog for more info.&lt;br /&gt;&lt;a href="http://google-opensource.blogspot.com/2008/05/this-weeks-top-10s-universities-for.html"&gt;http://google-opensource.blogspot.com/2008/05/this-weeks-top-10s-universities-for.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-7362376415726036134?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/7362376415726036134/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=7362376415726036134' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/7362376415726036134'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/7362376415726036134'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/05/uom-wins-gsoc-first-place.html' title='UoM wins GSoC First Place'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-6359392088721489587</id><published>2008-03-18T20:50:00.000-07:00</published><updated>2008-03-18T21:31:47.239-07:00</updated><title type='text'>Sir Arthur C. Clarke : A Great Man in Our Age, has passed away</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_TgpxEOM7_c8/R-CW4kProsI/AAAAAAAAANU/ayRSLStZC1g/s1600-h/ACCportrait.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_TgpxEOM7_c8/R-CW4kProsI/AAAAAAAAANU/ayRSLStZC1g/s400/ACCportrait.jpg" alt="" id="BLOGGER_PHOTO_ID_5179305470022361794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;   When I was a child, I was fascinated by the beauty of the sky. Sky was a real mystery which hide beautiful secrets to me. Moon, sun, stars, comets, meteors, these were really really great things that attracted me and saw me a path to a hidden world full of secrets, mysteries. There was one person who helped me to go beyond my imagination about space and it's secrets. I began to love sky, astronomy, and was curious to find it's secrets because of that great man. He is a great philosopher, a great scientist, and a great author. He had his imagination beyond many of men in his generation (many sci-fi writers has this ability). I can describe him as a great man of our age. Many technologies that changed the world were his brain children. Famous example for his ideas that used successfully in these days is concept of &lt;span class="mw-redirect"&gt;geostationary satellites&lt;/span&gt; use for telecommunications relays. Now you  know who I am talking about. Your guess is right. I'm talking about sir Arthur C. Clarke , a real great man of our age.&lt;br /&gt;&lt;br /&gt;    Once I have read somewhere that science fiction is a super weapon invented by future scientist and it was invented for speed up the development of technology of mankind in order to prepare for future alien attack. (It was also a science fiction :) ). Although that was another science fiction, concept of that science fiction is right. Actually science fictions written by those great sci-fi writers like Sir Arthur C. Clarke were and are really helping for the progress for science and technology. Science fictions helps science and technology to get close to common peoples without knowing much theory and complex concepts. So science fictions are really a some kind of great inventions made by man. If you have read, You know that Science fictions written by Sir Arthur C. Clerk are really really great. Those sci-fi novels written by Sir Arthur C. Clerk are not some fancy thinking of a day dreamer. Those novels are written on scientific facts and incidents that can happen in the future. In his every novel there is something new interesting story in there. When I were at grade 8 and 9 , my pals were very addicted in reading his sci-fi novels, specially series of Space Odyssey , from "2001 A Space Odyssey" to "3001 The Final Odyssey".&lt;br /&gt;&lt;br /&gt;    I was very proud because he is a citizen of my country, Sri Lanka. He was the vice chancellor of my university, University of Moratuwa until 2004, But unfortunately he retired before I enrolled my BSc(Eng) course in there. He was a great scientist who help the world to travel  through time to few years ahead of it's development. He was a great thinker who changed the world by his concepts. He was a great sci-fi writer who helped to taking science and it's concepts to common people. He is a great man. I proud to say I was living in the age of Sir Arthur C. Clarke.&lt;br /&gt;&lt;br /&gt;   What I heard first in today morning, was a very sad news. That's why I wrote this post about one of great man of our age, Sir Arthur C. Clarke. Today, That great man, Sir Arthur C. Clarke has passed away. My heart shocked by that news. I know, not only my heart. Hearts of thousands of people who know the worth of this great man, were shocked by this sad news. I think he should not die, He should live more years to see how his imaginations comes true. I wish the highest and noblest wish of my religion. May Sir Arthur C. Clarke attain nibbana.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;These are some of books by Sir Arthur C. Clarke I have read&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;2001 A Space Odyssey&lt;/li&gt;&lt;li&gt;2010 Odyssey Two&lt;/li&gt;&lt;li&gt;2061 Odyssey Three&lt;/li&gt;&lt;li&gt;3001 The Final Odyssey&lt;/li&gt;&lt;li&gt;A Fall of Moon dust&lt;/li&gt;&lt;li&gt;Childhood's End&lt;/li&gt;&lt;li&gt;Cradle&lt;/li&gt;&lt;li&gt;Reach for Tomorrow&lt;/li&gt;&lt;li&gt;Rendezvous With Rama&lt;/li&gt;&lt;li&gt;Dolphin Island&lt;br /&gt;&lt;/li&gt;&lt;li&gt;The Fountains of Paradise&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;If you want to learn more about him go to&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/Arthur_C._Clarke"&gt;http://en.wikipedia.org/wiki/Arthur_C._Clarke&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.clarkefoundation.org/acc/biography.php"&gt;http://www.clarkefoundation.org/acc/biography.php&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-6359392088721489587?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/6359392088721489587/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=6359392088721489587' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6359392088721489587'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6359392088721489587'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/03/sir-arthur-c-clarke-great-man-in-our.html' title='Sir Arthur C. Clarke : A Great Man in Our Age, has passed away'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_TgpxEOM7_c8/R-CW4kProsI/AAAAAAAAANU/ayRSLStZC1g/s72-c/ACCportrait.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-4000741379429719565</id><published>2008-03-11T21:23:00.000-07:00</published><updated>2008-03-12T00:03:26.727-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Security'/><category scheme='http://www.blogger.com/atom/ns#' term='OUTLOOK'/><category scheme='http://www.blogger.com/atom/ns#' term='Email'/><title type='text'>A security hole in OUTLOOK</title><content type='html'>Last Saturday, I found a security hole in OUTLOOK . It happened like this. In last Saturday, while I was at the office , one of my friend called me and told to login to his computer and get an email from his OUTLOOK account and tell him the details in that mail. So I tried to login to his computer with his local computer  account because he has configured his OUTLOOK account for his local computer account . I tried several times but couldn't login. Then I tried his account for office domain. I could logon by that account but couldn't access required OUTLOOK email account since It was not configured for that user account. So I opened OUTLOOK and tried to open mail file in the mail folder for his local computer account. It said "Access is denied" So I couldn't open it. Then what I did was , copying that file to my Desktop and tried to open it again. Wow, It worked. No messages were prompted saying "Access is denied". It opens without any disturbance.&lt;br /&gt;&lt;br /&gt;So If anyone can get a copy of your mail  data file(Outlook.pst), He don't need any username, passwords for access your mails. But I think this is somewhat a rare incident. If my friend didn't configured to save his mail data files in a location other than his user "Document and Settings" folder, I might not be able to access that mail data file. So If you have configured OUTLOOK  for storing its data in a place that any other user can access without any restrictions, then your emails are vulnerable to read by others. So always try to keep default location for saving your OUTLOOK data files.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-4000741379429719565?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/4000741379429719565/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=4000741379429719565' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/4000741379429719565'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/4000741379429719565'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/03/security-hole-in-outlook-express.html' title='A security hole in OUTLOOK'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-8278044539990646012</id><published>2008-02-01T22:20:00.000-08:00</published><updated>2008-02-06T01:38:44.041-08:00</updated><title type='text'>Great advice for today, anyday, and EVERYDAY</title><content type='html'>&lt;p style="background: white none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;strong&gt;&lt;b&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;color:red;"   &gt;&lt;span style=";font-size:12;color:red;"  &gt;This mail I found in my mail box. It's a nice one. So thought to share it with you.&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style="background: white none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;strong&gt;&lt;b&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;color:red;"   &gt;&lt;span style=";font-size:12;color:red;"  &gt;----------------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/strong&gt;&lt;/p&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;&lt;b&gt;&lt;span style=";font-family:Times New Roman;color:red;"  &gt;&lt;span style="color:red;"&gt;Carry a Heart that Never Hates... &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/strong&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color:red;"&gt;&lt;span style="font-weight: bold;color:red;" &gt;&lt;br /&gt;&lt;strong&gt;&lt;b&gt;&lt;span style="font-family:Times New Roman;"&gt;Carry a Smile that Never Fades... &lt;/span&gt;&lt;/b&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;b&gt;&lt;span style="font-family:Times New Roman;"&gt;Carry a Touch that never Hurts... &lt;/span&gt;&lt;/b&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;b&gt;&lt;span style="font-family:Times New Roman;"&gt;Carry a Friendship that Never Fails.&lt;/span&gt;&lt;/b&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_TgpxEOM7_c8/R6l8Noz5B-I/AAAAAAAAAHg/e8Fc2zrpZok/s1600-h/image001.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_TgpxEOM7_c8/R6l8Noz5B-I/AAAAAAAAAHg/e8Fc2zrpZok/s400/image001.gif" alt="" id="BLOGGER_PHOTO_ID_5163795021492193250" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_TgpxEOM7_c8/R6l7_oz5B9I/AAAAAAAAAHY/kWqpUEXWYUA/s1600-h/image009.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 455px; height: 376px;" src="http://3.bp.blogspot.com/_TgpxEOM7_c8/R6l7_oz5B9I/AAAAAAAAAHY/kWqpUEXWYUA/s400/image009.jpg" alt="" id="BLOGGER_PHOTO_ID_5163794780974024658" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_TgpxEOM7_c8/R6l74Iz5B8I/AAAAAAAAAHQ/Em61dGrXAu8/s1600-h/image001.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://1.bp.blogspot.com/_TgpxEOM7_c8/R6l74Iz5B8I/AAAAAAAAAHQ/Em61dGrXAu8/s400/image001.gif" alt="" id="BLOGGER_PHOTO_ID_5163794652125005762" 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/2496709395896452958-8278044539990646012?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/8278044539990646012/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=8278044539990646012' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/8278044539990646012'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/8278044539990646012'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/02/great-advice-for-today-anyday-and_01.html' title='Great advice for today, anyday, and EVERYDAY'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_TgpxEOM7_c8/R6l8Noz5B-I/AAAAAAAAAHg/e8Fc2zrpZok/s72-c/image001.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-301127368723347689</id><published>2008-01-24T21:25:00.001-08:00</published><updated>2008-07-14T02:24:00.800-07:00</updated><title type='text'>SinhalaKey Extension Release</title><content type='html'>&lt;hr /&gt; &lt;p&gt;Sinhala key is a extension to Firefox which helps to typing Sinhala language. It'll be suitable for chatting, blogging and other common typing purposes in Firefox browser. Now (In version 1.0) it supports only for SINGRISH ( ea kiyanne mehema type karana eka [ typing sinhala words using English letters as same sound generate as Sinhala word] ). In version 2 , it'll support to Wijesekara keyboard layout, which is the standard keyboard for typing Sinhala. &lt;/p&gt;&lt;p&gt;PREREQUESITES: You should install sinhala unicode fonts in your computer inorder to use this extension. Follow the instructions on the &lt;/p&gt; &lt;pre&gt;&lt;a href="http://si.wikipedia.org/wiki/Wikipedia:Sinhala_font#How_to_read_Sinhala" class="external free" title="http://si.wikipedia.org/wiki/Wikipedia:Sinhala_font#How_to_read_Sinhala" rel="nofollow"&gt;http://si.wikipedia.org/wiki/Wikipedia:Sinhala_font#How_to_read_Sinhala&lt;/a&gt;&lt;br /&gt;and install correct sinhala pack from &lt;a href="https://www.siyabas.lk/files/SinhalaTamilKit_XP.exe"&gt;here.&lt;/a&gt;&lt;br /&gt;https://www.siyabas.lk/files/SinhalaTamilKit_XP.exe&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;SINGRISH TRANSLITERATION: &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_TgpxEOM7_c8/R51lJIz5BhI/AAAAAAAAADM/RAIlJptkQ2g/s1600-h/singrishTransliteration.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_TgpxEOM7_c8/R51lJIz5BhI/AAAAAAAAADM/RAIlJptkQ2g/s400/singrishTransliteration.jpg" alt="" id="BLOGGER_PHOTO_ID_5160391955694814738" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div style="text-align: left;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here is a preview of it's use for typing&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_TgpxEOM7_c8/R57neoz5BiI/AAAAAAAAADU/VyerMNuATXk/s1600-h/preview.png"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_TgpxEOM7_c8/R57neoz5BiI/AAAAAAAAADU/VyerMNuATXk/s400/preview.png" alt="" id="BLOGGER_PHOTO_ID_5160816736550323746" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;HOW TO INSTALL: &lt;/p&gt;&lt;p&gt;IMPORTANT : If you have not installed sinhala unicode fonts and not followed the instructions at page &lt;a href="http://si.wikipedia.org/wiki/Wikipedia:Sinhala_font#How_to_read_Sinhala" class="external free" title="http://si.wikipedia.org/wiki/Wikipedia:Sinhala_font#How_to_read_Sinhala" rel="nofollow"&gt;http://si.wikipedia.org/wiki/Wikipedia:Sinhala_font#How_to_read_Sinhala&lt;/a&gt; , Do it before continuing. &lt;/p&gt;&lt;p&gt;1.click the link &lt;a href="http://downloads.mozdev.org/sinhalakey/sinhalakey-0.9.0-fx+tb.xpi" target="_blank"&gt;http://downloads.mozdev.org&lt;wbr&gt;/sinhalakey/sinhalakey-0.9.0&lt;wbr&gt;-fx+tb.xpi&lt;/a&gt; . Then Firefox will tell that it prevent installing software form this site. Click the popup bar in the window and allow this site to install softwares.Then click the previous link again. Then Click Install. &lt;/p&gt;&lt;p&gt;2.Restart Firefox browser. &lt;/p&gt;&lt;p&gt;3.To use sinhala singrish, Go to required text box and click on it. &lt;/p&gt;&lt;p&gt;4.Then, &lt;/p&gt; &lt;pre&gt;  1.Right click on it, then select "Sinhala Yathuru Puwaruwa"-&gt;"Singrish"&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;OR &lt;/p&gt; &lt;pre&gt;  2.Press Alt+F2,&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;to use the Singrish typing. &lt;/p&gt;&lt;p&gt;5.To go back to normal English typing, &lt;/p&gt; &lt;pre&gt;  1.Right click on it, then select "Sinhala Yathuru Puwaruwa"-&gt;"English"&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;OR &lt;/p&gt; &lt;pre&gt;  2.Press F2,&lt;br /&gt;=====================================================================================&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;NOTE:&lt;/p&gt;&lt;p&gt;    this version still has some little bugs, as soon as i have time I'll fix it. :)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;THANKS: For NiMaL(S. Nimalaprakasan)&lt;a href="http://thetalkouttrojans.blogspot.com/" class="external autonumber" title="http://thetalkouttrojans.blogspot.com/" rel="nofollow"&gt;[1]&lt;/a&gt; for help me by sending many resource links. &lt;/p&gt;&lt;p&gt;For Creators of TamilKey extension, I got the idea to do this from TamilKey extension. &lt;/p&gt;&lt;p&gt;&lt;br /&gt;Any comments on this are welcome! &lt;/p&gt;&lt;p&gt;Happy typing! &lt;/p&gt;&lt;p&gt;&lt;br /&gt;Manjula A. Weerasinghe &lt;a href="http://www.risingofsilversurfer.blogspot.com/" class="external free" title="http://www.risingofsilversurfer.blogspot.com" rel="nofollow"&gt;http://www.risingofsilversurfer.blogspot.com&lt;/a&gt;&lt;/p&gt;Project Home Page &lt;a href="http://sinhalakey.mozdev.org/" target="_blank"&gt;http://sinhalakey.mozdev.org/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Addons Mirror page &lt;a href="http://forum.addonsmirror.net/index.php?showtopic=7238"&gt;http://forum.addonsmirror.net/index.php?showtopic=7238 &lt;/a&gt;&lt;br /&gt;&lt;h2 style="font-weight: normal;"&gt;&lt;span style="font-size:100%;"&gt; Firefox Add-ons site &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/6404"&gt;https://addons.mozilla.org/en-US/firefox/addon/6404&lt;/a&gt;&lt;/span&gt; &lt;/h2&gt;&lt;br /&gt;&lt;p&gt;====================================================================&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;Version History&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Version 0.9.0 Added : 28/01/2008 : Removed bugs&lt;/p&gt;&lt;p&gt;Version 0.9.1 Added : 14/07/2008 : Update for Firefox v 3.0 compatibility, But this version  is still in the sandbox of Firefox addon official site, But You can get it from &lt;a href="http://i.keep.it.here.googlepages.com/sinhalakey-0.9.1-fxtb.xpi"&gt;here .&lt;/a&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.risingofsilversurfer.blogspot.com/" class="external free" title="http://www.risingofsilversurfer.blogspot.com" rel="nofollow"&gt;&lt;br /&gt;&lt;/a&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-301127368723347689?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/301127368723347689/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=301127368723347689' title='13 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/301127368723347689'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/301127368723347689'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/01/sinhalakey-extension-release.html' title='SinhalaKey Extension Release'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_TgpxEOM7_c8/R51lJIz5BhI/AAAAAAAAADM/RAIlJptkQ2g/s72-c/singrishTransliteration.jpg' height='72' width='72'/><thr:total>13</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-4228489156529213743</id><published>2008-01-18T02:36:00.000-08:00</published><updated>2008-03-13T03:29:53.434-07:00</updated><title type='text'>RMS came here!!!</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_TgpxEOM7_c8/R5CGLu4bc1I/AAAAAAAAAC0/HYTIzjAGFnM/s1600-h/images.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://4.bp.blogspot.com/_TgpxEOM7_c8/R5CGLu4bc1I/AAAAAAAAAC0/HYTIzjAGFnM/s400/images.jpg" alt="" id="BLOGGER_PHOTO_ID_5156769109460611922" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Today, I participated a lecture from Richard M. Stallmann or RMS. RMS is the founder of GNU free software foundation. Actually  what he did in those days was a great turning point of software world. It lead way to have freedom to share softwares  with friends , modify as we needed for all people . He is a strange man with a big belly and a long hair. I think his some ideas are extreamist ideas. But what he started is realy great thing.&lt;br /&gt;I came to company at about 8.40am to go to SLIIT for participating RMS's lecture. But we went from the company at about 10.30am. All of our training group except Nimal went to the event with Dilum ayya, Dilan ayya and and Dilshan ayya. He told us about why software freedom is neccessary and what free software means. At the end, i took a photograph with him. I also met &amp;amp; talked with Dr. Shahani Weerawarna at the lecture. It was realy a great experience to meet such a great pioneer in software field.&lt;br /&gt;Here is photo with RMS, Me and Praithees.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_TgpxEOM7_c8/R9kB-EProrI/AAAAAAAAAM0/xPb8mpYaTeY/s1600-h/IMG_4937.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_TgpxEOM7_c8/R9kB-EProrI/AAAAAAAAAM0/xPb8mpYaTeY/s400/IMG_4937.jpg" alt="" id="BLOGGER_PHOTO_ID_5177171412442129074" 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/2496709395896452958-4228489156529213743?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/4228489156529213743/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=4228489156529213743' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/4228489156529213743'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/4228489156529213743'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/01/rms-came-here.html' title='RMS came here!!!'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_TgpxEOM7_c8/R5CGLu4bc1I/AAAAAAAAAC0/HYTIzjAGFnM/s72-c/images.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-5691004087360591497</id><published>2008-01-08T00:20:00.000-08:00</published><updated>2008-01-08T02:41:33.670-08:00</updated><title type='text'>War and Terrorism</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.defence.lk/img/20080108_01.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 400px;" src="http://www.defence.lk/img/20080108_01.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Although I wished you a happy new year on last blog post, from the January 01, It seems we are not having a very good year. On January 01, New year 2008 started with the news of assasination of UNP(United National party or so called main opposition party of Sri Lanka) MP , Mr. T. Maheshawran at a Kowil in Colombo. The Next day became another sad day by the explosion happened in Slave Island which targeted at an ARMY bus which carried sick soldiers to the hospital. These disasters proves again and again the cruelty of the terrorism and give the message that all of people should assemble against  the terrorism and defeat the terrorism. Today, In the morning we had another sad news. A Claymore mine has exploaded in Ja-ela. It's target was Minister D. M. Jayarathna and he died due to the severe injuries happened by the explotion.&lt;br /&gt;Terrorists only know one language, that is the war. But same time we should find and solve the problems of Tamil peoples. I wish our armed forces defeat the LTTE terorrists and unite our mother land before dawning of next year.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-5691004087360591497?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/5691004087360591497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=5691004087360591497' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/5691004087360591497'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/5691004087360591497'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/01/war-and-terrorism.html' title='War and Terrorism'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-5976090136106180429</id><published>2008-01-01T23:14:00.001-08:00</published><updated>2008-01-02T00:17:03.813-08:00</updated><title type='text'>New Year Wishes +++</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_TgpxEOM7_c8/R3s58e4bc0I/AAAAAAAAACs/QfIoYln4Mes/s1600-h/newyear35.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_TgpxEOM7_c8/R3s58e4bc0I/AAAAAAAAACs/QfIoYln4Mes/s400/newyear35.jpg" alt="" id="BLOGGER_PHOTO_ID_5150774310072972098" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;H&lt;/span&gt;&lt;span style="color: rgb(255, 255, 0);"&gt;a&lt;/span&gt;&lt;span style="color: rgb(51, 204, 0);"&gt;P&lt;/span&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;p&lt;/span&gt;&lt;span style="color: rgb(102, 255, 255);"&gt;Y&lt;/span&gt; &lt;span style="color: rgb(153, 0, 0);"&gt;N&lt;/span&gt;e&lt;span style="color: rgb(102, 102, 204);"&gt;W&lt;/span&gt; &lt;span style="color: rgb(0, 102, 0);"&gt;Y&lt;/span&gt;&lt;span style="color: rgb(255, 204, 51);"&gt;e&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;A&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;span style="font-size:180%;"&gt;r 2008&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;Another year passed and New Year dawned. Let me Wish you a great happy fantastic new year. Since We were having little busy work schedule in last few weeks i didn't have a time to write my blog. Anyway now i'm little bit free.&lt;br /&gt;When the dawning of 2008, I was in middle of little fantastic work. I learned how to write firefox extensions and I wrote my first extension (Hello World type) in that moment. I found a nice tutorial in  &lt;span style="text-decoration: underline; color: rgb(0, 0, 153);"&gt;www.&lt;/span&gt;&lt;a style="color: rgb(0, 0, 153);" href="http://roachfiend.com/archives/2004/12/08/how-to-create-firefox-extensions/"&gt;roachfiend.com&lt;/a&gt;. It was realy a nice tutorial to learn how to write extensions for FIREFOX. But i had a one problem at first when archivyng the extension. At first I used WinRAR for archyving and change the .rar extension to .jar and .xpi. But it didn't work. After that i found that the error was the type of archivyng. I created a .RAR file but the .xpi and .jar files are realy ZIP archives with extensions changed to .xpi and .jar. That's realy nice thing creating extensions. Actually this extension mechanism in FireFox is admirable. Without knowing too much about C or programming anyone can give new features to the firefox browser as it needs. In these days my main job after AdLive is learning about firefox extensions. Yet I haven't any idea about what to create as new extensions.&lt;br /&gt;&lt;br /&gt;In january 01, We had little new year celebration at our company. In morning , We had speaches from our CTO and other few officers and then had milk rice and sweet eats. Then at noon 2.00pm we had a lunch. I was very hungry ;-( at that time because we normally it at 12.45pm in other days. After that we heard a news that UNP parlimentarian T. Maheshwaran had been shot and killed in a Kowil. Today, jan 02, We also had a another bad news that a bomb blast in Slave Island and the target was an Army bus.&lt;br /&gt;&lt;br /&gt;Untill another time to blog again, Bye. ;-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-5976090136106180429?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/5976090136106180429/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=5976090136106180429' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/5976090136106180429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/5976090136106180429'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2008/01/new-year-wishes.html' title='New Year Wishes +++'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_TgpxEOM7_c8/R3s58e4bc0I/AAAAAAAAACs/QfIoYln4Mes/s72-c/newyear35.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-4265115474363037701</id><published>2007-12-14T23:46:00.000-08:00</published><updated>2007-12-15T00:57:10.250-08:00</updated><title type='text'>Just a word ....</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_TgpxEOM7_c8/R2OWRO4bczI/AAAAAAAAACk/yoIOBAIg01A/s1600-h/200px-Taxi_2004_movie.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://1.bp.blogspot.com/_TgpxEOM7_c8/R2OWRO4bczI/AAAAAAAAACk/yoIOBAIg01A/s400/200px-Taxi_2004_movie.jpg" alt="" id="BLOGGER_PHOTO_ID_5144120422183957298" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: left;"&gt;I couldn't  write the blog for a long time. We are having a little hard time in doing our AdLive project. It seems that we'll not be able to complete currently working module as quick as we thought before. One problem is we (Kathees &amp;amp; me) are not familiar verymuch with JSPand so we have to learn &amp;amp; to be  familiar with while we are working on the project. ANd also backend part also not yet completely implemented &amp;amp; some implemented functions doesn't meet the requirements in front end (JSP) part. So it becomes too slow.&lt;br /&gt;&lt;/div&gt;In yesterday was a one of very bad day in my life. Akki didn't response for my any of rings or sms's. She even didn't answer when i tried to call her. That's realy a very bad day. Any how akki is not in very good mood with me now. ;-(&lt;br /&gt;In there days, i didn't do any important works other than the AdLive project. In my every leisure time, i watched films. I've become a big film fan. Yesterday, I watched a film called "TAXI". It was a very nice film. It is about a female taxi driver and a police cop. They both joined together for hunt down a gang of bank robbers.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_TgpxEOM7_c8/R2OVVO4bcyI/AAAAAAAAACc/IazD7SBrUWs/s1600-h/ma_abuse.gif"&gt;&lt;img style="cursor: pointer;" src="http://1.bp.blogspot.com/_TgpxEOM7_c8/R2OVVO4bcyI/AAAAAAAAACc/IazD7SBrUWs/s400/ma_abuse.gif" alt="" id="BLOGGER_PHOTO_ID_5144119391391806242" 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/2496709395896452958-4265115474363037701?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/4265115474363037701/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=4265115474363037701' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/4265115474363037701'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/4265115474363037701'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2007/12/just-word.html' title='Just a word ....'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_TgpxEOM7_c8/R2OWRO4bczI/AAAAAAAAACk/yoIOBAIg01A/s72-c/200px-Taxi_2004_movie.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-2268492164529301802</id><published>2007-11-12T22:06:00.000-08:00</published><updated>2008-01-08T02:19:38.088-08:00</updated><title type='text'>The President of India DR. A. P. J. Abdul Kalam 's Speech in Hyderabad .,   -  A valuable speech ; not only for indians</title><content type='html'>--&lt;span style="font-weight: bold;"&gt;-------------------------------------------------------------------------------------------------&lt;/span&gt;&lt;br /&gt;I found this speech in my mail box. And thought it was valuable for not only Indians but peoples in every country.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;---------------------------------------------------------------------------------------------------&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(102, 102, 102);font-family:Times New Roman;font-size:180%;"  &gt;&lt;span style="font-size:12;"&gt;The President of India DR. A. P. J. Abdul Kalam 's Speech in Hyderabad.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;Why is the media here so negative? &lt;/span&gt;&lt;/span&gt; &lt;div&gt; &lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;  Why are we in India so embarrassed to recognize our own strengths, our achievements? We are such a great nation. We have so many amazing success stories but we refuse to acknowledge them. Why?&lt;br /&gt;&lt;br /&gt;  We are the first in milk production.&lt;br /&gt;&lt;br /&gt;  We are number one in Remote sensing satellites.&lt;br /&gt;&lt;br /&gt;  We are the second largest producer of wheat.&lt;br /&gt;&lt;br /&gt;  We are the second largest producer of rice.&lt;br /&gt;&lt;br /&gt;  Look at Dr. Sudarshan , he has transferred the tribal village into a self-sustaining, self-driving unit. There are millions of such achievements but our media is only obsessed in the bad news and failures and disasters. I was in Tel Aviv once and I was reading the Israeli newspaper. It was the day after a lot of attacks and bombardments and deaths had taken place. The Hamas had struck. But the front page of the newspaper had the picture of a Jewish gentleman who in five years had transformed his desert into an orchad and a granary. It was this inspiring picture that everyone woke up to. The gory details of killings, bombardments, deaths, were inside in the newspaper, buried among other news. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt; &lt;div&gt; &lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;  In India we only read about death, sickness, terrorism, crime. Why are we so NEGATIVE? Another question: Why are we, as a nation so obsessed with foreign things? We want foreign T.Vs, we want foreign shirts. We want foreign technology. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt; &lt;div&gt; &lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;  Why this obsession with everything imported. Do we not realize that self-respect comes with self-reliance? I was in Hyderabad giving this lecture, when a 14 year old girl asked me for my autograph. I asked her what her goal in life is. She replied: I want to live in a developed India . For her, you and I will have to build this developed India . You must proclaim. India is not an under-developed nation; it is a highly developed nation. Do you have 10 minutes? Allow me to come back with a vengeance. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt; &lt;div&gt; &lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;  Got 10 minutes for your country? If yes, then read; otherwise, choice is yours.&lt;br /&gt;&lt;br /&gt;  YOU say that our government is inefficient.&lt;br /&gt;&lt;br /&gt;  YOU say that our laws are too old.  YOU say that the municipality does not pick up the garbage.   YOU say that the phones don't work, the railways are a joke,&lt;br /&gt;&lt;br /&gt;  The airline is the worst in the world, mails never reach their destination.&lt;br /&gt;&lt;br /&gt;  YOU say that our country has been fed to the dogs and is the absolute pits. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt; &lt;div&gt; &lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;  YOU say, say and say. What do YOU do about it?  Take a person on his way to Singapore . Give him a name - YOURS. Give him a face - YOURS. YOU walk out of the airport and you are at your International best. In Singapore you don't throw cigarette butts on the roads or eat in the stores. YOU are as proud of their Underground links as they are. You pay $5 (approx. Rs. 60) to drive through Orchard Road (equivalent of Mahim Causeway or Pedder Road) between 5 PM and 8 PM. YOU come back to the parking lot to punch your parking ticket if you have over stayed in a restaurant or a shopping mall irrespective of your status identity...  In Singapore you don't say anything, DO YOU? YOU wouldn't dare to eat in public during Ramadan, in Dubai . YOU would not dare to go out without your head covered in Jeddah. YOU would not dare to buy an employee of the telephone exchange in London at 10 pounds ( Rs.650) a month to, 'see to it that my STD and IS D calls are billed to someone else.'YOU&lt;br /&gt;would not dare to speed beyond 55 mph (88 km/h) in Washington and then tell the traffic cop, 'Jaanta hai main kaun hoon (Do you know who I am?). I am so and so's son.  Take your two bucks and get lost.' YOU wouldn't chuck an empty coconut shell anywhere other than the garbage pail on the beaches in Australia and New Zealand .&lt;br /&gt;&lt;br /&gt;  Why don't YOU spit Paan on the streets of Tokyo ? Why don't YOU use examination jockeys or buy fake certificates in Boston ??? We are still&lt;br /&gt;&lt;br /&gt;  talking of the same YOU. YOU who can respect and conform to a foreign system in other countries but cannot in your own. You who will throw papers and&lt;br /&gt;&lt;br /&gt;  cigarettes on the road the moment you touch Indian ground. If you can be an involved and appreciative citizen in an alien country, why cannot you be the&lt;br /&gt;&lt;br /&gt;  same here in India ? &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;  &lt;div&gt; &lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;  Once in an interview, the famous Ex-municipal commissioner of Bombay , Mr. Tinaikar , had a point to make. 'Rich people's dogs are walked on the&lt;br /&gt;&lt;br /&gt;  streets to leave their affluent droppings all over the place,' he said. 'And then the same people turn around to criticize and blame the authorities for inefficiency and dirty pavements. What do they expect the officers to do? Go down with a broom every time their dog feels the pressure in his bowels?&lt;br /&gt;&lt;br /&gt;  In America every dog owner has to clean up after his pet has done the job.&lt;br /&gt;&lt;br /&gt;  Same in Japan . Will the Indian citizen do that here?' He's right. We go to the polls to choose a government and after that forfeit all responsibility.&lt;br /&gt;&lt;br /&gt;  We sit back wanting to be pampered and expect the government to do everything for us whilst our contribution is totally negative. We expect the&lt;br /&gt;&lt;br /&gt;  government to clean up but we are not going to stop chucking garbage all over the place nor are we going to stop to pick up a stray piece of paper and throw it in the bin. We expect the railways to provide clean bathrooms but we are not going to learn the proper use of bathrooms.  We want Indian Airlines and Air India to provide the best of food and toiletries but we are not going to stop pilfering at the least opportunity.&lt;br /&gt;&lt;br /&gt;  This applies even to the staff who is known not to pass on the service to the public.&lt;br /&gt;&lt;br /&gt;  When it comes to burning social issues like those related to women, dowry, girl child and others, we make loud drawing room protestations and continue to do the reverse at home. Our excuse? 'It's the whole system which has to change, how will it matter if I alone forego my son's rights to a dowry.' So who's going to change the system? &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt; &lt;div&gt; &lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;  What does a system consist of?  Very conveniently for us, it consists of our neighbours, other households, other cities, other communities and the&lt;br /&gt;&lt;br /&gt;  government. But definitely not me and YOU. When it comes to us, actually making a positive contribution to the system we lock ourselves along with our families into a safe cocoon and look into the distance at countries far away and wait for a Mr Clean to come along &amp;amp; work miracles for us with a majestic sweep on his hand or we leave the country and run away.  Like lazy cowards hounded by our fears, we run to America to bask in their glory and praise their system. When New York becomes insecure we run to England . When England experiences unemployment, we take the next flight out to the Gulf. When the Gulf is war struck, we demand to be rescued and brought home by the Indian government. Everybody is out to abuse and rape the country. Nobody thinks of feeding the system. Our conscience is mortgaged to money. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt; &lt;div&gt; &lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;  Dear Indians, The article is highly thought inductive, calls for a great deal of introspection and pricks one's conscience too.... I am echoing J. F. Kennedy's words to his fellow Americans to relate to Indians..... &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt; &lt;div&gt; &lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;&lt;br /&gt;  'ASK WHAT WE CAN DO FOR INDIA AND DO WHAT HAS TO BE DONE TO MAKE INDIA WHAT AMERICA AND OTHER WESTERN COUNTRIES ARE TODAY'&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=";font-family:Times New Roman;font-size:100%;"  &gt;&lt;span style="font-size:12;"&gt;----------------------------------------------------------------------------------------------------------------&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="text-align: center; font-weight: bold; color: rgb(255, 0, 0); font-style: italic;"&gt;&lt;span style=";font-family:Times New Roman;font-size:180%;"  &gt;&lt;span style="font-size:12;"&gt;Lets do what Your country needs from you.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;p&gt; &lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-2268492164529301802?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/2268492164529301802/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=2268492164529301802' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/2268492164529301802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/2268492164529301802'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2007/11/president-of-india-dr-p-j-abdul-kalam-s.html' title='The President of India DR. A. P. J. Abdul Kalam &apos;s Speech in Hyderabad .,   -  A valuable speech ; not only for indians'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-3661457592785728964</id><published>2007-11-05T00:22:00.000-08:00</published><updated>2007-11-05T00:58:06.706-08:00</updated><title type='text'>A little thought</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_TgpxEOM7_c8/Ry7TkkJ-G2I/AAAAAAAAAAs/_1Y_u1dT93I/s1600-h/small_web.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://1.bp.blogspot.com/_TgpxEOM7_c8/Ry7TkkJ-G2I/AAAAAAAAAAs/_1Y_u1dT93I/s400/small_web.jpg" alt="" id="BLOGGER_PHOTO_ID_5129269650755820386" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Previous two weeks were somewhat headache to me. It taught me how you feel when there is no path is clear or you can't find any way to complete what you are responsible for. And It taught me what is the professional responsibility and so  and so many things. Anyway, i completes my so difficult project.&lt;br /&gt;Now I'm again feeling good 'cos i completed it and there are no more deadlines hanging above me. And same time some persons may don't know that living without having any work is also much more headache than having too much works to do. It can make you really crazy. Your mind may try to wandering around in nasty way. It'll try to make you bad and crazy. There are so many ways to avoid that feelings. First try to find a new hobby or try to do a hobby if you haven't any work and you are very lonely. Watching movies, reading books and learning new things (I like to learn new languages (Natural languages as well as programming languages)) and etc. are good medicine for above syndrome. We hate to be lonely. isn't it? I hate it. So i think you too.&lt;br /&gt;    This is the first time I'm writing a blog. When i first thought about it I had no idea about what should i write in a blog. Then i thought, the best way to write a blog is let my feelings freely go away into the blog without thinking too much.  It was a real good idea to get a kick start.&lt;br /&gt;    Good Luck, Bye for Now.&lt;br /&gt;    ============================================================&lt;br /&gt;                            "Reality is merely an illusion, albeit a very persistent one." -Einstein&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2496709395896452958-3661457592785728964?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/3661457592785728964/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=3661457592785728964' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/3661457592785728964'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/3661457592785728964'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2007/11/little-thought.html' title='A little thought'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_TgpxEOM7_c8/Ry7TkkJ-G2I/AAAAAAAAAAs/_1Y_u1dT93I/s72-c/small_web.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2496709395896452958.post-6564412868531125914</id><published>2007-10-28T21:19:00.000-07:00</published><updated>2007-10-28T21:48:29.491-07:00</updated><title type='text'>Love and Friends</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_TgpxEOM7_c8/RyVkLUJ-GyI/AAAAAAAAAAM/bjROzFYo8FY/s1600-h/Rotating_earth.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_TgpxEOM7_c8/RyVkLUJ-GyI/AAAAAAAAAAM/bjROzFYo8FY/s400/Rotating_earth.gif" alt="" id="BLOGGER_PHOTO_ID_5126613896383044386" border="0" /&gt;&lt;/a&gt;I Just Found a place to talk to u my friends.  Wait and see how busy we are. But Always try to find a time for your loved ones. Otherwise, "Some day you might wakeup and see that while you are collecting stones you have missed a diamond"&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/2496709395896452958-6564412868531125914?l=risingofsilversurfer.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://risingofsilversurfer.blogspot.com/feeds/6564412868531125914/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2496709395896452958&amp;postID=6564412868531125914' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6564412868531125914'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2496709395896452958/posts/default/6564412868531125914'/><link rel='alternate' type='text/html' href='http://risingofsilversurfer.blogspot.com/2007/10/love-and-friends.html' title='Love and Friends'/><author><name>MaNJuLA</name><uri>http://www.blogger.com/profile/17230216810269371909</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://bp3.blogger.com/_TgpxEOM7_c8/R9JALEProkI/AAAAAAAAAKw/YhEhW10xm3w/S220/1.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_TgpxEOM7_c8/RyVkLUJ-GyI/AAAAAAAAAAM/bjROzFYo8FY/s72-c/Rotating_earth.gif' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
