Back to Spam

learn me something

almost 9 years

ask me a question in any academic topic and ill google it and see if i can come up with the right answer. written response questions work better since google eviscerates fill in the blank

learn me something

you can also answer questions if you want to learn something or just be a cheeky c*nt and already know it

what did you learn
10
visiting this website was a mistake
2
nothing
2
something
1
what i already knew
0
polls don't matter
almost 9 years

MeetTerry says

are black people really oppressed?


Yes, and only white liberals can save them
almost 9 years
are black people really oppressed?
almost 9 years
NAND NOR and XNOR are redundant which is why there are no bitwise operators for them; they can be formed by combining bitwise NOT and AND/OR/XOR since they are combinations of those operators

i suppose in terms of circuitry, however, this can be executed faster in a single operation that inverses each bit set rather than setting then inverting bits

although i have to wonder why there's no bitshift logic gate
almost 9 years

fakechest says

how do logic gates work, how many logic gates are there, and what do they do?


skipping to this one because ive been playing terraria and i love wiring things

also because i already know bitwise operators (emjack for example saves settings as a bitmask)

NOT ~
returns inverted/flipped set of bits, i.e. NOT (!) each bit's value
e.g. ~1010 = 0101

AND &
returns common bits, i.e. which bits are on in variable a AND (&&) variable b
e.g. 1010 & 1100 = 1000

OR |
returns all active bits, i.e. which bits are on in variable a OR (||) variable b
e.g. 1010 | 1100 = 1110

XOR ^
returns all exclusive active bits, i.e. which bits are on in variable a OR variable b BUT not both
e.g. 1010 | 1100 = 0110

NAND ~&
combines NOT and AND; returns NOT(a AND b)
e.g. ~(1010 & 1100) = ~(1000) = 0111

NOR ~|
combines NOT and OR; returns NOT(a OR b)
e.g. ~(1010 | 1100) = ~(1110) = 0001

XNOR ~^
combines NOT and XOR; returns NOT(a XOR b)
e.g. ~(1010 ^ 1100) = ~(0110) = 1001
almost 9 years
how do logic gates work, how many logic gates are there, and what do they do?
almost 9 years
how do you suppose we go from east to left in a semi tangent graph
almost 9 years
How do you make a key lime pie?
almost 9 years
if you look far enough back into space, would you see nothing or see the big bang?
almost 9 years

DragonflyZ says

Why is sand yellow?


only the ones with iron impurities
deletedalmost 9 years

cub says


Herredy says

After the Bomb, The Cold War; Writing style :3


this is a statement


woops I forgot to make it into a question rip

What was the writing style of the Cold War era? :3
almost 9 years

Herredy says

After the Bomb, The Cold War; Writing style :3


this is a statement
almost 9 years

Nailpolishremover says

what is the definiton of a psycholgoical disorder


DSM-IV notes that “… although this manual provides a classification of mental disorders, it must be admitted that no definition adequately specifies precise boundaries for the concept of ‘mental disorder.’ (ncbi)

dsm goes on to describe mental disorders in relative terms, noting that "neither deviant behavior nor conflicts that are primarily between the individual and society are mental disorders unless the deviance or conflict is a symptom of a dysfunction in the individual, as described above;" the closing statement of which effectively discarding everything before it as "it's not unless it is." the dsm definition is clearly shaky and it makes a point of the fact all over the place, not to mention the aforementioned disclaimer

it even contradicts itself within this declaration by stating both that "an expectable or culturally approved response to a common stressor is not a mental disorder," implying culture influences disorder; and that "conflicts that are primarily between the individual and society are [not] mental disorders," implying culture does not influence disorder.

the problem is that the definition of disorder is generally subjective and even worse, because of this subjectivity, often appropriated to fit into a personal worldview outside of medical definition.

because the definition is subjective, the most objective interpretation would be based upon natural imperatives, so anything that doesn't promote survival of the species in a primitive world would be classified as a disorder. this means any behavior that discourages procreation without affecting sexual drive, antisocial behavior that might inhibit societal growth, unproductive deviant behavior, etc.

sources
https://www.psychologytoday.com/blog/rethinking-psychology/201307/the-new-definition-mental-disorder
http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3101504/
deletedalmost 9 years
- Translate this greek sentence written phonetically in english letters to english: ' then thel-or eh-na stafili '

- How do you operate a hot air balloon?

- Decode this: hkgaze oy ot znk kek ul znk hknurjkx

- How do you tell the time of day by looking at the moon?

- Describe Pythagoras Theorem to a 5 year old (you can use abstract terms) so they would understand it

- Why is sand yellow?

- How does epicmafia randomly choose a role for a player in closed role setups, and why is it that if you include villager there will always be a villager?
deletedalmost 9 years
After the Bomb, The Cold War; Writing style :3
deletedalmost 9 years
what is the definiton of a psycholgoical disorder ;) im all cheeks. gimme a kiss after u answer me pls :*
almost 9 years

cub says

how do you count in binary


add each bit by their position to the power of 2

11 = 1+2 = 3
101 = 1+0+4 = 5
1101 = 1+2+0+8 = 13
almost 9 years
how do you count in binary