Even further off-topic, but possibly a lucrative money maker
Posted Oct 7, 2008 23:59 UTC (Tue) by
pr1268 (subscriber, #24648)
In reply to:
Way off topic, but hey... by utoddl
Parent article:
Stallman vs. Clouds (Linux Journal)
Someday somebody's going to figure out how to turn the "than/then" problem into money
- Shhh! Don't give Bill Gates any ideas. Seeing how he wants to make money from every e-mail sent, then this sounds like his kind of business plan. ;-)
- While we're at it, then let's get some of my biggest pet peeves out of the way as well:
- Its/it's - I've seen these misused even in legal documents!
- There/their/they're - I've encountered improper use of these online twice today already.
- Data used in singular grammatical number (Data is plural of datum).
- Alot (no such word exists in the English language. It's a lot.
- I do realize that a lot of readers here are non-native English speakers (and can be forgiven for committing any of the above). However, I tend to notice rampant misuse of English grammar on content created by native speakers, so I feel that my frustrations are justified.
The nice thing about programming languages is that their formal grammar is so incredibly strict (and compilers are terribly unforgiving). One of my favorite examples is the different interpretation of the two cout statements in the below C++ program:
#include <iostream>
using namespace std;
int main()
{
cout << 3 << 5 << endl;
cout << (3 << 5) << endl;
}
The parentheses changes the whole meaning of the statement, just as the inclusion (or omission) of the apostrophe in it's changes its meaning substantially. Obviously we human readers are much more forgiving than programming language compilers. :-)
(
Log in to post comments)