Skip to content
View mayorandrew's full-sized avatar

Organizations

@chocoapp

Block or report mayorandrew

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. TypeScript Strictly-Typed Middleware TypeScript Strictly-Typed Middleware
    1
    /**
    2
     * @file This file demonstrates a POC for defining strictly typed middleware in TypeScript
    3
     * in a form of decorator-like generic wrapper functions that infer inner type from the outer.
    4
     * TypeScript has certain limitations surrounding high-order generics that prevent such inference
    5
     * when implemented naively.
  2. TypeScript Polymorphic React Components TypeScript Polymorphic React Components
    1
    import { ComponentProps } from 'react';
    2
    import { DomAnchor, DomButton } from './dom';
    3
    import { concretizeGeneric } from './generic';
    4
    import { ButtonGeneric } from './ButtonGeneric';
    5
    
    
  3. eslint-plugin-force-barrel-imports eslint-plugin-force-barrel-imports Public

    ESLint rule to prevent importing modules hidden behind an index.js barrel file

    TypeScript

  4. postgres-queue-fifo postgres-queue-fifo Public

    Proof of concept for group concurrency controlled job queue in PostgreSQL

    TypeScript