Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
areThereAnyXs1 = name.indexOf('x'); //see if there are any lowercase xs in the name areThereAnyXs2 = name.indexOf('X'); //see if there are any uppercase Xs in the name if ((areThereAnyXs1 != CHAR_NOT_FOUND_VALUE) || (areThereAnyXs2 != CHAR_NOT_FOUND_VALUE)) //if there are Xs in the user name, change anyXsInName to true { anyXsInName = true; }
This paste will be private.
From the Design Piracy series on my blog: