Bio

I started my programming journey with motivation drawn from previous experience in the pipeline industry. I quickly found that I needed to learn the fundamentals of computer science to be valuable and involved in the innovative projects which spark my interest.

I devoted the next 4 years to doing so, attending Grand Canyon University from 2018 to 2022. Part way through my studies I started applying my skills professionally. I have been working in the industry for 3 years and 4 months since, but who's counting?

My technical expertise includes:

  • Programming Languages: TypeScript (primary), Go, PHP, Python
  • Frameworks: React, Next.js, Tailwind, Node.js, Express, CodeIgniter, Laravel
  • Databases: MySQL, PostgreSQL, MongoDB, Turso
  • Cloud Services: AWS, Docker, Gitlab CI/CD
personal-img

@bcantrell1

const golfShot = (planet: Planet, toHole: Yards): string => {
  const gravity: number = getGravity(planet);
  const distance: number = toHole / gravity * Math.random();
  
  const trouble: Trouble = {
    Earth: 'lake',
    Moon: 'crater',
    Mars: 'canyon'
  };

  return distance >= toHole ?
    `Shoot! We didnt clear the ${trouble[planet]}!` 
    : `Welp! My ball could be lost to ${planet}'s ${trouble[planet]}!`;
};