In the device section of /etc/X11/xorg.conf add the line:
Option "NvAGP" "1"
To /etc/modprobe.d/blacklist.conf add the following:
blacklist intel_agp
then reboot
Option "NvAGP" "1"
blacklist intel_agp
## equality
num = 8
num.should.equal 8 # bacon
num.must_equal 8 # minitest::spec
num.should == 8 # rspec
num.is 8 # clearly superior, similar to Test::More "is a, b"
## true/false
(num == 8).should.be.true # bacon
(num == 8).ok # superior, like Test::more "ok (something)"
class Object
def is(arg)
should.equal(arg)
end
def ok
should.equal true
end
end