Skip to main content

Best Investment of Time

Most of us have a common question of "What should I do in my free time?" which will help you to improve your life skills or even help your life financially.

 Frankly speaking there is not straight one word answer and also the answer depends on person to person. First lets decide what is your interest or what is best skill.


You might be interested in

  • Body building
  • Do it your Own (DIY) projects
  • Knowing things
  • Programming
  • Testing Applications
  • Destroying things :-)
  • Talking about movies
  • Roaming
  • etc..,

What ever it is, first thing is don't be lazy, you have to do your interest day to day else that interest will became obsolete.

And second thing, lets share that to other people in the world. Internet is a common thing for us now a days. Use that resource wisely. Increase your contact and make people know about you.

  • Upload videos
  • Create Blogs
  • Answer people questions online
  • Publish articles
  • Create Apps and publish it on Play store 

etc..,

Basically show your skills to the world.

Some are really lucky and so opportunities will rang their calling bell when they need it. But some have to make their opportunities. Make others listen to you, prove them your abilities. Don't expect the result immediately. Lets do your part continuously without fail, you are not going to loss anything actually your knowledge will get improved when you are sharing it to other people. Believe me one day you will realize impact of all your work and the time investment you did today.

Lets take simple example of either creating a Blog or Uploading Videos to youtube or posting an app in AppStore.

You might need to spend some months or at least days to create an app/video. But once done and you uploaded it. And if that is really helpful.
You achieved

  • Many people know about you now
  • Your skills are no more hidden
  • You are now not alone in the world, you got some followers and friends
  • Your knowledge got improved

How can it help financially? 
Once you post or video or app got more views/download. You can put adds (make sure you are not irritating your users) and let say that is generating a $100 per month (its minimum). Think it will be for lifetime. Every month you are going to get $100 which is because of your some months/days investment you did today.

Don't you think its the best investment of time?

Let's try..

Do it right now, Sometimes 'later' becomes 'never'

Thanks for reading...


Comments

Popular posts from this blog

TataSky Refresh after Recharge - Activate after Recharge

If you are using TataSky and doing recharge occasionally and that too after disconnection, this post will be very helpful for you. Most of the time you will not get the channels listed as soon as you make the payment. It will display message to Subscribe for that channel. You can easily get channels back by simply giving a missed a call from your registered mobile number. Note: Make sure your TV and SetupBox is on and showing the error message Give missed call to  +91 80892 80892 (Soft Refresh)   wait for 1 minute and If still not active then try giving missed call to  +91 90405 90405 (Heavy Refresh). Ad: Planning to buy a Best low budget Smart TV? Consider  Acer 109 cm (43 inches) I Series 4K Ultra HD Android Smart LED TV AR43AR2851UDFL (Black)  - You can get this TV as low as for 20,000 Rs - which has Bluetooth, WiFi, Android and good customer ratings (4.4/5). Note: Price based on offers, click on the link to see current price on th...

Smart Bulb Control using Python Script

Smart Bulb Control using Python Script Hello again, In this article, we will see how to control the smart bulb on the local network unsing a python script and will guide you through the process of setting up and using this script to seamlessly manage your smart lights. Whether you want to turn your lights on or off, adjust brightness levels, or even change color settings, this script provides a convenient way to interact with your smart bulbs right from your Python environment. Example lits pytest The light color will turn green if all tests pass or red if test fails. And while starting the bulb glows with a warm white (yellow) color Currently the script is tested on Wipro Smart bulb s and Amazon Basics smart bulbs   The source code of the script is available on  github  Please do check the repo and feel free to clone the repo. Let's get started by setting up the environment: Clone or download the repository to your local machine. Navigate ...

Make use of JavaScript console methods

When I say JavaScript console methods, the one and only thing that hit most of our mind is console.log() and we use it a lot and only that some might be familiar with error() and debug(). Did you ever think of checking if there are any other methods available in console other than log? Most of us don't do that, but knowing those methods might have saved lot of our development time. In this post I will show you some of the console methods which will be very useful in our day to day coding. Log based on condition console.assert(assertion, log_message); To print something on the console only if the assertion failed - assertion can be any expression which returns a boolean. Note: In chrome this log will print as an error with message saying "Assertion failed:" with the log_message passed. In FireFox its a normal log message. Log number of occurrence  console.count([label]); If we want to count something, it may be a click, may be a callback, or event triggers. We do...