It's not really an either/or question.
Design patterns are general solutions to commonly encountered problems.
There are already a bunch of existing design patterns, each of which is appropriate for different problems (or different contexts), but the canon of design patterns isn't closed. There are certainly more patterns to be created and or and/or found.
The important thing to remember is that for a solution to really be a pattern, it needs to be general enough to be reused and it needs to apply to a reoccurring problem.
I think most programmers over time discover many of the same patterns independently. The real purpose of a catalog of design patterns is so that we can all agree once and for all what a particular pattern is and does, the facade pattern for instance, and then talk about it at a higher level of abstraction.
