Skip to content
View SpencerKaiser's full-sized avatar

Sponsoring

@B4nan

Block or report SpencerKaiser

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. Pantheon-Labs/Jiter-Node Public

    The official Node SDK for Jiter

    TypeScript 7 1

  2. AmericanAirlines/simple-env Public

    An intuitive, strongly typed, and scalable way to retrieve environment variables.

    TypeScript 11 9

  3. AmericanAirlines/Hangar Public

    Hackathon sponsorship made easy

    TypeScript 40 33

  4. AmericanAirlines/Flight-Engine Public

    Mock flight data delivered simply and quickly without a database.

    TypeScript 32 42

  5. AmericanAirlines/AskingForAFriend Public

    Helping our Slack community ask questions without fear of being judged

    TypeScript 21 3

  6. Swift implementation of a DJI-provid...
    1
    func createPixelBuffer(fromFrame frame: VideoFrameYUV) -> CVPixelBuffer? {
    2
            var initialPixelBuffer: CVPixelBuffer?
    3
            let _: CVReturn = CVPixelBufferCreate(kCFAllocatorDefault, Int(frame.width), Int(frame.height), kCVPixelFormatType_420YpCbCr8Planar, nil, &initialPixelBuffer)
    4
            
    5
            guard let pixelBuffer = initialPixelBuffer,