Skip to content
View SpencerKaiser's full-sized avatar

Sponsoring

@B4nan
Block or Report

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

  1. Pantheon-Labs/Jiter-Node Pantheon-Labs/Jiter-Node Public

    The official Node SDK for Jiter

    TypeScript 7 1

  2. AmericanAirlines/simple-env AmericanAirlines/simple-env Public

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

    TypeScript 9 8

  3. AmericanAirlines/Hangar AmericanAirlines/Hangar Public

    Hackathon sponsorship made easy

    TypeScript 38 33

  4. AmericanAirlines/Flight-Engine AmericanAirlines/Flight-Engine Public

    Mock flight data delivered simply and quickly without a database.

    TypeScript 30 43

  5. AmericanAirlines/AskingForAFriend AmericanAirlines/AskingForAFriend Public

    Helping our Slack community ask questions without fear of being judged

    TypeScript 19 3

  6. Swift implementation of a DJI-provid... Swift implementation of a DJI-provided sample to convert vc_pixelbuffer_fastupload to a usable CVPixelBuffer
    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,