Skip to main content

Do not choose the shoes that hurt your feet.

When you find something that’s worth fighting for you never give up.
No matter how many times life will tread on you, you will always keep your value. Our value is not created by the price of your clothes, our bank balance, the job title that we have or how much famous we are. We should building up our life.
Sometime you feel that you cannot do this anymore. It hurts. When we grow up, we are starting to build up barriers in our mind. We say “I cannot do this anymore”. That’s because we start worrying about what people think and say about us. 
People will laugh at you when you do mistakes but it is ok to make mistakes. No need to be afraid because it is better than do nothing and learn nothing. One day your mistakes will be your greatest opportunity to do your next adventure because tomorrow will be another day.
People will laugh at your dreams, your ambitions, partner that you choose and your job etc. They will say that you cannot make your dreams come true. Never listen to them. Take obstacles as learning opportunities.
Brian actor, he is the co-founder of WhatsApp and he was rejected by Facebook and twitter which are the leading companies of the world. In five years’ time, he sold WhatsApp for $19 billion to Facebook. 
Steve jobs who was the co-founder of Apple Inc. was fired from his own company. One of the greatest president in the history of the US, Abraham Lincoln lost presidential elections eight times. Michael Jordan was rejected from his high school basketball team. Jay-Z could not get any record label to sign in in his young age.
“There is no such thing as failure. Failure is just life trying to move us in another direction.” - Oprah
Do not choose the shoes that hurt your feet. They are the people who say that you cannot make it.
You know how much effort that you put on your dreams to make come true. Your strength is your success. No holding back to the right things. Start believing in yourself.
Share this today with your loved ones.
Thank you.

Comments

Popular posts from this blog

Java basic for Selenium - Selenium Tutorial II

Today we are talking about Array. The software tester should have some basic knowledge about java when writing selenium scripts for the validations. Array is a data structure where stored in elements in same data type. The declaration and initialization an array as follows. int[]  Array_a;   or  int  Array_a[]; - This is an integer array. int[10] = Array_num;  - This is an integer array which stores 10 elements. Array_num[0] = 10;    - Assign value 10 to 0 th element of array. (Index [0]) int[]   Array_num = { 1, 2, 3, 4, 5 };  Finding maximum value of an array Finding minimum value of an array Finding average value of an array Find the key of an array Reverse an array The time complexity of this algorithm is   O(n/2)   which is O(N) because we are iterating over array till midpoint only. The initial iteration is happening as follows The...

Security Testing - I - Web Testing - I

Security Testing - Web Testing  Security is set of measures to protect an application against unpredictable actions that causes it to terminate functioning. Security testing is a process intended to reveal flaws in the security mechanisms of an information system that protect data and maintain functionality as intended. This is type of non functional testing. For minimizing the defects by identifying threats in the system and cost of quality, the security testing must be started at the early stage of Software development life cycle. The following figure is shown the relation between Software development life cycle and security testing . Test plan should includes Test scenarios and test cases related to the security. Test data related to the security test cases. Test tools for security testing and test outputs on the different test tools Security Testing Approach 1. Identify all the business requirements, security goals ...

Strategies and methods for test case design II

Strategies and methods for test case design Today we are talking about how to get an approach for writing a good test case. Developers cannot prevent or eliminate all the defects raised in the application during implementation. That's why the application should be tested before deliver to the customer. Before starting the execution, we need to identify test scenarios and write test cases for each identified scenarios. Test case is test description which needs to be executed to verify the functionality or feature of the application. A good test case have a good possibility of finding defects. For designing effective test cases, there are two basic strategies that can be used. Black box test strategies White box test strategies Test Strategies Sources Testing Techniques Black Box  Functional requirement specification Equivalence partitioning   Business requirement specification Boundary value analysis   Domain knowledge State Transition Testing     ...