Thursday, 15 September 2011

What have we learnt ?

What have we learnt ?

Who are the intended audience?
every job holder

My Autobiograph, opening the pages of my child hood and work environment.
I am enjoying my lovely school days with my school friends....srikanth, pramod, chowdary, rajashekar, maruthi, shailesh, rakesh, suresh, sravan, ppa, srirekha, jyotirmayi, barkat etc.,
completed my schooling happily and stepped into most dangerous 10+2, Intermediate MPC in Gautami Jr. college. Mr Shivakumar Reddy our principal, even to date I am scared to see him. He is like Yama Darma Raja, holding Iron Rod like long and thick stick in his hand, always searching some student to beat him under the pretext of "DISCIPLINE". Somehow I escaped getting beatings from him, in these 2 years, probably this is my first lifes achievement.
Inspite of all vigorous study period of 10+2, I couldn't manage to get a seat in BE in Andhra Pradesh as I got very high rank 5547 in EAMCET, at that time in the year 1993, I am the most unluckiest guy in this whole world, since all my intermediate friends have grabbed this oppurtunity and everyone of them have now settled well in USA. Now everyone in this world are laughing at me, to see my pitiable condition. All my efforts in EAMCET and vigrous disciplinship of my intermediate got wasted.
Somehow bujji one of my cousin of the same age as mine from vijaynagar colony has provided a hope to me, by suggesting a career either in Hospital management or Bsc Electronics. I choosed Bsc since hospital management is bit costly course. I dont know at that time that my most memorable days are going to start....
Raghu, Kamesh, JD, Vamsi, JP...these people are the only world to me. those two and half years (1994-1996)in graduation are most precious in my life to date. Now its time for my bad luck to turn to me again....so all of my friends have gone to USA again for Job oppurtunities except me, started perceiving post-graduation in MCA. Everyone except one or two of the 47 students in my class has shown an extra-ordinary professionalism. I doubt, if these people have achieved anything in their real professional life or not.

Stop.......hey am I mad to tell all these routing life story autograph? what am I supposed to say? the subject was "what have we learnt?" and I just became a nostalgia.....
ok, coming to the point....in my previous paragraphs, wherever I enjoyed have never shown any progress to my career life, but wherever I have faced failures, they have now became my livlihood
I learnt Discipline in 10+2, which became part of my nerves and cells and got saturated in the Blood gives right attitude and shows me the path things what to do and what not to do.
The friends I gained during my joly period of Bsc are no more seen in my life again, they are of no use to me excpet to memorize the sweet days of the past
All my MCA friends have taught me how to be professional in my office, and this is the only qualification thru which I am earning now.

All the days that we enjoy, are the days that just became a dummy page in our future, and all the days we face very hard truth's become guides to our golden era, its directly proportinal. The amount of hard work isto the amount of golden future. Whereas the amount of happy that came from external sources is of no value to anyone




1.  Citrix window resize:
Ctrl+Alt+Pause will resize to our standard windows size if it got shrink windows size
However we need to logoff to show the effect.

2. How to detect thru Javascript which browser we are in? and check if the desired extension is installed or not, if not then get it from Internet otherwise info the user that this extension is already installed


<script language="JavaScript1.2" type="text/Javascript">
function AddonFunction() {
                        //document.getElementById("addon").innerHTML = "Name is " + navigator.appName ;
               
    if (window.chrome) {
        document.getElementById("addon").innerHTML = "Inside Chrome";
        if (detectExtension)
            alert("Extension Found - No Need to Install");
        else {
            //alert("Extension Not Found");
            document.getElementById("addon").innerHTML = "Chrome";
            window.open("https://chrome.google.com/webstore/detail/multiple-file-downloader/ijodceacahodmjmdmfcobdepogaajbpc?hl=en-US");
        }
                }
                else {
                                if (navigator.appName == "Netscape") {
                                                document.getElementById("addon").innerHTML = "Netscape";
                                                window.open("https://addons.mozilla.org/en-us/firefox/addon/multiple-file-downloader/");
                                                //window.open("DJS/Dload/JS/FF/multiple_file_downloader-1.4.0-fx.xpi");
                                                var request = window.navigator.mozApps.checkInstalled("https://addons.mozilla.org/en-us/firefox/addon/multiple-file-downloader/");
                                               
                                                browser = navigator.appName ;
                                                }
                                else if (navigator.appName == "Microsoft Internet Explorer") {
                                                //alert(" This is Microsoft Internet Explorer");
                                                window.open("MFD/app.publish/publish.htm");
                                                }//elseif
                               
             }//outer else
                };
                function detectExtension( ijodceacahodmjmdmfcobdepogaajbpc , callback) {
        var img;
        img = new Image();
                    //chrome://extensions/ijodceacahodmjmdmfcobdepogaajbpc/resource/icon_16.png
        img.src = "chrome://extensions/" + extensionId + "/resource/icon_16.png";
        img.onload = function() {
                callback(true);
        };
        img.onerror = function() {
                callback(false);
        };
                }//function close

</script>
3. how to delete empty lines from word document
   ctrl+H
 Find :  ^p^p
 replace all with: ^p
similar to the above, there are many word document related useful tips:
https://support.office.com/en-us/article/Find-and-replace-text-and-other-data-in-a-Word-document-C6728C16-469E-43CD-AFE4-7708C6C779B7?ui=en-US&rs=en-US&ad=US
4. create the emp, dept tables in a schema -  demobld.sql:
http://www.uvm.edu/~kdk/demobld.sql
check also:
http://www.scribd.com/doc/55324111/Oracle-Emp-Table-Script#scribd
5. Command line batch scripts: how to use a for loop:
FOR %%G IN (04, 12, 15, 21, 23, 31, 33, 34, 37, 40, 43, 45, 47, 49) DO (
---here goes your commands
)
6. Change Case in Winword:
Highlight all the text you want to change.
Hold down the Shift key and press F3.
Each time you press the F3 key while holding down the Shift, the text switches from proper case (first-letter uppercase and the rest lowercased), to all uppercase, and then all lowercase.

2 comments:

  1. This says our own experiences are our own teachers....good concept.

    ReplyDelete
  2. Tough times helps us to lead our life better..yeah.

    ReplyDelete