Skip to content
View apphands's full-sized avatar

Block or report apphands

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

    Using CoreBluetooth to scan for (non-iBeacon) bluetooth beacons while the app is in the background.

    Objective-C 1

  2. NodeMCU esp8266 home irrigation script NodeMCU esp8266 home irrigation script
    1
    
                  
    2
    // Load Wi-Fi library
    3
    #include <ESP8266WiFi.h>
    4
    
                  
    5
    // Replace with your network credentials
  3. iOS-Face-Detection iOS-Face-Detection Public

    You pick a photo from the Photo Library and the app uses Core Image Face Detection to highlight the faces.

    1

  4. twirly twirly Public

    Neat little motion-enabled iOS effect to UIImageView

    Objective-C

  5. Calculate Fibonacci numbers in Swift Calculate Fibonacci numbers in Swift
    1
    // https://en.wikipedia.org/wiki/Fibonacci_number
    2
    // 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 ...
    3
    
                  
    4
    func fib(n:Int)->Int {
    5
        if n > 2 {
  6. Sort NSDictionary keys in descending... Sort NSDictionary keys in descending order
    1
        NSDictionary *dict = @{@"a":@1, @"b":@3, @"z":@24};
    2
        NSArray *sortedArray = [dict keysSortedByValueUsingComparator:^NSComparisonResult(id  _Nonnull obj1, id  _Nonnull obj2) {
    3
            return [obj1 integerValue] < [obj2 integerValue];
    4
        }];
    5
        NSLog(@"dict: %@", sortedArray);