Questions tagged [mistakes]
The mistakes tag has no summary.
16 questions
-1
votes
2
answers
264
views
4 Months of Code Rewritten in 2 Days Team Dilemma [closed]
I recently had a project that I took me 4 months to do , I hit some very significant bugs that where impossible to track down. I said this code is absolute garbage and started from scratch, drank a ...
0
votes
1
answer
123
views
Aiding code review with an additional pull request
I am curious how others tackle the issue of needing small, sometimes trivial changes in a pull-request. The problem crops up a lot where I work. A developer completes a task and makes a pull-request, ...
22
votes
5
answers
2k
views
How to correct a mistake in the test, after writing implementation
What is the best course of action in TDD if, after implementing the logic correctly, the test still fails (because there is a mistake in the test)?
For example, suppose you would like to develop the ...
1
vote
4
answers
266
views
Must a variable contain an instance of a class if it invokes a method?
In the following link, the author states that
We have already reasoned that ‘out’ is a static variable belonging to the class System. But now we can see that ‘out’ must be an instance of a class, ...
1
vote
3
answers
623
views
How do you avoid looping mistakes? Mistakes that are not detected by systems [closed]
I had this crazy initialisation --
documentList = new ArrayList<Map<String,Integer>>();
which I intended to store a new map everytime in a loop but unfortunately put itself inside the ...
5
votes
5
answers
3k
views
How can I avoid mistakes using the same variable name again?
This isn't a rare case and occurs with me often and I spent countless time trying to debug the code.
Latest example, this PHP code where I used $email for the parameter and for object as well.
...
6
votes
7
answers
4k
views
Should I charge a client for mistakes that I made? [duplicate]
After developing a website for a client, I've realized that the load time is too extreme, and some changes need to be made. The extreme load times are attributed to the bloated css/js frameworks that ...
4
votes
2
answers
208
views
Programming IDEs feature to add a forgotten open parentheses? [closed]
I very often find myself in situations where I should have opened a parentheses, but forgot and end up furiously tapping the left arrow key to get to the spot I should have put it, and doing the same ...
4
votes
5
answers
623
views
Minimising little coding mistakes [closed]
I make a fair amount of small mistakes when I code (things such as getting an angle bracket to the wrong direction). It adds a fair amount of time to my coding because I have to debug several times ...
15
votes
6
answers
1k
views
How does a large company make rookie mistakes which leave security holes? [closed]
Sony was recently hacked with a SQL injection and the passwords of their user's was stored in plain text. These are rookie mistakes. In such a large company, how does this pass QA? How do they not ...
29
votes
49
answers
12k
views
What is the greatest design flaw you have faced in any programming language? [closed]
All programming languages are having their design flaws simply because not a single language can be perfect, just as with most (all?) other things. That aside, which design fault in a programming ...
37
votes
13
answers
33k
views
Worst practices in C++, common mistakes [closed]
After reading this famous rant by Linus Torvalds, I wondered what actually are all the pitfalls for programmers in C++. I'm explicitly not referring to typos or bad program flow as treated in this ...
5
votes
2
answers
8k
views
Common mistakes with javascript arithmetic [closed]
I've ran into several oddities using javascripts floating point arithmetic, but I can never recall them off the top of my head!
What are some common mistakes when using JavaScript to do math?
20
votes
30
answers
4k
views
Which language features are considered harmful? [closed]
Please, explain why and list which languages have the (mis)feature implemented As far you know.
Post what you consider a harmful feature, not what you dislike.
101
votes
61
answers
20k
views
What's the most absurd myth about programming issues?
To put it another way... What is the most commonly held and frustrating misunderstanding about programming, you have encountered?
Which widespread and longstanding myths/misconceptions do you find ...