Skip to content
View KristopherGBaker's full-sized avatar
Block or Report

Block or report KristopherGBaker

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

    The Maaku framework provides a Swift wrapper around cmark with the addition of a Swift friendly representation of the AST

    Swift 49 12

  2. TexturedMaaku TexturedMaaku Public

    Native iOS Markdown rendering in Swift using Texture and Maaku

    Swift 21 3

  3. libcmark_gfm libcmark_gfm Public

    Swift compatible framework for cmark-gfm

    C 36 10

  4. GitHubDM GitHubDM Public

    Sample iOS app using MVVM and no third party libraries

    Swift

  5. Simple Swift Heap implementation Simple Swift Heap implementation
    1
    struct Heap<Element: Comparable> {
    2
        enum HeapType {
    3
            case min
    4
            case max
    5
    
                  
  6. Simple Javascript Heap implementation Simple Javascript Heap implementation
    1
    // usage:
    2
    // create a min heap
    3
    // const heap = new Heap((a, b) => a.val < b.val)
    4
    //
    5
    // create a max heap