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
    
  
  
    
  | $ curl --dump-header - localhost:12345 | |
| HTTP/1.0 404 Not Found | |
| Content-Type: text/html | |
| Content-Length: 43 | |
| Date: Fri, 05 Dec 2014 17:48:56 +0000 | |
| <html> | |
| <body> | |
| <h1>WUT</h1> | |
| </html> | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| # bash functions to autenticate and assume roles in aws federated accounts | |
| # required tools on $PATH - aws, date, curl, jq, libxml2-utils | |
| # requried environment variables: | |
| export AWS_CLI=`which aws` | |
| # optional environment variable, to automatically assume a specific role when calling assume() | |
| # AWS_ASSUME_ROLE=arn:aws:iam::369407384105:role/cross-account-federated-role | 
  
    
      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 execFile = require('child_process').execFile; | |
| var flow = require('flow-bin'); | |
| var gulp = require('gulp'); | |
| var path = require('path') | |
| var util = require('gulp-util'); | |
| var webpack = require('webpack'); | |
| var gulpWebpack = require('gulp-webpack'); | |
| var _ = require('lodash'); | |
| gulp.task('build', ['flow:check'], function() { | 
  
    
      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 bash | |
| # | |
| # gh-dl-release! It works! | |
| # | |
| # This script downloads an asset from latest or specific Github release of a | |
| # private repo. Feel free to extract more of the variables into command line | |
| # parameters. | |
| # | |
| # PREREQUISITES | |
| # | 
OlderNewer