Category Archives: Code

Beatitudes in C#

12345678class the_earth
{

};
class the_meek : public the_earth
{

};
From: StackOverflow answer

Bit Operations

For CS351, Intro to Systems, we had to do several operations using bit operators only. These took awhile, but are pretty cool to show off. We were graded by how few operations we used to return the right values for the generated test cases, including some difficult boundary ones.