6 definition by cloudRunner

Top Definition
Boolean logic operator where all values in the argument must be true in order for the whole statement to be true. Often denoted with '&' ('&&' in programming languages).
If x=1 and y=0, then

(x AND y) = 0
by cloudRunner March 22, 2006

Mug icon
Buy a and mug!
An unpopular but very talented indie/hardcore rock band from the San Francisco Bay area in CA. They have released dozens of records and EPs and their 2 biggest albums are "Difference of Potential" and "The Underdark". Most of their songs contain instrumentals and there is less singing (or screaming) than your average song on MTV. Funeral Diner are a thinking man's band.
"What's your favorite song?"

"'Lie in Headlights', by Funeral Diner."
by cloudrunner May 02, 2005

Mug icon
Buy a funeral diner mug!
nor
Boolean logic operator that is equivalent to an AND function with all of its input values inverted. It has the following truth table:

X Y | Out
------------
0 0 | 1
0 1 | 0
1 0 | 0
1 1 | 1
x NOR y = (NOT x) AND (NOT y)
by cloudRunner March 22, 2006

Mug icon
Buy a nor mug!
Melodic hardcore rock band from Charlotte, North Carolina. They have released 3 albums as of 2005: The Satellite Years, No Wings to Speak of, and A-Types.
I saw Hopesfall last night. They put on an awesome show.
by cloudrunner May 02, 2005

Mug icon
Buy a hopesfall mug!
not
Boolean logic operator that inverts a given value. Often denoted with '~' ('!' in programming languages).
(NOT a) AND (NOT a') = a
by cloudRunner March 22, 2006

Mug icon
Buy a not mug!
or
Boolean logic operator where at least one argument in the expression must be true in order for the whole statement to be true. Often denoted with '+' ('||' in programming languages).
if x=1 and y=0, then

(x OR y) = 1
by cloudRunner March 22, 2006

Mug icon
Buy a or mug!