Skip to content
View brokenmold's full-sized avatar
:octocat:
Spaghetti code, It's what's for dinner.
:octocat:
Spaghetti code, It's what's for dinner.

Organizations

@brokenmoldlabs

Block or report brokenmold

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. Modern CSS Reset Modern CSS Reset
    1
    // ** Smoothing **
    2
    * {
    3
      -webkit-font-smoothing: antialiased;
    4
      -moz-osx-font-smoothing: grayscale;
    5
    }
  2. Wipe oops'd .env's from GitHub Wipe oops'd .env's from GitHub
    1
    *** Removes most recent unpushed env commit & adds env to gitignore ***
    2
    
                  
    3
    echo '.env' >> .gitignore
    4
    git rm -r --cached .env
    5
    git add .gitignore