Skip to content
View jemmons's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report jemmons

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

    URL Matching in Swift

    Swift 4 1

  2. Perfidy Perfidy Public

    Mock service for iOS testing.

    Swift 1

  3. SessionArtist SessionArtist Public

    Adds structure around URLSession for beautiful APIs.

    Swift 1

  4. Gauntlet Gauntlet Public

    A finite state machine for Swift.

    Swift 1 3

  5. BagOfTricks BagOfTricks Public

    Little tools and utilities for Swift projects.

    Swift 2 1

  6. Draws a `singlePixelLine` line above... Draws a `singlePixelLine` line above or below the given point, depending on `topBias`.
    1
    import UIKit
    2
     
    3
    func singlePixelLine(at y: CGFloat, in rect: CGRect, topBias: Bool = true) {
    4
      let offset = pixelUnit/2.0
    5
      let adjustedY = round(from: y - offset, fraction: pixelUnit, down: topBias) + offset