Read full tutorial How to Make Magic, Animated Tooltips With CSS on Tuts+. By Jase
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
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
Configurar Nombre que salen en los commits
git config --global user.name "dasdo"
Configurar Email
git config --global user.email [email protected]
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
| nombre = input("Ingresa tu Nombre: ") | |
| apellidos = input("Ingresa tus Apellidos: ") | |
| nombre_completo = (nombre + ' ' + apellidos) | |
| telefono = input("Ingresa tu nro de Teléfono: ") | |
| correo = input("Ingresa tu Correo Electrónico: ") | |
| print ("Hola" + ' ' + nombre_completo + ' En breve recibirás un correo a ' + correo) |