Skip to content
View mikecorey's full-sized avatar

Block or report mikecorey

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

    A dockerfile for running a devzat ssh chat server

    Dockerfile

  2. loadcast loadcast Public

    Python script for syncing and downloading podcasts

    Python

  3. fake_data_lake fake_data_lake Public

    an in memory binary and metadata store

    Python

  4. Transpose and Complex Conjugate of a... Transpose and Complex Conjugate of a matrix
    1
    # Computes the transpose and complex conjugate of a matrix.
    2
    from typing import List, Callable
    3
    
                  
    4
    # Compute the transpose of a matrix.  This is definitely not the
    5
    # fastest implementation.
  5. Circular buffer for compactly storin... Circular buffer for compactly storing elements
    1
    class CircularBuffer:
    2
        def __init__(self, max_len) -> None:
    3
            self.max_len = max_len
    4
            self.a = [None] * max_len
    5
            self.idx = 0
  6. Converts a list to a 2D list Converts a list to a 2D list
    1
    def make_2d(i,j,a):
    2
      if len(a) != i * j:
    3
        raise ValueError("List of length {} can't be resized to {} by {}".format(len(a), i, j))
    4
      return [[a[x*i+y] for y in range(i)] for x in range(j)]
    5