Skip to content
View odonML's full-sized avatar
:copilot:
programanding
:copilot:
programanding

Block or report odonML

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
odonML/README.md

:octocat: Hi there! I'm OdonMLπŸ‘‹ πŸ’»

face

Fullstack Developer (6+ years) & SCM - GitHub (GCA & GCF) at Axity | Aspiring DevOps & Cloud Engineer

  • πŸš€ Current Focus: Transitioning into DevOps to optimize CI/CD workflows and system scalability.
  • πŸŽ“ Certifications in Progress: Terraform β€’ AWS β€’ Kubernetes
  • πŸ‘₯ Community Leader: Co-founder of Devu, inspiring developers through talks and workshops.
  • πŸ› οΈ Tech Stack: Angular, React, Node.js, Python & Bash.
  • πŸ“Έ Fun Fact: I'm passionate about photography and design. When I'm not at my desk, I'm probably out walking with my dog! πŸ•.

πŸ› οΈ DevOps & Automation (in Progress):

πŸ› οΈ Lenguajes Y Herramientas

Pinned Loading

  1. octo-say octo-say Public

    Octo-Say πŸ™πŸ’¬ is a simple GitHub Action created to help developers learn automation in a fun way. It works like a "Hello World" but with a creative touch

    1

  2. gkey gkey Public

    gkey πŸ” is a collection of automation scripts designed to make your Git workflow faster ⚑️ and easier 😌. If you use multiple GitHub :octocat: accounts or work with different SSH keys οΏ½οΏ½πŸ”‘, gkey helps you mana…

    Shell 3

  3. octo-say-simulator octo-say-simulator Public

    A web-based simulator that replicates the GitHub Actions "Octo-Say πŸ™πŸ’¬" logging interface using Astro and the official Octocat API.

    CSS 1

  4. convert-pdf convert-pdf Public

    TypeScript 1

  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,