create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| node_modules |
| #!/bin/bash | |
| # | |
| # This script configures WordPress file permissions based on recommendations | |
| # from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
| # | |
| # Author: Michael Conigliaro <mike [at] conigliaro [dot] org> | |
| # | |
| WP_OWNER=www-data # <-- wordpress owner | |
| WP_GROUP=www-data # <-- wordpress group | |
| WP_ROOT=$1 # <-- wordpress root directory |
| <?php | |
| /* | |
| MU Plugin: remove-jetpack-css | |
| Plugin Name: WP Remove Jetpack CSS | |
| Plugin URI: http://www.blog-des-telecoms.com | |
| Description: Remove jetpack CSS | |
| Version: 1.0 | |
| Author: Mathias WOLFF | |
| Author URI: http://www.mathias-wolff.fr | |
| License: GPLv3 |
| #!/bin/sh | |
| parse_yaml() { | |
| local prefix=$2 | |
| local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034') | |
| sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \ | |
| -e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" $1 | | |
| awk -F$fs '{ | |
| indent = length($1)/2; | |
| vname[indent] = $2; | |
| for (i in vname) {if (i > indent) {delete vname[i]}} |
| #!/bin/bash | |
| # Script to lauch WordPress Dev Site | |
| NOME="$(date +%s%N | cut -b1-13)" | |
| for i in "$@" | |
| do | |
| case $i in | |
| -n=*|--nome=*) | |
| NOME="${i#*=}" | |
| shift #past argument=value | |
| ;; |
| /* Fake background-position cover with javascript by absolute positioning | |
| * an image inside its parent. | |
| */ | |
| function coverImage(image) { | |
| var $image = $(image); | |
| var $parent = $(image).parent(); | |
| $parent.imagesLoaded(function () { | |
| var width = $image.width(); | |
| var height = $image.height(); |
| add_action( 'wp_ajax_nopriv_submit_content', 'my_submission_processor' ); | |
| add_action( 'wp_ajax_submit_content', 'my_submission_processor' ); | |
| function my_submission_processor() { | |
| // Handle the form in here | |
| } |
==================
2. Configurar chave de segunça