Skip to content
View riansanderson's full-sized avatar
Block or Report

Block or report riansanderson

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. anaconda-py3-tensorflow anaconda-py3-tensorflow Public

    docker image for replicating a standard machine learning dev setup of anaconda + python 3.6 + tensorflow

    1

  2. cheatsheat of really useful things I... cheatsheat of really useful things I don't need to do very often or have stupid syntax
    1
    # alias for quickly getting the remote URL for the current repo, very useful to pipe to pbcopy
    2
    git config --global alias.url '!git remote -v | awk "{print \$2}" | head -1'
    3
    
    
    4
    # use local copy of file for all merge conflicts (sub --theirs to take remote copies)
    5
    git status -s | cut -f2 -d' ' | xargs git checkout --ours
  3. awk sed cheatsheet awk sed cheatsheet
    1
    # split compiler arg string to one options per line by pasting into terminal and hitting <ctrl-d>
    2
    awk '{split($0, opts)} END {system("tput clear"); for (i in opts) print opts[i] }'
    3
    
    
    4
    #replace windows cr/lf with just lf. Insert a real ^M by typing ,<ctrl+v><ctrl-m>
    5
    $ sed 's/^M//' somefile.*
  4. rotaryencoder rotaryencoder Public

    Forked from astine/rotaryencoder

    raspberry pi rotary encoder reader code

    C

  5. sensorplatforms/open-sensor-platform sensorplatforms/open-sensor-platform Public

    Open Sensor Platform project

    C 61 36