Skip to content

Instantly share code, notes, and snippets.

name of display: :0
display: :0 screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.4
server glx extensions:
GLX_ARB_context_flush_control, GLX_ARB_create_context,
GLX_ARB_create_context_no_error, GLX_ARB_create_context_profile,
GLX_ARB_create_context_robustness, GLX_ARB_fbconfig_float,
GLX_ARB_framebuffer_sRGB, GLX_ARB_multisample,
@drummondj
drummondj / PatchingEnumerable.rb
Created December 16, 2010 19:42
Why I like Ruby ...
class Person
attr_accessor :name
def initialize(name)
self.name = name
end
end
people = []
people << Person.new "Frank"