DEV Community

Discussion on: I Need help as a beginner.

Collapse
 
aarone4 profile image
Aaron Reese

I really struggle to learn for the sake of it. Find a problem you want to solve and learn how to do it in whatever tech stack you feel most comfortable in, then try to solve it again using a different tech stack.
Find something that has a incrementally trickier learning curve where you can build minimal functionality to start and then add complexity later
Suggestions.
Soduku solver in python or excel VBA
Wordle clone
Candy crush clone

At this stage in your career you will be learning to recognise patterns in problems and the logical steps to resolve them rather than concentrate on the syntax of a particular language

Sorting an array, filtering an array of objects by a key value, managing a matrix of data, making copies of an object, modifying it and saving the results to permanent storage, race conditions, stale object checking and many more problems are common across languages, business processes and tech stacks.learn how to think about the problem and you can almost always Google for the syntax in your preferred language.

Collapse
 
nhshanto profile image
N.H

Thanks man I appreciate it.