create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| _.mixin({ | |
| inUrlDry: function(singleParam) { | |
| //en vez de usar un arreglo para manegar los keys, vals se crea un map, así | |
| //se puede accesar directamente en vez de tener que buscar con index of, | |
| //esa parte pasa de O(n) a O(1) primero se hace un arreglo que tiene una | |
| //estructura así: [[param, {decodedValue: 'val', rawValue: 'val'}]...] y el | |
| //metodo _.object pasa de eso a | |
| //{param: {decodedValue: 'val', rawValue: 'val'}} | |
| var paramMap = _.chain(location.search.slice(1).split('&')) |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
Edit the Apache2 plist file with whatever editor you like (example using vim):
$ sudo vim /System/Library/LaunchDaemons/org.apache.httpd.plist
| import android.app.Activity; | |
| import android.app.Application; | |
| import android.content.Context; | |
| import android.os.Bundle; | |
| import android.os.Handler; | |
| import android.util.Log; | |
| import java.util.List; | |
| import java.util.concurrent.CopyOnWriteArrayList; |