typo

Python Split?

I have this list ["[email protected] : martin00", ""], How do i split so it only be left [email protected]:martin00 ...

Infinite Loop in C++

Why the following code could/will result in infinite loop? x=0; y=0; while(x<100) { minnum=100; maxnum=100; while(y<150) { if(random[x][y]<minnum) { minnum=random[x][y]; minX=x; minY=y; y++; } else if(random[x][y]>maxnum) { maxnum=random[x][y]; maxX=y...

What is the best source for typo statistics?

I am looking for a reliable source that would provide some statistics on what keys are the most frequently mistyped. For example: is "a" and "s" more commonly mistyped compared with "m" and "n"? if yes what are the underlying data i.e. "a" is mistyped instead of "s" when the previous letter is "o" in 25% of cases but contrary "s" is mi...

what is difference between a CMS and a blogging engine?

Hi folks, I'm not sure if the following 3 are synonyms or if there is any difference between them or of they have any hierarchical relationship. But could you please clarify me on how are they different/related? 1) CMS 2) Blogging-Engine 3) Forum Software like PHPbb Thanks ...

Handling typos in emails or signing up users ?

I have a web app at which visitors are signing up and getting a newsletter to the email they registered with. I am using only a single email field in the signup form, since I wish to reduce the number of fields plus I figure most people (like me) copy and paste the email which mean a typo would propagate to the secondary verification fi...

Which typo is hardest to catch or debug?

Hi everyone, This is a general question. I wanted to know from your experience which typos are the hardest to find or debug in your code. A back story would be nice :) Thanks! ...

Typographer's quotes in PHP on Yahoo

My client is a small newspaper and provides stories with typographer's quotes instead of "straight" quotes. The stories are assembled into HTML by PHP. On my Apache server, they display fine, but on Yahoo, where my client's site is located, they are all replaced by question marks. To fix this problem, I wrote the following function in P...