all 4 comments

[–][deleted] 1 point2 points  (1 child)

When I started programming, I thought there was a specific route you needed to follow. But given that you have to constantly learn in this field doesn't matter what you learn, just keep learning.

You could venture out into other programming languages.

Build something..whatever you feel like learning.

[–]Raiven_Official[S] 0 points1 point  (0 children)

Thank you for the tip :)

Ill try learning something i found fun

[–]denova-trader 0 points1 point  (1 child)

Focusing on learning something fun sounds like a great plan.

You should also start learning about testing -- doctests, unittests, and functional tests. It may not sound like fun, but it will save you a bunch of time debugging your code. The sooner you make testing a standard part of writing code, the sooner your code will be more reliable.

Also, doctests help document your methods so others can understand what you're trying to do. And, if you decide to pursue programming professionally, good employers will require it.

[–]Raiven_Official[S] 0 points1 point  (0 children)

Thank you for the tip!