Skip to content

Instantly share code, notes, and snippets.

@natritmeyer
Last active December 19, 2015 21:28
Show Gist options
  • Save natritmeyer/6020162 to your computer and use it in GitHub Desktop.
Save natritmeyer/6020162 to your computer and use it in GitHub Desktop.
Why dynamic languages are awesome
class Thing
def method_missing(method, *args, &block)
puts method.to_s.gsub /_/, " "
end
end
Thing.new.send <<-T_REX
_____________.-=-==--==--.
_______..-=="__,'o`)______`.
_____,'_________`"'_________\\
____:__(_____________________`.__...._
____|__________________)____/_________`-=-.
____:_______,vv.-.____/____/_______________`---==-._
_____\/\/\/VV_^_d88`;'____/_________________________`.
_________``__^/d88P!'____/_____________,______________`._
____________^/____!'___,.______,______/__________________"-,,__,,--'""""-.
___________^/____!'__,'__\_._.(______(_____________________)__)_)_)_))_,-.\\
__________^(___,!',"'___;:+.:%:a._____\:.._._,'__________)__)__)_)_,"'____'
__________',,,'','_____/o:::":%:%a.____\:.:.:_________.____)__)__,'
___________"""'_______;':::''_`+%%%a.___\%:%|_________;.).__,-""
__________________,-='_.-'______``:%::)__)%:|________/:._,"
_________________(/(/"___________,"_,'_,'%%%:_______(_,'
________________________________(__(//(`.___;________\\
_________________________________\_____\____`_________`
__________________________________`.____`.___`.________:
____________________________________\._._.\____:_._._._:
_____________________________________\._._.:____`.._._.:
______________________________________`..:.:\_____\:...\\
_______________________________________;:.:.;______::...:
_______________________________________):%::_______:::::;
_____________________________________,::%:(________:::::
________________________________,;:%%%%%%%:________;:%::
__________________________________;,--""-.`\__,=--':%:%:\\
_________________________________/"_______"|_/-".:%%%%%%%\\
_________________________________________________;,-"'`)%%)
________________________________________________/"______"|
T_REX
@natritmeyer
Copy link
Author

This one is for @blake-boesinger

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment