Skip to content
View stevenvo's full-sized avatar
  • GeoComply
  • Bay Area
Block or Report

Block or report stevenvo

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. octoprint-docker octoprint-docker Public

    Forked from OctoPrint/octoprint-docker

    The dockerized snappy web interface for your 3D printer!

    Dockerfile 3

  2. dwc2-klipper dwc2-klipper Public

    Forked from seanauff/dwc2-klipper

    Docker image for running DWC2 and Klipper 3D Printer controller software

    Dockerfile 2

  3. PulseSensor_Teensy3.2 PulseSensor_Teensy3.2 Public

    Working source code for Pulse Sensor and Teensy 3.2 (probably works with 3.1 as well)

    Arduino

  4. Useful python snippets Useful python snippets
    1
    #############################################################################
    2
    # Generate Dict from a List of Dict
    3
    ticker = [
    4
     {
    5
       'symbol': 'ABC',
  5. Useful Pandas Snippets Useful Pandas Snippets
    1
    ###### FORCE DATA FORMAT IN PANDAS ######
    2
    pd.options.display.float_format = '{:,.2f}'.format
    3
    
                  
    4
    
                  
    5
    # NOTES: