Skip to main content

Your Future Self

How to stop your procrastinating tendencies and make overall better lifetime decisions

Any conscious decision in your life depends on a conscious thought. Due to the simple fact that many solutions seem common sense, we tend to dismiss those claims and never receive any positive impact from them.

The claim that I'm about to assert was revealed to me within a very common-sense article: that we have a "Now-Me" and a "Future-Me." The Now-Me tends to repeatedly win regardless of the situation; your Future-Me on the other hand suffers even though he or she's equally as important as your Now-Me. 

Hindsight's 20/20

How many times have we reflected about what we should have done and where we would have been if we stuck through with some certain task/procedure/challenge? I think it's best to demonstrate this with examples.

1. A simple example: You tell Now-Me that you're going to start exercising and eating healthier. You may or may not start immediately but you have a goal, and it's an easy goal, to exercise for 15-30 minutes/day for 3 months and see the results. The first session flies by quickly: you feel great. Then your Now-Me starts making excuses: I had a long day, it's 11:00pm and I'm burnt out. I'll continue tomorrow. Three months later, you didn't exercise more than a handful of times and your Future-Me, which just became your current Now-Me, tells yourself, "It was only 15 minutes a day; I could have done it even if I was completely exhausted!"

2. You have a project that you're working on. You keep getting distracted and you justify the reasons each time since you don't want to criticise your Now-Me. Instead of putting in 90-100% on completion/accuracy/urgency, you place about 20-30%. What should have taken 1 month has now dragged out over a year. If this was work related your Future-Me is telling you right now, "If I only completed that project, I could have completed 11 other ones: my resume would be amazing! I could be making six figures right now with the amazing portfolio that I could have had." The project could be something around the house as well; you have a drainage problem in the front yard but it's not bad. You keep putting it off. All of a sudden, a year down the road, you notice some water spots in your basement where the water has cracked the cement. You call the repair-man to fix it and you rush to Home Depot to finally fix that drainage issue. It takes you about an hour. Your Future-Me is furious with you at this point since you just blew an unnecessary $500.00 to $1000.00 on something that took you less than an hour to fix.

3. You graduate high school and are entering your first year of college. You're pretty excited! The classes are difficult but you know that it's going to pay off. Halfway through, you get a promotion at your job and you realize that a person that graduates from college will make the same amount of money as the amount of money that you just received, so you dropout. Ten-years down the road your Future-Me is disappointed with you. If you would have only taken 1 class per semester, you could have completed college by now, been one of the top students to graduate (due to only taking 1 class per semester), had 10 years of experience and a degree in your field with top rankings. Your Future-Me is telling you how you could have been set for life, demanding the pay you want and never fearing that someone else is going to swipe the job from underneath you.

The next time you think about procrastinating, place yourself in your Future-Me's shoes. What will he or she say?


Comments

Popular posts from this blog

Beginner Java Exercise: Sentinel Values and Do-While Loops

In my previous post on while loops, we used a loop-continuation-condition to test the arguments. In this example, we'll loop at a sentinel-controlled loop. The sentinel value is a special input value that tests the condition within the while loop. To jump right to it, we'll test if an int variable is not equal to 0. The data != 0 within the while (data != 0) { ... } is the sentinel-controlled-condition. In the following example, we'll keep adding an integer to itself until the user enters 0. Once the user enters 0, the loop will break and the user will be displayed with the sum of all of the integers that he/she has entered. As you can see from the code above, the code is somewhat redundant. It asks the user to enter an integer twice: Once before the loop begins, and an x amount of times within the loop (until the user enters 0). A better approach would be through a do-while loop. In a do-while loop, you "do" something "while" the condition

Programming Language Concepts Questions/Answers Part 3

1. What is an associative array? - An unordered collection of data elements that are indexed by keys. 2. Each element of an associative array is a pair consisting of a _______ and a _______. - key and a value 3. True or False? Java supports associative arrays? - True. As a matter of fact, Perl, Python, Ruby, C++, C# and F# do too. 4. What are associative arrays called in Perl? - hashes 5. Why are associative arrays in Perl called hashes? - Because their elements are stored and retrieved with a hash function 6. What character does a hash in Perl begin with? % 7. In Perl, each key is a _____ and each value is a _______. - string - scalar 8. In Perl, subscripting is done using _______ and _______. - braces and keys 9. In Perl, how are elements removed from hashes? - using delete 10. In Perl, the ________ operator tests whether a particular value is a key in a hash. - exists 11. What are associative arrays called in Python? - dictionaries 12. What is a dif

Creating your own ArrayList in Java

Wanted to show that certain data structures in Java can be created by you. In this example, we'll go ahead and create an ArrayList data structure that has some of the methods that the built in ArrayList class has. We'll create 2 constructors: The default constructor that creates an ArrayList with a default size of 10. Constructor that allows an initial size to be passed to the array. We'll also create a number of methods: void add(Object x);  A method that allows you to place an Object at the end of the ArrayList. void add(int index, Object x);  A method that allows you to place a value at a given location. Object get(int index):  Allows you to retrieve a value of the arrayList array from a given location. int size();  Allows you to get the number of elements currently in the Arraylist. boolean isEmpty();  Tests to see if the Arraylist is empty. boolean isIn(Object x);  A method that sees if a particular object exist in the arrayList. int find(Object x);