Skip to content
View 07cs07's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report 07cs07

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

    UITextField Validator for iOS

    Objective-C 47 25

  2. BCSliderView BCSliderView Public

    Animatable Slider View for iOS

    Objective-C 25 5

  3. Ottran Ottran Public

    ஒற்றன்(Ottran) allows you to find the size and type of a remote image by downloading as little as possible. Supports PNG, GIF, JPEG and BMP.

    Objective-C 15 3

  4. RingOfCircles RingOfCircles Public

    Swift implementation of a Ring of Circles animation, inspired by https://twitter.com/InfinityLoopGIF/status/1101584983259533312

    Swift 1

  5. Shell Script to show warning if a so... Shell Script to show warning if a source file exceeds a certain number of lines. (Add this Run Script in your Build Phase)
    1
    #This Shell script will spits out a warning if a source file exceeds a certain number of lines. (in this sample 200 lines)#
    2
    find "${SRCROOT}" \( -name "*.h" -or -name "*.m" \) -print0 | xargs -0 wc -l | awk '$1 > 200 && $2 != "total" { print "Warning " $NF " file has more than 200 lines" }'
    3
    #eg#
    4
    #Warning Projects/SamplePOC/Pods/AFNetworking/AFNetworking/AFHTTPRequestOperation.m file has more than 200 lines#
  6. clearXcodeConsoleLogs clearXcodeConsoleLogs
    1
    tell current application
    2
        activate
    3
        tell application "System Events"
    4
            keystroke "k" using command down
    5
        end tell