Skip to content
View badstreff's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report badstreff

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. git2jss git2jss Public

    Easily sync your scripts and EA's from a git repo with the JSS

    Python 92 55

  2. terraform-provider-vmm terraform-provider-vmm Public

    A terraform provider for Microsoft's SCVMM

    Go 1

  3. teenyopds teenyopds Public

    small opds server

    Python 6

  4. Partial Python Implementation of C#'... Partial Python Implementation of C#'s Random Class
    1
    from ctypes import *
    2
    # implemented from:
    3
    # http://referencesource.microsoft.com/#mscorlib/system/random.cs,dec894a7e816e665
    4
    class Random(object):
    5
        def __init__(self, seed):