Is there a name for an internal incorrect behaviour that does not manifest itself as a bug?
To put this in context, I have the following scenario. I am writing a Common Lisp program that works with strings and lists of characters.
Scrum in combination with ad hoc bug fixes [duplicate]
This question already has answers here: How to account for a bug fixing iteration? (5 answers) Closed 9 years ago. I worked in a company where they tried to use Scrum but in practice it was hard to create a solid sprint backlog because they had a very active userbase, that used the software 8 […]
Scrum in combination with ad hoc bug fixes [duplicate]
This question already has answers here: How to account for a bug fixing iteration? (5 answers) Closed 9 years ago. I worked in a company where they tried to use Scrum but in practice it was hard to create a solid sprint backlog because they had a very active userbase, that used the software 8 […]
Leaving intentional bugs in code for testers to find
Want to improve this post? Provide detailed answers to this question, including citations and an explanation of why your answer is correct. Answers without enough detail may be edited or deleted. We don’t do this at our firm, but one of my friends says that his project manager asked every developer to add intentional bugs […]
Leaving intentional bugs in code for testers to find
Want to improve this post? Provide detailed answers to this question, including citations and an explanation of why your answer is correct. Answers without enough detail may be edited or deleted. We don’t do this at our firm, but one of my friends says that his project manager asked every developer to add intentional bugs […]
What’s the best way to avoid catastrophe caused by negligence? [duplicate]
This question already has answers here: How to avoid typo errors, etc? (8 answers) Closed 9 years ago. I have been a programmer for almost 1 year. As an ADHD adult, naturally I don’t have the same strength of attention on ordinary stuffs as my colleagues do. And I find the catastrophe made by me […]
What’s the best way to avoid catastrophe caused by negligence? [duplicate]
This question already has answers here: How to avoid typo errors, etc? (8 answers) Closed 9 years ago. I have been a programmer for almost 1 year. As an ADHD adult, naturally I don’t have the same strength of attention on ordinary stuffs as my colleagues do. And I find the catastrophe made by me […]
Who fixes bugs in a team? [duplicate]
This question already has answers here: Is fixing bugs made by other people a good approach? (11 answers) Closed 9 years ago. In an agile software development team, who would be the one to fix the bugs introduced in an update? The developer who writes the feature? Someone else specialized specifically in debugging with a […]
What kind of bugs do “goto” statements lead to? Are there any historically significant examples?
I understand that save for breaking out of loops nested in loops; the goto
statement is evaded and reviled as a bug prone style of programming, to never be used.