Skip to content
View odonML's full-sized avatar
🥑
🥑

Block or report odonML

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
odonML/README.md

Hola, Soy OdonML 💻

face

Mexicano, Ing. en Sistemas, Co-fundador de Devu, Fotografo Aficionado e Ilustrador Aficionado.

  • 🔭 FullStack Developer, SCM - Git & Github en: Axity
  • 👯 Colaboro en: Devu
  • 📚 Comparto documentacion en: Dev.to
  • 🖌️ Comparto mis diseños en: Behance
  • 🌐 Comparto recursos en: Twitter

Lenguajes Y Herramientas 🛠

JavaScript Angular HTML5 CSS3 Sass Bootstrap Nodejs Npm Firebase Git GitHub VS Code Illustrator Photoshop

Pinned Loading

  1. portafolioOdonML portafolioOdonML Public

    JavaScript

  2. convert-pdf convert-pdf Public

    TypeScript

  3. css-effects css-effects Public

    this is my repo where i save effects to maked with css and js

    CSS

  4. JSavanzado JSavanzado Public

    JavaScript

  5. Alias de git Alias de git
    1
    // Log
    2
    git config --global alias.lg "log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all"
    3
    
                  
    4
    // Status
    5
    git config --global alias.s status --short
  6. Dispatch Table - particularly releva... Dispatch Table - particularly relevant in TypeScript, is a data structure, typically an object or a Map, that maps keys (often strings or enums) to corresponding functions or actions. This pattern provides a flexible and maintainable way to handle different operations based on an input value, avoiding lengthy if/else if chains or switch statements.
    1
    function addition(a, b) { return a + b; }
    2
    function subtraction(a, b) { return a - b; }
    3
    const actions = {
    4
      'ADD': addition,
    5
      'SUBTRACT': subtraction,