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
<?php | |
$conf = array( | |
"backup_prefix" => "bc-", | |
"backup_dir" => dirname(__FILE__).'/backups/', | |
"backup_files" => true, | |
"backup_target_dir" => '/folder', | |
"keep_local_files" => true, | |
"local_backup_size_limit" => "80GB", // in what you want, like 1GB or 2MB | |
"local_backup_time_limit" => 7, // in days, 0 for no limit |
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 | |
extarray=( mp3 flac ogg wmv wav ) ; | |
HOME=$1; | |
DESTINATION=$2; | |
#if [ $HOME == "/" || $HOME == $DESTINATION ] { exit 1 } | |
cd $HOME; |
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 | |
# Usage "sh script.sh /path/to/check" | |
if [ -z "$1" ]; then | |
vir_dir="`./virus`" | |
else | |
vir_dir="$1" | |
fi | |
[email protected]; |
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
<?php | |
function substr_paragraph($string, $length = 520, $html = false) { | |
$pos = strpos($string, "</p>",$length); | |
$tag_len = 4; | |
if(empty($pos)){ | |
$pos = strpos($string, "</div>",$length); | |
$tag_len = 5; |
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
git ls-files -i -z --exclude-from=.gitignore | xargs -0 git rm --cached |
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 | |
#-------------------- Config vars -------------------# | |
S3_BUCKET=your_s3_bucket | |
# Files | |
BACKDIR=~/backups | |
BACKTARGET=~/files |
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
### | |
# | |
# Easy Mooty Server installer | |
# | |
# wget http://gist.github.com/script_name.sh | |
# sudo sh script_name.sh | |
# | |
### | |
# Funcs # |
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/sh | |
# This line kills everething, be carefull, maybe do a screen -ls first to watch what is running | |
screen -ls | grep -o '[0-9]*\.[a0-Z9]*' | while read -r v ; do screen -X -S $v quit; done |
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
<?php | |
ini_set("allow_url_fopen", "1"); | |
require_once(dirname(__FILE__).'/../../config/config.inc.php'); | |
require_once(dirname(__FILE__).'/../../init.php'); | |
// Put your API Key here | |
$api_key = ""; | |
$state_in_transit = Configuration::get('PS_OS_SHIPPING'); |
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
<?php | |
// Add to functions.php | |
add_action('login_head', 'custom_wp_login_logo'); | |
function custom_wp_login_logo() { | |
echo '<style type="text/css"> | |
h1 a { | |
background-image:url('. get_bloginfo( 'template_directory' ) .'/img/logo_backoffice.jpg) !important; |