Langsung ke konten utama

Why You Should Probably Stop Follow Your Passion

Kind of strange title for a blog which aims at motivating people to learn, isn't it?

But I really think that passion is not moving people forward much. Passion is unstable and inconsistent. It can be helpful on first steps but after that, it leaves you with yourself.

What Is Passion

To avoid any misunderstanding I want to define what I mean when I say "passion".

I personally, see passion as an imaginary friend that I think will do much of the work with me. When you just starting out, it's really great to have that one friend because you think that you can move heaven and earth. But with time passion leaves and you don't feel like doing anything you started with it.

Look at this as walking with someone arm-in-arm. You two maybe want to move with different speed, but often this speed defined by the slowest one. And it's sad to admit, but passion is slowing down every day, and one day it just stops.

But how to overcome this? How to keep you doing what you was so passionate about? I think there is an answer.

Stop Follow Your Passion

I think that by just blindly following your passion you will not get valuable results and will be disappointed in what you were passionate about.

I'm talking about it because I know it firsthand. I have plenty unfinished projects that I was passionate about. All of them now just are gathering dust and I think I'll never go back to them.

Yes, you should just stop it. But it doesn't mean that you should stop doing what you were doing. No, but you should stop relying on that imaginary friend. 

I think that habit of relying on someone else comes from our childhood when parents supply us with all the necessary things, such as food, clothes, a roof over your head etc. And despite that we are grown up, independent people that habit remains. 

And as every habit, it's possible to give it up. Let's consider how.

Giving Passion Up

Subconsciously we want work to do it itself (or the passion imaginary friend will do it). We concentrating on the result but always ignore the process. 

The process is the main part of success!

It's important to realise where you want to come, but you can't get anything done without doing it.

In this terms, Shia LaBeouf is absolutely right. Just DO IT!


Many people experiencing "lack of motivation" because this motivation is all they had. They went all in with this motivation and lost.

You should have something else besides motivation/passion. 

I think that the best thing you can have is routine that you keep up no matter what. With routine things become easier.

And the most suitable time to build your routine around something is when you most passionate about it. 

You (probably) brush your teeth every morning and every evening. Do you need to be motivated to brush your teeth? I think no. It's just your routine and you do it no matter what.

You should extrapolate this approach to other things you doing. Especially ones you want to succeed in. 

Define hours when you code, hours when you learn new things, hours when you eat and even hours when you sleep.

After that even if your motivation is gone you left with your schedule that will help you to reach your goal.

For Example


This is my personal schedule. Seems little bit scary. But it's flexible can change depending on what I want to achieve and my university schedule. (Kanbanflow is the software that helps me to track my tasks)

Now, consider this blog when I was just starting out (actually, I am just starting out), I defined that I will write a post every week on and publish it by 2 p.m. on Sundays. It's my 9th post (not counting Hello World post). In march 2017 I'll have 48 posts and the year after that I'll have 96 posts, 192 posts in 4 years etc. 

No matter how motivated to write I was on Sundays. With time, I will have a big blog with much content to read. And I will get all the benefits of blogging.

These benefits (especially for a software developer) and ways to get them you can find in free email course How To Create Blog That Boosts Your Career made by John Sonmez author of Simple Programmer blog. Many ideas I've got from his book Soft Skills: The software developer's life manual and encourage you to read it too.

Summary

Passion is a great kick starter, but it can't be used as a fuel. 

Great fuel is the discipline. 

Discipline is the thing that will push you forward from milestone to milestone. And moving from milestone to milestone you will acquire new passion for starting something new.

Discipline is the basement for growth. And in our constantly changing world growth is crucial even if you want to stay put.

So go ahead, build your schedule and make your success closer every day. No one will do it for you.

See you next week, peace!

Komentar

Postingan populer dari blog ini

FlatBuffers Android Tutorial

FlatBuffers is an efficient cross platform serialization library for C++, Java, C#, Go, Python and JavaScript. It was originally created at Google for game development and other performance-critical applications. FlatBuffers is Open Source (Apache license V2) and available on GitHub . It's currently used by:   Cocos2d-x , the open source mobile game engine and used to serialize the game data. Facebook uses it for client-server communication in the Android app (see the article) . Fun Propulsion Labs at Google in most of libraries and games. Solution overview  The schema will be defind in JSON format, then it will be converted to FlatBuffer format outside the application The Java classes of the Data model will be generated manually using flatc (FlatBuffer compiler) Step 1: Build FlatBuffers Download the source code in Google’s flatbuffers repository .  The build process is described on Google's documentation FlatBuffers Building .  On MacOS for example: Open the xcode proje

QR-Code Generator - Library

In this Post, I introduce my new Gradle Library. This Library is used to Generate QR Code Automatically for our specified input. How to Import the Library: Gradle: compile 'androidmads.library.qrgenearator:QRGenearator:1.0.0' Permission: <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> How to use this Library: After importing this library, use the following lines to use this library. The following lines are used to generated the QR Code // Initializing the QR Encoder with your value to be encoded, type you required and Dimension QRGEncoder qrgEncoder = new QRGEncoder(inputValue, null, QRGContents.Type.TEXT, smallerDimension); try { // Getting QR-Code as Bitmap bitmap = qrgEncoder.encodeAsBitmap(); // Setting Bitmap to ImageView qrImage.setImageBitmap(bitmap); } catch (WriterException e) { Log.v(TAG, e.toString()); } Save QR Code as Image // Save with location, value, bitmap returned and type of Image(JPG/PNG). QRGSaver.save(s

Download file using Okio in Android

Okio is a library that complements java.io and java.nio to make it much easier to access, store, and process your data. Simply Okio is a modern I/O API for Java.  In this post, we will see how to download image or any file using Okio. Okio is component for OkHttp Coding Part Create a new project in Android Studio. Add following dependencies to your  app-level  build.gradle  file. compile 'com.squareup.okhttp3:okhttp:3.6.0' Don't forget to add the following permission in your AndroidManifest.xml <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> Implementation Paste the following code in your Activity and Here, I have kept as MainActivity.java public void downloadImg(View view) { try { Request request = new Request.Builder() .url(imageLink) .build(); new OkHttpClient().newCall(request).enqueue(new Callback() { @Override public void onFail