Skip to content
View Fyvel's full-sized avatar

Block or report Fyvel

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

Pinned Loading

  1. gallery-me gallery-me Public

    Personal gallery of things

    TypeScript

  2. minesweeper minesweeper Public

    Minesweeper Game using React & Redux

    TypeScript

  3. chat-gpt-clone chat-gpt-clone Public

    Chat GPT clone as a PWA

    TypeScript 1

  4. dopefolio dopefolio Public

    Forked from rammcodes/Dopefolio

    Dopefolio 🔥 - Portfolio Template for Developers 🚀

    HTML

  5. invert-binary-tree.ts invert-binary-tree.ts
    1
    //  Original Tree           Expected Tree
    2
    //        1                     1
    3
    //      /    \                /    \
    4
    //     2      3              3      2
    5
    //    /  \   /  \           /  \   /  \
  6. git config.sh git config.sh
    1
    # Rebase FTW
    2
    git config --global pull.rebase true
    3
    
                  
    4
    # Fancy logs
    5
    git config --global alias.history "log --all --decorate --oneline --graph"