Skip to content
View saintsGrad15's full-sized avatar

Block or report saintsGrad15

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. enodo-fullstack-challenge enodo-fullstack-challenge Public

    Forked from lx881219/enodo-fullstack-challenge

    Python

  2. simpleTooltip simpleTooltip Public

    JavaScript

  3. basic_python3_flask_api_server basic_python3_flask_api_server Public

    Python

  4. wsi_sample_project wsi_sample_project Public

    Putting my money where my mouth is for my students!

    JavaScript 1 1

  5. Will split 'string' using all of the... Will split 'string' using all of the additional arguments to multisplit.
    1
    def multisplit(string, *args):
    2
        """
    3
        Will split 'string' using all of the additional arguments to multisplit.
    4
    5
        Will then filter out any instances of empty strings in the resultant list
  6. A heartbeater class that implements ... A heartbeater class that implements the context manager interface.
    1
    from threading import Thread
    2
    from time import sleep
    3
    
                  
    4
    class Heartbeater(Thread):
    5
        """