This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const R = require('ramda') | |
| const hmacsha1 = require('hmacsha1'); | |
| // Map arguments to OAuth keys. | |
| const OAUTH_KEYS = { | |
| consumerKey: 'oauth_consumer_key', | |
| signatureMethod: 'oauth_signature_method', | |
| oauthToken: 'oauth_token', | |
| version: 'oauth_version', | |
| nonce: 'oauth_nonce', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| didRecieveAttrs(attrs) { | |
| if (attrs.newAttrs.dimensions.value !== attrs.oldAttrs.dimensions.value) { | |
| chart.redraw(); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Ember from 'ember'; | |
| Ember.testing = true; | |
| export default Ember.Component.extend({ | |
| attributeBindings: ['style'], | |
| style: 'height: 100px; overflow: auto;', | |
| content: Ember.computed(function() { | |
| return 'foo'; | |
| }), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # Usage: get_release_changelog.py "Facebook v1.0" | |
| import sys | |
| import requests | |
| USER = '' # Your email | |
| SCRUMWISE_TOKEN = '' # Get from scrumwise settings | |
| BASE_URL = 'https://api.scrumwise.com/service/api/v1/getData?includeProperties=' |
NewerOlder