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 |
| https://www.draw.io/?lightbox=1&highlight=0000ff&edit=_blank&layers=1&nav=1&title=Fluxo-Deploy-PowerView-v4.xml#R7V1bc5u6Fv41mUkfnAGEAT8SuzvpTNqkTntO93nDgG12MfLGOJf%2B%2BiNxM0gLjGMMJKadSYIkblrfWlo3LS7QePVy4xvr5Vds2e6FJFgvF2hyIUnSSFbIL9ryGrdISI5aFr5jRW3iruHR%2BWPHjULcunUse5MbGGDsBs4632hiz7PNINdm%2BD5%2Bzg%2BbYzd%2F17WxsLmGR9Nw%2Bdb%2FOlawjFq1obBrv7WdxTK5syjEPSsjGRw3bJaGhZ8zTejzBRr7GAfRX6uXse3S2UvmJTrvr4Le9MF82wuqnBAIi2%2B%2FvtxOvv%2BzfRrfIGn753%2FfBvFVngx3G7%2FwhaS45HrXc0wuKykL%2BnfStlkbHn2T4DWeHuXfLU4GDzYh8XQyQELrF%2FIrPFMI%2B57jOaK9HvZXhrs7ObnL4%2Fef%2BoSeFt%2BNvEp0w2Megr2JvufqpDn%2F5lLuXpKPt55l0ymlr%2Fe8dAL7cW2YtPeZsABpWwYrlxyJ9FEDH%2F9OcSPFz%2FgYX42OmDuuO8Yu9sOrI8uwtbmZnpnpUUzNns3TJ8qSPaGh7Qf2S6YphsGNjVd24L%2BSIXHvcBidEfPkQBTihucdwsUE4csMutW4zYiZapFeeoc78kcMvQNgqHEw1M2AvDo7%2B4SH1vTP7cqNBqBr%2BtoO4dc7Y2a7D3jjBA72yJAZDgK8IgNc2nFtmL8XIe0yczoP%2F2WuobvOgp4bYIaQeBu4jkfokQgZAaRuDbRJ5z0RmIkgzNAGAaRRTkWaUU%2BauBeNOkYaUeppE%2FcqqGO0kSWOCrZFNIv4EPvBEi%2BwZ7ifd63X%2BcVlN%2BYO05kNp%2FQfOwheYzXJ2AY4P%2BH2ixP8oqdfDeOjv |
| window.requestAnimFrame = (function() { | |
| return window.requestAnimationFrame || | |
| window.webkitRequestAnimationFrame || | |
| window.mozRequestAnimationFrame || | |
| window.oRequestAnimationFrame || | |
| window.msRequestAnimationFrame || | |
| function(callback) { | |
| window.setTimeout(callback, 1000 / 60); | |
| }; | |
| })(); |
| #!/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(); |