Skip to content
View Edudjr's full-sized avatar
🏠
Working from home
🏠
Working from home
  • Mercado Livre
  • Sao Paulo

Block or report Edudjr

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. IPAServer IPAServer Public

    This is a server created to provide your testers with the latest IPA files for your iOS Application

    JavaScript 83 14

  2. TLCustomMask TLCustomMask Public

    Swift 10 3

  3. Swift 3 JSON pretty printing Swift 3 JSON pretty printing
    1
    //Function to pretty-print Json Object in Swift 3
    2
    func prettyPrint(with json: [String:Any]) -> String{
    3
      let data = try! JSONSerialization.data(withJSONObject: json, options: .prettyPrinted)
    4
      let string = NSString(data: data, encoding: String.Encoding.utf8.rawValue)
    5
      return string as! String
  4. Luhn Algorithm in Swift 4.1 Luhn Algorithm in Swift 4.1
    1
    func luhnCheck(_ number: String) -> Bool {
    2
        var sum = 0
    3
        let digitStrings = number.reversed().map { String($0) }
    4
    
                  
    5
        for tuple in digitStrings.enumerated() {
  5. estapar estapar Public

    Swift