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

Block or report badstreff

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. git2jss git2jss Public

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

    Python 89 58

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

    A terraform provider for Microsoft's SCVMM

    Go 2

  3. teenyopds teenyopds Public

    small opds server

    Python 6 1

  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):