Skip to content
View addicteduser's full-sized avatar
  • Philippines
Block or Report

Block or report addicteduser

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

  1. dnd-hp-calc-discordbot dnd-hp-calc-discordbot Public

    Discord Bot for computing your AL D&D 5e character's hit points, given the Constitution modifier, its classes and levels, and other HP modifiers such as Tough feat or being a Hill Dwarf.

    Python 1

  2. Git commands Git commands
    1
    Rename git branch locally and remotely
    2
    git branch -m old_branch new_branch         # Rename branch locally    
    3
    git push origin :old_branch                 # Delete the old branch    
    4
    git push --set-upstream origin new_branch   # Push the new branch, set local branch to track the new remote
    5
    
    
  3. My preferred custom fish shell prompt My preferred custom fish shell prompt
    1
    function fish_prompt
    2
    	printf '%s' (set_color normal) '[' (set_color --bold brgreen) "$USER@$hostname " (set_color normal; set_color green) (echo $PWD | sed -e "s|^$HOME|~|") (set_color normal) ']$ '                                  
    3
    end
    4
    
    
    5
    Looks like: