Skip to content
View mfazza's full-sized avatar
🍃
All things Data
🍃
All things Data
  • CashApp
  • Portland, OR & Seattle, WA

Block or report mfazza

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. Useful git commands that I use from ... Useful git commands that I use from time to time to fix things
    1
    # get rid of a single commit in your branch, and keep it in history
    2
    git revert --strategy resolve <SHA of the commit you wanna get rid off>
    3
    
                  
    4
    # git logs can be pretty unreadable, and there's an option to prettify them
    5
    git log --pretty=oneline
  2. synapse_interactive_docs synapse_interactive_docs Public

    A repository for the jupyter notebook based documentation on how to use synapse

    Jupyter Notebook 2 3

  3. Cleaning up DataFrame columns Cleaning up DataFrame columns
    1
    df.columns = df.columns.str.replace("[#,@,&,*,^,?,(,),%,$,#,!,/]", "")
    2
    df.columns = df.columns.str.replace("[' ', '-', '.']", "_")
    3
    df.columns = map(str.lower, df.columns)
  4. Sage-Bionetworks/agora-data-tools Sage-Bionetworks/agora-data-tools Public

    A place for Agora's ETL and Data Testing

    Jupyter Notebook 1 3