8000 amarkpark (amarkpark) Β· GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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

πŸ‘‹ Time-Zone Greetings, and Good Day

Please find my active contributions from late 2017 to mid 2024 here.

πŸ”§ Technologies & Tools

Here are some of the technologies and tools I'm familiar with:

  • Programming Languages: JavaScript, TypeScript, Ruby, Python, Apex
  • Frameworks: Ember.JS, Ruby on Rails, Next.JS
  • Databases: PostgreSQL, Coming soon... MongoDB
  • Tools: Docker, Git, AWS, GCP

As a nod to my front-end tendencies, you may or may not note I used brand colors in the above tags - yeah I'm a nerd. πŸ€“

🌱 Skill Enhancements and Learnings

Recently learning and practicing Next.JS, deepening my SQL and Typescript skills, playing with some AI including learning pentesting for AI/LLM, and refreshing RSpec Ruby testing skills.

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
0