I thought 1 and 1 = 11?
A question
Collapse
X
-
Originally posted by MotomaOH GOD, MY PANTS ARE SMARTER THAN I AM!!
The seventh point in Things that are generally unacceptable is most relevant.Comment
-
Originally posted by NeoPaPlease follow the posting guidelines!
The seventh point in Things that are generally unacceptable is most relevant.Comment
-
Originally posted by MotomaI directly intended emphasis on the entire sentence. Please note, the entire post was not in all caps, the exclamation points were perfectly natural.
Tilde (~) may be considered acceptable at a stretch.Comment
-
Originally posted by NeoPaYou say that, but I checked all the punctuation and they were definitely upper case (ASCII code <0x60) - even the comma (,).
Tilde (~) may be considered acceptable at a stretch.
#! /bin/bash
if [[ "!" != *[[:upper:]]* ]]; then
echo "NeoPa is wrong."
fi
$ ./excheck.sh
NeoPa is wrong.
[/code]
[code=python]
>>> if '!' == '!'.lower():
print 'NeoPa is wrong.'
NeoPa is wrong.
[/code]
[code=c]
#include <iostream>
int main(int argc, char* argv[])
{
char ex = '!';
char lex = tolower(ex);
if(ex == lex) printf("NeoPa is wrong.");
}
// Try this one out for yourself
[/code]Comment
-
As with any logic Motoma - the results are only as good as the underlying principles.
You don't really need me to post all the code to compare it with the equally incorrect check against the results of the upper & toupper constructs in the various languages.
It would contradict, but be just as unreliable as your efforts (no more so though).Comment
-
Originally posted by NeoPaAs with any logic Motoma - the results are only as good as the underlying principles.
You don't really need me to post all the code to compare it with the equally incorrect check against the results of the upper & toupper constructs in the various languages.
It would contradict, but be just as unreliable as your efforts (no more so though).
(Community discussions are how Motoma hits the Top Contributors list)Comment
-
Originally posted by MotomaSo to paraphrase: "I could prove you wrong, but I'm not going to."
(Community discussions are how Motoma hits the Top Contributors list)
You don't need me to spell it out surely?Comment
-
Originally posted by NeoPaTo paraphrase, I could provide proof just as good as yours to show I was right. Unfortunately, it's also just as bad ==> useless :( No less valid than yours, but no more so either.
You don't need me to spell it out surely?Comment
Comment