I hereby claim:
- I am bobnisco on github.
- I am bobnisco (https://keybase.io/bobnisco) on keybase.
- I have a public key whose fingerprint is 3166 825A AEC6 CBC6 2077 8E32 B71C 4069 8B1D 045C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Somewhere in your controllers for this given example | |
| // Example functions | |
| $scope.itemOnLongPress = function(id) { | |
| console.log('Long press'); | |
| } | |
| $scope.itemOnTouchEnd = function(id) { | |
| console.log('Touch end'); | |
| } |
| This application does not store any information about you. We utilize Microsoft pubCenter for serving advertisements. | |
| This privacy policy is subject to change without notice and was last updated on March 25, 2014. |
| public foo(x: string) { | |
| if (x == "bar") { | |
| return 1; | |
| } else { | |
| return false; | |
| } | |
| } |
| # Load DSL and Setup Up Stages | |
| require 'capistrano/setup' | |
| # Includes default deployment tasks | |
| require 'capistrano/deploy' | |
| # Includes tasks from other gems included in your Gemfile | |
| # | |
| # For documentation on these, see for example: | |
| # |
| <!-- If you're using PhoneGap Build --> | |
| <feature name="org.apache.cordova.facebook.Connect"> | |
| <param name="android-package" value="org.apache.cordova.facebook.ConnectPlugin" /> | |
| </feature> | |
| <!-- Cordova Plugin --> | |
| <gap:plugin name="com.phonegap.plugins.facebookconnect"> | |
| <param name="APP_ID" value="YOUR_FB_APP_ID" /> | |
| <param name="APP_NAME" value="YOUR_APP_NAME" /> | |
| </gap:plugin> |
| #!/usr/bin/env python | |
| import os | |
| import sys | |
| import time | |
| from datetime import datetime, timedelta | |
| def main(): | |
| if len(sys.argv) >= 3: | |
| music_service = str(sys.argv[1]) | |
| minutes_to_wait = float(sys.argv[2]) |