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
import {LoggerService} from ‘./logger-service’; | |
import {Logger} from “angular2-logger/core”; | |
… | |
@Component({ | |
… | |
providers: [LoggerService, Logger] | |
}) |
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
export let data = { | |
"ApiUrl" : "http://my.dev", | |
"LogLevel": "DEBUG", // OFF, ERROR, WARN, INFO, DEBUG, LOG | |
"AnalyticsId": "UA-XXXX-XX", | |
"TermsBlerb": "Some TCs." | |
} |
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
config.vm.provider 'virtualbox' do |vb| | |
vb.customize ["modifyvm", :id, "--cableconnected1", "on"] | |
end |
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
.selectable { | |
-webkit-user-select: text; | |
-moz-user-select: text; | |
-ms-user-select: text; | |
user-select: text; | |
} |
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->loader->add_filter('validate_token', $plugin_public, 'validate_token’); |
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
// Check for the existence of a header authentication token before dispatching any data | |
add_filter( 'rest_pre_dispatch', function() { | |
$requestPath = $_SERVER['REQUEST_URI']; | |
if($requestPath != '/wp-json/jwt-auth/v1/token') { | |
$tokenValidationResponse = apply_filters('validate_token', null); | |
if(gettype($tokenValidationResponse) == 'object' && get_class($tokenValidationResponse) == "WP_Error") { | |
foreach($tokenValidationResponse->error_data as $key => $error) { | |
$status = $error['status']; | |
$msg = $key; | |
}; |
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
sudo chown www-data:www-data -R * | |
sudo find . -type f -exec chmod 775 {} \; # Change file permissions | |
sudo find . -type d -exec chmod 775 {} \; # Change file permissions | |
# Switch them back to the correct permissions: | |
sudo find . -type f -exec chmod 755 {} \; # Change file permissions | |
sudo find . -type d -exec chmod 644 {} \; # Change file permissions |
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
using Tridion.ContentManager.ContentManagement; | |
using Tridion.ContentManager.Extensibility; | |
using Tridion.ContentManager.Extensibility.Events; | |
using Tridion.ContentManager.CommunicationManagement; | |
using System; | |
using Tridion.ContentManager; | |
using System.IO; | |
using System.Web; |
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
VIDEO=[video] | |
ffmpeg -i $VIDEO -c:v libx264 -profile:v high -level 5 -crf 18 -maxrate 10M -bufsize 16M -pix_fmt yuv420p -vf "scale=iw*sar:ih, scale='if(gt(iw,ih),min(1920,iw),-1)':'if(gt(iw,ih),-1,min(1080,ih))'" -x264opts bframes=3:cabac=1 -movflags faststart -strict experimental -c:a aac -b:a 320k -y $VIDEO.mp4 |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
NewerOlder