occurance/occurrence/occurence
for the next release of the propeller tool,
when you do a search and replace, and the tool returns with the number of replacements it made, there's a spelling fail ...
it should be 'occurrences', not 'occurances'
I don't know why but I'm feeling pedantic this morning.
Probably been coding too much assembler lately.
cheers,
Mark
when you do a search and replace, and the tool returns with the number of replacements it made, there's a spelling fail ...
it should be 'occurrences', not 'occurances'
I don't know why but I'm feeling pedantic this morning.
Probably been coding too much assembler lately.
cheers,
Mark
Comments
BTW, "misspelling" has two double letters: "ss" and "ll". Can anyone think of a common English word that has three -- right next to each other? (Today's activities might be a clue for some.) How about a six-letter English word with three y's -- in alternate positions?
-Phil
so I guess it must be syzygy?
esssse - (an obsolete word meaning ashes)
Well, it can't be syzygy because that uses only 4 letters: s y z and g.
Now do you understand why AI is so difficult?
-Phil
and ended with
"... grows in Mississippi."
(Dang! I probably just ruined a chance to make a riddle from "Mississippi". )
-Phil
But only correct if you add some quotes around some instances of "because".
Edit: That's easy.. because it's the quote's property to be in the middle of sentences, among others: heater wanted me to consecutively use the word because, because "because" is a hard word to use in this way.
btw: Do not forget about the clear: "its vs. it's" and "your" vs "you are"
Cmon now, this isn't a spelling bee, your all supposed to be hacking the planet.
GET BACK TO WORK.
This thread belongs in suggestions to parallax.
Comprehensive education, bless.
Definately!
That's definitely my most hated misspelling!
The English language is funny ... Take for example the use of 'or' , when used in the English language it almost always is used as an implied XOR.
When you actually want to imply an OR you additionally use 'or both' in the English language.
Yes, that is a very good point. Would you like to have your cake, or would you like to eat it? It is one of Billy Connolly's pet hates - When people say "Oh you just want to have your cake and eat it too". (Too) right! What good is a cake if you can't eat it?
Once, in a moment of silliness, I tried to think of examples where 'OR' was used in language the same way it is used in computer languages, ie, including A and B. I thought of a few examples but I can't for the life of me remember them now. I wonder if anyone can help me out?
How about 6? (Not too sure of its grammatical propriety!)
"Because, because, because, because, because,
"Because of all the wonderful things he does!"
"Follow the Yellow Brick Road" in the movie "The Wizard of Oz"!
Re: "or"
Because (!) the English language used OR as what programmers would later call "exclusive or," it was the responsibility of the designers of assembly languages (as well as logicians and mathematicians) to properly apply the word in their respective domains.
OR should have remained exclusive ("Do you want A or B") and the inverse should have been inclusive ("1 IOR 2 is 3")
--Rich
The way I have to remember it is that affect is the cause of the effect.
In order to show the effect of something, you must first affect it
Isn't there a Hawaiian word that means something like 'certified' that would qualify?
open(TXT, "<myfile.txt") or die;
"And" can work the same way, when it means "and then": "Give me five bucks and it's yours." In Perl,
open(TXT, ">myfile.txt") and print TXT "Hello."
prints to the file only if was opened successfully.
I would love to see lazy booleans like these added to Spin. They can really help to eliminate piled-up IF clauses and make a program more readable. Perhaps they could be called "ORELSE" and "ANDTHEN". (|| and && would have been preferable, but || is taken.)
-Phil