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
.btn-primary { | |
background-color: #08c; | |
border-color: #08c; | |
color: #fff; | |
background-color: #007ab8; | |
background-image: -moz-linear-gradient(top, #08c, #006699); | |
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#006699)); | |
background-image: -webkit-linear-gradient(top, #08c, #006699); | |
background-image: -o-linear-gradient(top, #08c, #006699); | |
background-image: linear-gradient(to bottom, #08c, #006699); |
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
# NOTE: I don't think this is documented behaviour. I've used this output format in production on multiple servers for some time with no issues, but please test thoroughly!!!! And don't read too much into the patterns: dummies for this example | |
input { | |
file { | |
path => "/tmp/tasks.log" | |
start_position => end | |
sincedb_path => "/tmp/" | |
} | |
} | |
filter { |
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
console.log('Checking newly uploaded file'); | |
var AWS = require('aws-sdk'); | |
var s3 = new AWS.S3({apiVersion: '2006-03-01'}); | |
var eltr = new AWS.ElasticTranscoder({ | |
apiVersion: '2012-09-25', | |
region: 'us-east-1' | |
}); | |
// ID of pipeline | |
var pipelineId = 'myID'; | |
// ID of ET's web output preset |