- Percepción social
- Estereotipo
- Prejuicio
- Discriminación
- Actitudes
- cognitiva
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
[Black Grid Fix] | |
patch=1,EE,205E570C,extended,00000000 | |
[60FPS] | |
patch=1,EE,7124F3DD,extended,0366A715 | |
patch=1,EE,CE12E646,extended,FB748A34 | |
patch=1,EE,59899C27,extended,0E3EB970 | |
patch=1,EE,550EF4D5,extended,EE0C87FE | |
patch=1,EE,419477B6,extended,F194B500 | |
patch=1,EE,87B88898,extended,EF75D70F |
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
package mocks | |
import ( | |
"encoding/json" | |
"io" | |
"net/http" | |
"net/http/httptest" | |
"strings" | |
"testing" |
I hereby claim:
- I am tangzero on github.
- I am jairosilvatw (https://keybase.io/jairosilvatw) on keybase.
- I have a public key ASAtUW-tu3eu9uvwlstx_RkturJj8pgRTbnpvWDGxqkD4Qo
To claim this, I am signing this object:
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
package main | |
import ( | |
"crypto/md5" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"os" |
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
install PostgreSQL 9 in Mac OSX via Homebrew | |
Mac OS X Snow Leopard | |
System Version: Mac OS X 10.6.5 | |
Kernel Version: Darwin 10.5.0 | |
Install notes for PostgreSQL 9.0.1 install using Homebrew: | |
sh-3.2# brew install postgresql |
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
APP_CPPFLAGS := -ffunction-sections -fdata-sections -fvisibility=hidden -frtti | |
APP_CFLAGS := -ffunction-sections -fdata-sections | |
APP_LDFLAGS := -Wl,--gc-sections | |
from: | |
libSDL2.so 661K | |
libgnustl_shared.so 758K | |
liblove.so 3.9M | |
to: | |
libSDL2.so 661K |
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
Function::property = (prop, desc) -> | |
Object.defineProperty @prototype, prop, desc | |
class Person | |
constructor: (@firstName, @lastName) -> | |
@property 'fullName', | |
get: -> "#{@firstName} #{@lastName}" | |
set: (name) -> [@firstName, @lastName] = name.split ' ' | |
p = new Person 'Leroy', 'Jenkins' |
NewerOlder