This file contains 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
/* | |
# This is present in the config file... (Play 2.5.14) | |
# cron.schedule = [ | |
# { | |
# job_class_name = "cron.Bootstrap" | |
# every = "once" | |
# }, | |
# { | |
# job_class_name = "cron.PushToFirehose" | |
# every = "minute" |
This file contains 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
define(['require','jq','project/ads/request','core/log'],function(require, jq, adRequest, log) { | |
return { | |
adRenderStack: [], | |
processRenderStack: function(){ | |
var self = require('project/ads/render'); | |
while(self.adRenderStack.length > 0){ | |
log.display('Loader: Rendering Won Unit'); | |
var winData = self.adRenderStack.pop(); | |
self.render(winData.bid); | |
} |
This file contains 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 script to install latest version of ffmpeg and its dependencies on Ubuntu 12.04 or 14.04 | |
# Inspired from https://gist.github.com/faleev/3435377 | |
# Remove any existing packages: | |
sudo apt-get -y remove ffmpeg x264 libav-tools libvpx-dev libx264-dev | |
#14.04 complaints.. | |
#libfaac, requires multiverse |
This file contains 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
/* | |
LiveRail.AdManager | |
release 2.2.8 | |
build 201511261816 | |
*/ | |
! function(a, b) { | |
a.getVPAIDAd = b() | |
}(this, function() { | |
var requirejs, require, define; | |
! function(a) { |