Skip to content

Instantly share code, notes, and snippets.

@fielding
Forked from i8degrees/amps.rb
Created December 6, 2017 02:22
Show Gist options
  • Save fielding/bb8c604042380257c16a9bab56758765 to your computer and use it in GitHub Desktop.
Save fielding/bb8c604042380257c16a9bab56758765 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