Skip to content
View amarkpark's full-sized avatar

Block or report amarkpark

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
amarkpark/README.md

Pinned Loading

  1. Ruby's Method Lookup Path offered in... Ruby's Method Lookup Path offered in Pastafarian
    1
    # fsm.rb is a discussion/demonstration of Ruby's Method Lookup Path
    2
    
                  
    3
    class Pasta
    4
      def carbs
    5
        "Noodly deliciousness!"
  2. coffeeclass.rb coffeeclass.rb
    1
    class Coffee
    2
    	attr_accessor :brew
    3
    
                  
    4
    	def initialize(brew)
    5
    		@brew = brew.upcase.chr # accounts for multiple cases, spellings & typos
  3. LIFO stack for integers up to 11.5 x... LIFO stack for integers up to 11.5 x 10^17 or thereabouts
    1
    class NumberStack
    2
    	attr_reader :data, :topval
    3
    
                  
    4
    	def initialize
    5
    		@data = nil