Skip to content
View stormmuller's full-sized avatar
😀
😀
  • Entelect
  • South Africa

Highlights

  • Pro

Block or report stormmuller

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. fixed-point-types fixed-point-types Public

    A C# library for fixed point numbers

    C# 45 4

  2. goal-seek goal-seek Public

    TypeScript

  3. document-framework document-framework Public

    C# 3

  4. scriptable-objects-architecture scriptable-objects-architecture Public

    Package for game architecture based on scriptable objects

    C#

  5. Chainable Chainable
    1
    type SyncOrAsync<T> = T | Promise<T>;
    2
    
                  
    3
    class Chain<Input, Output> {
    4
      private functions: ((input: any) => SyncOrAsync<any>)[] = [];
    5