What are the biggest headaches as a developer or systems admin?
11–20 of 29 posts
Re: What are the biggest headaches as a developer or systems admin?
#12Re: What are the biggest headaches as a developer or systems admin?
#13Not having a decent mentor. Self taught working as a solo developer. Don't know what I don't know. If I had someone to peer review code or bounce idea's off then I could have progressed a lot faster. If I could start again I would join a development team and learn from developers with a lot more experience.
Re: What are the biggest headaches as a developer or systems admin?
#14Re: What are the biggest headaches as a developer or systems admin?
#15working on systems that don't have automated tests, and are designed such that adding automated tests is not easy. you don't have to practice TDD, but it is a fantastic idea to add automated tests early on when the architecture of your system is still fresh and changeable. projects that don't consider "testability" as a requirement tend to produce system architectures that are not testable.
Projects that consider "testability" as a requirement tend to produce systems that are perfectly testable, but this is orthogonal to whether the architecture makes sense and can be composed with something else.
i assume by "orthogonal" you mean independent, i.e. just because a system is testable it does not mean it necessarily has other desirable properties.
Re: What are the biggest headaches as a developer or systems admin?
#16Earlier quoted context omitted.
Projects that consider "testability" as a requirement tend to produce systems that are perfectly testable, but this is orthogonal to whether the architecture makes sense and can be composed with something else.
maybe so. i guess my comment is a reaction after seeing a few projects where it is an afterthought. i assume by "orthogonal" you mean independent, i.e. just because a system is testable it does not mean it necessarily has other desirable properties.
Re: What are the biggest headaches as a developer or systems admin?
#17When you have to Debug some one's shitty code...
Re: What are the biggest headaches as a developer or systems admin?
#18I agree with other people that you can mitigate the pain of bad management by doing things like 1) Write high quality code from day one 2) Automating deployment 3) Minimizing technical debt 4) Doing "spike" when asked to do something new so you don't give a bad estimate.
http://programmers.stackexchange.com/questions/122014/what-a...
Re: What are the biggest headaches as a developer or systems admin?
#19Re: What are the biggest headaches as a developer or systems admin?
#20My experience is that most technical issues have solutions (e.g. see Working Effectively with Legacy Code), but there's now way to fix bad (project) management other than a revolution. I agree with other people that you can mitigate the pain of bad management by doing things like 1) Write high quality code from day one 2) Automating deployment 3) Minimizing technical debt 4) Doing "spike" when asked to do something n…