Created
November 26, 2011 23:12
-
-
Save anewusername1/1396472 to your computer and use it in GitHub Desktop.
2011-11-26 post (narshlob)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
authorized_human = (is_human == true && is_authorized == true) | |
invalid_or_errd = (invalid_data == true || error_occurred == true) | |
if(response && authorized_human && !invalid_or_errd | |
# do something insane | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(response == true && (invalid_data == true || error_occurred == true) && (is_human == true && is_authorized == true)) | |
# do something insane | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment