Skip to content
View tomersh's full-sized avatar

Block or report tomersh

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. Objective-C-Generics Objective-C-Generics Public

    Objective C Generics

    Objective-C 709 92

  2. NanoProfiler NanoProfiler Public

    Measure a function's runtime without adding a single line of code to the original function. Nothing more.

    Objective-C 159 10

  3. AppleGuice AppleGuice Public

    Effortless dependency injection framework for Objective-C

    Objective-C 135 18

  4. A simple pooled promise implementation A simple pooled promise implementation
    1
    Promise.joinPooledTasks = (worker, poolSize, onTaskFinished) => {
    2
    
                  
    3
        let didEnqueAllTasks = false;
    4
        let nextTaskIndex = -1;
    5
    
                  
  5. Unlike Promise.all(), that will reje... Unlike Promise.all(), that will reject when the first promise rejects, the Promise.waitForAll() will never rejects. The method returns a single Promise that resolves when all of the promises in the iterable argument have either resolved or rejects. It returns an array of objects with either a results or error key.
    1
    Promise.waitForAll = promises => {
    2
      if (!promises || typeof promises[Symbol.iterator] !== 'function') {
    3
          return Promise.reject();
    4
      }
    5
      
  6. continues press gesture recognizer continues press gesture recognizer
    1
    -(void) syncButtonViewDidPassedSyncTreshhold:(CPRSyncButtonView*) syncView {
    2
        self.didFinishSync = YES;
    3
    }
    4
    
                  
    5
    -(void) syncButtonViewDidShowSyncConfirmation:(CPRSyncButtonView*) syncView {