Skip to content
View mikewadhera's full-sized avatar

Block or report mikewadhera

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. teleport-ios teleport-ios Public

    Dual Camera social app for iOS, letting users capture photos and videos using their phone's front-facing and rear cameras for publishing into VR 360 content

    Objective-C

  2. teleport-backend teleport-backend Public

    C++ & Ruby tools for Teleport - converts media from smartphone cameras into 360 VR content

    C++

  3. ridecam-android ridecam-android Public

    Android app to turn smartphone into a car dash cam that records your drives, backs up important videos to the cloud and provides immediate evidence in case of an accident

    Java

  4. mega_fetch mega_fetch Public

    Facebook OpenGraph API batch client using Ruby 1.9 Fibers

    Ruby 1

  5. reduction reduction Public

    Ruby 1.8 Enumerable implemented on top of reduce/fold

    Ruby 1

  6. Currying in ruby 1.8 Currying in ruby 1.8
    1
    class Proc
    2
      def curry(*args)
    3
        if args.size < self.arity
    4
          args_string = ('a'..'z').take(self.arity-args.size).join(',')
    5
          given_args  = []