Skip to content

Instantly share code, notes, and snippets.

@anewusername1
Created November 26, 2011 23:12
Show Gist options
  • Save anewusername1/1396472 to your computer and use it in GitHub Desktop.
Save anewusername1/1396472 to your computer and use it in GitHub Desktop.
2011-11-26 post (narshlob)
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
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