Skip to content
View Galeas's full-sized avatar
🇺🇦
#standwithukraine
🇺🇦
#standwithukraine

Block or report Galeas

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 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. CocoaPodUI CocoaPodUI Public archive

    XCode plugin that implements CocoaPods GUI.

    HTML 575 58

  2. hackintosh hackintosh Public

    6

  3. LoremIpsum LoremIpsum Public archive

    LoremIpsum — convenient, carefully designed Mac text editor for Markdown and rich text.

    Objective-C 2

  4. NowP- NowP- Public archive

    Objective-C 1 1

  5. Add ENV variable Add ENV variable
    1
    # -----------------------------------------
    2
    #  Create permanent environment variable
    3
    #
    4
    #  $1 - variable name
    5
    #  $2 - variable definition
  6. Random color Random color
    1
    CGFloat hue = ( arc4random_uniform(256) / 256.0 );  //  0.0 to 1.0
    2
    CGFloat saturation = ( arc4random_uniform(128)  / 256.0 ) + 0.5;  //  0.5 to 1.0, away from white
    3
    CGFloat brightness = ( arc4random_uniform(128) / 256.0 ) + 0.5;  //  0.5 to 1.0, away from black
    4
    UIColor *color = [UIColor colorWithHue:hue saturation:saturation brightness:brightness alpha:1];