Skip to content
View guilhermeabell's full-sized avatar
⚠️
⚠️

Organizations

@NexHackathon @MyMovii @Lakey-beauty-company @devlabs-studio @umpordez @DevsFreeUp @ticketizze
Block or Report

Block or report guilhermeabell

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. dotfiles dotfiles Public

    Shell 1

  2. masks.js masks.js
    1
    export const cpfMask = (value) => {
    2
      return value
    3
        .toString()
    4
        .replace(/\D/g, '')
    5
        .replace(/(\d{3})(\d)/, '$1.$2')
  3. settings.json settings.json
    1
    {
    2
      "emmet.syntaxProfiles": {
    3
        "javascript": "jsx",
    4
        "typescript": "tsx",
    5
      },
  4. BranchStash BranchStash
    1
    [alias]
    2
    	branchstash = "!f() { git stash save \"Stash $(git rev-parse --abbrev-ref HEAD): $1\"; }; f"
    3
    
    
    4
    # run  git branchstash "my changes in the branch"
    5