This file contains hidden or 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
// ~/.gitconfig | |
[user] | |
name = | |
email = | |
[color] | |
ui = auto | |
[alias] | |
ca = commit -a -m | |
cm = commit -m |
This file contains hidden or 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
Aquí encontrarás las respuestas correpondientes a: | |
www.estebangaete.cl/usach/tutoriales/python-usach/jugando-con-las-variables |
This file contains hidden or 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
#Realice la suma de dos números enteros que den como resultado: 42 | |
#Para esto tan solo elige dos números enteros y sumalos :) | |
#recuerda que el resultado debe ser 42 | |
>>> 13 + 29 | |
42 |
This file contains hidden or 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
sudo apt-add-repository 'deb http://toolbelt.herokuapp.com/ubuntu ./' | |
curl https://toolbelt.herokuapp.com/apt/release.key | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get install heroku-toolbelt | |
sudo apt-get install ruby libopenssl-ruby ruby1.8-dev | |
sudo apt-get install libreadline-ruby | |
//Y luego para comprobar que ha funcionado escribimos el comando | |
heroku |
This file contains hidden or 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
//Kernel actualmente en uso | |
uname -r | |
//Lista de Kernels instalados | |
dpkg --list | grep linux-image | |
//Para borrar uno o mas Kernels | |
sudo apt-get purge linux-image-x.x-x.x-generic [..] linux-image-x.x-x.x-generic |
This file contains hidden or 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
en: | |
errors: | |
messages: | |
invalid_date: "no es una fecha valida." | |
invalid_time: "no es un tiempo valido." | |
invalid_datetime: "no es un formato valido de fecha/tiempo." | |
is_at: "debe ser %{restriction}." | |
before: "debe ser antes de %{restriction}." | |
on_or_before: "debe ser justo o antes de %{restriction}." | |
after: "debe ser después de %{restriction}." |
This file contains hidden or 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
# Traducciones adicionales en https://github.com/plataformatec/devise/wiki/I18n | |
es: | |
devise: | |
confirmations: | |
confirmed: "Su cuenta ha sido confirmada." | |
confirmed_and_signed_in: "Su cuenta ha sido confirmada. Ha sido identificado correctamente." | |
send_instructions: "Recibira un correo electrónico en unos minutos con instrucciones sobre cómo restablecer su contraseña." | |
send_paranoid_instructions: "Si su correo electrónico existe en nuestra base de datos recibirás un correo electrónico en unos minutos con instrucciones sobre cómo reiniciar su contraseña." | |
failure: |
This file contains hidden or 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
# Traducciones adicionales en https://github.com/plataformatec/devise/wiki/I18n | |
es: | |
devise: | |
confirmations: | |
confirmed: "Tu cuenta ya ha sido confirmada." | |
confirmed_and_signed_in: "Tu cuenta ya ha sido confirmada. Has sido identificado." | |
send_instructions: "Recibirás un correo electrónico en unos minutos con instrucciones sobre cómo restablecer tu contraseña." | |
send_paranoid_instructions: "Si tu correo electrónico existe en nuestra base de datos recibirás un correo electrónico en unos minutos con instrucciones sobre cómo reiniciar tu contraseña." | |
failure: |
This file contains hidden or 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
#include <stdio.h> | |
int main(){ | |
for(int i=0;i<100;i++){ | |
if(i%15==0){ | |
printf("FizzBuzz, "); | |
}else if(i%3==0){ | |
printf("Fizz, "); | |
}else if(i%5==0){ | |
printf("Buzz, "); |