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
    
  
  
    
  | $ git clone https://github.com/user/repo.git | |
| $ cd repo | |
| $ git checkout -b nomeDaBranch | |
| $ git branch | |
| ... | |
| ... | |
| $ git status | |
| $ git commit -a -m 'Close #12 ...' | |
| $ git push origin nomeDaBranch | 
  
    
      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
    
  
  
    
  | group = FlowRouter.group({name: 'group'}); | |
| group.route('/foo/:id', { | |
| name: 'foo', | |
| action() { | |
| BlazeLayout.render('_defaultLayout'); | |
| }, | |
| }); | 
  
    
      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 firebase from 'firebase'; | |
| //INITIALIZE FIREBASE | |
| firebase.initializeApp({ | |
| apiKey: 'AasdASiaoiAS8&AASLCKdi0aW', | |
| authDomain: 'teste-23o45.firebaseapp.com', | |
| databaseURL: 'https://teste-23o45.firebaseio.com', | |
| storageBucket: 'teste-23o45.appspot.com', | |
| messagingSenderId: '347697078956' | |
| }); | |
| // VERIFY USER STATE; LOGGED IN OR NOT | 
  
    
      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
    
  
  
    
  | // CREATE A REDUCER WITH SOME AMOUNT OF STATE | |
| const reducer = (state = [], action) => { | |
| if (action.type === 'split_string') { | |
| return action.payload.split(''); | |
| } else if (action.type === 'add_character') { | |
| return [ ...state, action.payload ]; | |
| } | |
| return state; | |
| }; | 
  
    
      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
    
  
  
    
  | //ADICIONANDO UMA TAG COM TAGGD | |
| const img = document.querySelector('#img'); | |
| const taggd = new Taggd(img); | |
| const tag = new Taggd.Tag({x: 0.27344, y: 0.67821}, 'new'); | |
| taggd.addTag(tag); | 
NewerOlder