DEV Community

Aldora
Aldora

Posted on

Question for experienced developer

I always have a question but never ask for experienced or senior developer: do you still have some programming problems that triger your curiosity? how do you keep finding interesting problem to work on

Top comments (5)

Collapse
 
titoasty profile image
nico-boo

I began on big Java systems but I had a huge CRUD boredom because of lack of challenges.

I switched to frontend & multimedia projects (creative dev, games, ...) where there are an infinity of new challenges. Not only on UI coding (animations, shaders, even physics engine...), but also on backend (like coding game servers).

And I challenge myself a lot with personal projects, the root of most of my learning :)

Collapse
 
aldora profile image
Aldora

I hope one day I can start my own personal project, I know I will, but now don't what to work on

Collapse
 
jessekphillips profile image
Jesse Phillips

I think I enjoy trying to make an API which is powerful but easy to use for the context. Depending on the language the funness changes.

Collapse
 
aldora profile image
Aldora

wow, do you have some ideas or experience about this to share

Collapse
 
jessekphillips profile image
Jesse Phillips

I'm not sure how to write something up on this topic. Most of the time it seems to end up being just me as the user.

What I just did and caused me to respond in this way is I took two operations which tie together and combined them for a C# using statement. The locking would already use a using statement, but this managed the operation and locking as one (and took into account locking was not always needed).