(no title)
coolrhymes | 12 years ago
I made a mistake by hiring someone who knew django [who originally wrote plugins in WP] and the coding was just plain horrible. One such example.
`for foo in queryset: foo.prop = 'i m bar' foo.save() ` Simple things like this, where a good engineer would know because of O(n) nature of the code, the so called programmer didn't.
And then there are guys who fork every possible repo, have blogs about how-tos, etc but really can't code for nuts.
philangist|12 years ago
`for foo in queryset`
implementation? Is it that for loops are inherently inefficient? What would be a better alternative?
victorf|12 years ago