Bio

Yo! I'm Brian Cantrell, a software engineer from Arizona with over 5 years in the tech industry. I have dedicated my career to solving problem with robust, performant software solutions.

I spent 4 years attending Grand Canyon University from 2018 to 2022 learning the fundamentals of computer science. During my studies I started applying my skills professionally working at Assa Abloy. I have been working in the industry for 3 years and 7 months since, but who's counting?

My technical expertise includes:

  • Programming Languages: Go, Javascript, PHP, Python
  • Frameworks: React, Vue, Express, Gin, Echo, CodeIgniter, Laravel
  • Databases: MySQL, PostgreSQL, MongoDB, Turso
  • Tools and Platforms: Neovim, AWS, Github, Docker, Gitkraken

One of my key projects involved designing and developing a comprehensive onboarding system, which streamlined the onboarding of clients for a marketing company. This project included developing a secure and scalable platform to orchestrate multiple REST APIs.

Additionally, I developed and maintained hundreds of client facing applications serving thousands of users daily. This includes both front and backend platforms built with various technologies. I was also the lead on the migration of legacy systems to cloud-based solutions while transitioning to modern CI/CD pipelines.

I am fully committed to advancing with the tech industry and look forward to opportunities to innovate and drive impactful projects. Thank you for taking the time to get to know me!

personal-img

@bcantrell1

const usefullCode = (value: T): T => {
  console.log("Starting super useful code with:", value);
    
  const startTime = performance.now();
  
  for (let i = 0; i < 1000000; i++) {
    if (i % 100000 === 0) {
      console.log(`${i/10000}% complete...`);
    }
  }
  
  const endTime = performance.now();
  console.log(`My super useful function took ${(endTime - startTime).toFixed(2)}ms`);
  console.log("I am as good as they say. 😉");
    
  return value;
};