Monday, May 4, 2020

Our Capabilities are beyond our Limitations

Happy Monday. Hope, you all have had great time with your family and friends over weekend.

Our Capabilities are beyond our Limitations - Most of the times, we act based on fears of our past and anxiety about our future but failed to present ourselves to opportunities at our disposal. Life always presents us opportunities to grab if we are open and adaptable. Instead of being open, many of us will be in constant nagging mode of present situation which neither helps us to take control of things nor helps us to excel.

We need to make a paradigm shift on the way we see things. If we just look at work as repayment of salary then we will NOT be able to enjoy it. We will NOT be able to rejoice it. We should see the value we bring to the table, we should see the contribution to the Organization goal and we should see the contribution to society. This paradigm shift allows us to think beyond our limitations and deliver beyond expectations. We should learn to excel in solution centric approach than problem centric approach which makes work Fun instead of intimidating.

Let's learn to think beyond our limitations, Let's learn to see the work as opportunity to learn, Opportunity to grow and Opportunity to contribute to Organization and Society.

Wednesday, March 4, 2020

Simple for Complex

Simple is Complex. Simplicity means having clarity on thoughts, Happiness, being peace with oneself. We make life complex because of choices ( as it brings complications) and comparisons. The barrier to achieve simplicity is lack of awareness, lack of distinction between what we need and what we want because of other's perception. The moment we learn to align our thought process, get clarity on what makes us happy then we start living a life deliberate and intentional. We should learn to say NO to things that do not add value to our Life. Comparing with others on things they possess brings discontent. We can NEVER get enough of what we really do NOT want.

Life is a Game. Everyday, we meet many people. Let's learn to make their life little better after being with us. That should be result of this game - Win. We have many lives to improve, starting with our own and that of those who are close to us.

Let's learn to be Simple which in turn brings calmness to Life, peace and Joy.

Monday, June 24, 2019

Remove Given Element in array and return new length

Given an array nums and a value val, remove all instances of that value in-place and return the new length.
Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.
The order of elements can be changed. It doesn't matter what you leave beyond the new length.
Example:
Given list = [1, 5, 3, 2, 3], val = 2
Output should be - length = 4
Another Example:
Given list = [1, 4, 1, 12, 3, 1, 0, 3], val = 1
length = 5, list = [4, 12, 3, 0, 3] 

Solution:
public int removeElement(int[] list, int val) {
    int i = 0;
    for (int j = 0; j < list.length; j++) {
        if (list[j] != val) {
            list[i] = list[j];
            i++;
        }
    }
    return i;
}

Tuesday, September 23, 2014

Potana Bhagavatam

I have been looking for this kind of collection - e-copy of Potana Bhagavatam. Just want to share with others, http://telugubhagavatam.org/?Home

Sunday, November 17, 2013

EPF E Passbook

One of the developments on EPF impressed me a lot. EPFO (Employees Provident Fund Organization )  provides facility to view PF Details along with interest credited details with simple and hassle free procedure, for more details please visit http://members.epfoservices.in. Understand your finance better, happy learning.


@kova

Monday, July 23, 2012

Separate Telangana - A Political Need

Being from Telangana Region, I am not able to understand the need of separate state. Things have changed a lot from Prof. JayaShankar's time. There were two reasons for separate state at that time
1) Jobs in Telangana region should be filled by people in Telangana - Addressed by 610 GO
2) People here are treated as second grade citizens. Here, we can read People in Politics. Politicians say, only 2 Yrs were ruled by CM from this region. If politicians in this regions are failed to get confidence of majority of MLAs and they think, the only way to get a chance to be CM is by dividing state into two. This is the main reason, people are disinterested in separation, they want their problems to be solved, getting basic facilities like water, electricity.


@kova

Wednesday, April 11, 2012

YSR Congress, Congress has to answer questions from CAG, people

Its very sad that everybody wants to own Development(if at all any) done in YS Raja Sekhar Reddy's Government and nobody talks about Corruption in that time.

Jagan has to answer questions from people how did he set up a business in just 5 years and paying Income Tax in hundreds of crores before asking for Votes/Seats. CAG reports are saying that there is lot of corruption occurred in land allotment and Jala Yagnam, is Jagan ready to accept that his Father (Maha Neta) is involved in such a shame act ?



@kova

Thursday, December 29, 2011

Calling Member function using NULL pointer

To my surprise, my program did not crash when I called display() by NULL pointer, but it crashed when I tried to access member variable.

#include


#include

using namespace std;

class Test

{

public:

    int p;

   void display() {

       cout << "Test::display()" << endl;

   };

};



int main()

{

    try {

       Test *t = NULL;

       t->display();

       t->p = 5;

    } catch (exception &e) {

      cout << "Dereferencing pointer: " << e.what();

   } catch (...) {

      cout << "Unknown Exception";

   }

   return 0;

}

 

Friday, October 28, 2011

Story behind Sonia's Sacrifice to be a PM

Information on eligibilty to be a PM of India.

Eligibility:
Article 84 of the Constitution sets the principal qualifications one must meet to be eligible to the office of the Prime Minister. A Prime Minister must be:

- a citizen of India.

should be a member of the Lok Sabha or Rajya Sabha. If a person elected prime minister is neither a member of the Lok Sabha nor Rajya Sabha, then he must become a member of the Lok Sabha or Rajya Sabha within six months.

- of above 25 years of age (in the case of a seat in the Lok Sabha) or above 30 years of age (in the case of a seat in the Rajya Sabha).

- for an Indian citizen of foreign nationality, the principle of reciprocity is applicable i.e. the same rules as there are in that particular nation for foreign nationality.

Sonia is not indian citizen by birth, so if Italy allows a person to be a Prime Minister who is not born in Italy, then only she can be PM of India.

Many Congress party members (including MPs) say that she sacrificed, better they know our constitution and then talk.


--kova

Thursday, June 2, 2011

DRS woes

India has been opposing DRS for a while now and only way to make it happen is making it compulsory for a tournament as it happened with World Cup. I agree with India (for that matter Sachin/Dhone) that DRS is not a foolproof. I watched first test between England vs Srilanka. In Second innings of Srilanka, Dilshan was given out cought behind. He went for Referral. There is nick (visible that ball kissed gloves), but hotspot failed to notice it. There is deflection, there is noise, ye hotspot did not pick it up. It brings again same debate whether we should use technology which does not give correct results all the time. Its better to use DRS on experimental base and its upto teams which want to take part in these experiments.