DEV Community

Discussion on: Can you describe how you visualize or form mental models around your work?

Collapse
 
jacobherrington profile image
Jacob Herrington (he/him)

I find myself almost always reaching for OOP when I'm trying to reason about code. That's because I have a Ruby background and I still think OOP is a good idea in a lot of places.

In situations where OOP doesn't make sense, I try my hardest to think about data instead of logic and abstractions. I try to reason about that data. That may not make much sense, but I like to imagine that I'm pretty decent at pulling apart implementations and putting them back together with less logic.

Collapse
 
tttfifo profile image
Todor Todorov

I completely relate to this (except I have Python background instead of Ruby).