Good Coders Code, Great Coders Reuse
Not sure where the saying "good coders code, great coders reuse" came from but I sure been doing a lot of copy-pasting throughout my 4+ year career. Web apps, mobile, games, blogger code, etc. All stuff that I've been doing, I've always been doing a lot of copy-pasting code. Yes, copy-pasting is code reuse. In fact, I rarely really encounter code reuse in object oriented programming... Unless I'm using a framework, I rarely even really extended a class and "reused" anything from that class. Well... I've been able to apply the reuse of default behavior more in games than in web projects.
I notice that even when this is put to practice, there was a struggle trying to maintain different version of jar files or assemblies throughout a distributed development team. Even static methods used for utility classes are duplicated across the entire codebase. The only real thing being reused is the functionality. If I wrote a class method that writes something to a file, chances are I've also only looked that up on the internet and "re-used" somebody else's code.