Skip to content
View ialimz's full-sized avatar

Block or report ialimz

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 Loading

  1. Auto Upload Your App Debug Product o... Auto Upload Your App Debug Product on Appetize.io
    1
    #!/bin/bash
    2
    
                  
    3
    API_TOKEN=<APPETIZE_API_TOKEN>
    4
    
                  
    5
    BUILD="$(xcodebuild -sdk iphonesimulator -workspace <WORKSPACE_NAME>.xcworkspace/ -scheme <SCHEME_NAME> -configuration Debug)"
  2. paypingNodeWebHook paypingNodeWebHook Public

    Observe https://payping.ir WebHook item purchase JSON in Node.JS

    JavaScript 1

  3. NetShears NetShears Public

    Forked from divar-ir/NetShears

    iOS Network monitor/interceptor framework written in Swift

    Swift

  4. StringBacked.swift StringBacked.swift
    1
    protocol StringRepresentable: CustomStringConvertible, Decodable {
    2
        init?(_ string: String)
    3
    }
    4
    
                  
    5
    extension Int: StringRepresentable {}
  5. Add Codable Conformance to SQLite Sw... Add Codable Conformance to SQLite Swift Types
    1
    protocol CodableEntity: Codable, Value { }
    2
    
                  
    3
    extension CodableEntity {
    4
        static var declaredDatatype: String {
    5
            Blob.declaredDatatype