Coder Social home page Coder Social logo

rxjs_basics's Introduction

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

πŸš€Β https://mcote7.github.io/michael-cote/Β 


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: 17 January 2024 - To: 24 January 2024

HTML         38 mins         β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–’β–‘β–‘β–‘β–‘   81.36 %
TypeScript   6 mins          β–ˆβ–ˆβ–ˆβ–’β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   13.18 %
JSON         1 min           β–“β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   02.83 %
JavaScript   1 min           β–“β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   02.41 %
SCSS         0 secs          β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘   00.22 %

rxjs_basics's People

Contributors

mcote7 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.