<?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-5981961026807463841</id><updated>2011-07-07T16:49:40.504-07:00</updated><category term='My experiments with web'/><category term='Coldfusion'/><category term='SQL'/><category term='JavaScript'/><category term='Oracle'/><category term='Java'/><category term='Coldfusion Examples'/><category term='Database'/><category term='Open Source'/><category term='HTML'/><title type='text'>My Experiments with the Web...</title><subtitle type='html'>Will contain examples or sample code of what I tried in my pursuit to become a better developer</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>11</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-3899091273449824477</id><published>2009-07-24T13:55:00.000-07:00</published><updated>2009-07-24T13:56:47.970-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='My experiments with web'/><title type='text'>My experiments with web</title><content type='html'>With my sudden new found interest to become a better developer, and to learn advanced techniques, I am thinking to try out some code samples which I want to use in my pet project. I would post those examples under 'My experiments' tag...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-3899091273449824477?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/3899091273449824477/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/07/my-experiments-with-web.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/3899091273449824477'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/3899091273449824477'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/07/my-experiments-with-web.html' title='My experiments with web'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-4573498459592770177</id><published>2009-06-24T11:55:00.000-07:00</published><updated>2009-06-24T12:04:55.374-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Java'/><title type='text'>Random Password in Java</title><content type='html'>Recently, I implemented creating a random password for my pet application using Coldfusion. I implemented based on the example from Ben Nadel Web Page. Since, I have started exploring deep into Java technology, I thought I would try the example in Java. Found it a little difficult in the beginning, but kind of completed the code. took extensive help from google. The code is as below: I copy pasted the shuffle code. Finding no time to write one. Suggestions are welcome. &lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt; * The purpose of the class is to generate a random password whenever a method inside it is run&lt;br /&gt; * The password should be 10 characters in length, must contain one Uppercase letter, one lower case letter, one&lt;br /&gt; * numeric digit, and the remaining 7 characters can be a combination of the three types, and special character.&lt;br /&gt; * /&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt; *&lt;br /&gt; * @fun and learning&lt;br /&gt; */&lt;br /&gt;&lt;br /&gt;import java.util.Random;&lt;br /&gt;&lt;br /&gt;public class RandomPassword {&lt;br /&gt;&lt;br /&gt;    //function to return a randome value from an array.&lt;br /&gt;    public static char get(char[] array) {&lt;br /&gt;        Random ranpwd = new Random();&lt;br /&gt;        int ret = ranpwd.nextInt(array.length);&lt;br /&gt;        return array[ret];&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    //once the 10digit password is created according to the rules, this method is executed to shuffle the characters&lt;br /&gt;    public static String shuffle1(String passwd) {&lt;br /&gt;        if (passwd.length() &lt;= 1) {&lt;br /&gt;            return passwd;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        int split = passwd.length() / 2;&lt;br /&gt;        String temp1 = shuffle1(passwd.substring(0, split));&lt;br /&gt;        String temp2 = shuffle1(passwd.substring(split));&lt;br /&gt;&lt;br /&gt;        if (Math.random() &gt; 0.5) {&lt;br /&gt;            return temp1 + temp2;&lt;br /&gt;        } else {&lt;br /&gt;            return temp2 + temp1;&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public static void main(String[] args) {&lt;br /&gt;&lt;br /&gt;        //make an array of lower case, upper case aplhabets, and arrays of numbers and special characters&lt;br /&gt;        char[] lowerCaseChar = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'};&lt;br /&gt;        char[] upperCaseChar = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};&lt;br /&gt;        char[] numbers = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};&lt;br /&gt;        char[] specialChars = {'~', '!', '@', '#', '$', '%', '^', '&amp;', '*'};&lt;br /&gt;&lt;br /&gt;        char lower1 = RandomPassword.get(lowerCaseChar);&lt;br /&gt;        System.out.print(lower1);&lt;br /&gt;        char upper1 = RandomPassword.get(upperCaseChar);&lt;br /&gt;        System.out.print(upper1);&lt;br /&gt;        char numbers1 = RandomPassword.get(numbers);&lt;br /&gt;        System.out.println(numbers1);&lt;br /&gt;        int lowLength = lowerCaseChar.length;&lt;br /&gt;        int upLength = upperCaseChar.length;&lt;br /&gt;        int numLength = numbers.length;&lt;br /&gt;        int spLength = specialChars.length;&lt;br /&gt;&lt;br /&gt;        char[] combineAll = new char[lowLength + upLength + numLength + spLength];&lt;br /&gt;        System.arraycopy(lowerCaseChar, 0, combineAll, 0, lowLength);&lt;br /&gt;        System.arraycopy(upperCaseChar, 0, combineAll, lowLength, upLength);&lt;br /&gt;        System.arraycopy(numbers, 0, combineAll, upLength + lowLength, numLength);&lt;br /&gt;        System.arraycopy(specialChars, 0, combineAll, upLength + lowLength + numLength, spLength);&lt;br /&gt;&lt;br /&gt;        char sevenChar = 0;&lt;br /&gt;        String finalPwd = "";&lt;br /&gt;        for (int count = 1; count &lt; 8; count++) {&lt;br /&gt;            sevenChar = RandomPassword.get(combineAll);&lt;br /&gt;            finalPwd = finalPwd + sevenChar;&lt;br /&gt;            &lt;br /&gt;            if (count == 7) {&lt;br /&gt;                finalPwd = finalPwd + lower1 + upper1 + numbers1;&lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        System.out.println(finalPwd);&lt;br /&gt;        String passwd = shuffle1(finalPwd);&lt;br /&gt;        System.out.println("Shuffled String = " + passwd);&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-4573498459592770177?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/4573498459592770177/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/06/random-password-in-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/4573498459592770177'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/4573498459592770177'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/06/random-password-in-java.html' title='Random Password in Java'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-4532004878950731743</id><published>2009-06-14T17:24:00.000-07:00</published><updated>2009-06-14T17:34:06.876-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Open Source'/><category scheme='http://www.blogger.com/atom/ns#' term='Coldfusion'/><title type='text'>Started a New Project</title><content type='html'>I have always wanted to start my own project as a beginner and have it reviewed by the pros. So to satisfy my desire to do so, I have started to do my Master's project in Coldfusion( which I did in J2EE, Hibernate, and Spring). I have learned that Spring corresponds to Coldspring and Hibernate corresponds to Transfer in Coldfusion world. As a Masters student, I was in a hurry to finish my project, but never really understood the purposes of Spring and Hibernate. Right now, I am developing the project totally using Coldfusion (CFCs model). Once I finish the project to an extent, would have a pro review it. I am making the application to be used by three users. I developed a prototype for each user. Its kind of getting interesting, as I am trying to touch different aspects of Web Technologies, viz, Coldfusion, JavaScript, CSS, HTML until now. Would like to learn lot of stuff, and make this project as user friendly as possible. Also planning to step into the world of Java. I would like to begin by exploring the Object Oriented Principles, and exploring examples in the journey. I am one excited human being....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-4532004878950731743?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/4532004878950731743/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/06/started-new-project.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/4532004878950731743'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/4532004878950731743'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/06/started-new-project.html' title='Started a New Project'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-6602908841916082710</id><published>2009-03-21T21:52:00.000-07:00</published><updated>2009-03-21T21:55:45.850-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='HTML'/><title type='text'>HTML drop down</title><content type='html'>A small tip for future reference for myself...Beginners might find it useful too...this is a way to use this.options in select onchange.&lt;br /&gt;&lt;br /&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&amp;gt;&lt;br /&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;Understanding This&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;script type="text/javascript" language="javascript"&amp;gt;&lt;br /&gt;    function onSelectdd(value)&lt;br /&gt;    {&lt;br /&gt;        if(value == 'one')&lt;br /&gt;        {&lt;br /&gt;            alert("Calling One");&lt;br /&gt;        }&lt;br /&gt;        if(value == 'two')&lt;br /&gt;        {&lt;br /&gt;            alert("Calling second one");&lt;br /&gt;        }&lt;br /&gt;        if(value == 'three')&lt;br /&gt;        {&lt;br /&gt;            alert("Calling three");&lt;br /&gt;        }&lt;br /&gt;        if(value == 'four')&lt;br /&gt;        {&lt;br /&gt;            alert("Calling four");&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;   &lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;table&amp;gt;&lt;br /&gt;    &amp;lt;tr&amp;gt;&lt;br /&gt;        &amp;lt;td&amp;gt;Select an option:&lt;br /&gt;            &amp;lt;select name="dropdowns" onchange="onSelectdd(this.options[this.options.selectedIndex].value)"&amp;gt;&lt;br /&gt;                &amp;lt;option value="select"&amp;gt;Select an option&amp;lt;/option&amp;gt;&lt;br /&gt;                &amp;lt;option value="one"&amp;gt;One&amp;lt;/option&amp;gt;&lt;br /&gt;                &amp;lt;option value="two"&amp;gt;Two&amp;lt;/option&amp;gt;&lt;br /&gt;                &amp;lt;option value="three"&amp;gt;Three&amp;lt;/option&amp;gt;&lt;br /&gt;                &amp;lt;option value="four"&amp;gt;Four&amp;lt;/option&amp;gt;&lt;br /&gt;            &amp;lt;/select&amp;gt;&lt;br /&gt;        &amp;lt;/td&amp;gt;&lt;br /&gt;    &amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-6602908841916082710?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/6602908841916082710/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/03/html-drop-down.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/6602908841916082710'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/6602908841916082710'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/03/html-drop-down.html' title='HTML drop down'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-4746650512162589332</id><published>2009-03-08T15:10:00.000-07:00</published><updated>2009-03-22T11:50:47.909-07:00</updated><title type='text'>Check box and javascript</title><content type='html'>The following example shows various validations for a checkbox using Javascript. A brief explanation of what each function does is as follows:&lt;br /&gt;&lt;br /&gt;a) select_checkall(): Is a function for selecting or deselecting checkboxes at one go&lt;br /&gt;b) updateSelect(): Is a function if you manually check all the checkboxes, the select all checkbox is automatically selected, or if all the checkboxes are selectted and the user deselect atleast one checkbox, the "select/deselect" check box is unchecked automatically&lt;br /&gt;c)checkone(): returns error if the user submits form without selecting atleast one check box.&lt;br /&gt;&lt;br /&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&amp;gt;&lt;br /&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;Check Box&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;script language="javascript" type="text/javascript"&amp;gt;&lt;br /&gt;    function select_checkall()&lt;br /&gt;    {&lt;br /&gt;        for(i=0;i&amp;lt;document.all.example_chkbox.length;i++)&lt;br /&gt;        {&lt;br /&gt;            document.all.example_chkbox[i].checked = document.all.chk_example.checked;&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;   &lt;br /&gt;    function updateSelect()&lt;br /&gt;    {&lt;br /&gt;        var isSelected = true;&lt;br /&gt;        for(i=0;i&amp;lt;document.all.example_chkbox.length;i++)&lt;br /&gt;        {&lt;br /&gt;            if(document.all.example_chkbox[i].checked == false)&lt;br /&gt;            {&lt;br /&gt;                isSelected = false;&lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt;        document.all.chk_example.checked = isSelected;&lt;br /&gt;       &lt;br /&gt;    }&lt;br /&gt;   &lt;br /&gt;    function checkOne()&lt;br /&gt;    {   &lt;br /&gt;        var count = 0;&lt;br /&gt;        for(i=0;i&amp;lt;document.all.example_chkbox.length;i++)&lt;br /&gt;        {&lt;br /&gt;            if(document.all.example_chkbox[i].checked == true)&lt;br /&gt;            {&lt;br /&gt;                count += 1;&lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt;        if(count &amp;lt; 1)&lt;br /&gt;        {&lt;br /&gt;            alert("Please check one box");&lt;br /&gt;            return false;&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;form name="myform" action="something.cfm" method="post"&amp;gt;&lt;br /&gt;&amp;lt;table&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;&amp;lt;td&amp;gt;&lt;br /&gt;Please choose or check the boxes....&lt;br /&gt;&amp;lt;input type="checkbox" name="chk_example" value="checkall" onclick="select_checkall()" /&amp;gt;Select/Deselect All&lt;br /&gt;&lt;br /&gt;&amp;lt;input type="checkbox" name="example_chkbox" value="checkbox1" onclick="updateSelect()" /&amp;gt;Checkbox1&lt;br /&gt;&lt;br /&gt;&amp;lt;input type="checkbox" name="example_chkbox" value="checkbox2" onclick="updateSelect()" /&amp;gt;Checkbox2&lt;br /&gt;&lt;br /&gt;&amp;lt;input type="checkbox" name="example_chkbox" value="checkbox3" onclick="updateSelect()" /&amp;gt;Checkbox3&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;td&amp;gt;&amp;lt;input type="submit" name="submit" value="Click Me!!!" onclick="checkOne();" /&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-4746650512162589332?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/4746650512162589332/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/03/check-box-and-javascript.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/4746650512162589332'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/4746650512162589332'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/03/check-box-and-javascript.html' title='Check box and javascript'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-3443060761791344046</id><published>2009-03-06T09:41:00.000-08:00</published><updated>2009-03-08T15:10:01.679-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='HTML'/><title type='text'>drop down select and onchange...</title><content type='html'>This post deals with how to create select drop downs and how to change the display of the page when the user selects a particular entry using javascript and onchange attribute of the select tag. The example is as follows:&lt;br /&gt;&lt;br /&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&amp;gt;&lt;br /&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;Drop Downs&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;script language="javascript" type="text/javascript"&amp;gt;&lt;br /&gt;   function showdata_onchange(choice_value)&lt;br /&gt;   {&lt;br /&gt;       if(choice_value == 'choice2')&lt;br /&gt;       {&lt;br /&gt;           document.getElementById('show_data').style.display = 'block';&lt;br /&gt;       }&lt;br /&gt;       else&lt;br /&gt;       {&lt;br /&gt;           document.getElementById('show_data').style.display = 'none';&lt;br /&gt;       }&lt;br /&gt;   }&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;form name="myform" action="getvalues.cfm" method="post"&amp;gt;&lt;br /&gt;&amp;lt;table width="100%" cellpadding="0" cellspacing="0"&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;td&amp;gt;Please select a choice:&lt;br /&gt;   &amp;lt;select name="selectChoice" onchange="showdata_onchange(this.options[this.selectedIndex].value)"&amp;gt;&lt;br /&gt;       &amp;lt;option value="choice"&amp;gt;Select a choice&amp;lt;/option&amp;gt;&lt;br /&gt;       &amp;lt;option value="choice1"&amp;gt;choice1&amp;lt;/option&amp;gt;&lt;br /&gt;       &amp;lt;option value="choice2"&amp;gt;choice2&amp;lt;/option&amp;gt;&lt;br /&gt;       &amp;lt;option value="choice3"&amp;gt;choice3&amp;lt;/option&amp;gt;&lt;br /&gt;       &amp;lt;option value="choice4"&amp;gt;choice4&amp;lt;/option&amp;gt;&lt;br /&gt;   &amp;lt;/select&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;span id="show_data" style="display:none"&amp;gt;&lt;br /&gt;   &amp;lt;p&amp;gt;Hey am shown for this choice&amp;lt;/p&amp;gt;&lt;br /&gt;&amp;lt;/span&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-3443060761791344046?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/3443060761791344046/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/03/drop-down-select-and-onchange.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/3443060761791344046'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/3443060761791344046'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/03/drop-down-select-and-onchange.html' title='drop down select and onchange...'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-3124038221099078484</id><published>2009-02-22T14:44:00.000-08:00</published><updated>2009-02-22T15:07:46.478-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Coldfusion'/><category scheme='http://www.blogger.com/atom/ns#' term='Coldfusion Examples'/><title type='text'>&lt;cftooltip&gt; example</title><content type='html'>Has anyone encountered a situation, where you had to pull some data from the database to output it onto the web page and then when the user hovers on any of the row, they should see something like a small summary about what it means. If no one has, I did encounter such a situation for my project. I tried using the 'title' attribute, and when I posted my problem onto a forum, I got some suggestions about JavaScript tool tips, which requires downloading the files into the web root and calling them using &amp;lt;script src=""&amp;gt;&amp;lt;/script&amp;gt;. Then after sometime, I simply typed coldfusion tool tips and I came across this wonderful coldfusion tag called &amp;lt;cftooltip&amp;gt; which requires just one line of code without the need for going o Javascript, AJAX. Atleast for a beginner like me, learning so many things for doing one task was overwhelming. The following is a small example I ran.&lt;br /&gt;&lt;br /&gt;The database I am using is the sample database from the book "Getting Started with Coldfusion Volume 1 by Ben Forta and Raymond Camden". The following is the code example:&lt;br /&gt;&lt;br /&gt;cftooltip.cfm:&lt;br /&gt;&lt;br /&gt;&amp;lt;!--- Query the database table FILMS ---&amp;gt;&lt;br /&gt;&amp;lt;cfquery datasource="ows" name="showToolTip"&amp;gt;&lt;br /&gt; SELECT MOVIETITLE, PITCHTEXT, SUMMARY FROM FILMS&lt;br /&gt;&amp;lt;/cfquery&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--- Output the results you just got from querying the database ---&amp;gt;&lt;br /&gt;&amp;lt;cfoutput&amp;gt;&lt;br /&gt;&amp;lt;!--- Output them in table format---&amp;gt;&lt;br /&gt;&amp;lt;table&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;&amp;lt;cfloop query="showToolTip"&amp;gt;&lt;br /&gt;&amp;lt;!--- Use cftooltip for showing PITCHTEXT AND SUMMARY when the user hovers over the Movie name ---&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;cftooltip tooltip=""&amp;gt;#PITCHTEXT#&amp;lt;/cfoutput&amp;gt;&amp;lt;br /&amp;gt;MOVIE SUMMARY IS:&amp;lt;cfoutput&amp;gt;#SUMMARY#&amp;lt;/cfoutput&amp;gt;"&amp;gt;&lt;br /&gt;&amp;lt;td&amp;gt;#MOVIETITLE#&amp;lt;/td&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;/cftooltip&amp;gt;&lt;br /&gt;&amp;lt;/cfloop&amp;gt;&lt;br /&gt;&amp;lt;/cfoutput&amp;gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-3124038221099078484?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/3124038221099078484/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/02/example.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/3124038221099078484'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/3124038221099078484'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/02/example.html' title='&amp;lt;cftooltip&amp;gt; example'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-4300820944549350059</id><published>2009-02-05T14:49:00.000-08:00</published><updated>2009-02-06T08:43:41.182-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><category scheme='http://www.blogger.com/atom/ns#' term='Coldfusion'/><category scheme='http://www.blogger.com/atom/ns#' term='Coldfusion Examples'/><title type='text'>Coldfusion and JavaScript</title><content type='html'>I was trying the following example for first populating a text box using javascript and printing that textbox value on other page. I was trying this to make sure I could solve my other big problem of inserting values into database based on this value. If its 'me' then insert for one ID, if its 'all' insert for a group of IDs. The problem is much more complex than what I am doing here&lt;br /&gt;&lt;br /&gt;First look at the following code.&lt;br /&gt;&lt;br /&gt;index.cfm&lt;br /&gt;&lt;br /&gt;&amp;lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;&lt;br /&gt;&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;&lt;br /&gt;&amp;lt;head&gt;&lt;br /&gt;&amp;lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&gt;&lt;br /&gt;&amp;lt;title&gt;Untitled Document&amp;lt;/title&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/head&gt;&lt;br /&gt;&amp;lt;script language="javascript"&gt;&lt;br /&gt;function saySomething(arg)&lt;br /&gt;{&lt;br /&gt;document.myform.firstname.value = arg;&lt;br /&gt;document.myform.submit();&lt;br /&gt;return false;&lt;br /&gt;}&lt;br /&gt;&amp;lt;/script&gt;&lt;br /&gt;&amp;lt;body&gt;&lt;br /&gt;&amp;lt;form method="post" action="index1.cfm" name="myform"&gt;&lt;br /&gt;&amp;lt;input type="text" name="firstname" id="firstname" value=""/&gt;&lt;br /&gt; &amp;lt;a href="javascript:saySomething('me');"&gt;Click here for me&amp;lt;/a&gt;&lt;br /&gt; &amp;lt;a href="javascript:saySomething('all');"&gt;Click here for all&amp;lt;/a&gt; &lt;br /&gt;&amp;lt;/form&gt;&lt;br /&gt;&amp;lt;/body&gt;&lt;br /&gt;&amp;lt;/html&gt;&lt;br /&gt;&lt;br /&gt;index1.cfm:&lt;br /&gt;&lt;br /&gt;&amp;lt;cfoutput&gt;Hello&amp;lt;/cfoutput&gt;&lt;br /&gt;&amp;lt;!--- make sure firstname is defined and has a value that isn't an empty string, if not, use "me" ---&gt;&lt;br /&gt;&amp;lt;cfif isdefined("form.firstname") and Trim(form.firstname) neq ""&gt;&lt;br /&gt;&amp;lt;cfset myvariable = #form.firstname#&gt;&lt;br /&gt;&amp;lt;cfelse&gt;&lt;br /&gt;&amp;lt;cfset myvariable = "me" /&gt; &lt;br /&gt;&amp;lt;/cfif&gt;&lt;br /&gt;&amp;lt;cfoutput&gt;#myvariable#&amp;lt;/cfoutput&gt;&amp;lt;br /&gt;&lt;br /&gt;&amp;lt;cfif form.firstname eq 'me'&gt;&lt;br /&gt;&amp;lt;cfoutput&gt;This is me&amp;lt;/cfoutput&gt;&lt;br /&gt;&amp;lt;cfelse&gt;&lt;br /&gt;This is not me.This is all&lt;br /&gt;&amp;lt;/cfif&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-4300820944549350059?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/4300820944549350059/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/02/coldfusion-and-javascript.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/4300820944549350059'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/4300820944549350059'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/02/coldfusion-and-javascript.html' title='Coldfusion and JavaScript'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-8756177322542152736</id><published>2009-01-27T20:34:00.000-08:00</published><updated>2009-01-27T20:38:59.707-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='JavaScript'/><title type='text'>JavaScript Error: Object does not support this property or method</title><content type='html'>I was getting this error today where I defined the javascript function in a different file from the file the form and its elements where defined, and I was calling the javascript function in the form page. The error was occuring because the &lt;strong&gt;form's name attribute was same as the javascript function name.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Make sure to check the names and id's of the elements are not same.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Cheers!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-8756177322542152736?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/8756177322542152736/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/01/javascript-error-object-does-not.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/8756177322542152736'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/8756177322542152736'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/01/javascript-error-object-does-not.html' title='JavaScript Error: Object does not support this property or method'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-7335287411052800710</id><published>2009-01-17T23:59:00.000-08:00</published><updated>2009-01-27T20:54:42.567-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Database'/><category scheme='http://www.blogger.com/atom/ns#' term='Oracle'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Oracle Stored Procedures</title><content type='html'>What did I learn today? I started to learn about oracle stored procedures.&lt;br /&gt;&lt;br /&gt;What is a stored procedure?&lt;br /&gt;&lt;br /&gt;A stored procedure is a named block of code where you can group and organize a series of SQL and PL/SQL statements.&lt;br /&gt;&lt;br /&gt;How to create a procedure?&lt;br /&gt;&lt;br /&gt;CREATE OR REPLACE procedure_name&lt;br /&gt;(&lt;br /&gt;parameter1 IN table_name.column_name1%TYPE,&lt;br /&gt;parameter2 OUT table_name.column_name2%TYPE,&lt;br /&gt;parameter3 OUT table_name.column_name3%TYPE&lt;br /&gt;)&lt;br /&gt;&lt;br /&gt;AS&lt;br /&gt;&lt;br /&gt;BEGIN&lt;br /&gt;&lt;br /&gt;select column_name2, column_name3 into parameter2, parameter3 from table_name;&lt;br /&gt;&lt;br /&gt;END procedure_name;&lt;br /&gt;&lt;br /&gt;So, what are these IN, OUT stuff?&lt;br /&gt;Well, they are parameter passing modes. There are not two, but three modes for passing the parameters. The other one is IN OUT. The names are quite self-explanatory.&lt;br /&gt;&lt;br /&gt;IN - passes a constant value from the calling environment to the stored procedure&lt;br /&gt;OUT - passes a value from the procedure to the calling envrionment&lt;br /&gt;IN OUT - passes a value from the calling environment to the procedure and a possibly different value from the procedure back to the calling environment using the same parameter.&lt;br /&gt;&lt;br /&gt;The command to execute a procdure is EXECUTE procedure_name(parameter1,  parameter2, parameter3)&lt;br /&gt;&lt;br /&gt;There is something more I learned. When using select statement in a procedure, always use 'into' to store the results of the columns as shown above.&lt;br /&gt;&lt;br /&gt;Cheers!!!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-7335287411052800710?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/7335287411052800710/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/01/oracle-stored-procedures.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/7335287411052800710'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/7335287411052800710'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/01/oracle-stored-procedures.html' title='Oracle Stored Procedures'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5981961026807463841.post-748441833733099467</id><published>2009-01-17T19:51:00.000-08:00</published><updated>2009-01-17T20:08:02.640-08:00</updated><title type='text'>Introduction</title><content type='html'>Finally, I have landed my first job, after searching for over 4 plus months. I always knew I wanted to get into software development, as it seemed very lucrative, and also I spend much of the time like million others on internet, and installing something or the other, and playing around with that. Since my undergraduation, I have always heard, "Learn Java", and you will have a great future. I took couple of courses to learn what Java is. Being from electronics background, I found somewhat difficult at first, but in a course of two months, knew that there is java, j2ee etc. I never used what I learned during my Masters.&lt;br /&gt;&lt;br /&gt;And then I joined a consultancy for getting trained and placed in Java projects, but instead, they trained me in Coldfusion saying they would start Java within a week or so, but that never happened, and placed me in a coldfusion project. But somehow, I started liking coldfusion, and wanted to learn more. The blog I am creating is just for that purpose of what I will learn everyday about Coldfusion and other technologies like flex, flash, SQL, Oracle, Java, JavaScript, etc.&lt;br /&gt;&lt;br /&gt;My inspiration: Raymond Camden.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5981961026807463841-748441833733099467?l=learnsomethingeveryday1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://learnsomethingeveryday1.blogspot.com/feeds/748441833733099467/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/01/introduction.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/748441833733099467'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5981961026807463841/posts/default/748441833733099467'/><link rel='alternate' type='text/html' href='http://learnsomethingeveryday1.blogspot.com/2009/01/introduction.html' title='Introduction'/><author><name>Fun and Learning</name><uri>http://www.blogger.com/profile/04608642037153788082</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='28' src='http://3.bp.blogspot.com/_bez5FH9jLts/SXN5iaTsA2I/AAAAAAAAAAM/2KpwJHn1Uj4/S220/aynrandstopme.jpg'/></author><thr:total>0</thr:total></entry></feed>
