Skip to content
View mcote7's full-sized avatar
๐Ÿ 
Working from home
๐Ÿ 
Working from home

Block or report mcote7

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
mcote7/README.md

GitHub stats


๐ŸŒŽ Hello World 

I'm Michael, a software developer.


๐ŸŽฏ I am currently focused on ... 

โ€ข ๐•‹ype๐•Šcript

โ€ข ๐”ธng๐•ฆlar

โ€ข ๐•Šass

โ€ข ๐”ฝire๐•“ase

โ€ข ๐•Žeb ๐”ปesi๐•˜n


Top Langs


visitors   Github   my   my   my  

 ๐Ÿ“œ   Certifications
{
  "course": NgRx_Store_&_Effects,
  "institution": "Ultimate Courses",
  "date": "August 2021",
  "id": 15
},
{
  "course": RxJS_masterclass,
  "institution": "Ultimate Courses",
  "date": "July 2021",
  "id": 14
},
{
  "course": JS_advanced,
  "institution": "Udemy",
  "date": "July 2021",
  "id": 13
},
{
  "course": Ultimate_Angular,
  "institution": "Ultimate Courses",
  "date": "July 2021",
  "id": 12
},
{
  "course": UX_UI_design,
  "institution": "Udemy",
  "date": "July 2021",
  "id": 11
},
{
  "course": RxJS_basics,
  "institution": "Ultimate Courses",
  "date": "June 2021",
  "id": 10
},
{
  "course": TypeScript_master_class,
  "institution": "Ultimate Courses",
  "date": "June 2021",
  "id": 9
},
{
  "course": TypeScript_basics,
  "institution": "Ultimate Courses",
  "date": "May 2021",
  "id": 8
},
{
  "course": Design_thinking,
  "institution": "Udemy",
  "date": "May 2021",
  "id": 7
},
{
  "course": SASS_workflow,
  "institution": "Udemy",
  "date": "May 2021",
  "id": 6
},
{
  "course": Angular_4+,
  "institution": "Code with Mosh",
  "date": "April 2021",
  "id": 5
},
{
  "course": JavaScript_es6,
  "institution": "Udemy",
  "date": "March 2021",
  "id": 4
},
{
  "course": Redux_architecture,
  "institution": "Code with Mosh",
  "date": "July 2021",
  "id": 3
},
{
  "course": React_library,
  "institution": "Code with Mosh",
  "date": "June 2020",
  "id": 2
},
{
  "certification": Full-stack_web_development,
  "institution": "Coding Dojo",
  "date": "June 2020",
  "id": 1
}

 ๐Ÿ•   Class
  
interface SizesInterface {
  availableSizes: string[];
}
abstract class Sizes implements SizesInterface {
  constructor(protected sizes: string[]) {}
  set availableSizes(sizes: string[]) {
    this.sizes = sizes;
  }
  get availableSizes() {
    return this.sizes
  }
} 
interface PizzaInterface extends SizesInterface {
  readonly name: string;
  toppings: string[];
  updateSizes(sizes: string[]): void;
  addTopping(topping: string): void;
}
export class Pizza extends Sizes implements PizzaInterface {
  public name: string;
  toppings: string[] = [];
  constructor(readonly name: string, sizes: string[]){
    super(sizes);  
  }
  public updateSizes(sizes: string[]) {
    this.sizes = sizes;
  }
  public addTopping(topping: string) {
    this.toppings.push(topping);
  }
}  
const pizza = new Pizza('pepperoni', ['small','x-large']);
pizza.addTopping('pepperoni');
pizza.updateSizes(['large']); 
class Coupon {
  static allowed = ['pepperoni','large'];
  static create(percentage: number) {
    return `PIZZA_COUPON_${percentage}%_OFF`;
  }
}
Coupon.create(25);

stuff

From: 13 June 2025 - To: 20 June 2025

No activity tracked

Pinned Loading

  1. javascript_algos Public

    ๐Ÿ›  a collection of javascript algos.

    JavaScript 1

  2. faceboop Public

    ๐Ÿšง๐Ÿงช๐Ÿ”ฌ๐Ÿ“๐Ÿ’ก

    SCSS 2

  3. o-shop Public

    ๐Ÿ”ฅ e-commerce with Angular, Firebase & NgRx store.

    TypeScript 2

  4. jitsi-chat Public

    ๐Ÿ“น Jitsi video chat with React.

    JavaScript 2

  5. reusable_utilitys Public

    ๐Ÿ— reusable utility functions, pagination & string manipulation.

    JavaScript 1

  6. react-menu-cube Public

    ๐ŸŽฒ 3D React menu cube component.

    JavaScript 1