Skip to content
View justAnotherDev's full-sized avatar
  • Scribd
Block or Report

Block or report justAnotherDev

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

    Easily defeat MITM attacks on non-jailbroken phones without requiring a SSL cert or any complexities

    Swift 2

  2. A different approach to laying out v... A different approach to laying out views. Designed for Swift, works in ObjC
    1
    //
    2
    //  ViewPlace.swift
    3
    //
    4
    
    
    5
    import UIKit
  3. Iterate a tuple in Swift Iterate a tuple in Swift
    1
    func generatorForTuple(tuple: Any) -> AnyGenerator<Any> {
    2
        return anyGenerator(Mirror(reflecting: tuple).children.lazy.map { $0.value }.generate())
    3
    }
    4
    
    
    5
    let someTuple = ("1", 2, ["3"])