create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| # This script tries as best as possible to filter out bad replays | |
| # Pass it a subdir, and it will read all '.rep' files, and spit out a list | |
| # of the corrupt files in stdout | |
| from __future__ import print_function | |
| from pyreplib import replay # https://github.com/HearthSim/pyreplib/ | |
| from itertools import repeat | |
| from multiprocessing import Pool, Process, Pipe | |
| from multiprocessing.pool import ThreadPool | |
| import os | |
| import sys |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| # (GitHub-Flavored) Markdown Editor | |
| ### Instalar PHP 5 | |
| ```bash | |
| sudo apt-get install libapache2-mod-php5 | |
| sudo a2enmod php5 | |
| sudo /etc/init.d/apache2 restart | |
| ``` | |
| ### Instalar PHP 5 y MSQL |
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
| { | |
| // Settings | |
| "passfail" : false, // Stop on first error. | |
| "maxerr" : 100, // Maximum errors before stopping. | |
| // Predefined globals whom JSHint will ignore. | |
| "browser" : true, // Standard browser globals e.g. `window`, `document`. | |
| "node" : true, |
| { | |
| // -------------------------------------------------------------------- | |
| // JSHint Configuration, Strict Edition | |
| // -------------------------------------------------------------------- | |
| // | |
| // This is a options template for [JSHint][1], using [JSHint example][2] | |
| // and [Ory Band's example][3] as basis and setting config values to | |
| // be most strict: | |
| // | |
| // * set all enforcing options to true |
| /*global module:false*/ | |
| module.exports = function(grunt) { | |
| // Project configuration. | |
| grunt.initConfig({ | |
| // Metadata. | |
| pkg: grunt.file.readJSON('package.json'), | |
| aws: grunt.file.readJSON('config/grunt-aws.json'), | |
| datetime: Date.now(), | |
| jshint: { |
| # ~/.tmux.conf | |
| # | |
| # See the following files: | |
| # | |
| # /opt/local/share/doc/tmux/t-williams.conf | |
| # /opt/local/share/doc/tmux/screen-keys.conf | |
| # /opt/local/share/doc/tmux/vim-keys.conf | |
| # | |
| # URLs to read: | |
| # |