You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: web-debug.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
1.**Blame yourself.**
4
4
* In debugging, having an ego will only cause you to work longer and harder to solve a bug. Be humble; accept your humanity. Make 100% sure that the way you're attacking a problem is _actually_ isolating the problem.
5
-
* Are you able to reproduce the problem every single time you try? People use testing frameworks to not only replicate bugs but to make sure ether bug actually goes away *
5
+
* Are you able to reproduce the problem every single time you try? People use testing frameworks to not only replicate bugs, but to make sure the bug actually goes away *
6
6
2.**Blame your tools.**
7
7
* Have you got cache enabled? Are you working in IE6? Try to ensure that your tools aren't giving you false-positives or false-negatives. Use an HTTP proxy like [Charles Proxy](http://www.charlesproxy.com/) to debug HTTP requests.
8
8
3.**Blame your framework.**
@@ -15,7 +15,7 @@
15
15
* Be sure to disable any caching technologies to ensure you're always looking at the most recent data, and that your _actual_ code is executing every time (not some cached version).
16
16
* Have you tried turning it off & on again? =)
17
17
5.**Blame your language.**
18
-
* Is the code you're debugging very complex or novel? Maybe it's a bug (highly likely)
18
+
* Is the code you're debugging very complex or novel? Maybe it's a bug in your language (highly unlikely)
19
19
* Always break the problem down into as small a piece as you can - it's probably you
0 commit comments