Random
Source Code

and

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 23, 2006

76👍 65👎


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 23, 2006

65👍 374👎


funeral diner

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 3, 2005

31👍 42👎


hopesfall

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 3, 2005

18👍 35👎


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 23, 2006

77👍 93👎


not

Boolean logic operator that inverts a given value. Often denoted with '~' ('!' in programming languages).

(NOT a) AND (NOT a') = a

by cloudrunner March 23, 2006

104👍 164👎