Zoe said:
Wait... how can you send code that belongs to your workplace?
not the whole thing, maybe just some snippets of some classes changing of course the part of code that totally relate to the project (for security sake and copyright issues).
plus often in the places where i worked we released part of the software (ie the scrapping engine) as open source.
Does anyone else like JavaScript or am I the only one? >.> Seems most people here are systems, backend, or hardcore game engineers.
i do web application, but i mostly take care of back-end, webservices, streaming and scrapping.
i'm a senior, zend certified, php developer.
studying objective-c right now too.
i love js when it's well done, even if i don't get to use it too often (once one of my bosses made use js server-side... that was quite an experience, and let me tell you: it doesn't really make any sense to do something like that)
From a class I inherited from an ex-colleague:
Quote:
static int thingToMakeItDifferent = 77;
s.m_gear += thingToMakeItDifferent;
thingToMakeItDifferent += 12;
if( thingToMakeItDifferent > 9999 )
{
thingToMakeItDifferent = 31;
}
<_<
ex colleague because some killed him after that?
How do you guys plan before starting a new project (to an existing project or a completely new project, w/e)? Simple 5 minute pencil and paper design, or do you go as far as UML diagrams?
Also, this describes my programming career, and it's currently KILLING me:
http://en.wikipedia.org/wiki/Analysis_paralysis
once we had a meeting about the too many meetings we were having! (thank gosh i left that place)
don't really like UMLs, i actually find them pretty useless... i prefer to plan the application while drawing the db er diagram.
while we do that we conceptually divide the application into it's layers (what has to be taken care from models, what from controllers and what from views) split the whole thing into smaller task, estimate times for each one of them and then each programmmer choose a task and complete it.
we also do daily meetings (about 10 minutes long) in which we recap how everything is going on.