Skip to content
View wrandowR's full-sized avatar
:electron:
:electron:

Block or report wrandowR

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

Wrandow

Software Engineer @ Rappi

I am a software engineer focused on building scalable, high-performance, and elegant software solutions. In my current role at Rappi, I design and implement architectures that address complex business requirements, prioritizing clean code, maintainability, and rigorous technical standards.

Core Focus & Technologies

  • Artificial Intelligence & LLM Infrastructure: Deeply involved in the AI ecosystem, specifically building and integrating "Evals as a Platform." I actively work with tools like Langfuse and LiteLLM to optimize workflows, evaluate models, and ensure AI reliability.
  • Software Architecture: Designing sophisticated, resilient systems that balance operational efficiency with long-term scalability and business impact.

Analytical Profile

Discipline and data-driven decision-making are fundamental pillars of my approach. Beyond software engineering, I apply this same analytical and strategic rigor to financial markets, actively engaging in options trading and the analysis of commodity ETFs. Whether optimizing code or evaluating market trends, I maintain a strict focus on performance and continuous improvement.


Connect LinkedIn | Email |

Pinned Loading

  1. git-delete-all-branches.md git-delete-all-branches.md
    1
    # Delete all git branches except "master"
    2
    
                  
    3
    ```
    4
    git branch | grep -v "master" | xargs git branch -D
    5
    ```