Muslims believe in Jesus as a prophet, but not that he is the son of God. Mormons do believe that Jesus is the son of God, which is the defining characteristic of being Christian
I think it would be more accurate to say the defining characteristic of being Christian is that Jesus was not only the Son of God, but God himself. My understanding of Mormon theology is that Jesus is not considered God. There is a distinct difference in the understandings of the Trinity.
That appears to be with regard to employment discrimination. I wouldn't be surprised if there were slightly different standards for serving customers, etc.
I don't think there is any prohibition on age discrimination for public accommodations. Title II of the Civil Rights Act forbids discrimination on the basis of race, color, religion or national origin and Title II of the Americans with Disabilities Act covers discrimination on the basis of disabilities, but there doesn't seem to be anything preventing public accommodations from discriminating based on age. The Age Discrimination in Employment Act, which is what prohibits employers from discriminating based on age, doesn't contain anything about public accommodations.
He isn't denying that ADHD doesn't exist but instead he is saying that it exists as a symptom of other ailments. His title is a bit inflammatory, but that doesn't disprove his argument. The article is much better than you are giving it credit for.
His argument is ridiculous. ADHD is defined as symptoms and we don't have a full understanding of the underlying cause. Everyone knows that the drug treatment only treats the symptoms. If his argument is that we are only treating the symptoms then he hasn't added any knowledge. If he knows the "cure" why doesn't he make the claim: "I know how to cure ADHD?"
He can't "cure ADHD" because it is a symptom of many different things. He has to diagnose the patient and determine the underlying cause. He gave a list of potential causes that included vision problems, iron deficiency, and sleep problems. I imagine each of these have their own cure which in turn fixes the symptoms of ADHD. You are implying that ADHD only has a single cause, the author is disagreeing with you.
You and the author are both talking as if ADHD exists which counters his book title. I'm not the one making the bold claim -- the author is in his title.
Could someone give me a brief overview of the what the code is doing? I see a bunch of "on ____" blocks, which I thought might be functions but then they don't seemed to be called later on (unless I am missing something). What language is this?
The code is written in LiveCode. According to the documentation, those "on" blocks appear to be message handlers. [1] They do appear to act like functions as "sW" and "sC" are called from the "doSearch" message handler block. These blocks also are what contain the malicious code.
Basically, the code is searching for bitcoin.conf and wallet.dat in the typical storage place Bitcoin-Qt stores its data. If it manages to find these files, it reads them and sends the contents of them off to two different web addresses, effectively stealing the Bitcoin wallet. The paths and filenames the code uses to find this data are Base64 encoded in the source code so a text search through the code will come up with nothing unless the strings used for searching are Base64 encoded first.