- Sin fines de lucro
- Moderaci贸n abierta. Administrador s贸lo quita el spam
- Compartir c贸digo bajo una cuenta de organizaci贸n de Github
- El grupo es una democracia
- Cuando la democracia no es suficiente (empate etc), entra la meritocracia
- Comete errores (quien no los comete no aprende)
- Pide ayuda
- Divi茅rtete, quien no disfruta lo que hace, lo hace mal...
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
ruby '2.7.1' | |
gem 'rails', github: 'rails/rails' | |
gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
# Action Text | |
gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
gem 'okra', github: 'basecamp/okra' | |
# Drivers |
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
charge = Conekta::Charge.create({ | |
"currency"=>"MXN", | |
"amount"=> 20000, | |
"description"=>"Stogies", | |
"reference_id"=>"9839-wolf_pack", | |
"card"=> "tok_test_visa_4242", | |
"details"=> { | |
"email"=> "[email protected]", | |
"line_items"=> [{ | |
"name": "Box of Cohiba S1s", |
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
charge = Conekta::Charge.create({ | |
"description"=>"Stogies", | |
"amount"=> 20000, | |
"currency"=>"MXN", | |
"reference_id"=>"9839-wolf_pack", | |
"card"=> "tok_test_visa_4242", | |
"details"=> { | |
"name"=>"Wolverine", | |
"email"=>"[email protected]", | |
"phone"=>"403-342-0642", |
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
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl http://npmjs.org/install.sh | sh |