-
Edit the Apache2 plist file with whatever editor you like (example using vim):
$ sudo vim /System/Library/LaunchDaemons/org.apache.httpd.plist
This file contains 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
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; |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
This file contains 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
_.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('&')) |