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
    
  
  
    
  | <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Bitcoin Payroll</title> | |
| <script src="/assets/js/libs/modernizr.js"></script> | |
| <link rel="stylesheet" href="/assets/css/bootstrap.css" /> | |
| <link rel="stylesheet" href="/assets/css/flat-ui.css" /> | |
| <link rel="stylesheet" href="/assets/css/app.css" /> | |
| </head> | 
  
    
      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
    
  
  
    
  | require 'amazon/ecs' | |
| module Amazon | |
| class Ecs | |
| def self.cart_similarities(asin) | |
| opts = { | |
| service: 'AWSECommerceService', | |
| operation: 'CartCreate', | |
| response_group: 'CartSimilarities' | |
| } | 
  
    
      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
    
  
  
    
  | var gulp = require('gulp'); | |
| // Plugins | |
| var karma = require('gulp-karma'); | |
| // Paths | |
| var basePath = './public/assets/'; | |
| var paths = { | |
| spec: basePath + 'spec/' | |
| }; | 
  
    
      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
    
  
  
    
  | var gulp = require('gulp'); | |
| // Plugins | |
| var imagemin = require('gulp-imagemin'), | |
| compass = require('gulp-compass'), | |
| coffee = require('gulp-coffee'); | |
| // Paths | |
| var basePath = './public/assets/', | |
| sassPath = basePath + 'sass/', | 
  
    
      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
    
  
  
    
  | <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <title></title> | |
| <meta charset="utf-8"> | |
| <meta name="csrf" value="964a40834151e0c9abdcfa5a141601e698d3fc20"> | |
| <meta name="mixpanel" value=""> | |
| <link rel="stylesheet" href="/css/app.css?ver=1" media="all"> | |
| <script src="/js/libs/modernizr.js" type="text/javascript"></script> | 
  
    
      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
    
  
  
    
  | Marionette.Region.prototype.replace = (view, speed) -> | |
| speed = speed || 150 | |
| if ! @currentView | |
| @show(view) | |
| return | |
| @ensureEl() | |
| isViewClosed = view.isClosed || _.isUndefined view.$el | |
| isDifferentView = view isnt @currentView | |
| view.render() | 
  
    
      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
    
  
  
    
  | <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>Holding LShift_LCommand+1,2,3,4,... to F1,F2,F3,...,F12</name> | |
| <appendix>Holding LShift+LOption+1 to F1</appendix> | |
| <appendix>Holding LShift+LOption+2 to F2</appendix> | |
| <appendix>Holding LShift+LOption+3 to F3</appendix> | |
| <appendix>Holding LShift+LOption+4 to F4</appendix> | |
| <appendix>Holding LShift+LOption+5 to F5</appendix> | |
| <appendix>Holding LShift+LOption+6 to F6</appendix> | 
  
    
      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
    
  
  
    
  | package main | |
| import ( | |
| "fmt" | |
| "net/url" | |
| "reflect" | |
| "strconv" | |
| ) | |
| type Person struct { | 
  
    
      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
    
  
  
    
  | # Contains the game state in a protected (closure) variable | |
| state : -> | |
| # Our protected variable, only changeable through the setState method | |
| # defined below | |
| _state = 'stopped' | |
| # The state method will (from the 2nd call onwards) only return the | |
| # state. | |
| @.state = -> | |
| _state |