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
<?php | |
function deleteDirectory($dirname, $delete_self = true) | |
{ | |
$dirname = rtrim($dirname, '/').'/'; | |
if ($files = scandir($dirname)) | |
{ | |
foreach ($files as $file) | |
if ($file != '.' && $file != '..' && $file != '.svn') | |
{ |
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
<?php | |
function importCSV() { | |
ini_set('auto_detect_line_endings',TRUE); | |
if ($this->request->is('post')) { | |
$dataToSave = array(); | |
$row = 1; | |
if($this->data['Contacts']['csv_file']['type'] == "text/csv") |
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
set :application, "xxx" | |
set :repository, "[email protected]:Pajk/prestashop.git" | |
set :scm, :git | |
role :web, "1.1.1.1" | |
role :app, "1.1.1.1" | |
role :db, "1.1.1.1", :primary => true | |
role :db, "1.1.1.1" |
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 = { | |
"application" => "DOMAIN.TLD", | |
"repository" => "git@GITHOST:USERNAME/REPOSITORYNAME.git", | |
"remoteusername" => "REMOTEUSERNAME", | |
"cake_folder" => "/PATH/TO/CAKE", | |
"cake_version" => "cakephp1.3", | |
"plugin_dir" => "plugins", | |
"servers" => { | |
"prod" => { | |
"server" => "APPLICATION.TLD", |
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 | |
ffmpeg -i $1 -vcodec libx264 -b 200k -vf scale=iw/2:-1 video.mp4 | |
ffmpeg -i video.mp4 -vcodec libtheora video.ogv | |
ffmpeg -i video.mp4 -b 700k video.webm | |
ffmpeg -i video.mp4 -vcodec flv video.flv | |
ffmpeg -itsoffset -1 -i video.mp4 -vframes 1 -filter:v scale="400:-1" thumb1.png | |
ffmpeg -itsoffset -5 -i video.mp4 -vframes 1 -filter:v scale="400:-1" thumb2.png |
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
<?php | |
private function video_thumbnail_url($url) | |
{ | |
if(!filter_var($url, FILTER_VALIDATE_URL)){ | |
// URL is Not valid | |
return false; | |
} | |
$domain=parse_url($url,PHP_URL_HOST); | |
$url_dec=parse_url($url); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<?php echo $this->Html->charset(); ?> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title> | |
<?php | |
if($this->fetch('title')): |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>test</title> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" /> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css" /> |
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
// get a reference to the current (active) document and store it in a variable named "doc" | |
doc = app.activeDocument; | |
var fWidthBig = 1024; | |
doc.resizeImage(UnitValue(fWidthBig,"px"),null,null,ResampleMethod.BICUBIC); | |
var options = new ExportOptionsSaveForWeb(); | |
options.quality = 70; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>{% block title %}{% endblock %}</title> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" /> | |
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap-theme.min.css" /> |
OlderNewer