Skip to content

Instantly share code, notes, and snippets.

@i8degrees
Created March 4, 2015 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save i8degrees/6c46c472b3eca6762c1f to your computer and use it in GitHub Desktop.
Save i8degrees/6c46c472b3eca6762c1f to your computer and use it in GitHub Desktop.
the effects of sleep deprivation on the logical mind
#!/usr/bin/env ruby
class NomNom
def initialize(io)
# ...I'm not writing this class over again, hoe!
end
end
class SuperYumNom < NomNom
# Absolute Logic frees the mind
:amphetamines
:dopamine_d1
:dopamine_d2
def initialize(amperage)
# Super charge that, bitch!
@amperage = amperage
# Initializing, please stand by;
# Preparing for cognitive enlightenment!
reuptake(:dopamine_d1)
return @amperage
end
# ...and the white dwarf went Nova (!)
def reuptake(meds)
meds = medicine
i = 0
# Iterate me through the rite of passenge
meds.each do |u|
inhibitor(:dopamine_d2)
i += 1
end
end
def inhibit(inhibitor)
@inhibitor = inhibitor
end
end
# Onset
def main()
SuperYumNom.new(60)
reuptake(:amphetamines)
# WUWU
# ...
end
# Consider it done, mate!
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment