Skip to main content

Best lesson of life

There was a very old school in a city in which all the middle-class children around came to study. A new professor had come to that school to teach, it had been a few weeks for the professor. All the children of the class liked the professor more than other professors because they used to teach well as well as entertain the children daily with new stories or games.


One day the professor came to the class and told all the children that I will take a test for you guys tomorrow, so everyone should prepare well. Everyone said ok

The next day, all the children reached school with complete preparation and started waiting for the professor to come and sit in class. The school bells rang like, the professor came to the class and gave the answer sheet to all the children and said that you have to complete the answers to the questions which I will give you in this paper. Everyone responded by saying yes.

After a while the professor gave the question paper which had only a small black dot (.), After giving the paper,  the professor said that now you can start writing everything. All the children were thinking about looking at that black dot for a while, but still they wrote something about that black dot, someone wrote about the place of that black dot and someone wrote about the black color Written in And after writing, everyone gave their answer sheet to the professor. The professor read the answer out loud to all those children, and they were all waiting to hear whose answer was right, but the professor did not even talk about right and wrong. After reading everyone's answer, the professor said that this exam was not to prove you right or wrong, or to give a number, but to give a very important lesson. And that learning is that you all wrote something about that little black dot in your answer sheet, but nobody wrote anything about that big white space.

Similarly, even if there are thousands of good things in the people, but we see their evils first and the same applies to us that there is a lot of strength in us but we cry only thinking about our weaknesses.

Comments

Popular posts from this blog

Momo suicide game

Microsoft clamps down on sick 'Momo suicide game' in 'Minecraft' Microsoft is clamping down on the sick “Momo suicide challenge,” which recently infiltrated the wildly popular online game “Minecraft.”The tech giant owns “Minecraft” developer Mojang. The vile “Momo suicide game” has been garnering attention after spreading on WhatsApp, prompting police warnings. "Momo" is a viral challenge that asks people to add a contact via WhatsApp - they are then   urged   to commit self-harm or suicide. The "game" has fueled comparisons to the sinister " Blue Whale challenge " that led to reports of suicides in Russia and the U.S, as well as the online fictional character of "Slender Man." In 2014 two 12-year-old girls in Wisconsin  attempted to kill   a classmate in an attempt to please the horror character. The Buenos Aires Times recently  reported  that police in Argentina are investigating whether “Momo” is linked to the suicide of a 12-y...

Java - Basic Operators

Java provides a rich set of operators to manipulate variables. We can divide all the Java operators into the following groups − Arithmetic Operators Relational Operators Bitwise Operators Logical Operators Assignment Operators Misc Operators The Arithmetic Operators Arithmetic operators are used in mathematical expressions in the same way that they are used in algebra. The following table lists the arithmetic operators − Assume integer variable A holds 10 and variable B holds 20, then − Show Examples Operator Description Example + (Addition) Adds values on either side of the operator. A + B will give 30 - (Subtraction) Subtracts right-hand operand from left-hand operand. A - B will give -10 * (Multiplication) Multiplies values on either side of the operator. A * B will give 200 / (Division) Divides left-hand operand by right-hand operand. B / A will give 2 % (Modulus) Divides left-hand operand by right-hand operand and returns remainder. B % A will give 0 ++ (Increment) Increases the v...

Create WAR file in Spring Boot

This is just a three step simple procedure to package your application into war. Extending Main Class First, we extend our main class to SpringBootServletInitializer. This tells spring that your main class will be the entry point to initialize your project in server. ? 1 2 3 4 5 6 7 @SpringBootApplication public class Application extends SpringBootServletInitializer{        public static void main(String[] args) {          SpringApplication.run(Application. class , args);      } } Overriding configure method Next, we overload the configure method of SpringBootServletInitializer. We tell spring to build the sources from our Main class. Your final Main class should look like this: ? 1 2 3 4 5 6 7 8 9 10 11 12 @SpringBootApplication public class Application extends SpringBootServletInitializer{        public static void main(String[] args) {     ...