Skip to content
View mandrush's full-sized avatar
👽
👽

Block or report mandrush

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 aliases & etc. Useful aliases & etc.
    1
    # remove all /target directories recursively, starting from pwd 
    2
    alias rmtarget="find . -name 'target' -prune -exec rm '{}' -rf \;"
    3
    # auto pull & rebase - dereb if the master branch name is 'master'; dereb if it's 'develop'
    4
    alias dereb = !sh -c 'cbr=`git cbr` && git co develop && git pull --rebase && git co \"$cbr\" && git rebase develop'
    5
    alias mareb = !sh -c 'cbr=`git cbr` && git co master && git pull --rebase && git co \"$cbr\" && git rebase master'
  2. CNN-keras CNN-keras Public

    A convolutional neural network for MNIST handwritten digits recognition

    Python